/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #fdf6f0;
    color: #2c1a1a;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* ===== AD BAR ===== */
.ad-bar {
    background: #8b3a47;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1000;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #8b3a47 0%, #c97b84 50%, #d4956a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

.loader-name {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== COOKIE ===== */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cookie-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cookie-box {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-icon {
    font-size: 2.5rem;
    color: #d4956a;
    margin-bottom: 12px;
}

.cookie-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2c1a1a;
    margin: 0 0 10px;
}

.cookie-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-accept {
    background: linear-gradient(135deg, #8b3a47, #c97b84);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 58, 71, 0.4);
}

.btn-reject {
    background: transparent;
    color: #8b3a47;
    border: 2px solid #8b3a47;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-reject:hover {
    background: #8b3a47;
    color: #fff;
}

/* ===== NAVIGATION ===== */
.header {
    position: fixed;
    top: var(--ad-height, 40px);
    /* Base offset for ad-bar */
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(255, 244, 238, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    top: 0 !important;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .header {
        top: var(--ad-height, 34px);
    }

    .header.scrolled {
        top: 0;
    }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-icon {
    color: #8b3a47;
    font-size: 1.6rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c1a1a;
}

.logo-accent {
    color: #8b3a47;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-close {
    display: none;
}

.nav-link {
    color: #2c1a1a;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover {
    background: rgba(139, 58, 71, 0.1);
    color: #8b3a47;
}

.btn-shop {
    background: linear-gradient(135deg, #8b3a47, #c97b84);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(139, 58, 71, 0.3);
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 58, 71, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: #2c1a1a;
    border-radius: 2px;
    display: block;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 60px 5%;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf0ea 0%, #f7e4e8 40%, #fdf6f0 100%);
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 58, 71, 0.1);
    color: #8b3a47;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(139, 58, 71, 0.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: #2c1a1a;
    margin: 0 0 20px;
}

.highlight {
    color: #8b3a47;
}

.hero-sub {
    font-size: 1.05rem;
    color: #5a3a3a;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 0 36px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8b3a47 0%, #c97b84 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(139, 58, 71, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 58, 71, 0.5);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #8b3a47;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid #8b3a47;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #8b3a47;
    color: #fff;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #8b3a47;
}

.stat-label {
    font-size: 0.78rem;
    color: #7a5a5a;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(139, 58, 71, 0.2);
}

/* Product Showcase */
.hero-visual {
    flex: 0 0 460px;
    display: flex;
    justify-content: center;
}

.product-showcase {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139, 58, 71, 0.15);
    animation: pulse-ring 3s ease-in-out infinite;
}

.ring-1 {
    width: 320px;
    height: 320px;
    animation-delay: 0s;
}

.ring-2 {
    width: 360px;
    height: 360px;
    animation-delay: 0.5s;
    border-color: rgba(212, 149, 106, 0.1);
}

.ring-3 {
    width: 400px;
    height: 400px;
    animation-delay: 1s;
    border-color: rgba(201, 123, 132, 0.08);
}

@keyframes pulse-ring {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.5;
    }
}

.product-image-wrap {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #fff 0%, #f7e4e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(139, 58, 71, 0.25), inset 0 0 30px rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.product-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 50%;
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.feature-chip {
    position: absolute;
    background: #fff;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #2c1a1a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: float 4s ease-in-out infinite;
    z-index: 3;
    white-space: nowrap;
}

.feature-chip i {
    color: #8b3a47;
}

.chip-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.chip-2 {
    bottom: 20%;
    left: -8%;
    animation-delay: 1.2s;
}

.chip-3 {
    top: 20%;
    right: -5%;
    animation-delay: 0.6s;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #8b3a47;
    font-size: 0.75rem;
    font-weight: 500;
}

.scroll-dot-anim {
    width: 24px;
    height: 38px;
    border: 2px solid #8b3a47;
    border-radius: 12px;
    position: relative;
}

.scroll-dot-anim::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: #8b3a47;
    border-radius: 2px;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 1.8s ease infinite;
}

@keyframes scroll-down {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 90px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(139, 58, 71, 0.1);
    color: #8b3a47;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #2c1a1a;
    margin: 0 0 16px;
}

.title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8b3a47, #c97b84);
    border-radius: 2px;
    margin: 0 auto;
}

.section-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 20px auto 0;
}

/* ===== ABOUT ===== */
.about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-card {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.about-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(139, 58, 71, 0.2);
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #8b3a47, #c97b84);
    color: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(139, 58, 71, 0.4);
}

.about-lead {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c1a1a;
    margin: 0 0 16px;
    font-style: italic;
}

.about-body {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 16px;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 32px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #2c1a1a;
}

.pillar i {
    color: #8b3a47;
    font-size: 1rem;
}

/* ===== WHY US ===== */
.whyus {
    background: linear-gradient(135deg, #fdf0ea 0%, #fce8ec 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(139, 58, 71, 0.15);
}

.why-card.featured-card {
    background: linear-gradient(135deg, #8b3a47 0%, #c97b84 100%);
    color: #fff;
}

.why-badge-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4956a;
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.why-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(139, 58, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.featured-card .why-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
}

.why-icon {
    font-size: 1.5rem;
    color: #8b3a47;
}

.featured-card .why-icon {
    color: #fff;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #2c1a1a;
    margin: 0 0 12px;
}

.featured-card .why-title {
    color: #fff;
}

.why-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.featured-card .why-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: #fdf6f0;
    border-radius: 20px;
    padding: 28px 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(139, 58, 71, 0.08);
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 58, 71, 0.12);
}

.testi-card.featured-testi {
    background: linear-gradient(135deg, #2c1a1a 0%, #4a2020 100%);
    border-color: transparent;
}

.featured-testi .testi-text {
    color: rgba(255, 255, 255, 0.85);
}

.testi-stars {
    color: #d4956a;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.featured-testi .testi-stars {
    color: #f0b870;
}

.testi-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    margin: 0 0 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #8b3a47, #c97b84);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testi-info strong {
    display: block;
    font-size: 0.9rem;
    color: #2c1a1a;
}

.featured-testi .testi-info strong {
    color: #fff;
}

.testi-info span {
    font-size: 0.78rem;
    color: #888;
}

.featured-testi .testi-info span {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== FAQs ===== */
.faqs {
    background: linear-gradient(135deg, #fdf0ea 0%, #fce8ec 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #2c1a1a;
    transition: background 0.2s;
}

.faq-q:hover {
    background: rgba(139, 58, 71, 0.04);
}

.faq-q i {
    color: #8b3a47;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 24px 20px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

.faq-a a {
    color: #8b3a47;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1014;
    color: #ccc;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer-body {
    padding: 60px 5% 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo span {
    color: #c97b84;
}

.footer-logo i {
    color: #c97b84;
}

.footer-tagline {
    font-size: 0.88rem;
    color: #999;
    line-height: 1.7;
    margin: 0 0 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #8b3a47;
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: #999;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #c97b84;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #999;
}

.footer-contact li i {
    color: #c97b84;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: #999;
    transition: color 0.2s;
}

.footer-contact li a:hover {
    color: #c97b84;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    font-size: 0.78rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: #555;
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 8000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    background: #fff;
    border-radius: 20px;
    width: min(90vw, 560px);
    max-height: 80vh;
    z-index: 8001;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid #f0e8e8;
}

.modal-header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i {
    color: #8b3a47;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #f0e8e8;
    color: #8b3a47;
}

.modal-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
}

.modal-body h4 {
    color: #8b3a47;
    font-size: 0.95rem;
    margin: 20px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0 0 8px;
}

.modal-body a {
    color: #8b3a47;
    font-weight: 500;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .ad-bar {
        font-size: 0.75rem;
        padding: 8px 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 30px 28px;
        gap: 6px;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
        transform: translateX(105%);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 9000;
        overflow-y: auto;
        visibility: hidden;
    }

    .nav-links.open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: auto;
        margin-bottom: 20px;
        background: #fff;
        border: 2px solid #8b3a47;
        color: #8b3a47;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(139, 58, 71, 0.15);
    }

    .nav-close:hover {
        background: #8b3a47;
        color: #fff;
        transform: rotate(90deg);
    }

    .nav-link {
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(139, 58, 71, 0.08);
        width: 100%;
        display: block;
        transition: color 0.3s;
        text-align: left;
    }

    .nav-link:hover {
        background: transparent;
        color: #8b3a47;
    }

    .btn-shop.nav-shop {
        margin-top: 12px;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 40px 5% 60px;
    }

    .hero-content {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        margin-bottom: 15px;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .stat-divider {
        display: none;
    }

    .hero-visual {
        width: 100%;
    }

    .product-showcase {
        width: 100%;
        max-width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .product-image-wrap {
        width: 180px;
        height: 180px;
    }

    .product-img {
        width: 140px;
        height: 140px;
    }

    .ring-1 {
        width: 200px;
        height: 200px;
    }

    .ring-2 {
        width: 230px;
        height: 230px;
    }

    .ring-3 {
        width: 260px;
        height: 260px;
    }

    .chip-1 {
        left: 0;
        top: 10%;
        font-size: 0.72rem;
    }

    .chip-2 {
        left: 0;
        bottom: 15%;
        font-size: 0.72rem;
    }

    .chip-3 {
        right: 0;
        top: 15%;
        font-size: 0.72rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .about-img-card {
        width: 100%;
        max-width: 400px;
    }

    .about-content {
        order: 1;
        margin-bottom: 40px;
        width: 100%;
    }

    .about-badge-float {
        right: 10px;
        bottom: 10px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 5%;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        max-width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}