/** Shopify CDN: Minification failed

Line 718:41 Unexpected "/"

**/
:root {
    --color-cream: #FAF7F2;
    --color-warm-white: #FFFCF7;
    --color-sage: #7A9E7E;
    --color-sage-dark: #5C7A5F;
    --color-sage-light: #E8F0E9;
    --color-terracotta: #C4704F;
    --color-terracotta-light: #F5E6E0;
    --color-charcoal: #2D2D2D;
    --color-gray: #6B6B6B;
    --color-gray-light: #A8A8A8;
    --color-border: #E5E0D8;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.6;
    font-size: 16px;
}

/* ===== TOP BANNER ===== */
.top-banner {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 10px 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.top-banner-flag {
    font-size: 16px;
}

.top-banner-divider {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
}

@media (max-width: 600px) {
  .sticky-bar-info {
    gap: 6px;
  }

  .sticky-bar-info span {
    font-size: 12px !important;
  }

  .sticky-bar-info .stars {
    font-size: 12px !important;
    letter-spacing: 1px;
  }

  .sticky-bar .cta-btn {
    font-size: 14px;
    padding: 10px 18px;
  }
}

/* ===== SITE HEADER ===== */
.site-header {
    background: white;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-btn, .header-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--color-charcoal);
    font-size: 11px;
    padding: 4px 8px;
}

.menu-btn:hover, .header-btn:hover {
    color: var(--color-sage);
}

.site-logo {
    /* position: absolute; */
    left: 50%;
    /* transform: translateX(-50%); */
    text-decoration: none;
}

.logo-text {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -1px;
}

.logo-flow {
    color: #C4704F;
}

.logo-fit {
    color: #7A9E7E;
}

.header-actions {
    display: flex;
    gap: 16px;
}

@media (max-width: 600px) {
    .site-header {
    padding: 12px 0;
    }
    .logo-text {
    font-size: 26px;
    }
    .menu-btn span, .header-btn span {
    display: none;
    }
    .header-actions {
    gap: 8px;
    }
}

@media (max-width: 600px) {
    .top-banner {
    font-size: 12px;
    padding: 8px 16px;
    }
    .top-banner-divider {
    display: none;
    }
    .top-banner-content {
    gap: 6px;
    }
}

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-white {
    background: var(--color-warm-white);
}

.text-center { text-align: center; }

.badge {
    display: inline-block;
    background: var(--color-sage-light);
    color: var(--color-sage-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-terracotta {
    background: var(--color-terracotta-light);
    color: var(--color-terracotta);
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(20px, 3vw, 26px); }

/* ===== STICKY ADD TO CART ===== */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-warm-white);
    border-top: 1px solid var(--color-border);
    padding: 12px 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-bar-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-bar-price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
}

.sticky-bar-original {
    color: var(--color-gray-light);
    text-decoration: line-through;
    font-size: 14px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 20px 0 60px;
    background: linear-gradient(180deg, var(--color-warm-white) 0%, var(--color-cream) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    }
}

.hero-gallery {
    position: sticky;
    top: 20px;
}

@media (max-width: 900px) {
    .hero-gallery {
    position: relative;
    top: 0;
    }
}

.hero-image-main {
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .hero-image-main {
    margin-bottom: 8px;
    }
}

.hero-thumbnails {
    display: flex;
    gap: 12px;
}

