/** Shopify CDN: Minification failed

Line 168:69 Unexpected "/"

**/
/* ==========================================================================
   DROPDOWN MENU — Luxury Version
   ========================================================================== */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.dropdown-toggle:after {
    content: '▼';
    font-size: 9px;
    transition: transform 0.3s;
    opacity: 0.6;
}

.dropdown:hover .dropdown-toggle {
    color: #333;
}

.dropdown:hover .dropdown-toggle:after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 800px;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f5f1e8;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #f5f1e8;
}

.dropdown-column {
    padding: 25px 20px;
    border-right: 1px solid #f5f1e8;
}

.dropdown-column:last-child {
    border-right: none;
}

.dropdown-column-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    margin-bottom: 18px;
}

.dropdown-item-link {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: #666;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    position: relative;
}

.dropdown-item-link:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #7ba87b;
    transition: width 0.3s;
}

.dropdown-item-link:hover {
    color: #7ba87b;
    padding-left: 8px;
}

.dropdown-item-link:hover:before {
    width: 4px;
}

.dropdown-divider {
    height: 1px;
    background: #f5f1e8;
    margin: 15px 0;
}

.dropdown-footer {
    padding: 18px 30px;
    background: #fafaf9;
    text-align: center;
}

.dropdown-footer-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7ba87b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.dropdown-footer-link:hover {
    color: #6a976a;
}

.header-icons {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-icon {
    font-size: 20px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.cart-icon:hover {
    color: #5a7c5a;
}
/* FIX: removed stray */ that was here — it broke comment parsing */


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: #f5f1e8;
    color: #7ba87b;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #333;
}

.hero-title-accent {
    color: #7ba87b;
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;  /* FIX: added flex-wrap so buttons wrap on small screens */
}

.btn-primary {
    background: #7ba87b;
    color: white;
    padding: 16px 35px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #6a976a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 168, 123, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #7ba87b;
    padding: 16px 35px;
    border: 2px solid #7ba87b;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #7ba87b;
    color: white;
}

.hero-image {
    background: #f5f1e8;
    border-radius: 30px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    max-width: 60%;
    height: auto;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;  /* FIX: prevent overflow on small screens */
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 600;
    color: #7ba87b;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #999;
}


/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */

.products-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    font-size: 16px;
    color: #999;
}

.product-card:hover {
    border-color: #7ba87b;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(123, 168, 123, 0.15);
}


/* ==========================================================================
   BLOG SECTION — FIRST DEFINITION (4-column layout)
   NOTE: Overridden by the second blog-section block below.
         Commented out to avoid cascade conflicts; restore if needed.
   ========================================================================== */

/* .blog-section-v1 {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.blog-grid-v1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-card-v1 {
    background: #f5f1e8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card-v1:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-image {
    background: #f5f1e8;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #7ba87b;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
    background: #f5f1e8;
}

.blog-title-v1 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
}

.read-more {
    color: #7ba87b;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.read-more:hover {
    gap: 8px;
}

.view-all-btn {
    display: block;
    margin: 40px auto 0;
    padding: 12px 30px;
    background: #7ba87b;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.view-all-btn:hover {
    background: #6a976a;
} */


/* ==========================================================================
   BLOG SECTION — SECOND DEFINITION (3-column layout, active)
   ========================================================================== */

.blog-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-title {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
}

.blog-subtitle {
    font-size: 16px;
    color: #666;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.blog-filter-btn {
    padding: 10px 24px;
    background: white;
    border: 2px solid #e5dfd5;
    border-radius: 25px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.blog-filter-btn:hover {
    border-color: #7ba87b;
    color: #7ba87b;
}

.blog-filter-btn.active {
    background: #7ba87b;
    border-color: #7ba87b;
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #7ba87b;
}

.blog-card-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(123, 168, 123, 0.95);
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #999;
}

