/* ============================================
   SkinMuse — Style Principal
   Palette: Blanc + Rose poudré + Doré
   ============================================ */

:root {
    --pink: #E8B4B8;
    --pink-light: #F5D5D8;
    --pink-dark: #D4949A;
    --gold: #C9A96E;
    --gold-light: #E8D5A8;
    --white: #FFFFFF;
    --off-white: #FDF8F5;
    --bg: #FFFAF8;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --text-lighter: #999;
    --border: #F0E6E0;
    --shadow: 0 2px 20px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
}

.logo span {
    color: var(--pink-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--pink-dark);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--pink-dark);
    border-radius: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
    color: var(--text);
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--pink-dark);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--pink-dark);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--pink-light) 50%, var(--gold-light) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.8);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pink-dark);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--pink-dark);
    color: white;
    border-color: var(--pink-dark);
}

.btn-primary:hover {
    background: #c07e84;
    border-color: #c07e84;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,148,154,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--text);
}

.btn-outline:hover {
    background: var(--text);
    color: white;
    transform: translateY(-2px);
}

/* ============ SECTIONS ============ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pink-dark);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============ PRODUCTS GRID ============ */
.bestsellers,
.products-page {
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-image,
.product-image-large {
    aspect-ratio: 1;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pink-light), var(--off-white));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--pink-dark);
}

.product-placeholder.hydro {
    background: linear-gradient(135deg, #B8D4E8, #E8F0F8);
    color: #5A8BA8;
}

.product-placeholder.kelp {
    background: linear-gradient(135deg, #B8E8C4, #E8F8ED);
    color: #5AA86B;
}

.product-placeholder.vita {
    background: linear-gradient(135deg, #E8D8B4, #F8F0E0);
    color: #A8946E;
}

.product-placeholder i {
    font-size: 3rem;
}

.product-placeholder span {
    font-weight: 600;
    font-size: 0.95rem;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-price,
.product-price-large {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.price-current {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}

.price-old {
    font-size: 0.95rem;
    color: var(--text-lighter);
    text-decoration: line-through;
}

.price-save {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-pack {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.btn-add-cart {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
}

.btn-add-cart.added {
    background: #2E7D32;
    border-color: #2E7D32;
}

/* ============ PRODUCTS PAGE ============ */
.page-header {
    padding: 120px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--off-white), var(--pink-light));
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.products-grid-large {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.product-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.product-card-large:nth-child(even) {
    direction: rtl;
}

.product-card-large:nth-child(even) > * {
    direction: ltr;
}

.product-image-large {
    min-height: 400px;
}

.product-image-large .product-placeholder i {
    font-size: 5rem;
}

.product-image-large .product-placeholder span {
    font-size: 1.2rem;
}

.product-details {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-details h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.product-rating {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.product-rating span {
    color: var(--text-light);
}

.product-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-features i {
    color: #2E7D32;
    margin-right: 8px;
}

.product-price-large {
    margin-bottom: 8px;
}

.product-price-large .price-current {
    font-size: 1.8rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
    margin-top: 8px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badges span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.trust-badges i {
    color: var(--pink-dark);
    margin-right: 4px;
}

/* ============ BENEFITS ============ */
.benefits {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    background: var(--bg);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--pink-light), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--pink-dark);
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--off-white), var(--pink-light));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author strong {
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #2E7D32;
}

/* ============ ABOUT ============ */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-tag {
    text-align: left;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-content .btn {
    margin-top: 12px;
}

.about-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--pink-light), var(--gold-light));
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--pink-dark);
    font-size: 1.2rem;
}

.about-placeholder i {
    font-size: 4rem;
}

/* ============ NEWSLETTER ============ */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pink-dark), var(--gold));
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 12px;
}

.newsletter p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.newsletter-form .btn-primary {
    background: var(--text);
    border-color: var(--text);
    white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
    background: #444;
    border-color: #444;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

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

.footer .logo {
    color: white;
    margin-bottom: 12px;
    display: inline-block;
}

.footer .logo span {
    color: var(--pink);
}

.footer p {
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer h4 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer ul {
    list-style: none;
}

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

.footer ul a {
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer ul a:hover {
    color: var(--pink);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--pink-dark);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    margin-top: 48px;
    text-align: center;
    font-size: 0.8rem;
}

/* ============ CART ============ */
.cart-section {
    padding: 60px 0 100px;
}

.cart-empty {
    text-align: center;
    padding: 80px 24px;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--border);
    margin-bottom: 20px;
}

.cart-empty h2 {
    margin-bottom: 12px;
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--pink-light), var(--off-white));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 4px;
}

.cart-item-info .cart-item-price {
    color: var(--pink-dark);
    font-weight: 600;
}

.cart-item-info .cart-item-pack {
    font-size: 0.8rem;
    color: var(--text-light);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--pink-light);
    border-color: var(--pink);
}

.cart-item-qty {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-lighter);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    margin-left: 12px;
}

.cart-item-remove:hover {
    color: #E53935;
}

.summary-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.summary-card h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
}

.summary-total {
    font-weight: 700;
    font-size: 1.1rem;
    padding-top: 16px;
}

.summary-divider {
    border-top: 1px solid var(--border);
    margin: 8px 0;
}

.btn-checkout {
    width: 100%;
    justify-content: center;
    padding: 16px;
    margin-top: 24px;
    font-size: 1rem;
}