.hero-thumb {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-thumb:hover,
.hero-thumb.active {
    border-color: var(--color-sage);
}

.hero-content {
    padding-top: 20px;
}

@media (max-width: 900px) {
    .hero-content {
    padding-top: 8px;
    }
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero-title {
    margin-bottom: 16px;
    color: var(--color-charcoal);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 16px;
    max-width: 500px;
}

.condition-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.condition-tag {
    background: var(--color-sage-light);
    color: var(--color-sage-dark);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.stars {
    color: #F5A623;
    font-size: 18px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 14px;
    color: var(--color-gray);
}

.rating-text strong {
    color: var(--color-charcoal);
}

/* ===== PRICE ===== */
.price-block {
    margin-bottom: 24px;
}

.price-current {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-charcoal);
}

.price-original {
    font-size: 20px;
    color: var(--color-gray-light);
    text-decoration: line-through;
    margin-left: 12px;
}

.price-save {
    display: inline-block;
    background: var(--color-terracotta-light);
    color: var(--color-terracotta);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 12px;
}

/* ===== OPTIONS ===== */
.option-group {
    margin-bottom: 24px;
}

.option-label {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-label-link {
    font-size: 13px;
    color: var(--color-sage-dark);
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

.size-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 16px 24px;
    border: 2px solid var(--color-border);
    background: var(--color-warm-white);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.size-btn:hover {
    border-color: var(--color-sage);
    background: var(--color-sage-light);
}

.size-btn.selected {
    border-color: var(--color-sage);
    background: var(--color-sage-light);
    box-shadow: 0 0 0 3px rgba(122, 158, 126, 0.2);
}

.color-options {
    display: flex;
    gap: 12px;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.color-btn::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: border-color 0.2s;
}

.color-btn:hover::after,
.color-btn.selected::after {
    border-color: var(--color-charcoal);
}

.color-black { background: #1a1a1a; }
.color-white { background: #f5f5f5; border: 1px solid var(--color-border); }

/* ===== CTA ===== */
.cta-btn {
    width: 100%;
    padding: 18px 32px;
    background: var(--color-sage);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 16px;
}

.cta-btn:hover {
    background: var(--color-sage-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.cta-secondary {
    width: 100%;
    padding: 16px 32px;
    background: transparent;
    color: var(--color-charcoal);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-secondary:hover {
    border-color: var(--color-charcoal);
}

/* ===== CART REVIEW SNIPPET ===== */
.cart-review {
    margin-top: 20px;
    padding: 16px;
    background: #FAFAFA;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
}

.cart-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cart-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-review-meta {
    flex: 1;
}

.cart-review-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-charcoal);
    display: block;
    margin-bottom: 2px;
}

.cart-review-stars {
    display: flex;
    gap: 2px;
}

.cart-review-star {
    width: 16px;
    height: 16px;
    background: #00B67A;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.cart-review-time {
    font-size: 12px;
    color: #737373;
    margin-left: auto;
}

.cart-review-text {
    font-size: 14px;
    color: var(--color-charcoal);
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.cart-review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #E8E8E8;
}

.cart-review-verified {
    font-size: 12px;
    color: var(--color-sage-dark);
    font-weight: 600;
}

.cart-review-tp {
    font-size: 11px;
    color: #737373;
}

.cart-review-tp span {
    color: #00B67A;
    font-weight: 700;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.trust-badge {
    text-align: center;
}

.trust-badge-icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.trust-badge-text {
    font-size: 12px;
    color: var(--color-gray);
    line-height: 1.4;
}

.trust-badge-text strong {
    display: block;
    color: var(--color-charcoal);
    font-size: 13px;
}

/* ===== HERO TESTIMONIAL CARD ===== */ */
.hero-testimonial {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-warm-white) 100%);
}

.hero-testimonial-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

@media (max-width: 800px) {
    .hero-testimonial-card {
    grid-template-columns: 1fr;
    }
}

.hero-testimonial-image {
    position: relative;
    min-height: 400px;
    background: #f5f5f5;
}

.hero-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

@media (max-width: 800px) {
    .hero-testimonial-image {
    min-height: 300px;
    }
}

.hero-testimonial-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 800px) {
    .hero-testimonial-content {
    padding: 32px;
    }
}

.hero-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 24px;
}

.hero-testimonial-star {
    width: 24px;
    height: 24px;
    background: #00B67A;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.hero-testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-charcoal);
    margin: 0 0 32px 0;
}

.hero-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-charcoal);
}

.hero-testimonial-role {
    font-size: 14px;
    color: var(--color-gray);
}

.hero-testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-sage-light);
    color: var(--color-sage-dark);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.hero-testimonial-trustpilot {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-gray);
}

.hero-testimonial-trustpilot span {
    color: #00B67A;
    font-weight: 700;
}

/* ===== TRUSTPILOT-STYLE REVIEWS ===== */
.trustpilot-reviews {
    padding: 80px 0;
    background: var(--color-cream);
}

.trustpilot-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.trustpilot-header h2 {
    margin-bottom: 16px;
}

.trustpilot-header p {
    color: var(--color-gray);
    font-size: 18px;
}

