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

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
}

html {
    overflow-x: hidden; /* Clip here, NOT on body – avoids iOS Safari fixed-positioning bug */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    /* overflow-x removed from body intentionally – see html rule above */
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    animation: slideDown 0.6s ease both;
    /* iOS Safari fix: force GPU compositing so the element stays fixed
       when the dynamic address bar shows/hides during scroll */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

@keyframes slideDown {
    from {
        transform: translate3d(0, -100%, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    border-radius: 8px;
    /* border-radius: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(to right, var(--gray-900), var(--gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    padding: 8px;
    align-items: center;
    justify-content: center;
}

.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--blue-600);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-icon-btn:hover, .hamburger-btn:hover {
    color: var(--blue-600);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: 0px;
    background: var(--blue-600);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.nav-links a {
    /*color: var(--gray-700);*/
    color: var(--blue-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;

    display: inline-block;
    padding-bottom: 2px;
    background-image: linear-gradient(var(--blue-600) 0 0);
    background-position: 0 100%; /*OR bottom left*/
    background-size: 0% 2px;
    background-repeat: no-repeat;
    transition: color 0.3s ease, background-size 0.3s, background-position 0s 0.3s; /*change after the size immediately*/
}

.nav-links a:hover {
    color: var(--blue-600);
    background-position: 0% 100%; /*OR bottom right*/
    background-size: 100% 2px;
}

/* Buttons */
.btn {
    /* border-radius: 0; */
    padding: 10px 24px;
    border: none;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

button {
    border-radius: 10px !important;
}

.btn-primary {
    background: linear-gradient(to right, var(--blue-500), var(--blue-600));
    color: white;
}

#proceed-checkout:hover {
    box-shadow: 0 20px 25px -5px rgba(22, 101, 52, 0.3);
    transform: translateY(-2px);
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: #bfdbfe;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-white {
    background: white;
    color: var(--blue-600);
}

.btn-white:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.btn-outline-white {
    background: rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(8px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(59, 130, 246, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 50%, var(--blue-50) 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    /*opacity: 0.05;*/
    /*background-image: radial-gradient(circle at 2px 2px, var(--blue-500) 1px, transparent 0);*/
    background-size: 40px 40px;
}

.hero-gradient-orb {
    position: absolute;
    width: 384px;
    /*height: 384px;*/
    height: 0px;
    border-radius: 50%;
    /* border-radius: 0; */
    filter: blur(80px);
}

/*.hero-gradient-orb.orb-1 {*/
/*    top: 80px;*/
/*    right: 80px;*/
/*    background: rgba(96, 165, 250, 0.2);*/
/*}*/

/*.hero-gradient-orb.orb-2 {*/
/*    bottom: 80px;*/
/*    left: 80px;*/
/*    background: rgba(59, 130, 246, 0.1);*/
/*}*/

.hero-image {
    position: relative;
    right: 0;
    /*top: 64px;*/
    padding-top: 64px;
    /*bottom: 0;*/
    width: 100%;
    display: none;
    max-height: 100vh !important;
}

.hero-image img {
    width: 100%;
    /*height: 100%;*/
    object-fit: contain;
    /*opacity: 0.3;*/
    max-height: 100vh !important;
}

.hero-image-overlay {
    position: absolute;
    /*inset: 0;*/
    /*background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8), transparent);*/
}

.hero-shop-btn {
    display: none;
    /*position: absolute;*/
    /*bottom: 24px;*/
    /*left: 220px;*/
    /*display: inline-flex;*/
    /*align-items: center;*/
    /*gap: 8px;*/
    /*background: linear-gradient(to right, var(--blue-500), var(--blue-600));*/
    /*color: white;*/
    /*padding: 20px 100px;*/
    /*border-radius: 10px;*/
    /*font-size: 22px;*/
    /*font-weight: 600;*/
    /*text-decoration: none;*/
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
    /*z-index: 10;*/
}

.hero-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 128px 24px;
}

.hero-text {
    max-width: 768px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: 9999px;
    /* border-radius: 0; */
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 15px;
    color: var(--blue-700);
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.2s both;
    display: none;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--blue-500);
    border-radius: 50%;
    /* border-radius: 0; */
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.title-line-1 {
    display: inline-block;
    background-image: linear-gradient(to right, var(--gray-900), var(--gray-900), var(--gray-900));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.title-line-2 {
    display: inline-block;
    background: linear-gradient(to right, var(--blue-600), var(--blue-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    background: linear-gradient(to right, var(--blue-600), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 4px;
}

.header-underline {
    display: inline-block;
    padding-bottom: 2px;
    background-image: linear-gradient(#000 0 0);
    background-position: 0 100%; /*OR bottom left*/
    background-size: 0% 2px;
    background-repeat: no-repeat;
    transition: background-size 0.3s, background-position 0s 0.3s; /*change after the size immediately*/
}

.header-underline:hover {
    background-position: 0% 100%; /*OR bottom right*/
    background-size: 100% 2px;
}

/* Sections */
.section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(to right, var(--gray-900), var(--gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 768px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* Products: desktop grid, mobile carousel */
.products-grid-desktop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.products-carousel-mobile { display: none; }

@media (max-width: 768px) {
    .products-grid-desktop { display: none !important; }
    .products-carousel-mobile { display: block; padding-bottom: 60px; }
}

/* 2-cards-per-slide inner row */
.carousel-slide-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Compact card styles on mobile (inside 2-per-slide carousel) */
@media (max-width: 768px) {
    .product-card {
        padding: 12px;
        border-radius: 12px;
    }
    .product-image {
        height: 130px !important;
        margin-bottom: 12px;
        border-radius: 8px;
    }
    .product-name {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .product-description {
        font-size: 12px;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .product-specs {
        gap: 4px;
        margin-bottom: 12px;
    }
    .spec-badge {
        font-size: 14px;
        padding: 3px 8px;
    }
    .product-cta {
        font-size: 12px;
        padding: 8px;
    }
}

.product-card {
    position: relative;
    background: white;
    border-radius: 16px;
    /* border-radius: 0; */
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    cursor: pointer;
}

.product-card:nth-child(1) {
    animation-delay: 0s;
}

.product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.product-card:nth-child(3) {
    animation-delay: 0.2s;
}

.product-card:nth-child(4) {
    animation-delay: 0.3s;
}

.product-card:nth-child(5) {
    animation-delay: 0.4s;
}

.product-card:nth-child(6) {
    animation-delay: 0.5s;
}

.product-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.product-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-50), white);
    border-radius: 16px;
    /* border-radius: 0; */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-gradient {
    opacity: 1;
}

.product-content {
    position: relative;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 160px;
    height: 240px;
    border-radius: 12px;
    /* border-radius: 0; */
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: initial;
}

.product-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    border-radius: 12px;
    /* border-radius: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
    min-height: 64px;
    text-align: center;
}

.product-description {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 68px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.spec-badge {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 12px;
    border-radius: 9999px;
    /* border-radius: 0; */
    font-size: 14px;
    font-weight: 600;
}

.spec-badge.spec-primary {
    background: var(--blue-50);
    color: var(--blue-700);
}

.product-cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    /*color: var(--blue-600);*/
    color: var(--white);
    background: var(--blue-600);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 10px;
}

.product-cta:hover {
    color: var(--blue-100);
}

.product-cta svg {
    transition: transform 0.3s ease;
}

.product-cta:hover svg {
    transform: translateX(4px);
}

/* Quality Section */
.quality-section {
    background: linear-gradient(135deg, var(--blue-50), white);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

/* Desktop shows grid, mobile shows carousel */
.quality-carousel-mobile { display: none; }
.quality-grid-desktop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.benefits-carousel-mobile { display: none; }
.benefits-grid-desktop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .quality-carousel-mobile { display: block; padding-bottom: 48px; padding-bottom: 0px;}
    .quality-grid-desktop { display: none !important; }
    .benefits-carousel-mobile { display: block; padding-bottom: 48px; padding-bottom: 0px;}
    .benefits-grid-desktop { display: none !important; }
    .carousel-indicators { display: none !important; }
    .carousel-controls-row { display: none !important; }
}

/* Bootstrap Carousel Minimal CSS */
.carousel { position: relative; }
.carousel-inner { position: relative; width: 100%; overflow: hidden; }
.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev { display: block; }
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end { transform: translateX(100%); }
.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start { transform: translateX(-100%); }

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -40px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    margin-right: 6px;
    margin-left: 6px;
    text-indent: -999px;
    cursor: pointer;
    background-color: var(--blue-600);
    background-clip: padding-box;
    border: 0;
    opacity: .3;
    transition: opacity .6s ease;
}
.carousel-indicators .active { opacity: 1; }

/* Carousel prev/next arrow controls */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--blue-600);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(59,130,246,0.35);
    padding: 0;
}
.carousel-control-prev { left: 0; }
.carousel-control-next { right: 0; }
.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; transform: translateY(-50%) scale(1.08); }

/* Inline bottom-centered arrows variant */
.carousel-controls-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}
.carousel-control-inline {
    position: static;
    transform: none;
}
.carousel-control-inline:hover { transform: scale(1.08); }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.quality-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 16px;
    /* border-radius: 0; */
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.quality-card:nth-child(1) {
    animation-delay: 0s;
}

.quality-card:nth-child(2) {
    animation-delay: 0.1s;
}

.quality-card:nth-child(3) {
    animation-delay: 0.2s;
}

.quality-card:nth-child(4) {
    animation-delay: 0.3s;
}

.quality-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.quality-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    border-radius: 16px;
    /* border-radius: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.quality-card:hover .quality-icon {
    transform: scale(1.1) rotate(5deg);
}

.quality-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.quality-description {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    min-height: 68px;
}

/* Benefits Section */
.benefits-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 24px;
}

.benefit-card {
    position: relative;
    background: linear-gradient(135deg, white, rgba(239, 246, 255, 0.3));
    border-radius: 16px;
    /* border-radius: 0; */
    padding: 24px;
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.benefit-card:nth-child(1) {
    animation-delay: 0s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.3s;
}

.benefit-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    border-radius: 12px;
    /* border-radius: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.benefit-description {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    min-height: 68px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--gray-50), white);
}

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

.testimonial-card {
    background: white;
    border-radius: 16px;
    /* border-radius: 0; */
    padding: 32px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    color: var(--blue-500);
    margin-bottom: 16px;
}

.testimonial-quote {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.author-position {
    font-size: 14px;
    color: var(--gray-600);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 46px 0;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    overflow: hidden;
}
.cta-section-2 {
    position: relative;
    padding: 46px 0;
    background-image: url('/images/mission-background.jpg') !important;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.cta-title-2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgb(205, 227, 255);
    margin-bottom: 15px;
}

.cta-subtitle-2 {
    font-size: 14px;
    color: color: var(--gray-900);
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-about {
    max-width: 400px;
}

.footer-description {
    font-size: 14px;
    color: var(--gray-600);
    margin: 16px 0;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
}

.footer-contact svg {
    color: var(--gray-500);
}

.footer-contact a {
    font-size: 14px;
    color: var(--blue-600);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--blue-700);
}

.footer-links h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue-600);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-600);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: var(--gray-200);
    border-radius: 8px;
    /* border-radius: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--gray-600);
}

.social-icon:hover {
    background: var(--blue-500);
    color: white;
}

.rg-text {
    font-size: 12px;
    font-weight: 700;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
}

.sticky-cta .btn {
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.4);
    border-radius: 9999px;
    /* border-radius: 0; */
    padding: 12px 24px;
}

.sticky-cta .btn:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-shop-btn {
        position: absolute;
        bottom: 60px;
        left: 90px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(to right, var(--blue-500), var(--blue-600));
        color: white;
        padding: 12px 50px;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        z-index: 10;
    }

    .hero-image {
        display: block;
    }

    .hamburger-btn {
        color: var(--blue-600);
        display: flex;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
    }

    .nav-links a {
        color: var(--blue-700) !important;
    }

    body.menu-open .nav-links,
    .nav-links.active {
        display: flex;
        animation: fadeInMenu 0.3s ease-out forwards;
    }

    body.menu-open .nav-links a,
    .nav-links.active a {
        font-size: 24px;
        font-weight: 600;
        color: var(--gray-900);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .logo, .nav-actions {
        position: relative;
        z-index: 1000;
    }

    /* Vertically center nav-container inside fixed navbar */
    .navbar {
        display: flex;
        align-items: center;
    }

    .nav-container {
        flex: 1;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        position: relative;
        min-height: 64px;
        padding-left: 10px;
        padding-right: 10px;
    }

    /*
     * Flatten nav-actions children into nav-container's flex context
     * so we can order: hamburger | [logo] | lang-switch | cart
     */
    .nav-actions {
        display: contents;
    }

    /* 1 — hamburger on the far left */
    .hamburger-btn {
        order: 1;
        position: relative;
        z-index: 1001;
        flex-shrink: 0;
        padding-left: 12px;
        padding-right: 12px;
    }

    /* 2 — logo absolutely centered */
    .logo {
        order: 2;
        position: relative;
        left: 19%;
        transform: translateX(-19%);
        z-index: 1001;
    }

    /* 3 — language switcher */
    #lang-switch-btn {
        order: 3;
        margin-left: auto;
        position: relative;
        z-index: 1001;
        padding-left: 12px;
        padding-right: 12px;
    }

    /* 4 — cart */
    .btn-cart {
        order: 4;
        position: relative;
        z-index: 1001;
        padding-left: 12px;
        padding-right: 12px;
    }
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .products-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-title {
        font-size: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .sticky-cta {
        display: none;
    }

    .hero-shop-btn {
        position: absolute;
        bottom: 24px;
        left: 30px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(to right, var(--blue-500), var(--blue-600));
        color: white;
        padding: 8px 16px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        z-index: 10;
    }
}

@media (min-width: 1024px) {
    .hero-image {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-content {
        padding: 90px 16px;
    }

    .section {
        padding: 48px 0;
        padding-top: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-card {
        padding: 12px;
    }

    .quality-card {
        padding: 24px;
    }

    .benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-title {
        font-size: 28px;
    }

    .mobile-slider-active {
        display: block !important;
        position: relative;
    }

    .mobile-slider-active > * {
        display: none !important;
    }

    .mobile-slider-active > .active-slide {
        display: flex !important;
        animation: slideFadeIn 1s ease forwards;
    }

    @keyframes slideFadeIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* ─── Language Switcher ─── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--gray-100);
    border-radius: 8px;
    padding: 2px;
    margin-right: 4px;
}

.lang-btn {
    background: none !important;
    border: none !important;
    padding: 5px 10px !important;
    font-size: 12px !important;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    border-radius: 6px !important;
    transition: all 0.25s ease;
    line-height: 1;
    letter-spacing: 0.5px;
}

.lang-btn.active {
    background: white !important;
    color: var(--blue-600);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lang-btn:hover:not(.active) {
    color: var(--gray-900);
}

@media (max-width: 768px) {
    .lang-switcher {
        order: -1;
        margin-right: 0;
    }
}