.blog-card-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 19px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-cta {
    color: #7ba87b;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.blog-card:hover .blog-card-cta {
    gap: 10px;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   STICKS / OFFERS SECTION — FIRST DEFINITION (green gradient bg)
   NOTE: Overridden by the second block below.
         Commented out to avoid cascade conflicts; restore if needed.
   ========================================================================== */

/* .sticks-section-v1 {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.sticks-header-v1 {
    text-align: center;
    margin-bottom: 50px;
}

.sticks-title-v1 {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
}

.sticks-subtitle-v1 {
    font-size: 16px;
    color: #666;
}

.sticks-container-v1 {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4e8d4 100%);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.sticks-container-v1::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.sticks-label {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    color: #7ba87b;
    margin-bottom: 30px;
}

.sticks-grid-v1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.stick-card-v1 {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.stick-card-v1:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: #7ba87b;
}

.stick-card-v1.featured {
    background: linear-gradient(135deg, #fff 0%, #f9fff9 100%);
    border: 2px solid #7ba87b;
    box-shadow: 0 8px 25px rgba(123, 168, 123, 0.15);
}

.stick-badge-v1 {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #7ba87b 0%, #6a976a 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stick-duration-v1 {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.stick-discount {
    font-size: 14px;
    color: #7ba87b;
    font-weight: 600;
    margin-bottom: 20px;
}

.stick-price-original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.stick-price-current {
    font-size: 32px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.stick-btn-v1 {
    width: 100%;
    background: #7ba87b;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.stick-btn-v1:hover {
    background: #6a976a;
    transform: translateY(-2px);
}

.stick-card-v1.featured .stick-btn-v1 {
    background: linear-gradient(135deg, #7ba87b 0%, #6a976a 100%);
    box-shadow: 0 4px 12px rgba(123, 168, 123, 0.3);
}

@media (max-width: 768px) {
    .sticks-grid-v1 {
        grid-template-columns: 1fr;
    }
} */


/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
    background: #7ba87b;
    padding: 60px 0;
    margin: 0;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item {
    text-align: center;
    color: white;
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}


/* ==========================================================================
   EXPERTISE SECTION — commented-out variant
   ========================================================================== */

/* .expertise-section {
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    padding: 80px 40px;
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
} */

.expertise-header {
    text-align: center;
    margin-bottom: 60px;
}

.expertise-header h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.expertise-header p {
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.expertise-item {
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
}

.expertise-item:hover {
    transform: translateY(-5px);
}

.expertise-image-box {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5dfd5;
}

/* .expertise-image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a8cfc1 0%, #8fb9ab 100%);
} */

.expertise-emoji,
.expertise-emoji img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-title {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .expertise-image-box {
        height: 180px;
    }

    .expertise-emoji {
        font-size: 50px;
    }
}


/* ==========================================================================
   STICKS / PACKS SECTION — SECOND DEFINITION (white bg, active)
   ========================================================================== */

.sticks-section {
    background: white;
    padding: 0 40px 80px 40px;
}

.sticks-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sticks-header {
    text-align: center;
    margin-bottom: 50px;
}

.sticks-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a8cfc1;
    font-weight: 600;
    margin-bottom: 15px;
}

.sticks-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.sticks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stick-card {
    background: white;
    border: 2px solid #e5dfd5;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.stick-card:first-child {
    background: linear-gradient(135deg, #a8cfc1 0%, #8fb9ab 100%);
    border-color: #a8cfc1;
}

.stick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(168, 207, 193, 0.2);
}

.stick-card:first-child:hover {
    box-shadow: 0 12px 30px rgba(168, 207, 193, 0.35);
}

.stick-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.stick-duration {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.stick-card:first-child .stick-duration {
    color: white;
    opacity: 0.95;
}

.stick-price {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.stick-card:first-child .stick-price {
    color: white;
}

.stick-old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 20px;
}

.stick-card:first-child .stick-old-price {
    color: white;
    opacity: 0.7;
}

.stick-btn {
    background: #333;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.stick-card:first-child .stick-btn {
    background: white;
    color: #a8cfc1;
}

.stick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 968px) {
    .sticks-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}


/* ==========================================================================
   VIDEO SECTION — FIRST DEFINITION (pink gradient)
   NOTE: Overridden by the second (green) block below.
         Commented out to avoid cascade conflicts; restore if needed.
   ========================================================================== */

/* .video-section-v1 {
    background: linear-gradient(135deg, #f5a9b8 0%, #f9c4c9 50%, #ffd4d8 100%);
    padding: 80px 40px;
    margin: 80px 0;
}

.video-container-v1 {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
}

.video-content-v1 {
    color: white;
}

.video-title-v1 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.video-description-v1 {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.video-btn {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #f5a9b8;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}

.video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.video-grid-v1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.video-card-v1 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    aspect-ratio: 9/16;
}

.video-card-v1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-thumbnail-v1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f1e8 0%, #f9f7f4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.video-play-btn-v1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-play-btn-v1::before {
    content: "▶";
    color: #f5a9b8;
    font-size: 20px;
    margin-left: 3px;
}

.video-card-v1:hover .video-play-btn-v1 {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (max-width: 1024px) {
    .video-container-v1 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-grid-v1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid-v1 {
        grid-template-columns: 1fr;
    }
} */


/* ==========================================================================
   VIDEO SECTION — SECOND DEFINITION (green gradient, active)
   ========================================================================== */

.video-section {
    background: linear-gradient(135deg, #a8d5a8 0%, #7ba87b 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.video-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.video-content {
    color: white;
}

.video-title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.video-subtitle {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.video-cta {
    display: inline-block;
    background: white;
    color: #7ba87b;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}

.video-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: #f9f7f4;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    aspect-ratio: 9/16;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #7ba87b;
    transition: all 0.3s;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: white;
}

.video-caption {
    text-align: center;
    padding: 12px 0 5px 0;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.video-description {
    text-align: center;
    padding: 0 10px 12px 10px;
    font-size: 11px;
    color: #999;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .video-container {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-title {
        font-size: 32px;
    }
}


/* ==========================================================================
   HAIR CONCERNS SECTION — commented-out wrapper variant
   ========================================================================== */

/* .concerns-section {
    background: white;
    padding: 80px 0;
    margin: 100px 0;
}

.concerns-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
} */

.concern-header {
    margin-bottom: 30px;
}

.concerns-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.concerns-intro-text {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-top: 12px;
}

.concerns-grid {
    display: grid;
    gap: 20px;
}

.concern-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.concern-card:hover {
    border-color: #7ba87b;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(123, 168, 123, 0.12);
}

.concern-icon {
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s;
}

.concern-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.concern-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

.concern-count {
    font-size: 12px;
    color: #7ba87b;
    font-weight: 500;
}

.concern-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #7ba87b;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.concerns-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.concerns-tabs::-webkit-scrollbar {
    height: 4px;
}

.concerns-tabs::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 2px;
}

.concerns-tabs::-webkit-scrollbar-thumb {
    background: #7ba87b;
    border-radius: 2px;
}

.concern-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 14px;
    color: #666;
}