.trustpilot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1000px) {
    .trustpilot-grid {
    grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .trustpilot-grid {
    grid-template-columns: 1fr;
    }
}

.tp-card {
    background: #FAFAFA;
    border-radius: 8px;
    padding: 20px 24px;
    border: 1px solid #E5E5E5;
}

.tp-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.tp-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    flex-shrink: 0;
}

.tp-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-rating-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tp-stars-row {
    display: flex;
    gap: 2px;
}

.tp-star {
    width: 20px;
    height: 20px;
    background: #00B67A;
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Alternative: Use actual star boxes like Trustpilot */
.tp-star {
    width: 18px;
    height: 18px;
    background: #00B67A;
    color: white;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    clip-path: none;
}

.tp-reviewer-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #191919;
}

.tp-posted {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    color: #737373;
    white-space: nowrap;
}

.tp-trustpilot-logo {
    color: #00B67A;
    font-weight: 700;
}

.tp-review-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    color: #191919;
    line-height: 1.6;
    margin: 0;
}

.tp-condition-tag {
    display: inline-block;
    margin-top: 14px;
    padding: 4px 10px;
    background: var(--color-sage-light);
    color: var(--color-sage-dark);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

/* ===== VIDEO TESTIMONIALS ===== */
.video-testimonials {
    padding: 80px 0;
    background: var(--color-warm-white);
}

.video-header {
    text-align: center;
    margin-bottom: 50px;
}

.video-header .badge {
    margin-bottom: 16px;
    display: inline-block;
}

.video-header h2 {
    margin: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .video-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    }
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid var(--color-border);
}

.video-wrapper {
    position: relative;
    aspect-ratio: 9/10;
    background: #1a1a1a;
    cursor: pointer;
    overflow: hidden;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    transition: background 0.2s ease;
}

.video-wrapper:hover .play-button-overlay {
    background: rgba(0,0,0,0.25);
}

.video-wrapper.playing .play-button-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.play-button svg {
    width: 28px;
    height: 28px;
    color: var(--color-charcoal);
    margin-left: 4px;
}

.video-wrapper:hover .play-button {
    transform: scale(1.1);
    background: white;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.video-wrapper.playing .video-duration {
    opacity: 0;
}

.video-content {
    padding: 24px;
}

.video-quote {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-style: italic;
}

.video-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.video-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-author-info {
    display: flex;
    flex-direction: column;
}

.video-author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-charcoal);
}

.video-author-role {
    font-size: 13px;
    color: var(--color-gray);
}

/* ===== OBJECTION BUSTERS ===== */
.objection-busters {
    background: var(--color-charcoal);
    color: white;
    padding: 80px 0;
}

.objection-header {
    text-align: center;
    margin-bottom: 60px;
}

.objection-header .badge {
    background: rgba(255,255,255,0.15);
    color: white;
    margin-bottom: 20px;
}

.objection-header h2 {
    color: white;
    margin-bottom: 16px;
}

.objection-header p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.objection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.objection-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.objection-number {
    width: 36px;
    height: 36px;
    background: var(--color-sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

.objection-card h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 16px;
}

.objection-card p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.7;
}

.objection-card ul {
    margin: 16px 0 0 0;
    padding: 0;
    list-style: none;
}

.objection-card li {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.objection-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-weight: bold;
}

/* ===== SIZING SECTION ===== */
.sizing {
    padding: 80px 0;
    background: var(--color-warm-white);
}

.sizing-header {
    text-align: center;
    margin-bottom: 50px;
}

.sizing-header .badge {
    margin-bottom: 20px;
}

.sizing-header h2 {
    margin-bottom: 16px;
}

.sizing-header p {
    color: var(--color-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.sizing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 800px) {
    .sizing-content {
    grid-template-columns: 1fr;
    }
}

.sizing-chart {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.sizing-chart-new {
    padding: 30px;
    text-align: center;
}

.sizing-chart-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 24px;
}

.sizing-chart-new table {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--color-border);
}

.sizing-chart-new th {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, #d4e6d6 100%);
    color: var(--color-sage-dark);
    padding: 16px 24px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    border-bottom: 2px solid var(--color-border);
}

.sizing-chart-new th:first-child {
    text-align: left;
    background: white;
    color: var(--color-charcoal);
    font-style: italic;
}

.sizing-chart-new td {
    padding: 18px 24px;
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    background: white;
}

.sizing-chart-new td:first-child {
    text-align: left;
    background: #fafafa;
    border-right: 1px solid var(--color-border);
}

