/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #ffffff;
    --background-cream: #ffffff;
    --background-light: #ffffff;
    --text-color: #1a1a1a;
    --text-light: #666666;
    --border-color: #e8e8e8;
    --accent-color: #8B7BC8;
    --accent-dark: #6b5ca5;
    --success-color: #27ae60;
    --pink-accent: #ff9eb7;
    --purple-light: #f5f5f5;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    padding-top: 48px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Promo Banner Top ===== */
.promo-banner-top {
    background: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.promo-slider {
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 400px;
    height: 24px;
}

.promo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.promo-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.promo-badge {
    background: white;
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.promo-text {
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
}

.promo-arrow {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0 20px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.promo-arrow:hover {
    opacity: 1;
}

/* ===== Header ===== */
.header {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -1px;
    font-family: Georgia, serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    justify-content: flex-end;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: opacity 0.2s;
}

.icon-btn:hover {
    opacity: 0.6;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

/* ===== Side Menu ===== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -380px;
    width: 380px;
    max-width: 85%;
    height: 100%;
    background: white;
    z-index: 999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
}

.side-menu.open {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1a1a1a;
}

.side-menu-content {
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
}

.side-menu-link {
    padding: 20px 0;
    font-size: 18px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: color 0.2s;
}

.side-menu-link:hover {
    color: #666;
}

/* ===== Stars Banner ===== */
.stars-banner {
    background: white;
    text-align: center;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    max-width: 100%;
}

.stars-display {
    color: #28a745;
    margin-right: 8px;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.stars-banner strong {
    color: #1a1a1a;
}

/* ===== Hero Section ===== */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8e3f3 0%, #f5f3f0 100%);
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 500px;
    text-align: left;
}

.hero-benefits li {
    padding: 8px 0;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-benefits li::before {
    content: none;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-top: -40px;
    margin-bottom: 40px;
    font-size: 16px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Orange Button Style for TheraWrap */
.btn-orange {
    background: #f5a623;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-orange:hover {
    background: #e6951a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.btn-outline {
    background: white;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    border-color: var(--text-color);
}

/* ===== Features Section ===== */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B7BC8 0%, #6b5ca5 100%);
    text-align: center;
    color: white;
}

.cta h2,
.cta p {
    color: white;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ===== Product Section ===== */
.product-section {
    padding: 60px 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.trust-badge svg {
    color: var(--success-color);
}

/* ===== PRODUCT PAGE LAYOUT ===== */
.product-section {
    padding: 30px 0 60px;
    background: white;
}

.product-container {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    align-items: start;
}

/* ===== PRODUCT IMAGES SECTION ===== */
.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Gallery Container */
.gallery-container {
    background: white;
    overflow: hidden;
}

/* Main Image Display */
.main-image-container {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 0;
    margin-bottom: 15px;
    border: none;
    position: relative;
}

.main-image-container > img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-image-container:hover > img {
    transform: scale(1.02);
}

/* Gallery Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.main-image-container:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: white;
}

.gallery-nav svg {
    stroke: currentColor;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 0;
    cursor: grab;
    user-select: none;
}

.thumbnail-gallery:active {
    cursor: grabbing;
}

.thumbnail-gallery.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.thumbnail-gallery::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f5f5f5;
    padding: 8px;
}

.thumbnail:hover {
    border-color: #ccc;
}

.thumbnail.active {
    border-color: #1a1a1a;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== PRODUCT INFO SECTION ===== */
.product-info {
    padding: 0 20px 0 0;
    max-width: 550px;
}

/* Reviews Carousel - Auto scrolling */
.reviews-carousel {
    overflow: hidden;
    margin-bottom: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.reviews-carousel:hover {
    background: #f0f0f0;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.reviews-track.no-animation {
    animation: none !important;
}

.reviews-track.no-animation .review-slide {
    animation: none !important;
    opacity: 0;
}

.reviews-track.no-animation .review-slide.active {
    opacity: 1;
}

.review-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeReview 20s infinite;
}

.review-slide:nth-child(1) { animation-delay: 0s; }
.review-slide:nth-child(2) { animation-delay: 5s; }
.review-slide:nth-child(3) { animation-delay: 10s; }
.review-slide:nth-child(4) { animation-delay: 15s; }

@keyframes slideReviews {
    0%, 24% { transform: translateX(0); }
    25%, 49% { transform: translateX(-100%); }
    50%, 74% { transform: translateX(-200%); }
    75%, 100% { transform: translateX(-300%); }
}

@keyframes fadeReview {
    0%, 20% { opacity: 1; }
    25%, 100% { opacity: 0; }
}

/* Customer Review Highlight - Style Calmi */
.customer-review-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 25px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B7BC8 0%, #6b5ca5 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    flex: 1;
}

.review-text {
    font-size: 13px;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    font-style: italic;
    line-height: 1.4;
}

.review-author {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.review-author span {
    color: #999;
}

.review-content {
    flex: 1;
}

.review-text {
    font-size: 15px;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-style: italic;
}

.review-author {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.review-author span {
    color: #999;
}

.product-info h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
    font-family: Georgia, 'Times New Roman', serif;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #28a745;
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-link {
    color: #1a1a1a;
    font-size: 14px;
    text-decoration: underline;
}

.rating-link:hover {
    color: #666;
}

.brand-badge {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.flag-fr {
    border-radius: 2px;
    box-shadow: 0 0 1px rgba(0,0,0,0.2);
}

/* Key Benefits List */
.key-benefits-list {
    margin: 25px 0;
    padding: 0;
}

/* Key Benefits - Style Calmi */
.key-benefits-list {
    margin-bottom: 30px;
}

.key-benefit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.key-benefit::before {
    content: none;
}

/* Product Subtitle & Intro for TheraWrap */
.product-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-intro {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.fits-hands {
    font-size: 14px;
    color: #666;
    padding: 15px 0;
    border-top: 1px solid #eee;
    margin-top: 15px;
    font-weight: 500;
}

/* Bundle Description */
.bundle-description {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

/* Free Bonuses Section */
.free-bonuses {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
}

.bonus-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.bonus-icon {
    font-size: 20px;
}

.bonus-item strong {
    color: #27ae60;
}

/* Promo Banner - Style Calmi */
.promo-banner {
    background: #ff6b6b;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Product Price - Style Calmi */
.product-price {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.original-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background: #4CAF50;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Limited Stock Notice - Style Calmi */
.limited-stock-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #1a1a1a;
}

.stock-dot {
    width: 8px;
    height: 8px;
    background: #00bcd4;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* New Year Deal Banner - Style Calmi */
.new-year-deal {
    background: #fff5f5;
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.new-year-deal .deal-title {
    color: #e53935;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.new-year-deal p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Bundle Section - Style Calmi */
.bundle-section {
    margin-bottom: 25px;
}

.bundle-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.bundle-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bundle-option {
    display: block;
    position: relative;
    cursor: pointer;
}

.bundle-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.bundle-content {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    background: white;
    transition: all 0.2s;
    min-height: 140px;
}

.bundle-option input[type="radio"]:checked + .popular-tag + .bundle-content,
.bundle-option input[type="radio"]:checked ~ .bundle-content {
    border-color: #1a1a1a;
    background: #f8f8f8;
}

.bundle-option:hover .bundle-content {
    border-color: #999;
}

.popular-tag {
    position: absolute;
    top: -8px;
    right: 12px;
    background: #1a1a1a;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 1;
}

.bundle-info {
    flex: 1;
    margin-bottom: 10px;
}

.bundle-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.bundle-discount {
    font-size: 11px;
    color: #e74c3c;
    font-weight: 600;
    text-transform: uppercase;
}

.bundle-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bundle-price .old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.bundle-price .new-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Product Options - Style Calmi */
.product-options {
    margin-bottom: 25px;
}

.product-options h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #666;
}

.color-options,
.type-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-option,
.type-option {
    cursor: pointer;
}

.color-option input,
.type-option input {
    display: none;
}

.color-box {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    transition: all 0.2s;
    color: white;
    font-weight: 500;
    font-size: 13px;
}

.type-label {
    display: block;
    padding: 10px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    transition: all 0.2s;
    font-weight: 500;
    font-size: 13px;
    color: #333;
}

.color-option input:checked + .color-box,
.type-option input:checked + .type-label {
    border-color: #1a1a1a;
}

/* Quantity Selector - Style Calmi */
.product-quantity {
    margin-bottom: 25px;
}

.product-quantity h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #666;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: white;
}

.quantity-selector .qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, #f8f8f8, #efefef);
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.2s ease;
    color: #333;
}

.quantity-selector .qty-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
}

.quantity-selector .qty-btn:active {
    transform: scale(0.9);
}

#quantity {
    width: 55px;
    height: 40px;
    border: none;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    background: white;
}

/* Add to Cart Container - Centered */
.add-cart-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

/* Add to Cart Button - Style Calmi */
.btn-add-cart {
    width: 100%;
    max-width: 400px;
    margin-bottom: 0;
    font-size: 16px;
    padding: 18px 50px;
    font-weight: 700;
    background: #f5a623;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-add-cart:hover {
    background: #e6951a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.cart-text {
    font-weight: 600;
}

.cart-prices {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-old-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 14px;
}

.cart-new-price {
    font-size: 16px;
    font-weight: 700;
}

/* Payment Icons - Style Calmi */
.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    margin-bottom: 0;
}

.payment-icon {
    height: 28px;
    width: auto;
    opacity: 0.8;
}

/* Product Features - Style Calmi */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.feature-item svg {
    color: #4CAF50;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item strong {
    color: #1a1a1a;
}

/* Social Proof - Style Calmi */
.social-proof {
    padding: 18px;
    background: #e3f2fd;
    border-radius: 10px;
}

.customers-viewing,
.recent-purchase {
    padding: 6px 0;
    color: #333;
    font-size: 13px;
}

.customers-viewing strong,
.recent-purchase strong {
    color: var(--success-color);
    font-weight: 700;
}

/* Product Accordions */
.product-accordions {
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-transform: uppercase;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: #666;
}

.accordion-icon {
    font-size: 16px;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 20px;
}

.accordion-content p,
.accordion-content ul {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
}

.accordion-content ul li {
    padding: 6px 0;
}

/* Important Notice */
.important-notice {
    margin-top: 25px;
    padding: 20px;
    background: #faf8f5;
    border-left: 3px solid #1a1a1a;
    border-radius: 0 8px 8px 0;
}

.important-notice p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.important-notice strong {
    color: #1a1a1a;
}

/* Quick Benefits */
.quick-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin: 80px 0;
    padding: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quick-benefit-item {
    text-align: center;
}

.benefit-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8e3f3 0%, #f5f3f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-benefit-item h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.quick-benefit-item p {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* Media Logos Section */
.media-logos-section {
    padding: 50px 0;
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.media-logos-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.media-logos-scroll {
    display: flex;
    gap: 60px;
    padding-right: 60px;
    align-items: center;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

.media-logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Different fonts for each logo */
.media-logo:nth-child(1) { font-family: 'Didot', 'Bodoni MT', Georgia, serif; letter-spacing: 4px; }
.media-logo:nth-child(2) { font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif; font-weight: 800; letter-spacing: 2px; }
.media-logo:nth-child(3) { font-family: 'Brush Script MT', cursive; text-transform: none; font-size: 28px; font-weight: 400; }
.media-logo:nth-child(4) { font-family: 'Arial Black', 'Helvetica Bold', sans-serif; letter-spacing: 8px; font-size: 18px; }
.media-logo:nth-child(5) { font-family: 'Times New Roman', Times, serif; font-style: italic; letter-spacing: 3px; }
.media-logo:nth-child(6) { font-family: Georgia, 'Palatino Linotype', serif; font-weight: 400; letter-spacing: 6px; }
.media-logo:nth-child(7) { font-family: 'Century Gothic', 'Avant Garde', sans-serif; font-weight: 600; letter-spacing: 3px; }
.media-logo:nth-child(8) { font-family: 'Impact', 'Haettenschweiler', sans-serif; letter-spacing: 1px; }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Lifestyle Section - Calmi Style */
.lifestyle-calmi {
    background: #f5efe8;
    padding: 80px 60px;
}

.lifestyle-calmi-container {
    max-width: 1400px;
    margin: 0 auto;
}

.lifestyle-calmi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.lifestyle-calmi-text {
    max-width: 500px;
}

.lifestyle-calmi-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 20px;
}

.lifestyle-calmi-text h2 {
    font-size: 42px;
    font-weight: 400;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.lifestyle-calmi-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
    font-style: italic;
}

.btn-calmi-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #1a1a1a;
    padding: 14px 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid #1a1a1a;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-calmi-outline:hover {
    background: #1a1a1a;
    color: white;
}

.btn-calmi-outline span {
    font-size: 16px;
}

.lifestyle-calmi-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
}

.lifestyle-calmi-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    margin: auto;
}

/* Calmi Features Bar */
.lifestyle-calmi-features {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    max-width: 600px;
}

.calmi-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 30px;
}

.calmi-feature:first-child {
    padding-left: 0;
}

.calmi-feature svg {
    stroke: #666;
    flex-shrink: 0;
}

.calmi-feature div {
    display: flex;
    flex-direction: column;
}

.calmi-feature strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.calmi-feature span {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.calmi-feature-divider {
    width: 1px;
    height: 40px;
    background: #999;
}

@media (max-width: 900px) {
    .lifestyle-calmi-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lifestyle-calmi-text {
        max-width: 100%;
    }
    
    .lifestyle-calmi-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .calmi-feature-divider {
        display: none;
    }
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #1a1a1a;
    color: white;
}

.btn-outline-dark span {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-outline-dark:hover span {
    transform: translateX(5px);
}

.btn-dark:hover {
    background: #333;
}

.lifestyle-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.lifestyle-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.lifestyle-image:hover img {
    transform: scale(1.03);
}

/* Lifestyle Bottom Features Bar */
.lifestyle-bottom-features {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 50px 60px;
    background: #f5efe8;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 60px;
}

.bottom-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1a1a1a;
}

.bottom-feature svg {
    color: #1a1a1a;
}

.bottom-feature div {
    display: flex;
    flex-direction: column;
}

.bottom-feature strong {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.bottom-feature span {
    font-size: 13px;
    color: #666;
}

/* Benefits Section New Style */
.benefits-section-new {
    background: white;
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-new-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-icons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.benefit-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.benefit-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f5efe8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-icon-circle svg {
    color: #1a1a1a;
}

.benefit-icon-item:hover .benefit-icon-circle {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon-item strong {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.benefit-icon-item span {
    font-size: 13px;
    color: #666;
    max-width: 140px;
}

.benefits-text-side {
    padding: 20px 0;
}

.benefits-subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
}

.benefits-text-side h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: Georgia, 'Times New Roman', serif;
}

.benefits-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

/* Mini Designed Carousel */
.designed-carousel {
    overflow: hidden;
    background: #ffffff;
    padding: 16px 0;
    margin-top: 60px;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    border-top: 1px solid #e5e5e5;
}

@media (min-width: 769px) {
    .designed-carousel {
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        width: 100vw;
    }
}

.benefits-section-new {
    background: white;
    padding: 100px 60px 0 60px;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.designed-track {
    display: flex;
    gap: 0;
    animation: scrollDesigned 30s linear infinite;
    white-space: nowrap;
}

.designed-track span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #666;
    flex-shrink: 0;
}

.designed-track .separator {
    margin: 0 25px;
    color: #ccc;
}

@keyframes scrollDesigned {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Benefits Section Old - Keep for compatibility */
.benefits-section {
    margin: 0;
    padding: 80px 60px;
    background: white;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--purple-light);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

/* Product Description */
.product-description {
    background: white;
    padding: 80px 60px;
    margin: 0 auto;
    max-width: 1400px;
}

.product-description h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.product-description h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-description ul {
    list-style: none;
    padding-left: 0;
}

.product-description li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.product-description li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--purple-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    margin: 0 auto;
    padding: 80px 60px;
    max-width: 1400px;
    background: #f9f9f9;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.testimonials-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B7BC8 0%, #6b5ca5 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(139, 123, 200, 0.3);
}

.testimonial-name {
    font-weight: 600;
    font-size: 16px;
}

.testimonial-location {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-rating {
    color: #f39c12;
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Us VS Other Section - Calmi Style */
.vs-section {
    background: #f5efe8;
    padding: 40px 60px 80px 60px;
}

.vs-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vs-header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
}

.vs-product-img-left {
    width: 350px;
    height: auto;
    margin-bottom: -30px;
}

.vs-product-img-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

.vs-product-img-left img.vs-logo {
    max-height: 180px;
}

.vs-title {
    font-size: 36px;
    font-weight: 400;
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 0;
    color: #1a1a1a;
}

.vs-table {
    background: white;
    border-radius: 0;
    overflow: hidden;
    text-align: left;
}

.vs-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e5e5e5;
}

.vs-col-label {
    padding: 30px;
}

.vs-col-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-left: 1px solid #e5e5e5;
    background: white;
}

.vs-col-other {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-left: 1px solid #e5e5e5;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    text-decoration: underline;
}

.vs-brand {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: Georgia, 'Times New Roman', serif;
}

.vs-product-img {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
}

.vs-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.vs-brand {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: Georgia, 'Times New Roman', serif;
}

.vs-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e5e5e5;
}

.vs-row:last-child {
    border-bottom: none;
}

.vs-feature {
    padding: 20px 30px;
    font-size: 15px;
    color: #333;
}

.vs-feature strong {
    font-weight: 600;
}

.vs-us-value,
.vs-other-value {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-left: 1px solid #e5e5e5;
    font-size: 16px;
    font-weight: 600;
}

.vs-us-value {
    background: white;
}

.vs-other-value {
    background: #fafafa;
}

.vs-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    font-size: 16px;
}

.vs-cross {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    font-size: 14px;
}

/* Old Comparison Section - Keep for compatibility */
.comparison-section {
    margin: 0 auto;
    padding: 80px 60px;
    background: white;
    max-width: 1400px;
}

.comparison-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: linear-gradient(135deg, #8B7BC8 0%, #6b5ca5 100%);
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table .highlight-col {
    background: var(--purple-light);
}

.comparison-table .check {
    color: var(--success-color);
    font-size: 24px;
    font-weight: 700;
}

.comparison-table .cross {
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    margin: 0 auto;
    padding: 80px 60px;
    max-width: 1400px;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-item {
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-light);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* FAQ Section - Calmi Style */
.faq-section-calmi {
    background: white;
    padding: 80px 60px;
}

.faq-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 200px;
    align-items: start;
    padding-right: 40px;
}

.faq-left h2 {
    font-size: 36px;
    font-weight: 400;
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-item-calmi {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question-calmi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: opacity 0.2s;
}

.faq-question-calmi:hover {
    opacity: 0.7;
}

.faq-question-calmi span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.faq-plus {
    font-size: 22px;
    font-weight: 300;
    color: #1a1a1a;
    transition: transform 0.3s;
}

.faq-item-calmi.active .faq-plus {
    transform: rotate(45deg);
}

.faq-answer-calmi {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item-calmi.active .faq-answer-calmi {
    max-height: 300px;
}

.faq-answer-calmi p {
    padding: 0 0 20px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.faq-right {
    align-self: center;
}

.faq-contact-box {
    background: #f5efe8;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
}

.faq-contact-box h3 {
    font-size: 24px;
    font-weight: 400;
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.faq-contact-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.faq-hours {
    font-weight: 600;
    color: #1a1a1a !important;
    margin-bottom: 25px !important;
}

.faq-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1a1a1a;
    color: white;
    padding: 16px 30px;
    border-radius: 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
    margin-top: 20px;
}

.faq-contact-btn:hover {
    background: #333;
}

.faq-contact-btn svg {
    flex-shrink: 0;
}

.faq-contact-btn span {
    margin-left: auto;
    font-size: 18px;
}

/* Final CTA */
.final-cta-section {
    padding: 100px 20px;
    background: #1a1a1a;
    text-align: center;
    color: white;
}

.final-cta-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.final-cta-section > .container > p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-benefit {
    font-size: 16px;
    font-weight: 600;
}

.btn-large {
    font-size: 20px;
    padding: 20px 50px;
}

.cta-secure {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* ===== Cart Sidebar ===== */
.cart-sidebar {
    position: fixed;
    right: -500px;
    top: 0;
    width: 500px;
    max-width: 100%;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.close-cart {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    color: #1a1a1a;
}

/* Free Shipping Banner */
.cart-shipping-banner {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 15px 25px;
    text-align: center;
    border-bottom: 1px solid #bbf7d0;
}

.shipping-text {
    font-size: 14px;
    color: #16a34a;
    font-weight: 600;
}

.shipping-progress {
    position: relative;
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    margin-top: 10px;
    overflow: visible;
}

.shipping-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 4px;
    width: 100%;
    transition: width 0.3s;
}

.shipping-truck {
    position: absolute;
    right: -5px;
    top: -8px;
    font-size: 18px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
    max-height: calc(100vh - 550px);
}

.empty-cart {
    text-align: center;
    color: var(--text-light);
    padding: 40px 20px;
    font-size: 15px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 15px;
    color: #1a1a1a;
}

.cart-item-bundle {
    font-size: 13px;
    color: #16a34a;
    font-weight: 500;
    margin-bottom: 6px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 8px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: linear-gradient(135deg, #f8f8f8, #efefef);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.qty-btn:first-child {
    border-radius: 10px 0 0 10px;
    border-right: 1px solid #e0e0e0;
}

.qty-btn:last-child {
    border-radius: 0 10px 10px 0;
    border-left: 1px solid #e0e0e0;
}

.qty-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    transform: scale(1.05);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-value {
    width: 50px;
    height: 36px;
    border: none;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.cart-item-price {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 16px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

/* Upsell Section */
.cart-upsell {
    padding: 15px 25px;
    background: #fafafa;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.upsell-product {
    display: flex;
    gap: 15px;
    align-items: center;
}

.upsell-image {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.upsell-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upsell-info {
    flex: 1;
}

.upsell-title {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.upsell-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.upsell-price {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
}

.upsell-old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.upsell-discount {
    background: #fef3cd;
    color: #856404;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.upsell-add-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.upsell-add-btn:hover {
    background: #219a52;
}

/* VIP Protection */
.vip-protection {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.vip-icon {
    flex-shrink: 0;
}

.vip-info {
    flex: 1;
}

.vip-title {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

.vip-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.vip-price {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

.vip-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.vip-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.vip-toggle input:checked + .toggle-slider {
    background-color: #29b6f6;
}

.vip-toggle input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.cart-footer {
    padding: 20px 25px;
    background: #fff;
    border-top: 1px solid var(--border-color);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 0;
    color: #1a1a1a;
}

.btn-checkout {
    width: 100%;
    padding: 18px 30px;
    font-size: 16px;
    margin-bottom: 20px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-checkout:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Cart Trust Badges */
.cart-trust-badges {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.trust-badge svg {
    margin-bottom: 8px;
    color: #1a1a1a;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 11px;
    font-weight: 600;
    color: #1a1a1a;
}

.trust-text span {
    font-size: 10px;
    color: #666;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* ===== Community Section ===== */
.community-section {
    background: #f5efe8;
    padding: 80px 80px 60px 80px;
    margin-bottom: 0;
}

.community-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
}

.community-text {
    max-width: 500px;
}

.community-hashtag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #8B7BC8;
    margin-bottom: 15px;
    display: block;
}

.community-section h2 {
    font-size: 36px;
    font-weight: 400;
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.community-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.btn-community {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #1a1a1a;
    padding: 18px 35px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid #1a1a1a;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-community:hover {
    background: #1a1a1a;
    color: white;
}

.btn-community span {
    font-size: 20px;
}

/* Community Carousel */
.community-carousel {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    padding: 20px 0;
}

.community-carousel:active {
    cursor: grabbing;
}

.community-carousel.dragging {
    cursor: grabbing;
}

.community-track {
    display: flex;
    gap: 15px;
    transition: transform 0.1s ease-out;
}

.community-track.dragging {
    transition: none;
}

.community-img {
    flex: 0 0 250px;
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.community-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    pointer-events: none;
}

.community-img:hover img {
    transform: scale(1.08);
}

/* Overlay effet sur hover */
.community-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s;
    pointer-events: none;
}

.community-img:hover::after {
    background: rgba(0,0,0,0.1);
}

/* Play icon for video items in community carousel */
.community-img.video {
    cursor: pointer;
}

.community-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.community-play svg {
    margin-left: 3px;
}

.community-play i {
    color: white;
    font-size: 18px;
    margin-left: 3px;
}

.community-img.video:hover .community-play {
    background: rgba(230, 126, 34, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 60px 0 20px;
    margin-top: 80px;
    color: white;
}

/* Footer Calmi Style */
.footer-calmi {
    background: #e8e0d4;
    margin-top: 0;
}

.footer-main {
    padding: 60px 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-col p strong {
    color: #1a1a1a;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #1a1a1a;
}

.footer-address {
    font-style: normal;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #999;
    padding-bottom: 8px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    padding: 8px 0;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #1a1a1a;
    transition: transform 0.2s;
}

.newsletter-form button:hover {
    transform: translateX(3px);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    color: #1a1a1a;
}

.social-icon:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background: #e8e0d4;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 20px 80px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid #999;
    cursor: pointer;
    font-size: 13px;
    color: #1a1a1a;
    transition: border-color 0.2s;
}

.country-selector:hover {
    border-color: #1a1a1a;
}

.copyright {
    font-size: 13px;
    color: #666;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-right > span {
    font-size: 13px;
    color: #666;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-payment img {
    height: 24px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icon {
    width: 40px;
    height: 26px;
    background: #1a1a1a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    color: white;
}

.payment-icon.amex {
    background: #006fcf;
}

.payment-icon.apple-pay,
.payment-icon.mastercard,
.payment-icon.shop-pay,
.payment-icon.visa {
    background: transparent;
    padding: 0;
}

.payment-icon.cb {
    background: #1a472a;
}

.payment-icon svg {
    width: 100%;
    height: 100%;
}

.footer h4,
.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.9);
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .product-section {
        padding: 30px 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Header Mobile */
    .header-container {
        padding: 0 15px;
    }
    
    .side-menu {
        width: 300px;
        left: -300px;
    }
    
    /* Product Section Mobile */
    .product-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .product-images {
        position: static;
    }
    
    .main-image-container {
        padding: 20px;
    }
    
    .thumbnail {
        flex: 0 0 65px;
        width: 65px;
        height: 65px;
    }
    
    .product-info h1 {
        font-size: 24px;
    }
    
    .bundle-options {
        grid-template-columns: 1fr;
    }
    
    .lifestyle-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .lifestyle-text {
        padding: 20px;
    }
    
    .lifestyle-text h2 {
        font-size: 28px;
    }
    
    .lifestyle-bottom-features {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .benefits-section-new {
        padding: 60px 20px;
    }
    
    .benefits-new-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefits-icons-grid {
        gap: 30px;
    }
    
    .benefit-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .benefits-text-side h2 {
        font-size: 28px;
    }
    
    .quick-benefits {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .media-logos-scroll {
        gap: 30px;
    }
    
    .media-logo {
        font-size: 18px;
    }
    
    .price {
        font-size: 28px;
    }
    
    .original-price {
        font-size: 20px;
    }
    
    .benefits-section,
    .comparison-section,
    .product-description {
        padding: 30px 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .faq-section {
        padding: 30px 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .faq-section-calmi {
        padding: 40px 20px;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-left h2 {
        font-size: 28px;
    }
    
    .faq-right {
        position: static;
    }
    
    .testimonials-section {
        padding: 30px 15px;
    }
    
    .benefits-section h2,
    .testimonials-section h2,
    .comparison-section h2,
    .faq-section h2 {
        font-size: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .final-cta-section {
        padding: 40px 20px;
    }
    
    .final-cta-section h2 {
        font-size: 24px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-large {
        font-size: 16px;
        padding: 16px 30px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-sidebar.active {
        right: 0;
    }
    
    .cart-items {
        max-height: calc(100vh - 480px);
    }
    
    .cart-trust-badges {
        flex-direction: row;
        gap: 5px;
    }
    
    .trust-badge {
        padding: 5px;
    }
    
    .trust-text strong {
        font-size: 10px;
    }
    
    .trust-text span {
        font-size: 9px;
    }
    
    .vip-protection {
        flex-wrap: wrap;
    }
    
    .vip-info {
        flex: 0 0 calc(100% - 100px);
    }
    
    .vip-price {
        margin-left: 36px;
    }
    
    /* Footer Responsive */
    .footer-main {
        padding: 40px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom-bar {
        padding: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 12px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .payment-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===== Sticky Add to Cart Bar ===== */
.sticky-cart-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 998;
    transition: bottom 0.3s ease;
}

.sticky-cart-bar.visible {
    bottom: 0;
}

.sticky-cart-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-cart-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-cart-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.sticky-cart-details {
    display: flex;
    flex-direction: column;
}

.sticky-cart-name {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
}

.sticky-cart-price {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-old-price {
    font-weight: 400;
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.sticky-cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-cart-btn:hover {
    background: #333;
    transform: scale(1.02);
}

.sticky-cart-btn svg {
    stroke: white;
}

/* ===== Promo Popup ===== */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-popup-overlay.visible {
    display: flex;
    opacity: 1;
}

.promo-popup {
    background: #faf9f7;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #e8e4de;
}

.promo-popup-overlay.visible .promo-popup {
    transform: scale(1);
}

.promo-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: 1px solid #ddd;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: all 0.2s;
    z-index: 10;
}

.promo-popup-close:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: white;
}

.promo-popup-content {
    padding: 50px 40px 40px;
    text-align: center;
}

.promo-popup-badge {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.promo-popup h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.promo-popup p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.promo-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    border: 2px dashed #d4cfc7;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 25px;
}

.promo-code {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.copy-code-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.copy-code-btn:hover {
    background: #333;
}

.promo-popup-btn {
    width: 100%;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.promo-popup-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.promo-popup-note {
    font-size: 13px !important;
    color: #999 !important;
    margin-bottom: 0 !important;
    font-weight: 400;
}

@media (max-width: 768px) {
    .sticky-cart-bar {
        padding: 10px 15px;
    }
    
    .sticky-cart-info {
        display: none;
    }
    
    .sticky-cart-btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
    
    .promo-popup-content {
        padding: 40px 25px 30px;
    }
    
    .promo-popup h2 {
        font-size: 26px;
    }
    
    .promo-code {
        font-size: 18px;
    }
}

/* ===== Section Social Proof / Instagram ===== */
.social-proof-section {
    padding: 60px 20px;
    background: #fdf8f3;
    text-align: center;
}

.social-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #e74c3c;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.social-hashtag {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #f1c40f, #2ecc71, #3498db, #9b59b6, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.social-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.social-item {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: scale(1.05);
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-handle {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.play-overlay svg {
    margin-left: 4px;
}

.play-overlay i {
    color: white;
    font-size: 20px;
    margin-left: 4px;
}

.social-item:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(230, 126, 34, 0.9);
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Media Modal ===== */
.media-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.media-modal.active {
    opacity: 1;
    visibility: visible;
}

.media-modal-content {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    max-height: 90vh;
    width: 90%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.media-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.3s ease;
}

.media-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.media-modal-body {
    display: flex;
    flex-direction: row;
}

.media-modal-media {
    flex: 1;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 500px;
}

.media-modal-media video,
.media-modal-media img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.media-modal-info {
    width: 300px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    background: white;
}

.media-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.modal-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.modal-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-user-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
}

.modal-username {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.modal-verified {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.modal-date {
    color: #999;
    font-size: 12px;
    margin-left: auto;
}

.modal-rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
}

.modal-comment {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.modal-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
    margin-top: auto;
}

.modal-product img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.modal-product-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.modal-product-name {
    font-weight: bold;
    font-size: 13px;
    color: #333;
}

.modal-view-product {
    color: #e67e22;
    font-size: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-view-product:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .media-modal-body {
        flex-direction: column;
    }
    
    .media-modal-info {
        width: 100%;
    }
    
    .media-modal-media {
        max-height: 300px;
    }
    
    .media-modal-media video,
    .media-modal-media img {
        max-height: 300px;
    }
}

/* ===== Section Produits Recommandés ===== */
.recommended-products {
    padding: 60px 20px;
    background: #fafafa;
}

.recommended-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #e67e22;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card-mini {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card-mini.popular {
    border: 2px solid #e74c3c;
}

.badge-popular {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 1;
}

.product-image-mini {
    height: 180px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-mini img {
    max-height: 160px;
    object-fit: contain;
}

.product-name-mini {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 15px 5px;
    color: #333;
}

.product-rating-mini {
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-rating-mini .stars {
    color: #f39c12;
    font-size: 12px;
}

.product-rating-mini .rating-count {
    font-size: 12px;
    color: #999;
}

.product-price-mini {
    padding: 10px 15px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price-mini .price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.product-price-mini .price-new {
    font-size: 16px;
    font-weight: 700;
    color: #2ecc71;
}

/* ===== Section Avis Clients ===== */
.customer-reviews {
    padding: 60px 20px;
    background: #fff;
}

.reviews-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 40px;
    align-items: start;
    padding: 30px;
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 40px;
}

.rating-overview {
    text-align: center;
}

.rating-big {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.rating-stars-big {
    color: #f39c12;
    font-size: 24px;
    margin: 8px 0;
}

.rating-total {
    font-size: 14px;
    color: #666;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-label {
    font-size: 13px;
    color: #666;
    min-width: 70px;
}

.bar-container {
    flex: 1;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    max-width: 200px;
}

.bar-fill {
    height: 100%;
    background: #2ecc71;
    border-radius: 5px;
}

.rating-count-bar {
    font-size: 13px;
    color: #666;
    min-width: 40px;
    text-align: right;
}

.reviews-images {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.review-media-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
    position: relative;
}

.review-media-item:hover {
    transform: scale(1.1);
}

.review-media-item img,
.review-media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-play-icon svg {
    margin-left: 2px;
}

.mini-play-icon i {
    color: white;
    font-size: 10px;
    margin-left: 2px;
}

.reviews-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.reviews-images img:hover {
    transform: scale(1.1);
}

.reviews-filter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.reviews-filter .btn-leave-review {
    padding: 10px 20px;
    font-size: 14px;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

/* ===== Formulaire Laisser un Avis ===== */
.leave-review-section {
    margin: 30px 0;
}

.btn-leave-review {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.btn-leave-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.btn-leave-review span {
    font-size: 16px;
}

.review-form-container {
    display: none;
    max-width: 600px;
    margin: 30px auto 0;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
    animation: slideDown 0.3s ease;
}

.review-form-container.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-form-container h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
    color: #1a1a1a;
}

.review-form-container .form-group {
    margin-bottom: 20px;
}

.review-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.review-form-container input[type="text"],
.review-form-container input[type="email"],
.review-form-container textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.review-form-container input:focus,
.review-form-container textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.review-form-container small {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 12px;
}

.review-form-container input[type="file"] {
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
    margin-bottom: 0;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #ffc107;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.btn-cancel {
    padding: 12px 25px;
    background: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #e8e8e8;
}

.btn-submit-review {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Success Message */
.review-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: white;
}

.review-success h3 {
    color: #27ae60;
    margin-bottom: 10px;
}

.review-success p {
    color: #666;
    margin-bottom: 20px;
}

.btn-close-success {
    padding: 12px 30px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-success:hover {
    background: #219a52;
}

/* Liste des avis */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-name {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.verified-badge {
    background: #e8f5e9;
    color: #27ae60;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.review-date {
    font-size: 13px;
    color: #999;
}

.review-rating {
    color: #f39c12;
    font-size: 14px;
    margin-bottom: 10px;
}

.review-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.review-image {
    margin: 15px 0;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.review-image img {
    max-width: 120px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.review-image:hover img {
    transform: scale(1.05);
}

.image-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-zoom-icon i {
    color: white;
    font-size: 14px;
}

.review-image:hover .image-zoom-icon {
    opacity: 1;
}

.review-response {
    background: #f9f9f9;
    border-left: 3px solid #e67e22;
    padding: 15px 20px;
    margin-top: 15px;
    border-radius: 0 8px 8px 0;
}

.review-response strong {
    color: #e67e22;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.review-response p {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}

.review-response p:last-child {
    margin-bottom: 0;
}

/* Pagination */
.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    border-color: #e67e22;
    color: #e67e22;
}

.pagination-btn.active {
    background: #e67e22;
    color: white;
    border-color: #e67e22;
}

.pagination-dots {
    font-size: 18px;
    font-weight: bold;
    color: #666;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

/* Responsive pour les sections avis */
@media (max-width: 992px) {
    .reviews-summary {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .social-gallery {
        gap: 10px;
    }
    
    .social-item {
        width: 100px;
        height: 100px;
    }
    
    .social-hashtag {
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image-mini {
        height: 140px;
    }
    
    .reviews-summary {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .rating-breakdown {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .reviews-images {
        justify-content: center;
    }
    
    .reviews-filter {
        justify-content: center;
    }
    
    .reviewer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .review-header {
        flex-wrap: wrap;
    }
    
    .review-date {
        width: 100%;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .social-item {
        width: 80px;
        height: 80px;
    }
    
    .social-handle {
        display: none;
    }
    
    .recommended-title {
        font-size: 22px;
    }
    
    .product-name-mini {
        font-size: 12px;
    }
    
    .rating-big {
        font-size: 36px;
    }
}

/* ===== Cookie Consent Popup ===== */
.cookie-consent {
    position: fixed;
    bottom: -300px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: bottom 0.5s ease;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 40px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-accept {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.cookie-decline {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.cookie-decline:hover {
    background: #eee;
}

.cookie-settings {
    background: transparent;
    color: #e67e22;
    border: 1px solid #e67e22;
}

.cookie-settings:hover {
    background: #fff5eb;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .cookie-icon {
        font-size: 30px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-text h3 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 12px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 80px;
        padding: 10px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .cookie-content {
        padding: 12px;
        gap: 10px;
    }
    
    .cookie-icon {
        font-size: 24px;
    }
    
    .cookie-text h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .cookie-text p {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .cookie-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        width: auto;
        flex: 1 1 45%;
        padding: 10px 12px;
        font-size: 11px;
    }
}

/* ===== HOME PAGE STYLES ===== */

/* Header CTA Button */
.btn-header-cta {
    background: #e67e22;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-header-cta:hover {
    background: #d35400;
    transform: scale(1.05);
}

/* Hero Home Section */
.hero-home {
    padding: 60px 20px 80px;
    background: linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
}

.hero-home-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-home-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.hero-home-subtitle {
    font-size: 1.3rem;
    color: #e67e22;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-home-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-home-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.hero-benefit {
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-home-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.hero-home-guarantee {
    font-size: 0.9rem;
    color: #666;
}

.hero-home-image {
    position: relative;
}

.hero-home-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* CTA Home Section */
.cta-home {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-home-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-home-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.cta-home-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.cta-home-prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-old-price {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.cta-new-price {
    font-size: 2.5rem;
    color: #e67e22;
    font-weight: 700;
}

.cta-home-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.cta-home-trust span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ===== RESPONSIVE MOBILE COMPLET ===== */

/* ----- TABLETTE (max 968px) ----- */
@media (max-width: 968px) {
    /* Hero Home */
    .hero-home-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-home-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-home-cta {
        align-items: center;
    }
    
    .hero-home-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Product Section */
    .product-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .product-images {
        position: static;
    }
    
    /* Benefits */
    .benefits-new-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* VS Section */
    .vs-section {
        padding: 40px 20px;
    }
    
    .vs-product-img-left {
        width: 250px;
    }
    
    .vs-title {
        font-size: 28px;
    }
    
    /* FAQ */
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-right: 0;
    }
    
    /* Community */
    .community-section {
        padding: 60px 20px 40px;
    }
    
    .community-header {
        flex-direction: column;
        text-align: center;
    }
    
    .community-img {
        flex: 0 0 200px;
        width: 200px;
        height: 200px;
    }
}

/* ----- MOBILE LARGE (max 768px) ----- */
@media (max-width: 768px) {
    /* Base */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    body {
        padding-top: 44px;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Promo Banner */
    .promo-banner-top {
        padding: 10px 10px;
        font-size: 12px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .promo-slider {
        max-width: 200px;
    }
    
    .promo-badge {
        padding: 3px 8px;
        font-size: 10px;
    }
    
    .promo-text {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    .promo-arrow {
        padding: 0 10px;
        font-size: 16px;
    }
    
    /* Header */
    .header {
        padding: 12px 0;
        width: 100%;
        max-width: 100%;
    }
    
    .header-container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .btn-header-cta {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    /* Side Menu */
    .side-menu {
        width: 100%;
        max-width: 320px;
        left: -320px;
    }
    
    .side-menu-link {
        padding: 18px 0;
        font-size: 16px;
    }
    
    /* Stars Banner */
    .stars-banner {
        padding: 10px 15px;
        font-size: 11px;
        flex-wrap: wrap;
        text-align: center;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .stars-display {
        margin-right: 6px;
        font-size: 14px;
    }
    
    /* Product Section */
    .product-section {
        padding: 20px 0 40px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .product-container {
        padding: 0 15px;
        gap: 25px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Product Images */
    .product-images {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .gallery-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .main-image-container {
        aspect-ratio: 1 / 1;
        padding: 15px;
        margin-bottom: 10px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .main-image-container > img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .thumbnail-gallery {
        gap: 8px;
    }
    
    .thumbnail {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
        padding: 5px;
    }
    
    /* Product Info */
    .product-info {
        padding: 0;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }
    
    .product-info h1 {
        font-size: 26px;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .product-subtitle {
        font-size: 16px;
    }
    
    .product-intro {
        font-size: 14px;
    }
    
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* Reviews Carousel */
    .reviews-carousel {
        padding: 10px 12px;
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .reviews-track {
        width: 100%;
    }
    
    .review-slide {
        width: 100%;
    }
    
    .review-content {
        overflow: hidden;
    }
    
    .review-text {
        font-size: 12px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .review-avatar {
        width: 35px;
        height: 35px;
    }
    
    .review-text {
        font-size: 13px;
    }
    
    .review-author {
        font-size: 11px;
    }
    
    /* Key Benefits */
    .key-benefits-list {
        margin: 20px 0;
    }
    
    .key-benefit {
        font-size: 14px;
        padding: 6px 0;
    }
    
    /* Bundle Options */
    .bundle-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .bundle-content {
        padding: 14px;
        min-height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .bundle-info {
        margin-bottom: 0;
    }
    
    .bundle-label {
        font-size: 15px;
    }
    
    .bundle-description {
        font-size: 12px;
    }
    
    .bundle-price .new-price {
        font-size: 18px;
    }
    
    .popular-tag {
        font-size: 9px;
        padding: 2px 8px;
    }
    
    /* Free Bonuses */
    .free-bonuses {
        padding: 12px;
    }
    
    .bonus-item {
        padding: 8px 0;
        font-size: 13px;
    }
    
    /* Price Section */
    .product-price {
        margin-bottom: 20px;
    }
    
    .price {
        font-size: 28px;
    }
    
    .original-price {
        font-size: 18px;
    }
    
    /* Add to Cart */
    .add-cart-container {
        margin-bottom: 15px;
    }
    
    .btn-add-cart {
        padding: 16px 30px;
        font-size: 15px;
        max-width: 100%;
    }
    
    /* Payment Icons */
    .payment-icons {
        gap: 12px;
        padding: 15px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .payment-icon {
        height: 22px;
    }
    
    /* Product Features */
    .product-features {
        padding: 15px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    /* Product Accordions */
    .accordion-header {
        padding: 15px 0;
        font-size: 13px;
    }
    
    .accordion-content p,
    .accordion-content ul {
        font-size: 13px;
    }
    
    /* Important Notice */
    .important-notice {
        padding: 15px;
        margin-top: 20px;
    }
    
    .important-notice p {
        font-size: 12px;
    }
    
    /* Media Logos */
    .media-logos-section {
        padding: 30px 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .media-logos-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .media-logos-scroll {
        gap: 30px;
        padding-right: 30px;
    }
    
    .media-logo {
        font-size: 16px;
    }
    
    /* Lifestyle Section */
    .lifestyle-calmi {
        padding: 50px 15px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .lifestyle-calmi-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .lifestyle-calmi-text {
        max-width: 100%;
    }
    
    .lifestyle-calmi-text h2 {
        font-size: 28px;
    }
    
    .lifestyle-calmi-desc {
        font-size: 14px;
    }
    
    .lifestyle-calmi-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 100%;
    }
    
    .calmi-feature {
        padding: 0 15px;
    }
    
    .calmi-feature-divider {
        display: none;
    }
    
    /* Benefits Section */
    .benefits-section-new {
        padding: 50px 15px 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .benefits-icons-grid {
        gap: 25px;
    }
    
    .benefit-icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon-circle svg {
        width: 28px;
        height: 28px;
    }
    
    .benefit-icon-item strong {
        font-size: 12px;
    }
    
    .benefit-icon-item span {
        font-size: 11px;
    }
    
    .benefits-text-side h2 {
        font-size: 26px;
    }
    
    .benefits-description {
        font-size: 15px;
    }
    
    /* VS Section */
    .vs-section {
        padding: 30px 10px 50px;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }
    
    .vs-container {
        max-width: 100%;
        overflow-x: auto;
    }
    
    .vs-header-top {
        margin-bottom: 20px;
    }
    
    .vs-product-img-left {
        width: 200px;
        margin-bottom: -20px;
    }
    
    .vs-title {
        font-size: 24px;
    }
    
    .vs-header {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .vs-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .vs-col-label {
        padding: 20px 15px;
    }
    
    .vs-feature {
        padding: 15px;
        font-size: 13px;
    }
    
    .vs-col-us,
    .vs-col-other {
        padding: 15px 10px;
    }
    
    .vs-brand {
        font-size: 14px;
    }
    
    .vs-product-img {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }
    
    .vs-check,
    .vs-cross {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    /* FAQ Section */
    .faq-section-calmi {
        padding: 50px 15px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .faq-left h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .faq-question-calmi span:first-child {
        font-size: 14px;
    }
    
    .faq-answer-calmi p {
        font-size: 13px;
    }
    
    .faq-contact-box {
        padding: 30px 20px;
    }
    
    .faq-contact-box h3 {
        font-size: 20px;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 50px 15px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .testimonials-section h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .testimonials-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-card h4 {
        font-size: 16px;
    }
    
    .testimonial-card p {
        font-size: 14px;
    }
    
    /* Community Section */
    .community-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .community-section h2 {
        font-size: 26px;
    }
    
    .community-text p {
        font-size: 14px;
    }
    
    .btn-community {
        padding: 14px 25px;
        font-size: 11px;
    }
    
    .community-img {
        flex: 0 0 160px;
        width: 160px;
        height: 160px;
    }
    
    .community-play {
        width: 40px;
        height: 40px;
    }
    
    /* Cart Sidebar */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-header {
        padding: 15px 20px;
    }
    
    .cart-header h2 {
        font-size: 18px;
    }
    
    .cart-items {
        padding: 15px 20px;
        max-height: calc(100vh - 420px);
    }
    
    .cart-item {
        gap: 12px;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-title {
        font-size: 14px;
    }
    
    .cart-trust-badges {
        flex-direction: row;
        gap: 8px;
    }
    
    .trust-badge {
        padding: 5px;
    }
    
    .trust-text strong {
        font-size: 10px;
    }
    
    .trust-text span {
        font-size: 9px;
    }
    
    /* Quick Benefits */
    .quick-benefits {
        grid-template-columns: 1fr 1fr;
        padding: 40px 20px;
        gap: 30px;
    }
    
    .benefit-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .quick-benefit-item h4 {
        font-size: 12px;
    }
    
    .quick-benefit-item p {
        font-size: 12px;
    }
    
    /* CTA Home */
    .cta-home {
        padding: 50px 15px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .cta-home-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-home-content p {
        font-size: 1rem;
    }
    
    .cta-home-prices {
        flex-direction: row;
        gap: 15px;
    }
    
    .cta-old-price {
        font-size: 1.2rem;
    }
    
    .cta-new-price {
        font-size: 2rem;
    }
    
    .cta-home-trust {
        flex-direction: column;
        gap: 8px;
    }
    
    .cta-home-trust span {
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer-calmi {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .footer-main {
        padding: 40px 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-col h4 {
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    .footer-col p,
    .footer-col a {
        font-size: 13px;
    }
    
    .footer-bottom-bar {
        padding: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Sticky Cart Bar */
    .sticky-cart-bar {
        padding: 10px 15px;
    }
    
    .sticky-cart-info {
        display: none;
    }
    
    .sticky-cart-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 13px;
    }
    
    /* Promo Popup */
    .promo-popup-content {
        padding: 35px 20px 25px;
    }
    
    .promo-popup h2 {
        font-size: 22px;
    }
    
    .promo-popup p {
        font-size: 14px;
    }
    
    .promo-code {
        font-size: 16px;
    }
    
    .promo-code-box {
        padding: 12px 15px;
    }
    
    /* Final CTA */
    .final-cta-section {
        padding: 50px 20px;
    }
    
    .final-cta-section h2 {
        font-size: 24px;
    }
    
    .final-cta-section > .container > p {
        font-size: 15px;
    }
    
    .btn-large {
        font-size: 15px;
        padding: 16px 35px;
    }
}

/* ----- MOBILE SMALL (max 480px) ----- */
@media (max-width: 480px) {
    /* Promo Banner */
    .promo-banner-top {
        padding: 8px 5px;
    }
    
    .promo-slider {
        max-width: 220px;
        height: 20px;
    }
    
    .promo-badge {
        padding: 2px 6px;
        font-size: 9px;
    }
    
    .promo-text {
        font-size: 10px;
    }
    
    .promo-arrow {
        padding: 0 6px;
        font-size: 14px;
    }
    
    /* Header */
    .logo {
        font-size: 20px;
    }
    
    .btn-header-cta {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .hamburger-line {
        width: 18px;
    }
    
    /* Stars Banner */
    .stars-banner {
        font-size: 11px;
        padding: 8px 10px;
    }
    
    .stars-display {
        font-size: 12px;
    }
    
    /* Product */
    .product-info h1 {
        font-size: 22px;
    }
    
    .product-subtitle {
        font-size: 14px;
    }
    
    .thumbnail {
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
    }
    
    .gallery-nav svg {
        width: 18px;
        height: 18px;
    }
    
    /* Key Benefits */
    .key-benefit {
        font-size: 13px;
    }
    
    /* Bundle */
    .bundle-content {
        padding: 12px;
    }
    
    .bundle-label {
        font-size: 14px;
    }
    
    .bundle-price .new-price {
        font-size: 16px;
    }
    
    .bundle-price .old-price {
        font-size: 12px;
    }
    
    /* Buttons */
    .btn-add-cart {
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .btn-orange {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    /* Price */
    .price {
        font-size: 26px;
    }
    
    .original-price {
        font-size: 16px;
    }
    
    /* Sections */
    .benefits-text-side h2 {
        font-size: 22px;
    }
    
    .benefits-description {
        font-size: 14px;
    }
    
    .benefits-icons-grid {
        gap: 20px;
    }
    
    /* VS Section */
    .vs-title {
        font-size: 20px;
    }
    
    .vs-product-img-left {
        width: 150px;
    }
    
    .vs-feature {
        padding: 12px 10px;
        font-size: 12px;
    }
    
    .vs-brand {
        font-size: 12px;
    }
    
    .vs-product-img {
        width: 35px;
        height: 35px;
    }
    
    /* FAQ */
    .faq-left h2 {
        font-size: 22px;
    }
    
    .faq-question-calmi span:first-child {
        font-size: 13px;
    }
    
    /* Community */
    .community-section h2 {
        font-size: 22px;
    }
    
    .community-img {
        flex: 0 0 130px;
        width: 130px;
        height: 130px;
    }
    
    /* CTA */
    .cta-home-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-new-price {
        font-size: 1.8rem;
    }
    
    /* Hero */
    .hero-home {
        padding: 30px 15px 50px;
    }
    
    .hero-home-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-home-subtitle {
        font-size: 1rem;
    }
    
    .hero-home-desc {
        font-size: 0.95rem;
    }
    
    .hero-benefit {
        font-size: 0.9rem;
    }
    
    /* Quick Benefits */
    .quick-benefits {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-bottom: none;
        gap: 10px;
    }
    
    .newsletter-form input {
        border: 1px solid #999;
        padding: 12px;
        border-radius: 5px;
    }
    
    .newsletter-form button {
        align-self: flex-start;
    }
    
    /* Reviews Section */
    .reviews-summary {
        padding: 20px;
    }
    
    .rating-big {
        font-size: 36px;
    }
    
    .reviews-images img,
    .review-media-item {
        width: 60px;
        height: 60px;
    }
    
    /* Social */
    .social-item {
        width: 80px;
        height: 80px;
    }
    
    .social-handle {
        display: none;
    }
    
    .social-hashtag {
        font-size: 20px;
    }
    
    /* Recommended Products */
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .product-image-mini {
        height: 120px;
    }
    
    .product-name-mini {
        font-size: 12px;
        padding: 10px 10px 5px;
    }
    
    .product-price-mini {
        padding: 8px 10px 12px;
    }
    
    .product-price-mini .price-new {
        font-size: 14px;
    }
}

/* ----- TRÈS PETIT ÉCRAN (max 360px) ----- */
@media (max-width: 360px) {
    .promo-banner-top {
        padding: 6px 3px;
    }
    
    .promo-slider {
        max-width: 180px;
    }
    
    .promo-badge {
        font-size: 8px;
        padding: 2px 5px;
    }
    
    .promo-text {
        font-size: 9px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .product-info h1 {
        font-size: 20px;
    }
    
    .bundle-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .hero-home-content h1 {
        font-size: 1.4rem;
    }
    
    .cta-home-content h2 {
        font-size: 1.3rem;
    }
    
    .community-img {
        flex: 0 0 100px;
        width: 100px;
        height: 100px;
    }
}