.concern-tab:hover,
.concern-tab.active {
    border-color: #7ba87b;
    background: #f9f7f4;
    color: #333;
}

.concern-tab-icon {
    font-size: 20px;
}

.concern-tab-count {
    background: #f0f0f0;
    color: #7ba87b;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.concern-tab.active .concern-tab-count {
    background: #7ba87b;
    color: white;
}


/* ==========================================================================
   CONCERN MODAL — FIRST DEFINITION (z-index: 4000)
   NOTE: Overridden by the second block below (z-index: 2000).
         Commented out to avoid cascade conflicts; restore if needed.
   ========================================================================== */

/* .concern-modal-v1 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 4000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
    overflow-y: auto;
}

.concern-modal-v1.active {
    display: flex;
}

.concern-modal-content-v1 {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease-out;
} */

.concern-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concern-modal-close:hover {
    background: #e5e5e5;
    transform: rotate(90deg);
}

.concern-modal-header {
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    padding: 50px 40px 40px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.concern-modal-icon {
    display: inline-block;
    margin: auto;
    margin-bottom: 15px;
}

.concern-modal-title {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
}

.concern-modal-subtitle {
    font-size: 16px;
    color: #666;
}

.concern-modal-body {
    padding: 40px;
}

.concern-section {
    margin-bottom: 35px;
}

.concern-section:last-child {
    margin-bottom: 0;
}

.concern-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5dfd5;
}

.concern-symptoms {
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    border: 2px solid #e5dfd5;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.concern-symptoms-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.concern-symptoms-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4a574 0%, #c49563 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.concern-symptoms-title-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.concern-symptoms-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.concern-symptoms-list li {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.concern-symptoms-list li::marker {
    color: #7ba87b;
    font-size: 18px;
    font-weight: bold;
}

.concern-symptoms-icon-large {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a574 0%, #c49563 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.concern-symptoms-header-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.concern-symptoms-header-text p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.concern-symptoms-content {
    padding: 25px 30px;
}