.sizing-chart-new tr:last-child td {
    border-bottom: none;
}

.sizing-chart-new tbody tr:hover td {
    background: var(--color-sage-light);
}

.sizing-chart-new tbody tr:hover td:first-child {
    background: #e8f0e9;
}

.sizing-tip-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 12px;
    border: 1px solid #ffe082;
    text-align: left;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.sizing-tip-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.sizing-tip-box p {
    margin: 0;
    font-size: 14px;
    color: var(--color-charcoal);
    line-height: 1.5;
}

.sizing-chart table {
    width: 100%;
    border-collapse: collapse;
}

.sizing-chart th {
    background: var(--color-sage);
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.sizing-chart td {
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.sizing-chart tr:last-child td {
    border-bottom: none;
}

.sizing-chart tr:hover td {
    background: var(--color-sage-light);
}

.sizing-instructions {
    padding: 30px;
    background: var(--color-sage-light);
    border-radius: var(--radius-lg);
}

.sizing-instructions h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.sizing-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.sizing-step-num {
    width: 32px;
    height: 32px;
    background: var(--color-sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.sizing-step-text {
    padding-top: 4px;
}

.sizing-step-text strong {
    display: block;
    margin-bottom: 4px;
}

.sizing-step-text p {
    color: var(--color-gray);
    font-size: 14px;
    margin: 0;
}

.sizing-chart-note {
    font-size: 12px;
    color: var(--color-gray);
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

.returns-highlight {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid var(--color-sage);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.returns-highlight p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.returns-address {
    margin-top: 30px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: start;
    gap: 16px;
    border: 2px dashed var(--color-border);
}

.returns-address-icon {
    font-size: 32px;
}

.returns-address-content h4 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 8px;
}

.returns-address-content p {
    color: var(--color-gray);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.returns-reminder {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 14px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 8px;
    border: 1px solid #ffe082;
}

.returns-reminder span {
    font-size: 16px;
    flex-shrink: 0;
}

.returns-reminder p {
    font-size: 13px;
    color: var(--color-charcoal);
    line-height: 1.4;
}

.sizing-guarantee {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: start;
    gap: 16px;
}

.sizing-guarantee-icon {
    font-size: 32px;
}

.sizing-guarantee-text h4 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 4px;
}

.sizing-guarantee-text p {
    color: var(--color-gray);
    font-size: 13px;
    margin: 0;
}

/* ===== AMAZON-STYLE REVIEWS SECTION ===== */
.reviews {
    padding: 80px 0;
    background: #fff;
}

.reviews-container {
    max-width: 900px;
    margin: 0 auto;
}

.reviews-header-amazon {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.reviews-header-amazon h2 {
    font-family: "Amazon Ember", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0F1111;
    margin-bottom: 16px;
}

.amazon-summary {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.amazon-rating-left {
    min-width: 200px;
}

.amazon-big-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.amazon-big-rating .amazon-stars {
    font-size: 18px;
}

.amazon-big-rating span {
    font-size: 18px;
    color: #0F1111;
    font-weight: 400;
}

.amazon-stars {
    color: #FFA41C;
    letter-spacing: -1px;
}

.amazon-total-ratings {
    font-size: 14px;
    color: #565959;
}

.amazon-histogram {
    flex: 1;
    min-width: 260px;
}

.amazon-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    cursor: pointer;
}

.amazon-bar-row:hover .amazon-bar-label {
    color: #C45500;
    text-decoration: underline;
}

.amazon-bar-label {
    font-size: 13px;
    color: #007185;
    width: 58px;
    flex-shrink: 0;
}

.amazon-bar-track {
    flex: 1;
    height: 20px;
    background: #F0F2F2;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #a2a6ac;
}

.amazon-bar-fill {
    height: 100%;
    background: #FFA41C;
}

.amazon-bar-percent {
    font-size: 13px;
    color: #007185;
    width: 36px;
    text-align: right;
    flex-shrink: 0;
}

/* Individual Review Cards - Amazon Style */
.amazon-review {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.amazon-review:last-child {
    border-bottom: none;
}

.amazon-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.amazon-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cedddc 0%, #90a4ae 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    overflow: hidden;
}

.amazon-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amazon-reviewer-name {
    font-size: 13px;
    color: #0F1111;
    font-weight: 400;
}

.amazon-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.amazon-rating-row .amazon-stars {
    font-size: 14px;
}

.amazon-review-title {
    font-size: 14px;
    font-weight: 700;
    color: #0F1111;
}

.amazon-review-meta {
    font-size: 13px;
    color: #565959;
    margin-bottom: 6px;
}

.amazon-verified {
    color: #C45500;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 10px;
}

.amazon-review-body {
    font-size: 14px;
    color: #0F1111;
    line-height: 1.6;
    margin-bottom: 12px;
}

.amazon-helpful-section {
    margin-top: 12px;
}

.amazon-helpful-count {
    font-size: 13px;
    color: #565959;
    margin-bottom: 8px;
}

.amazon-helpful-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amazon-helpful-btn {
    background: #fff;
    border: 1px solid #D5D9D9;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    color: #0F1111;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(15,17,17,0.08);
}

.amazon-helpful-btn:hover {
    background: #F7FAFA;
}

.amazon-report {
    font-size: 13px;
    color: #565959;
    cursor: pointer;
    border: none;
    background: none;
    padding: 6px 0;
}

.amazon-report:hover {
    color: #C45500;
    text-decoration: underline;
}

.amazon-divider {
    color: #565959;
    font-size: 13px;
}

/* Size/Color info line */
.amazon-purchase-info {
    font-size: 13px;
    color: #565959;
    margin-bottom: 6px;
}

.amazon-see-more {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: #fff;
    border: 1px solid #D5D9D9;
    border-radius: 8px;
    font-size: 13px;
    color: #0F1111;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 2px 5px rgba(15,17,17,0.08);
}

.amazon-see-more:hover {
    background: #F7FAFA;
}

/* Review images */
.amazon-review-images {
    display: flex;
    gap: 8px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.amazon-review-img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #888;
    cursor: pointer;
}

.amazon-review-img:hover {
    border-color: #007185;
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--color-warm-white);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    margin-bottom: 16px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-charcoal);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--color-sage);
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding-bottom: 24px;
    color: var(--color-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== GUARANTEE ===== */
.guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    color: white;
    text-align: center;
}

.guarantee-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.guarantee h2 {
    color: white;
    margin-bottom: 16px;
}

.guarantee p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
    opacity: 0.9;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.guarantee-feature::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: white;
    color: var(--color-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 100px 0;
    text-align: center;
}

/* ===== PURCHASE SECTION ===== */
.purchase-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-warm-white) 0%, #E8F0E9 100%);
}

.purchase-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.purchase-header {
    text-align: center;
    margin-bottom: 40px;
}

.purchase-header h2 {
    margin: 16px 0 12px;
}

.purchase-header p {
    color: var(--color-gray);
    font-size: 17px;
}

.purchase-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-border);
}