.trust-badges-mini {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.trust-badges-mini span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.trust-badges-mini i {
    color: var(--pink-dark);
}

/* ============ NOTIFICATIONS ============ */
.notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--text);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-stats {
        gap: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-card-large {
        grid-template-columns: 1fr;
    }

    .product-card-large:nth-child(even) {
        direction: ltr;
    }

    .product-image-large {
        min-height: 250px;
    }

    .product-details {
        padding: 24px;
    }

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

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

    .newsletter-form {
        flex-direction: column;
    }

    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-item {
        flex-wrap: wrap;
    }

    .trust-badges {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
    }

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

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


/* ============ PRODUCT GALLERY ============ */
.product-gallery {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-main {
    flex: 1;
    min-height: 0;
}

.gallery-thumbs {
    display: flex;
    gap: 4px;
    padding: 8px;
    background: rgba(255,255,255,0.9);
}

.gallery-thumb {
    border-radius: 6px;
    transition: opacity 0.2s ease;
}

.gallery-thumb:hover {
    opacity: 1 !important;
}


/* ============ PRODUCT GALLERY V2 (thumbs left, main right) ============ */
.product-gallery-v2 {
    display: flex;
    gap: 12px;
    width: 100%;
    height: 100%;
    padding: 16px;
}

.gallery-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    width: 72px;
}

.gallery-thumb-v2 {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    opacity: 0.55;
}

.gallery-thumb-v2:hover,
.gallery-thumb-v2.active {
    border-color: var(--pink-dark);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(212,148,154,0.3);
}

.gallery-thumb-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-main-v2 {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-main-v2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .product-gallery-v2 {
        flex-direction: column-reverse;
        padding: 12px;
    }

    .gallery-sidebar {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .gallery-thumb-v2 {
        width: 56px;
        height: 56px;
    }
}


/* ============ ACCORDION (Rhode style) ============ */
.product-accordions {
    margin-top: 24px;
    border-top: 1px solid var(--border);
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text);
    transition: all 0.2s ease;
}

.accordion-toggle:hover {
    color: var(--pink-dark);
}

.accordion-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.accordion-toggle.open i {
    transform: rotate(45deg);
    color: var(--pink-dark);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0;
}

.accordion-content.show {
    max-height: 600px;
    padding-bottom: 20px;
}

.usage-steps {
    padding-left: 20px;
    margin: 0;
}

.usage-steps li {
    font-size: 0.88rem;
    color: var(--text-light);
    padding: 5px 0;
    line-height: 1.6;
}

.usage-steps li strong {
    color: var(--text);
}

.usage-tip {
    margin-top: 14px;
    padding: 12px 16px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.usage-tip i {
    color: var(--gold);
    margin-right: 4px;
}

.ingredients-text {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.8;
}


/* ============ FULL PRODUCT DESCRIPTION ============ */
.product-full-description {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.product-full-description h3 {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text);
}

.product-full-description p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.product-full-description p:last-child {
    margin-bottom: 0;
}

.product-full-description strong {
    color: var(--text);
}


/* ============ PRODUCT SUBTITLE ============ */
.product-subtitle {
    font-size: 0.95rem;
    color: var(--pink-dark);
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}


/* ============ INGREDIENTS DISCLAIMER ============ */
.ingredients-disclaimer {
    font-size: 0.62rem;
    color: var(--text-lighter);
    margin-top: 12px;
    opacity: 0.7;
}


/* ============ CAVIAR PRODUCT COLOR ============ */
.product-placeholder.caviar {
    background: linear-gradient(135deg, #D4B8E8, #F0E4F8);
    color: #7A5A9A;
}


/* ============ LOGO IMAGE ============ */
.logo-img {
    height: 40px;
    width: auto;
}

.footer .logo-img {
    height: 32px;
    filter: brightness(0) invert(1);
}


/* ============ LOGO ICON (petal next to text) ============ */
.logo-icon {
    height: 22px;
    width: 22px;
    margin-right: 6px;
    vertical-align: middle;
    border-radius: 5px;
}


/* ============ LOGO WITH TAGLINE ============ */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

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

.logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #999;
    margin-top: 1px;
    padding-left: 28px;
}

.footer .logo-tagline {
    color: rgba(255,255,255,0.4);
}


/* ============ HERO RHODE STYLE ============ */
.hero-fullscreen {
    position: relative;
    max-width: 1200px;
    margin: 92px auto 0;
    padding: 0 24px;
    overflow: hidden;
    border-radius: 16px;
}

.hero-fullscreen > .hero-bg-img,
.hero-fullscreen > .hero-overlay-dark,
.hero-fullscreen > .hero-content-centered {
    border-radius: 16px;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 500px;
    max-height: 80vh;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
    border-radius: 16px;
}

.hero-content-centered {
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    z-index: 2;
    text-align: center;
    padding: 40px 24px 48px;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content-centered .hero-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
}

.hero-content-centered h1 {
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-content-centered p {
    color: rgba(255,255,255,0.9);
    max-width: 520px;
    margin: 0 auto 28px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.2);
    font-size: 1rem;
}

.hero-content-centered .hero-buttons {
    justify-content: center;
    margin-bottom: 0;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--text);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-fullscreen {
        margin-top: 80px;
        padding: 0 12px;
    }
    
    .hero-bg-img {
        min-height: 350px;
    }
    
    .hero-overlay-dark {
        left: 12px;
        right: 12px;
    }
    
    .hero-content-centered {
        left: 12px;
        right: 12px;
        padding: 20px 16px 28px;
    }
    
    .hero-content-centered p {
        font-size: 0.85rem;
    }
}