.concern-symptoms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.concern-symptom-item {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.concern-symptom-item:hover {
    background: #fff9f0;
    border-color: #d4a574;
}

.concern-symptom-icon {
    font-size: 18px;
}

.concern-symptom-text {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.concern-symptoms p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.concern-causes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.concern-cause-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.concern-cause-item:hover {
    border-color: #7ba87b;
    transform: translateX(5px);
}

.concern-cause-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7ba87b 0%, #8fb58f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 14px;
}

.concern-cause-text {
    flex: 1;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.concern-causes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.concern-causes li {
    padding: 0;
    margin: 0;
}

.concern-blog-card {
    background: white;
    border: 2px solid #e5dfd5;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    margin-bottom: 10px;
}

.concern-blog-card:hover {
    border-color: #7ba87b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(123, 168, 123, 0.12);
}

.concern-blog-image {
    width: 180px;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.concern-blog-card-content {
    padding: 25px;
}

.concern-blog-badge {
    display: inline-block;
    background: #7ba87b;
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.concern-blog-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.concern-blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.concern-blog-cta {
    color: #7ba87b;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.concern-product-card {
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 20px;
}

.concern-product-card:last-child {
    margin-bottom: 0;
}

.concern-product-image {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    flex-shrink: 0;
}

.concern-product-info {
    flex: 1;
}

.concern-product-name {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.concern-product-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.concern-product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.concern-product-stars {
    color: #f5a623;
    font-size: 16px;
    letter-spacing: 2px;
}

.concern-product-rating-text {
    font-size: 13px;
    color: #999;
}

.concern-product-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.concern-product-price {
    font-size: 24px;
    font-weight: 600;
    color: #7ba87b;
}

.concern-product-btn {
    background: #7ba87b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.concern-product-btn:hover {
    background: #6a976a;
    transform: translateY(-2px);
}


/* ==========================================================================
   BLOG MINI SECTION
   ========================================================================== */

.blog-mini-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.blog-mini-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-mini-title {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
}

.blog-mini-subtitle {
    font-size: 16px;
    color: #666;
}

.blog-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.blog-mini-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid #f0f0f0;
}

.blog-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #7ba87b;
}

.blog-mini-card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.blog-mini-card-content {
    padding: 20px;
}

.blog-mini-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-mini-card-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}

.blog-mini-card-cta {
    color: #7ba87b;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-mini-view-all {
    text-align: center;
}

.blog-mini-btn {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #7ba87b;
    border: 2px solid #7ba87b;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-mini-btn:hover {
    background: #7ba87b;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .blog-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-mini-grid {
        grid-template-columns: 1fr;
    }

    .concern-product-card {
        flex-direction: column;
        text-align: center;
    }
}


/* ==========================================================================
   CTA SECTION — Quiz & Guide
   ========================================================================== */

.cta-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.cta-card {
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    border: 2px solid #e5dfd5;
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-card:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123, 168, 123, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(123, 168, 123, 0.15);
    border-color: #7ba87b;
}

.cta-icon {
    font-size: 42px;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7ba87b 0%, #8fb58f 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(123, 168, 123, 0.3);
}

.cta-title {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-features {
    display: none; /* Removed to save space */
}

.cta-btn {
    background: linear-gradient(135deg, #7ba87b 0%, #6a976a 100%);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(123, 168, 123, 0.25);
}

.cta-btn:hover {
    background: linear-gradient(135deg, #6a976a 0%, #5a865a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(123, 168, 123, 0.35);
}

.cta-btn-icon {
    font-size: 16px;
    transition: transform 0.3s;
}

.cta-btn:hover .cta-btn-icon {
    transform: translateX(3px);
}

.cta-time {
    font-size: 12px;
    color: #999;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}


/* ==========================================================================
   ROUTINE MODAL
   ========================================================================== */

.routine-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3500;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
    overflow-y: auto;
}

.routine-modal.active {
    display: flex;
}

.routine-container {
    background: white;
    border-radius: 25px;
    width: 95%;
    max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease-out;
    margin: 20px;
}

.routine-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.routine-close:hover {
    background: #7ba87b;
    color: white;
    transform: rotate(90deg);
}

.routine-header {
    background: linear-gradient(135deg, #7ba87b 0%, #8fb58f 100%);
    padding: 50px 40px;
    text-align: center;
    color: white;
    border-radius: 25px 25px 0 0;
}

.routine-header-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.routine-header-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 10px;
}

.routine-header-subtitle {
    font-size: 16px;
    opacity: 0.95;
}

.routine-content {
    padding: 40px;
}

.routine-section {
    margin-bottom: 40px;
}

.routine-section-title {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f5f1e8;
}

.routine-products-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.routine-product-item {
    background: #f9f7f4;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.routine-product-item:hover {
    border-color: #7ba87b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(123, 168, 123, 0.12);
}

.routine-product-image {
    font-size: 50px;
    margin-bottom: 15px;
}

.routine-product-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.routine-product-usage {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}

.routine-product-price {
    font-size: 20px;
    font-weight: 600;
    color: #7ba87b;
    margin-bottom: 12px;
}

.routine-product-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.routine-product-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #7ba87b;
}

.routine-steps {
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    border-radius: 15px;
    padding: 30px;
}

.routine-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5dfd5;
}

.routine-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.routine-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #7ba87b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.routine-step-content h4 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.routine-step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.routine-bundle-summary {
    background: white;
    border: 2px solid #7ba87b;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.routine-bundle-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.routine-bundle-prices {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.routine-bundle-total {
    font-size: 14px;
    color: #999;
}

.routine-bundle-total .old-price {
    text-decoration: line-through;
    font-size: 16px;
    margin-right: 10px;
}

.routine-bundle-discount {
    font-size: 28px;
    font-weight: 600;
    color: #7ba87b;
}

.routine-bundle-savings {
    text-align: center;
    font-size: 14px;
    color: #7ba87b;
    margin-bottom: 20px;
    font-weight: 500;
}

.routine-cta-buttons {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.routine-add-cart {
    background: linear-gradient(135deg, #7ba87b 0%, #6a976a 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(123, 168, 123, 0.3);
}

.routine-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(123, 168, 123, 0.4);
}

.routine-save-later {
    background: white;
    color: #7ba87b;
    border: 2px solid #7ba87b;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.routine-save-later:hover {
    background: #f9f7f4;
}


/* ==========================================================================
   SHOPPING CART SIDEBAR
   ========================================================================== */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    z-index: 6000;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5999;
}

.cart-overlay.active {
    display: block;
}

.cart-header {
    padding: 25px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f7f4;
}

.cart-title {
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    transition: transform 0.3s;
}

.cart-close-btn:hover {
    transform: rotate(90deg);
    color: #333;
}

.cart-free-shipping {
    padding: 20px 25px;
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    border-bottom: 1px solid #e5dfd5;
}

.cart-shipping-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    text-align: center;
}

.cart-shipping-amount {
    font-weight: 600;
    color: #7ba87b;
}

.cart-progress-bar {
    width: 100%;
    height: 8px;
    background: #e5dfd5;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.cart-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7ba87b 0%, #8fb58f 100%);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.cart-shipping-message {
    font-size: 12px;
    color: #7ba87b;
    text-align: center;
    font-weight: 500;
}

.cart-items {
    padding: 20px 25px;
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    background: #f5f1e8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 15px;
    color: #7ba87b;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.cart-qty-btn {
    width: 25px;
    height: 25px;
    border: 1px solid #e5e5e5;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.cart-qty-btn:hover {
    border-color: #7ba87b;
    color: #7ba87b;
}