.purchase-box .price-block {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.purchase-box .price-current {
    font-size: 48px;
}

@media (max-width: 600px) {
    .purchase-box {
    padding: 24px;
    }
    .purchase-box .price-current {
    font-size: 36px;
    }
}

/* ===== BUNDLE CARDS ===== */
.bundle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .bundle-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    }
}

.bundle-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
}

.bundle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.bundle-best {
    border-color: #dc3545;
}

.bundle-popular {
    border-color: var(--color-sage);
}

.bundle-starter {
    border-color: #6c757d;
}

.bundle-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bundle-badge-best {
    background: #dc3545;
    color: white;
}

.bundle-badge-popular {
    background: var(--color-sage);
    color: white;
}

.bundle-badge-starter {
    background: #6c757d;
    color: white;
}

.bundle-content {
    padding-top: 10px;
}

.bundle-image {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 16px; */
    background: #f5f5f5;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    position: relative;
    /* height: 140px; */
    overflow: hidden;
    background: white;
}

.bundle-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.bundle-qty {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--color-sage);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    z-index: 2;
}

.bundle-free-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(5deg);
}

.bundle-details {
    text-align: center;
    margin-bottom: 20px;
}

.bundle-details h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.bundle-tagline {
    color: #dc3545;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.bundle-popular .bundle-tagline {
    color: var(--color-sage-dark);
}

.bundle-starter .bundle-tagline {
    color: #6c757d;
}

.bundle-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bundle-total {
    font-size: 14px;
    color: var(--color-charcoal);
}

