/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility Improvements */
:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10001;
    transition: top 0.3s ease;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

/* Logo Link */
.logo a {
    color: inherit;
    text-decoration: none;
}

.logo a:hover {
    text-decoration: underline;
}

/* Header Styles */
.header {
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 10px;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.phone-number {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.phone-number:hover {
    color: var(--accent-color);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1rem 0 1rem;
    /*margin-top: 1rem;*/
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #3498db;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.25rem;
}

.image-border {
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.footer-section h4 {
    font-size: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-logos {

}

.sal-sol-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.sal-sol-logo {
    height: 35px !important;
    max-width: 250px !important;
}

.anpc-logo {
    height: 25px;
    max-width: 200px;
}

.footer-logo {
    height: 25px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    max-width: 200px;
    object-fit: contain;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ANPC logo specific styling - white background */
.footer-logo[src*="anpc-logo.svg"] {
    background: white;
    padding: 2px;
    border-radius: 2px;
}




.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.875rem;
    margin: 0;
}

:root {
    --primary-color: #000000;
    --secondary-color: #606c75;
    --accent-color: #fbbf24;
    --text-color: #000000;
    --background-color: #ffffff;
    --border-color: #e5e7eb;
    --border-radius: 16px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1rem;
    font-family: var(--font-family);
    line-height: 1.6;
    font-weight: 400;
}

/* Hero Section */
.hero {
    padding: 2rem 0;
    background-color: #262730;
    color: white;
    width: 100%;
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.main-image {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    min-height: 300px;
    object-fit: cover;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    position: relative;
}

/* Mobile thumbnail navigation */
.thumbnail-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(52, 152, 219, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    -webkit-tap-highlight-color: transparent;
}

.thumbnail-nav:hover {
    background: rgba(52, 152, 219, 1);
    transform: translateY(-50%) scale(1.1);
}

.thumbnail-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.thumbnail-nav.prev {
    left: -16px;
}

.thumbnail-nav.next {
    right: -16px;
}

.thumbnail-nav.show {
    display: flex;
}

.thumbnail {
    aspect-ratio: 1;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-height: 80px;
    min-width: 80px;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--border-radius) - 1px);
    min-height: 60px;
    background-color: #f8f9fa;
    opacity: 1 !important;
    transition: opacity 0.3s ease-in-out;
    display: block !important;
    visibility: visible !important;
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    color: var(--text-color);
}

.urgency-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item::before {
    content: "✓";
    color: #48bb78;
    font-weight: bold;
    font-size: 1.125rem;
}

.social-proof {
    background-color: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #48bb78;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars {
    font-size: 1.125rem;
}

.reviews {
    font-size: 0.875rem;
    color: #4a5568;
    font-weight: 600;
}

.testimonial {
    font-style: italic;
    color: #2d3748;
    font-size: 0.875rem;
    line-height: 1.4;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.star {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.review-count {
    font-size: 1rem;
    color: var(--text-color);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.price-button {
    background: linear-gradient(135deg, #00d4aa, #0099cc);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    justify-content: center;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.original-price {
    font-size: 1rem;
    color: #ffd700;
    text-decoration: line-through;
}

.savings-badge {
    background-color: #ffd700;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.875rem;
    display: none;
}

.contact-section {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.whatsapp-icon {
    font-size: 1.25rem;
}

.divider {
    height: 1px;
    background-color: #555;
    margin: 1rem 0;
}

/* Quantity Controls */
.quantity-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quantity-section label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: calc(var(--border-radius) * 0.5);
    width: fit-content;
}

.quantity-btn {
    width: 3rem;
    height: 2rem;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-right: 1px solid var(--border-color);
}

.quantity-btn:last-child {
    border-right: none;
    border-left: 1px solid var(--border-color);
}

#quantity {
    width: 4rem;
    height: 2rem;
    border: none;
    text-align: center;
    font-size: 0.875rem;
    appearance: none;
}

/* Order Button */
.order-button {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    margin: 1rem 0;
    font-family: var(--font-heading);
}

.cart-icon {
    font-size: 1.25rem;
}

.order-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Guarantees */
.guarantees {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
    margin: 1rem 0;
    flex-wrap: nowrap;
}

.guarantee {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 60px;
    text-align: center;
}

.guarantee img {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
    display: block;
    opacity: 1;
    visibility: visible;
}

.guarantee span {
    font-size: 0.75rem;
    color: white;
    font-weight: 500;
    text-align: center;
}



/* Separator CTA Section */
.separator-cta {
    background-color: #262730;
    padding: 2rem 0;
    text-align: center;
    color: white;
    width: 100%;
}

.separator-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.separator-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.separator-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.separator-cta-button {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

.separator-cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Features Section */
.features {
    padding: 3rem 0;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.feature-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.feature-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-text .cta-button {
    margin-top: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 3rem 0;
    text-align: center;
}

.benefits-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.benefits-header h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.benefits-header p {
    font-size: 1.125rem;
    line-height: 1.7;
}

.benefits-single-row-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    min-height: 600px;
}

.benefits-text-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.benefits-empty-column {
    /* Empty column for spacing */
}

.benefits-center-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 600px;
    height: 600px;
}

.benefits-center-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Responsive styles for benefits grid */
@media (max-width: 1024px) {
    .benefits-single-row-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 1.5rem;
        min-height: 500px;
    }
    
    .benefits-text-column {
        gap: 1.5rem;
    }
    
    .benefits-center-image-container {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .benefits-single-row-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: 400px;
    }
    
    .benefits-text-column {
        gap: 1rem;
        order: 1;
    }
    
    .benefits-empty-column {
        display: none;
    }
    
    .benefits-center-image-container {
        width: 300px;
        height: 300px;
        order: 2;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 2rem auto;
    }
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    flex: 1;
    max-width: 300px;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    font-family: var(--font-heading);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

/* Comparison Section */
.comparison {
    padding: 3rem 0;
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.comparison-text h2 {
    font-size: 1.75rem;
    margin: 0 0 1rem 0;
}

.comparison-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.comparison-text .cta-button {
    margin-top: 1rem;
}

.comparison-table {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    font-size: 0.9rem;
    background: white;
    margin: 0 auto;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, var(--secondary-color), #2c3e50);
    color: white;
}

.table-header > div {
    padding: 0px 10px 0px 11px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background-color: #f8f9fa;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row > div {
    padding: 0px 10px 0px 11px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
}

.feature-name {
    justify-content: flex-start !important;
    font-weight: 600;
    color: #2c3e50;
    /*font-size: 0.95rem;*/
}

.product-check {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: bold;
}

.competitor-x {
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Statistics Section */
.statistics {
    padding: 1rem 0;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 50%;
}

.stats-text h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-circle {
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 50%;
    background: conic-gradient(var(--secondary-color) 0deg, #d1d5db 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.stat-circle::before {
    content: '';
    position: absolute;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background: white;
}

.stat-number {
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.stat-item p {
    font-size: 1.125rem;
    margin: 0;
}

/* Final CTA Section */
.final-cta {

}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.cta-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-text .cta-button {
    margin-top: 1rem;
}

/* Order Form Section */
.order-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    margin: 2rem 0 0 0;
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.order-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.2);
}

.order-form-container h2 {
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.order-form-container p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.discount-info {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discount-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.discount-info h3 {
    color: #155724;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.discount-rules {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.discount-rule {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: #155724;
    font-size: 1rem;
    border: 1px solid rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.discount-rule:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.order-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 10px 10px 25px 10px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-step {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /*margin-bottom: 2.5rem;*/
}

.step-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    /*margin-bottom: 2rem;*/
    text-align: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.step-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.model-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f3ff 100%);
    border-radius: 16px;
    border: 2px solid #e8ecff;
    justify-content: center;
}

.model-option {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 220px;
    flex-shrink: 0;
}

.model-option input[type="checkbox"] {
    display: none;
}

.model-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border: 3px solid #e8ecff;
    border-radius: 16px;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 320px;
    width: 100%;
    box-sizing: border-box;
}

.option-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.model-option input[type="checkbox"]:checked + .model-content {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
    transform: translateY(-4px) scale(1.02);
}

.model-option input[type="checkbox"]:checked + .model-content::before {
    opacity: 0.05;
}

.model-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e8ecff;
    transition: all 0.4s ease;
    background-color: #f8f9fa;
    display: block;
    min-width: 70px;
    min-height: 70px;
}



.model-option input[type="checkbox"]:checked + .model-content .model-image {
    border-color: #667eea;
    transform: scale(1.05);
}

.model-info {
    flex: 1;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
}

.model-name {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-description {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.5rem;
    min-height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-price {
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-quantity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.quantity-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e8ecff;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    width: 100%;
    max-width: 120px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: scale(1.05);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 50px;
    height: 32px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    background: white;
}

.quantity-input:focus {
    outline: none;
    background: #f8f9ff;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.form-field label::after {
    content: " *";
    color: #e74c3c;
    font-weight: bold;
}

.delivery-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f3ff 100%);
    border-radius: 16px;
    border: 2px solid #e8ecff;
}

.delivery-fields input {
    padding: 1.25rem;
    border: 2px solid #e8ecff;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
}

.delivery-fields input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.delivery-fields input:nth-child(1),
.delivery-fields input:nth-child(2) {
    grid-column: span 2;
}

.delivery-fields input::placeholder {
    color: #a0aec0;
}

.order-summary {
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f3ff 100%);
    border-radius: 16px;
    padding: 0 2rem 2rem 2rem;
    /*margin: 2rem 0;*/
    border: 2px solid #e8ecff;
    position: relative;
    overflow: hidden;
}

.order-summary .summary-row:first-child {
    margin-top: 15px !important;
}

.order-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e8ecff;
    font-size: 1.1rem;
    position: relative;
}

.summary-row:last-child {
    border-bottom: none;
    font-weight: 800;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    margin: 0 -2rem -2rem -2rem;
    padding: 1.5rem 2rem;
    border-radius: 0 0 14px 14px;
}

.summary-item {
    color: #2c3e50;
    font-weight: 600;
}

.summary-price {
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-row:last-child .summary-item,
.summary-row:last-child .summary-price {
    color: white;
    -webkit-text-fill-color: white;
}

.submit-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.submit-order-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(39, 174, 96, 0.5);
    background: linear-gradient(135deg, #229954, #27ae60);
}

.submit-order-btn:hover::before {
    left: 100%;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .product-image img {
    transform: scale(1.05);
}

.reviewer-info {
    margin: 0 1.5rem 1rem 1.5rem;
    font-size: 0.9rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-color);
}

.testimonial-stars {
    font-size: 1.2rem;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0 1.5rem 1.5rem 1.5rem;
    font-style: italic;
    position: relative;
    padding: 0.75rem 0;
}

.quote-mark {
    color: #48bb78;
    font-size: 1.8rem;
    font-family: serif;
    margin: 0 0.5rem;
    vertical-align: top;
}

@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .product-image {
        height: 180px;
    }
}

/* FAQ Section */
.faq {
    padding: 3rem 0 0 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f3ff 100%);
    position: relative;
    overflow: hidden;
}



.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    padding: 0 0.5rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.faq-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.faq-item summary {
    padding: 2rem 2.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    min-height: 32px;
    box-sizing: border-box;
}

.faq-item summary:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 300;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item summary::before {
    display: none;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(0deg);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.faq-item p {
    padding: 1.5rem 2.5rem 2rem 2.5rem;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
    background: linear-gradient(135deg, #fafbff 0%, #f8f9ff 100%);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem 0;
}

/* CTA Button */
.cta-button {
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* Mobile-First Responsive Design */

/* Base mobile styles (default) */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.product-gallery {
    position: static;
    margin-bottom: 2rem;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.guarantees {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.guarantee {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 60px;
    text-align: center;
}

.feature-content,
.comparison-content,
.stats-content,
.cta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.comparison-table {
    font-size: 0.875rem;
    overflow-x: auto;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.5rem;
    padding: 0.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}



.header-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Tablet styles */
@media (min-width: 768px) {
    .model-selection {
        gap: 0.5rem;
        justify-content: center;
        padding: 1.5rem;
    }
    
    .model-option {
        width: 200px;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .product-gallery {
        position: sticky;
        top: 2rem;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .guarantees {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .guarantee {
        flex: 1;
        min-width: 120px;
        background-color: transparent;
        padding: 0;
    }
    
    .guarantee img {
        width: 4rem;
        height: 4rem;
    }
    
    .feature-content,
    .comparison-content,
    .stats-content,
    .cta-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .benefits-grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .benefits-image-grid {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .benefit-card {
        padding: 1.25rem;
        flex: 1;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.125rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
    
    .separator-content h2 {
        font-size: 1.5rem;
    }
    
    .separator-content p {
        font-size: 1rem;
    }
    
    .stat-item {
        flex-direction: row;
        text-align: left;
    }
    

    
        .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .model-selection {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .model-option {
        width: 200px;
    }
    
    .order-form-container {
        max-width: 1200px;
    }
}
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .comparison-table {
        font-size: 0.875rem;
        max-width: 350px;
    }
    
    .table-header,
    .table-row {
        padding: 0.75rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .benefits-image-bg {
        width: 600px !important;
        height: 600px !important;
        margin: 3rem auto;
    }
    
    .benefits-center-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        border-radius: 50%;
    }

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .logo h2 {
        font-size: 1.125rem;
    }
    
    /* Mobile-specific image gallery improvements */
    .product-gallery {
        position: static;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .main-image {
        margin-bottom: 1rem;
        border-radius: 12px;
        width: 100%;
        max-width: 380px;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .featured-image {
        min-height: 200px;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
        box-sizing: border-box;
    }
    

    
    .phone-number {
        font-size: 0.875rem;
        text-align: right;
    }
    
    .logo h2 {
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-logos {
        justify-content: center;
        gap: 0.75rem;
        flex-direction: column;
    }
    
    .sal-sol-row {
        gap: 0.5rem;
    }
    
    .sal-sol-logo {
        height: 28px !important;
        max-width: 180px !important;
    }
    
    .anpc-logo {
        height: 20px;
        max-width: 150px;
    }
    
    .footer-logo {
        height: 18px;
        padding: 2px;
        max-width: 120px;
        object-fit: contain;
    }
    
    .footer-logo[src*="anpc-logo.svg"] {
        background: white;
        padding: 1px;
        border-radius: 1px;
    }
    

    
    .thumbnail-gallery {
        display: flex;
        gap: 0.5rem;
        padding: 0.5rem 0;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        overflow: hidden;
    }
    
    .thumbnail-gallery::-webkit-scrollbar {
        display: none;
    }
    
    .thumbnail {
        flex: 0 0 60px;
        min-width: 60px;
        height: 60px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
        background: white;
    }
    
    .thumbnail.active {
        border-color: #10b981;
        border-width: 3px;
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    }
    
    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 7px;
        display: block;
    }
    
    /* Always show navigation arrows on mobile */
    .thumbnail-nav {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(52, 152, 219, 0.9);
        color: white;
        border: none;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .thumbnail-nav.prev {
        left: -40px;
    }
    
    .thumbnail-nav.next {
        right: -40px;
    }
    
    .thumbnail-nav:hover {
        background: rgba(52, 152, 219, 1);
        transform: translateY(-50%) scale(1.1);
    }
    
    .thumbnail-nav.prev {
        left: 5px;
    }
    
    .thumbnail-nav.next {
        right: 5px;
    }
    
    .guarantee {
        padding: 0.25rem;
        font-size: 0.75rem;
        min-width: 50px;
    }
    
    .guarantee img {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .benefits-layout {
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .benefits-top-row,
    .benefits-bottom-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefits-image {
        width: 200px;
        height: 200px;
        margin: 1rem auto;
        border-radius: 50%;
    }
    
    .benefits-center-image-container {
        display: none;
    }
    
    .benefit-card {
        padding: 1rem;
        margin: 0.5rem 0;
        border-radius: 12px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        width: 100%;
        max-width: 100%;
        flex: 1;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .benefit-card p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .comparison-table {
        font-size: 0.75rem;
        max-width: 100%;
        margin: 0 10px;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 0;
    }
    
    .table-header > div,
    .table-row > div {
        padding: 0px 5px 0px 6px;
        font-size: 0.7rem;
    }
    
    .feature-name {
        font-weight: 600;
        font-size: 1rem !important;
    }
    
    .product-check,
    .competitor-x {
        text-align: center;
        font-size: 1.5rem !important;
    }
    
    .product-title {
        font-size: 1.25rem;
    }
    
    .separator-content h2 {
        font-size: 1.25rem;
    }
    
    .separator-content p {
        font-size: 0.875rem;
    }
    
    .separator-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .price {
        font-size: 1.25rem;
    }
    
    .order-button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    /* FAQ Mobile Styles */
    .faq {
        padding: 3rem 0 0 0;
    }
    
    .faq-header h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .faq-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .faq-list {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .faq-item {
        border-radius: 16px;
    }
    
    .faq-item summary {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item summary::after {
        width: 33px;
        height: 33px;
        font-size: 1rem;
        flex-shrink: 0;
        line-height: 1;
    }
    
    .faq-item p {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .feature-text .cta-button,
    .comparison-text .cta-button,
    .cta-text .cta-button {
        margin-top: 1.5rem;
    }
    
    .price-button {
        min-width: 150px;
        padding: 0.5rem 1rem;
    }
    
    .current-price {
        font-size: 1.25rem;
    }
    
    .original-price {
        font-size: 0.875rem;
    }
    
    /* Order Form Mobile Styles */
    .order-form-container {
        padding: 1rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .order-form-container h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .order-form-container p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .discount-info {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .discount-info h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .discount-rules {
        gap: 0.5rem;
    }
    
    .discount-rule {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .step-header {
        font-size: 1rem;
        padding: 0.75rem;
        /*margin-bottom: 1rem;*/
    }
    
    .model-selection {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .model-option {
        width: 100%;
        padding: 0.375rem;
    }
    
    .model-content {
        padding: 1.25rem;
        flex-direction: column;
        height: 320px;
    }
    
    .model-image {
        width: 60px;
        height: 60px;
    }
    

    
    .model-name {
        font-size: 1rem;
        min-height: 2.4rem;
    }
    
    .model-description {
        font-size: 0.8rem;
        min-height: 2.4rem;
    }
    
    .model-price {
        font-size: 1rem;
        min-height: 1.3rem;
    }
    
    .model-quantity {
        margin-top: 1rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .quantity-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0.25rem;
    }
    
    .quantity-controls {
        border-radius: 6px;
        width: 100%;
        max-width: 120px;
        display: flex;
        align-items: center;
        border: 2px solid #e8ecff;
        overflow: hidden;
        background: white;
    }
    
    .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        border: none;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .quantity-input {
        width: 50px;
        height: 32px;
        font-size: 1rem;
        border: none;
        text-align: center;
        font-weight: 600;
        color: #2c3e50;
        background: white;
    }
    
    .form-field {
        gap: 0.25rem;
    }
    
    .form-field label {
        font-size: 0.9rem;
        margin-bottom: 0.125rem;
    }
    
    .delivery-fields {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .delivery-fields input {
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .delivery-fields input:nth-child(1),
    .delivery-fields input:nth-child(2) {
        grid-column: 1;
    }
    
    .order-summary {
        padding: 0 0.75rem 0.75rem 0.75rem;
    }
    
    .summary-row {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    .submit-order-btn {
        margin: 0 0.75rem 0.75rem 0.75rem;
        padding: 1.25rem;
        font-size: 1.125rem;
        min-height: 56px;
        width: calc(100% - 1.5rem);
        box-sizing: border-box;
    }
}

/* Animations */
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.add-to-cart-btn::before {
    animation: shine 3s ease-in-out infinite;
}

/* Focus states for accessibility */
button:focus,
input:focus,
summary:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Phone Validation Styles */
.invalid-phone {
    animation: shake 0.5s ease-in-out;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.3);
}

.valid-phone {
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    color: white !important;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.cookie-text p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
    color: #3498db;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: #5dade2;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
    width: 100%;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
}

.accept-btn {
    background: #27ae60;
    color: white;
}

.accept-btn:hover {
    background: #229954;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.reject-btn {
    background: #e74c3c;
    color: white;
    border: 1px solid #e74c3c;
}

.reject-btn:hover {
    background: #c0392b;
    border-color: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.customize-btn {
    background: #3498db;
    color: white;
    border: 1px solid #3498db;
    font-size: 0.8rem;
    padding: 0.5rem 1.5rem;
}

.customize-btn:hover {
    background: #2980b9;
    border-color: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 16px 16px 0 0;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-modal:hover {
    background: rgba(255,255,255,0.2);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: #e9ecef;
    background: #f8f9fa;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

input:disabled + .toggle-slider {
    background: #95a5a6;
    cursor: not-allowed;
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.cookie-category-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-category-info p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #6c757d;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.save-settings-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-settings-btn:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.accept-all-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-all-btn:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

/* Mobile Responsive for Cookie Consent */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    .cookie-text h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .cookie-text p {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    
        .cookie-actions {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .cookie-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-height: 36px;
        width: 100%;
    }
    
    .customize-btn {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        width: 100%;
    }
    
    .cookie-modal-content {
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .cookie-modal-header {
        padding: 1rem 1.25rem;
    }
    
    .cookie-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .cookie-modal-body {
        padding: 1.25rem;
    }
    
    .cookie-modal-footer {
        padding: 1rem 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-toggle {
        align-self: flex-start;
    }
    
    .cookie-category {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .cookie-category-info h4 {
        font-size: 1rem;
    }
    
    .cookie-category-info p {
        font-size: 0.85rem;
    }
}

/* Desktop cookie consent optimization */
@media (min-width: 769px) {
    .cookie-content {
        padding: 1rem 3rem;
        gap: 2rem;
    }
    
    .cookie-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .cookie-actions {
        flex-direction: row;
        gap: 1rem;
        width: auto;
    }
    
    .cookie-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        min-height: 40px;
        width: auto;
        min-width: 120px;
    }
    
    .customize-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
        width: auto;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .cookie-consent,
    .cookie-content,
    .cookie-btn,
    .cookie-modal-content {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cookie-content {
        border: 2px solid white;
    }
    
    .cookie-btn {
        border: 2px solid currentColor;
    }
    
    .cookie-text a {
        text-decoration: underline;
        color: #87ceeb;
    }
}

/* Focus indicators for accessibility */
.cookie-btn:focus,
.close-modal:focus,
.save-settings-btn:focus,
.accept-all-btn:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Message Popup Styles */
.message-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.message-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.message-header {
    padding: 1.5rem 2rem 1rem 2rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.message-popup.success .message-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.message-popup.error .message-header {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
}

.message-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.message-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.message-body {
    padding: 1.5rem 2rem;
    text-align: center;
}

.message-body p {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

.message-body p:last-child {
    margin-bottom: 0;
}

.message-close {
    width: 100%;
    padding: 1rem 2rem;
    background: #6c757d;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-top: 1px solid #e9ecef;
}

.message-close:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Mobile responsive for message popup */
@media (max-width: 768px) {
    .message-popup {
        padding: 0.5rem;
    }
    
    .message-content {
        max-width: 100%;
        margin: 0 0.5rem;
    }
    
    .message-header {
        padding: 1rem 1.5rem 0.75rem 1.5rem;
    }
    
    .message-header h3 {
        font-size: 1.1rem;
    }
    
    .message-body {
        padding: 1rem 1.5rem;
    }
    
    .message-body p {
        font-size: 0.95rem;
    }
    
    .message-close {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Screen reader support */
.cookie-btn[aria-label] {
    position: relative;
}

.cookie-btn[aria-label]::after {
    content: attr(aria-label);
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Swiper Styles */
.main-swiper {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.main-swiper .swiper-slide {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.thumb-swiper {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    padding: 0 10px;
}

.thumb-swiper .swiper-slide {
    width: 60px !important;
    height: 60px !important;
    aspect-ratio: 1;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thumb-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.thumb-swiper .swiper-slide-thumb-active {
    border-color: #10b981;
    border-width: 3px;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    color: white;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Mobile Responsive Swiper */
@media (max-width: 480px) {
    .main-swiper .swiper-slide img {
        min-height: 250px;
        border-radius: 12px;
    }
    
    .thumb-swiper {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .thumb-swiper .swiper-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        max-width: 100%;
    }
    
    .thumb-swiper .swiper-slide {
        width: 48px !important;
        height: 48px !important;
        border-radius: 6px;
    }
    
    .thumb-swiper .swiper-slide img {
        border-radius: 4px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 32px;
        height: 32px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .thumb-swiper .swiper-slide {
        width: 55px !important;
        height: 55px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .thumb-swiper .swiper-slide {
        width: 58px !important;
        height: 58px !important;
    }
}

@media (min-width: 1024px) {
    .thumb-swiper .swiper-slide {
        width: 60px !important;
        height: 60px !important;
    }
} 