.cart-qty-number {
    font-size: 13px;
    color: #666;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

.cart-recommended {
    padding: 15px 25px;
    background: #f9f7f4;
    border-top: 2px solid #e5dfd5;
    border-bottom: 2px solid #e5dfd5;
}

.cart-recommended-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
}

.cart-recommended-slider {
    position: relative;
    overflow: hidden;
    padding: 0 45px;
}

.cart-recommended-container {
    display: flex;
    transition: transform 0.4s ease;
}

.cart-recommended-item {
    min-width: 100%;
    background: white;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    border: 1px solid #e5dfd5;
    transition: all 0.3s;
}

.cart-recommended-item:hover {
    border-color: #d4a574;
    box-shadow: 0 2px 6px rgba(212, 165, 116, 0.1);
}

.cart-recommended-image {
    font-size: 28px;
    margin-bottom: 8px;
}

.cart-recommended-name {
    font-size: 12px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 1.2;
}

.cart-recommended-price {
    font-size: 13px;
    font-weight: 600;
    color: #7ba87b;
    margin-bottom: 8px;
}

.cart-recommended-add {
    background: #d4a574;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-weight: 500;
}

.cart-recommended-add:hover {
    background: #c49563;
    transform: translateY(-2px);
}

.cart-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #d4a574;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.cart-slider-arrow:hover {
    background: #c49563;
    transform: translateY(-50%) scale(1.1);
}

.cart-slider-arrow-left {
    left: 5px;
}

.cart-slider-arrow-right {
    right: 5px;
}

.cart-summary {
    padding: 25px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.cart-summary-label {
    color: #666;
}

.cart-summary-value {
    font-weight: 500;
    color: #333;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid #e5dfd5;
    font-size: 18px;
    font-weight: 600;
}

.cart-total-label {
    color: #333;
}

.cart-total-value {
    color: #7ba87b;
}

.cart-checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #7ba87b 0%, #6a976a 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(123, 168, 123, 0.3);
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(123, 168, 123, 0.4);
}

.cart-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-top: 15px;
    padding: 0;
    font-size: 12px;
    color: #999;
}

.cart-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-trust-item span:first-child {
    font-size: 14px;
}

.cart-empty {
    padding: 60px 25px;
    text-align: center;
}

.cart-empty-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.cart-empty-text {
    font-size: 16px;
    color: #999;
    margin-bottom: 25px;
}

.cart-empty-btn {
    background: #7ba87b;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-empty-btn:hover {
    background: #6a976a;
}


/* ==========================================================================
   PROMO POPUP — Timed
   ========================================================================== */

.promo-popup {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #7ba87b 0%, #8fb58f 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(123, 168, 123, 0.4);
    z-index: 2000;
    max-width: 380px;
    animation: slideInRight 0.5s ease-out;
}

.promo-popup.active {
    display: block;
}

.promo-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.promo-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.promo-popup-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.promo-popup-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.promo-popup-text {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.95;
}

.promo-popup-code {
    background: white;
    color: #7ba87b;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
    border: 2px dashed rgba(123, 168, 123, 0.3);
}

.promo-popup-validity {
    font-size: 12px;
    text-align: center;
    opacity: 0.9;
}


/* ==========================================================================
   EXIT INTENT POPUP
   ========================================================================== */

.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 4000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.exit-popup.active {
    display: flex;
}

.exit-popup-content {
    background: white;
    border-radius: 25px;
    max-width: 550px;
    width: 90%;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease-out;
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.exit-popup-close:hover {
    background: #e5e5e5;
    transform: rotate(90deg);
}

.exit-popup-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.exit-popup-title {
    font-size: 28px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
}

.exit-popup-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.exit-popup-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 15px;
    transition: border 0.3s;
    box-sizing: border-box; /* FIX: prevent overflow on mobile */
}

.exit-popup-input:focus {
    outline: none;
    border-color: #7ba87b;
}

.exit-popup-btn {
    width: 100%;
    background: #7ba87b;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.exit-popup-btn:hover {
    background: #6a976a;
    transform: translateY(-2px);
}

.exit-popup-decline {
    font-size: 12px;
    color: #999;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s;
}

.exit-popup-decline:hover {
    color: #666;
}


/* ==========================================================================
   LOADING STATES & FEEDBACK
   ========================================================================== */