.bundle-was {
    font-size: 14px;
    color: var(--color-gray-light);
    text-decoration: line-through;
}

.bundle-each {
    font-size: 16px;
    font-weight: 700;
    color: #dc3545;
}

.bundle-popular .bundle-each {
    color: var(--color-sage-dark);
}

.bundle-starter .bundle-each {
    color: #dc3545;
}

.bundle-shipping {
    font-size: 13px;
    color: var(--color-sage-dark);
    font-weight: 600;
}

.bundle-size {
    margin-bottom: 16px;
}

.bundle-size label {
    display: block;
    text-align: center;
    font-size: 14px;
    color: var(--color-sage-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.bundle-size-guide {
    font-weight: 500;
    color: var(--color-gray);
    text-decoration: underline;
    cursor: pointer;
    margin-left: 4px;
}

.bundle-size-guide:hover {
    color: var(--color-sage);
}

.bundle-size-btns {
    display: flex;
    gap: 8px;
}

.bundle-size-btn {
    flex: 1;
    padding: 12px 10px;
    border: 2px solid var(--color-border);
    background: white;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-charcoal);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.bundle-size-btn span {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-gray);
    line-height: 1.3;
}

.bundle-size-btn:hover {
    border-color: var(--color-sage);
    background: var(--color-sage-light);
}

.bundle-size-btn.selected {
    border-color: var(--color-sage);
    background: var(--color-sage);
    color: white;
}

.bundle-size-btn.selected span {
    color: rgba(255,255,255,0.85);
}

.bundle-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-charcoal);
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.bundle-select:focus {
    outline: none;
    border-color: var(--color-sage);
}

.bundle-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--color-sage);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.bundle-btn:hover {
    background: var(--color-sage-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(122, 158, 126, 0.4);
}

.bundle-guarantee {
    text-align: center;
    font-size: 12px;
    color: var(--color-gray);
    margin-top: 12px;
    font-style: italic;
}

.bundle-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

@media (max-width: 600px) {
    .bundle-trust {
    gap: 20px;
    }
}

/* Size guide link button */
.size-guide-link {
    background: none;
    border: none;
    color: var(--color-sage-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
    text-decoration: underline;
    font-family: var(--font-body);
}

.size-guide-link:hover {
    color: var(--color-sage);
}

/* Size Modal */
.size-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.size-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.size-modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 450px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.size-modal-overlay.open .size-modal {
    transform: translateY(0);
}

.size-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-gray);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.size-modal-close:hover {
    background: var(--color-cream);
    color: var(--color-charcoal);
}

.size-modal h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 8px;
    text-align: center;
}

.size-modal-subtitle {
    text-align: center;
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 24px;
}

.size-modal-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--color-border);
    margin-bottom: 20px;
}

.size-modal-table th {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, #d4e6d6 100%);
    color: var(--color-sage-dark);
    padding: 14px 20px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    border-bottom: 2px solid var(--color-border);
}

.size-modal-table th:first-child {
    text-align: left;
    background: white;
    color: var(--color-charcoal);
    font-style: italic;
}

.size-modal-table td {
    padding: 16px 20px;
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    background: white;
}

.size-modal-table td:first-child {
    text-align: left;
    background: #fafafa;
    border-right: 1px solid var(--color-border);
}

.size-modal-table tr:last-child td {
    border-bottom: none;
}

.size-modal-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 10px;
    border: 1px solid #ffe082;
}

.size-modal-tip span {
    font-size: 18px;
}

.size-modal-tip p {
    margin: 0;
    font-size: 13px;
    color: var(--color-charcoal);
    line-height: 1.4;
}

/* Get Yours Now button style */
.get-yours-btn {
    font-size: 18px;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    box-shadow: 0 4px 15px rgba(122, 158, 126, 0.4);
}

.get-yours-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 158, 126, 0.5);
}

/* Mini review snippet under CTAs */
.cta-review-snippet {
    max-width: 500px;
    margin: 20px auto 0;
    padding: 16px 20px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    text-align: left;
}

.cta-review-snippet-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cta-review-snippet-stars {
    color: #00B67A;
    font-size: 14px;
    letter-spacing: 1px;
}

.cta-review-snippet-name {
    font-size: 13px;
    color: var(--color-gray);
}

.cta-review-snippet-text {
    font-size: 14px;
    color: var(--color-charcoal);
    line-height: 1.5;
    font-style: italic;
}