.loading-spinner {
    border: 3px solid #f0f0f0;
    border-top: 3px solid #7ba87b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #7ba87b;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(123, 168, 123, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5000;
    animation: slideInRight 0.4s ease-out;
    font-size: 14px;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-icon {
    font-size: 24px;
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #7ba87b;
    animation: confetti-fall 3s linear;
    pointer-events: none;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.button-loading {
    position: relative;
    pointer-events: none;
    color: transparent !important;
}

.button-loading:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.checkmark-animation {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7ba87b;
    color: white;
    text-align: center;
    line-height: 20px;
    animation: checkmarkPop 0.5s ease-out;
}

@keyframes checkmarkPop {
    0%   { transform: scale(0); }
    50%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}


/* ==========================================================================
   QUIZ MODAL
   ========================================================================== */

.quiz-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.quiz-modal.active {
    display: flex;
}

.quiz-container {
    background: white;
    border-radius: 25px;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease-out;
}

.quiz-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.quiz-close:hover {
    background: #7ba87b;
    color: white;
    transform: rotate(90deg);
}

.quiz-progress {
    background: #f5f1e8;
    height: 6px;
    position: relative;
}

.quiz-progress-bar {
    background: linear-gradient(90deg, #7ba87b, #a8c5a8);
    height: 100%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.quiz-content {
    padding: 50px 40px;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.3s;
}

.quiz-question {
    font-size: 26px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.quiz-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 35px;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.quiz-option {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quiz-option:hover {
    border-color: #7ba87b;
    background: #f9f7f4;
    transform: translateX(5px);
}

.quiz-option.selected {
    border-color: #7ba87b;
    background: #f9f7f4;
}

.quiz-option-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.quiz-option-text {
    flex: 1;
}

.quiz-option-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.quiz-option-desc {
    font-size: 13px;
    color: #999;
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    gap: 15px;
}

.quiz-btn {
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
}

.quiz-btn-back {
    background: #f0f0f0;
    color: #666;
}

.quiz-btn-back:hover {
    background: #e5e5e5;
}

.quiz-btn-next {
    background: #7ba87b;
    color: white;
}

.quiz-btn-next:hover {
    background: #6a976a;
    transform: translateY(-2px);
}

.quiz-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quiz-result {
    text-align: center;
}

.quiz-result-icon {
    font-size: 80px;
    margin-bottom: 25px;
}

.quiz-result-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #333;
}

.quiz-result-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.quiz-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.quiz-product-card {
    background: #f9f7f4;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.quiz-product-image {
    font-size: 50px;
    margin-bottom: 15px;
}

.quiz-product-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.quiz-product-price {
    font-size: 20px;
    font-weight: 600;
    color: #7ba87b;
    margin-bottom: 12px;
}

.quiz-product-btn {
    background: #7ba87b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.quiz-product-btn:hover {
    background: #6a976a;
}


/* ==========================================================================
   CONCERN MODAL — SECOND DEFINITION (z-index: 2000, active)
   ========================================================================== */

.concern-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.concern-modal.active {
    display: flex;
}

.concern-modal-content {
    background: white;
    border-radius: 25px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease-out;
}


/* ==========================================================================
   SHARED ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* ==========================================================================
   MODAL — generic
   ========================================================================== */

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: #7ba87b;
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 40px 30px;
    text-align: center;
    border-bottom: 2px solid #f5f1e8;
}

.modal-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.modal-title {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 16px;
    color: #666;
}

.modal-body {
    padding: 40px;
}

.modal-recommendation {
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #7ba87b;
}

.recommendation-badge {
    display: inline-block;
    background: #7ba87b;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.recommendation-product {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 25px;
    align-items: center;
}

.recommendation-image {
    background: white;
    border-radius: 15px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.recommendation-info h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.recommendation-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.recommendation-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    color: #7ba87b;
    font-weight: 500;
}

.recommendation-cta {
    text-align: center;
}

.recommendation-price {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.recommendation-btn {
    background: #7ba87b;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.recommendation-btn:hover {
    background: #6a976a;
    transform: translateY(-2px);
}

.modal-other-products {
    margin-top: 30px;
}

.modal-other-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

.modal-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.modal-product-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.modal-product-card:hover {
    border-color: #7ba87b;
    transform: translateY(-3px);
}

.modal-product-image {
    background: #f5f1e8;
    border-radius: 12px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 15px;
}

.modal-product-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.modal-product-price {
    font-size: 16px;
    font-weight: 600;
    color: #7ba87b;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    background: #f5f1e8;
    color: #333;
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #333;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #7ba87b;
}

.footer-text {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.newsletter {
    margin-top: 25px;
}

.newsletter input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5dfd5;
    border-radius: 8px;
    background: white;
    color: #333;
    margin-bottom: 10px;
    font-size: 14px;
    box-sizing: border-box; /* FIX: prevent overflow on mobile */
}

.newsletter input::placeholder {
    color: #999;
}

.newsletter button {
    width: 100%;
    padding: 12px 24px;
    background: #7ba87b;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.3s;
}

.newsletter button:hover {
    background: #6a976a;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap; /* FIX: wrap on very small screens */
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #7ba87b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icon:hover {
    background: #6a976a;
}


/* ==========================================================================
   LIVE CHAT WIDGET
   ========================================================================== */

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7ba87b 0%, #6a976a 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(123, 168, 123, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(123, 168, 123, 0.6);
}

.chat-button:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #7ba87b;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%   { transform: scale(1);   opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e8705a;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 2px solid white;
}


/* ==========================================================================
   GLOBAL RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* FIX: .products-grid was referenced but never defined in the sheet;
            keeping selector in case it's used via HTML class */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dropdown-menu {
        width: 95vw;          /* FIX: prevent overflow on medium screens */
        left: 50%;
        transform: translateX(-50%);
    }

    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr); /* FIX: collapse to 2 cols */
    }

    .routine-products-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recommendation-product {
        grid-template-columns: 1fr;  /* FIX: stack on medium screens */
        text-align: center;
    }

    .cta-grid {
        grid-template-columns: 1fr; /* FIX: stack cta cards on tablet */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .hero {
        padding: 40px 20px 30px;
    }

    .products-section,
    .blog-section,
    .blog-mini-section,
    .cta-section,
    .sticks-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* FIX: collapse all multi-col grids on mobile */
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* FIX: 2-col on mobile is nicer */
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 30px;
    }

    /* Cart sidebar full-width on mobile */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .cart-sidebar.active {
        right: 0;
    }

    /* Toast bottom-center on mobile */
    .toast-notification {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
        left: auto;
        width: 90%;
        max-width: 340px;
    }

    /* Promo popup full bottom on mobile */
    .promo-popup {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
    }

    /* Routine modal */
    .routine-products-list {
        grid-template-columns: 1fr;
    }

    .routine-cta-buttons {
        grid-template-columns: 1fr;
    }

    .routine-content {
        padding: 20px;
    }

    .routine-header {
        padding: 30px 20px;
    }

    /* Quiz */
    .quiz-content {
        padding: 30px 20px;
    }

    .quiz-products {
        grid-template-columns: 1fr;
    }

    /* Modal */
    .modal-body,
    .concern-modal-body {
        padding: 20px;
    }

    .modal-products-grid {
        grid-template-columns: 1fr;
    }

    .recommendation-product {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .concern-causes {
        grid-template-columns: 1fr;
    }

    .concern-blog-card {
        grid-template-columns: 1fr;
    }

    .concern-blog-image {
        width: 100%;
        height: auto;
        min-height: 140px;
    }

    .concern-product-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .concern-modal-header {
        padding: 30px 20px;
    }

    .concern-symptoms-grid {
        grid-template-columns: 1fr;
    }

    /* Dropdown: hide on mobile — rely on hamburger menu */
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        display: none; /* hidden until toggled by JS */
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
    }

    /* Video section */
    .video-section {
        padding: 50px 20px;
    }

    /* Exit popup */
    .exit-popup-content {
        padding: 30px 20px;
    }

    .exit-popup-title {
        font-size: 22px;
    }

    /* Tabs container */
    .tabs-container {
        grid-template-columns: 1fr;
    }

    .ingredients-panel {
        position: static;
    }

    .ingredient-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .video-grid {
        grid-template-columns: 1fr; /* FIX: single col on very small screens */
    }

    .quiz-option {
        padding: 15px;
    }

    .quiz-question {
        font-size: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .blog-mini-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .ingredient-list {
        grid-template-columns: 1fr;
    }

    .concerns-tabs {
        gap: 8px;
    }

    .concern-tab {
        padding: 10px 14px;
        font-size: 13px;
    }
}


/* ==========================================================================
   BLOG IMAGE HELPERS
   ========================================================================== */

.blog-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f1e8;
}

.blog-post-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-card__read-more {
    color: #7ba87b !important;
    text-decoration: none !important;
}


/* ==========================================================================
   PRODUCT ICONS GRID
   ========================================================================== */

.product-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.product-icon-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: end;
    gap: 10px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s;
}

.product-icon-text {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .product-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==========================================================================
   VIDEO CIRCLES
   ========================================================================== */

.video-circles {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap; /* FIX: allow wrapping on tiny screens */
}

.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.video-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0e8e0 0%, #e8ddd0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 4px solid #7ba87b;
}

.video-label {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    text-align: center;
}

.video-circle:after {
    content: '▶';
    position: absolute;
    color: white;
    font-size: 24px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}


/* ==========================================================================
   EXPERTISE INTRO & INGREDIENTS
   ========================================================================== */

.expertise-intro {
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    border-left: 4px solid #7ba87b;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.expertise-intro p {
    color: #666;
    margin: 0;
}

.expertise-ingredient {
    border: 2px solid #e5dfd5;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.ingredient-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.ingredient-latin {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

.ingredient-description {
    color: #666;
    margin-bottom: 15px;
}

.ingredient-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.benefit-tag {
    background: #7ba87b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.scientific-studies {
    background: #fafafa;
    border-radius: 8px;
    padding: 15px;
}

.studies-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.study-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white !important;
    border: 1px solid #e5dfd5;
    border-radius: 6px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s;
}

.study-icon {
    width: 30px;
    height: 30px;
    background: #7ba87b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.study-info {
    flex: 1;
}

.study-title {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 3px;
}

.study-meta {
    font-size: 11px;
    color: #999;
}


/* ==========================================================================
   PRODUCT INFO TEXT
   ========================================================================== */

.product-info-text {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 15px;
}

.product-info-text li {
    padding: 0 8px;
    color: #666;
    font-size: 16px;
}

.product-info-text li::marker {
    content: "✓";
    color: #7ba87b;
    font-weight: bold;
}

.product-info-text p {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px 20px;
    margin: 5px 0 3px 0;
    transition: all 0.3s;
    width: 100%;
    font-size: 16px;
    color: #999;
    margin-top: 5px;
    font-style: italic;
    box-sizing: border-box; /* FIX: prevent overflow on mobile */
}