.cta-review-snippet-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 11px;
    color: var(--color-gray);
}

.cta-review-snippet-tp {
    color: #00B67A;
    font-weight: 600;
}

/* Inline CTA within sections */
.section-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.section-cta .cta-btn {
    width: auto;
    padding: 16px 40px;
    display: inline-block;
}

.final-cta h2 {
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--color-gray);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-btn {
    width: auto;
    padding: 18px 48px;
}

/* ===== PAYMENT & SHIPPING BADGES ===== */
.payment-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.payment-badge {
    height: 28px;
    transition: transform 0.2s;
}

.payment-badge:hover {
    transform: scale(1.05);
}

.payment-divider {
    width: 1px;
    height: 20px;
    background: var(--color-border);
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--color-gray);
    font-weight: 500;
}

.ssl-badge svg {
    color: var(--color-sage);
}

.shipping-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    font-size: 13px;
    color: var(--color-gray);
}

.shipping-partners span:first-child {
    opacity: 0.7;
}

/* ===== LIVE SOCIAL PROOF ===== */
.live-proof {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.live-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-gray);
}

.live-proof-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.live-proof-hot {
    color: var(--color-terracotta);
    font-weight: 600;
}

.live-proof-stock {
    color: var(--color-terracotta);
    font-weight: 600;
}

/* ===== RECENTLY PURCHASED POPUP ===== */
.purchase-popup {
    position: fixed;
    bottom: 100px;
    left: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    max-width: 320px;
    transform: translateX(-120%);
    transition: transform 0.4s ease;
    border: 1px solid var(--color-border);
}

.purchase-popup.show {
    transform: translateX(0);
}

.purchase-popup-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.purchase-popup-content {
    flex: 1;
}

.purchase-popup-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 2px;
}

.purchase-popup-detail {
    font-size: 12px;
    color: var(--color-gray);
}

.purchase-popup-time {
    font-size: 11px;
    color: var(--color-gray-light);
}

.purchase-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 16px;
    color: var(--color-gray-light);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

@media (max-width: 500px) {
    .purchase-popup {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 80px;
    }
}

/* ===== BIG STATS BAR ===== */
.stats-bar {
    background: var(--color-charcoal);
    color: white;
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

@media (max-width: 700px) {
    .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.7;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    background: var(--color-warm-white);
    padding: 70px 0;
    text-align: center;
}

.instagram-header {
    margin-bottom: 30px;
}

.instagram-header h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
}

.instagram-handle:hover {
    color: var(--color-charcoal);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 30px;
}

@media (max-width: 700px) {
    .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    }
}

.instagram-post {
    aspect-ratio: 1;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.instagram-post:hover img {
    transform: scale(1.05);
}

.instagram-post::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.instagram-post:hover::after {
    opacity: 0.2;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(188, 24, 136, 0.3);
}

/* ===== VISIT US SECTION ===== */
.visit-us {
    background: white;
    padding: 80px 0;
    border-top: 1px solid var(--color-border);
}

.visit-us-header {
    text-align: center;
    margin-bottom: 50px;
}

.visit-us-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 12px;
}

.visit-us-header p {
    color: var(--color-gray);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto;
}

.visit-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 800px) {
    .visit-us-grid {
    grid-template-columns: 1fr;
    }
}

.visit-us-info {
    background: #FAFAFA;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.visit-us-company {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.visit-us-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
}

.visit-us-company-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 2px;
}

.visit-us-company-details span {
    font-size: 13px;
    color: var(--color-gray);
}

.visit-us-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.visit-us-detail:last-child {
    margin-bottom: 0;
}

.visit-us-icon {
    width: 40px;
    height: 40px;
    background: var(--color-sage-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.visit-us-detail-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.visit-us-detail-content p {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.5;
}

.visit-us-detail-content a {
    color: var(--color-sage-dark);
    text-decoration: none;
    font-weight: 500;
}

.visit-us-detail-content a:hover {
    text-decoration: underline;
}

.visit-us-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    position: relative;
    min-height: 300px;
}

.visit-us-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.visit-us-map-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-charcoal);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.visit-us-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    font-size: 13px;
    color: var(--color-gray);
}

.visit-us-trust svg {
    color: var(--color-sage);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-charcoal);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    opacity: 0.6;
    font-size: 14px;
}