.product-info-text p strong {
    font-style: normal;
}

.product-info-text p span {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
    font-weight: 500;
}

.product-info-text p:hover {
    border-color: #c5c0b5;
}


/* ==========================================================================
   DELIVERY INFO
   ========================================================================== */

.delivery-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin-top: -15px;
}

.delivery-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.delivery-info p{
    font-size:10px;
}

.cb-icon {
    width: 20px;
    height: 14px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 3px;
    color: white;
    font-size: 8px;
    font-weight: bold;
    letter-spacing: -0.5px;
}


/* ==========================================================================
   USAGE STEPS
   ========================================================================== */

.usage-step {
    text-align: center;
    background: white;
    padding: 40px 15px 35px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #7ba87b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    position: absolute;
    top: -10px;
    left: 40px;
    transform: translate(-50%, 50%);
    box-shadow: 0 4px 12px rgba(123, 168, 123, 0.35);
}

.step-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f5f3f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.step-title {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.step-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.8;
    padding: 0 5px;
}

.usage-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}


/* ==========================================================================
   BLOG POST CARD HELPERS
   ========================================================================== */

.blog-post-card__category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgb(var(--button-background));
    color: white !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ==========================================================================
   BLOG TAGS (scrollable pill row)
   ========================================================================== */

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.blog-tags li {
    list-style: none;
    flex-shrink: 0;
}

.blog-tags li a {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.blog-tags li.link-faded a {
    background: white;
    border: 2px solid rgb(var(--button-background));
    color: #666;
}

.blog-tags li:not(.link-faded) a {
    background: rgb(var(--button-background));
    border: 2px solid rgb(var(--button-background));
    color: white;
}

.blog-tags.is-sticky {
    position: fixed;
    left: 0;
    z-index: 3;
    background: white;
    width: 100%;
    padding: 10px 12px;
    scroll-padding-left: 12px;
    scrollbar-width: none;
}

.blog-tags.is-sticky li {
    scroll-snap-align: start;
}

.blog-tags::-webkit-scrollbar {
    display: none;
}


/* ==========================================================================
   INFO BOX / CONTACT CARD
   ========================================================================== */

.info-box {
    background: linear-gradient(135deg, #f9f7f4 0%, #f5f1e8 100%);
    border-left: 4px solid #7ba87b;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }
}


/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #c5c0b5;
}

.faq-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
    margin: 0 !important;
}

.faq-question {
    font-size: 14px;
    color: #333;
    font-weight: 400;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #7ba87b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
    font-weight: 300;
}

.faq-answer-text {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px 25px;
}

.faq-item.open .faq-icon {
    background: #6a976a;
    transform: rotate(45deg);
}


/* ==========================================================================
   INGREDIENTS PANEL (sticky sidebar)
   ========================================================================== */

.ingredients-panel {
    background: #f5f3f0;
    border: 2px solid #d5d0c5;
    border-radius: 15px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    position: sticky;
    top: 20px;
    overflow-y: auto;
}

.ingredients-title {
    font-size: 16px;
    margin-bottom: 25px;
    color: #000;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}

.ingredient-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    flex: 1;
}

.ingredient-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 12px;
    border-radius: 12px;
    transition: all 0.3s;
    text-align: center;
    position: relative;
}

.ingredient-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
}

.ingredient-icon img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.ingredient-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ingredient-name {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.ingredient-desc {
    font-size: 10px;
    color: #999;
    line-height: 1.4;
}

.ingredient-badge {
    background: #7ba87b;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: absolute;
    top: 5px;
    right: 5px;
}


/* ==========================================================================
   TABS CONTAINER (product page)
   ========================================================================== */

.tabs-container {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 30px;
    align-items: start;
}

.tabs-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 750px;
}

@media (max-width: 1024px) {
    .tabs-container {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   MISC HELPERS
   ========================================================================== */

.product-gallery__thumbnail img,
.product-gallery__media img,
.product-gallery__thumbnail[aria-current=true] {
    border-radius: 10px;
}

.usage-link {
    color: #7ba87b !important;
    margin-top: 10px;
    display: inline-block;
}

/* .prose :last-child {
    margin-block: 0;
} */

.horizontal-product-card.bundle{
    background: #f5f1e8;
	border: 2px solid #e5dfd5;
	border-radius: 15px;
	padding: 18px;
	margin: 15px 0 5px 0;
	position: relative;
	width: 100%;
}
.horizontal-product-card__info.bundle{
    display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex-wrap: wrap;
}
.horizontal-product-card.bundle .horizontal-product-card__figure{
    width: auto !important;
}

.horizontal-product-card__image {
	width: 70px;
	height: 70px;
	background: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.bundle-header {
	position: absolute;
	top: -20px;
	left: 20px;
	background: white;
	padding: 4px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bundle-header .discount {
	color: #e8705a;
}

.template-blog .prose .h2 strong{
    font-size: 44px;
    line-height: 48px;
}
button[name="checkout"]{
    text-transform: initial;
}