/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #FDF8F2;
    color: #3E3A39;
    line-height: 1.6;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== AD BAR ===== */
.ad-bar {
    background: #5D4037;
    color: #FDF8F2;
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
    z-index: 1001;
    font-family: 'Montserrat', sans-serif;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #2e1e1a 0%, #1a100d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
    position: relative;
}

.loader-solar {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun-core {
    width: 40px;
    height: 40px;
    background: #C4A052;
    border-radius: 50%;
    box-shadow: 0 0 30px #B38F42, 0 0 60px rgba(196, 160, 82, 0.4);
    z-index: 2;
    animation: sunPulse 2s ease-in-out infinite;
}

.orbit {
    position: absolute;
    border: 1.5px solid rgba(196, 160, 82, 0.2);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.orbit-1 {
    width: 80px;
    height: 80px;
    animation-duration: 6s;
}

.orbit-2 {
    width: 110px;
    height: 110px;
    animation-duration: 9s;
    animation-direction: reverse;
}

.planet {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #5D4037;
    border-radius: 50%;
    box-shadow: 0 0 10px #5D4037;
}

.loader-name {
    color: #FDF8F2;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    background: linear-gradient(to right, #FDF8F2, #C4A052, #FDF8F2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes sunPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* ===== 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: #FDF8F2;
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    border-top: 4px solid #C4A052;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-icon {
    font-size: 2.5rem;
    color: #C4A052;
    margin-bottom: 12px;
}

.cookie-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #5D4037;
    margin: 0 0 10px;
}

.cookie-box p {
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-accept {
    background: linear-gradient(135deg, #5D4037, #4A332C);
    color: #FDF8F2;
    border: none;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 64, 55, 0.4);
}

.btn-reject {
    background: transparent;
    color: #5D4037;
    border: 2px solid #5D4037;
}

.btn-reject:hover {
    background: #5D4037;
    color: #FDF8F2;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(253, 248, 242, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(253, 248, 242, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-icon {
    color: #C4A052;
    font-size: 1.5rem;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #5D4037;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-accent {
    color: #C4A052;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-close {
    display: none;
    font-size: 1.5rem;
    color: #5D4037;
    padding: 8px;
}

.nav-link {
    color: #5a5a5a;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    background: rgba(196, 160, 82, 0.1);
    color: #5D4037;
}

.btn-shop {
    background: linear-gradient(135deg, #C4A052, #B38F42);
    color: #FDF8F2 !important;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(196, 160, 82, 0.2);
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 160, 82, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #5D4037;
    border-radius: 2px;
    display: block;
    transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 60px 5% 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #FDF8F2 0%, #F8F0E5 100%);
}

.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-block;
    background: rgba(196, 160, 82, 0.15);
    color: #C4A052;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(196, 160, 82, 0.3);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: #5D4037;
    margin: 0 0 15px;
}

.highlight {
    color: #C4A052;
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    color: #5a5a5a;
    line-height: 1.6;
    margin: 0 0 30px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #5D4037;
}

.hero-feature i {
    color: #C4A052;
    font-size: 1rem;
    width: 20px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #5D4037, #4A332C);
    color: #FDF8F2;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(93, 64, 55, 0.2);
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(93, 64, 55, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #5D4037;
    padding: 14px 28px;
    border-radius: 40px;
    border: 2px solid #C4A052;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-secondary:hover {
    background: #C4A052;
    color: #FDF8F2;
    border-color: #C4A052;
}

/* Product Showcase */
.hero-visual {
    flex: 0 0 400px;
    position: relative;
}

.product-showcase {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(93, 64, 55, 0.3);
    background: #FDF8F2;
}

.badge-offer {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #C4A052;
    color: #FDF8F2;
    padding: 12px 10px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(196, 160, 82, 0.4);
    font-family: 'Montserrat', sans-serif;
}

.product-img {
    width: 100%;
    height: auto;
    display: block;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5D4037;
    font-size: 0.85rem;
    font-weight: 400;
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 18px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(196, 160, 82, 0.2);
}

.scroll-hint i {
    animation: bounce 2s infinite;
    font-size: 0.8rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 90px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(196, 160, 82, 0.1);
    color: #C4A052;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #5D4037;
    margin: 0 0 16px;
    font-weight: 600;
}

.title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #5D4037, #C4A052);
    border-radius: 2px;
    margin: 0 auto;
}

.section-desc {
    color: #5a5a5a;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 20px auto 0;
}

/* ===== ABOUT ===== */
.about {
    background: #FDF8F2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -10px rgba(93, 64, 55, 0.2);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #C4A052, #B38F42);
    color: #FDF8F2;
    padding: 14px 20px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(196, 160, 82, 0.4);
    font-family: 'Montserrat', sans-serif;
}

.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #5D4037;
    margin: 0 0 20px;
    font-weight: 500;
    line-height: 1.5;
}

.about-body {
    color: #5a5a5a;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0 0;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #C4A052;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: #5a5a5a;
    font-weight: 400;
}

/* ===== CRAFTSMANSHIP ===== */
.craftsmanship {
    background: #F8F0E5;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.craft-card {
    background: #FDF8F2;
    padding: 40px 30px;
    text-align: center;
    border-radius: 30px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(196, 160, 82, 0.1);
}

.craft-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -10px rgba(93, 64, 55, 0.15);
}

.craft-card.featured {
    background: linear-gradient(135deg, #5D4037, #4A332C);
    color: #FDF8F2;
    border: none;
}

.craft-card.featured .craft-icon i {
    color: #FDF8F2;
}

.craft-card.featured h3 {
    color: #FDF8F2;
}

.craft-card.featured p {
    color: rgba(253, 248, 242, 0.8);
}

.craft-icon {
    margin-bottom: 20px;
}

.craft-icon i {
    font-size: 2.2rem;
    color: #C4A052;
}

.craft-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin: 0 0 12px;
    font-weight: 600;
    color: #5D4037;
}

.craft-card p {
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #C4A052;
    color: #FDF8F2;
    padding: 4px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* ===== OFFER BANNER ===== */
.offer-banner {
    background: linear-gradient(135deg, #5D4037 0%, #7A5A4A 100%);
    color: #FDF8F2;
    padding: 70px 0;
    text-align: center;
}

.offer-content {
    max-width: 700px;
    margin: 0 auto;
}

.offer-tag {
    display: inline-block;
    background: rgba(253, 248, 242, 0.15);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.offer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin: 0 0 15px;
    color: #FDF8F2;
}

.offer-title .highlight {
    color: #C4A052;
}

.offer-text {
    font-size: 1.1rem;
    margin: 0 0 30px;
    opacity: 0.9;
}

.offer-btn {
    background: #C4A052;
    color: #5D4037;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: none;
}

.offer-btn:hover {
    background: #FDF8F2;
    color: #5D4037;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #FDF8F2;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.rating-average {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #C4A052;
    line-height: 1;
}

.rating-stars {
    color: #C4A052;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.rating-count {
    color: #5a5a5a;
    font-size: 0.9rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testi-card {
    background: #F8F0E5;
    padding: 30px;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(196, 160, 82, 0.1);
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(93, 64, 55, 0.1);
}

.testi-card.featured {
    background: linear-gradient(135deg, #F8F0E5, #FDF8F2);
    border: 1px solid rgba(196, 160, 82, 0.3);
}

.testi-stars {
    color: #C4A052;
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.9rem;
    color: #5a5a5a;
    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: #5D4037;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDF8F2;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
}

.testi-info strong {
    display: block;
    font-size: 0.9rem;
    color: #5D4037;
    font-weight: 600;
}

.testi-info span {
    font-size: 0.75rem;
    color: #5a5a5a;
}

/* ===== FAQS ===== */
.faqs {
    background: #F8F0E5;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #FDF8F2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(196, 160, 82, 0.1);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    color: #5D4037;
    transition: background 0.2s;
    border: none;
    background: #FDF8F2;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.faq-q:hover {
    background: rgba(196, 160, 82, 0.05);
}

.faq-q i {
    color: #C4A052;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 25px 20px;
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

.faq-a a {
    color: #C4A052;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: #3E3A39;
    color: #FDF8F2;
    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: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #FDF8F2;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo span {
    color: #C4A052;
}

.footer-logo i {
    color: #C4A052;
    margin-right: 8px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: #B0A8A2;
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 300px;
}

.footer-heading {
    color: #C4A052;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: #B0A8A2;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #C4A052;
}

.footer-link-btn {
    background: none;
    border: none;
    color: #B0A8A2;
    font-size: 0.88rem;
    transition: color 0.2s;
    cursor: pointer;
    padding: 0;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.footer-link-btn:hover {
    color: #C4A052;
}

.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: #B0A8A2;
}

.footer-contact li i {
    color: #C4A052;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
}

.footer-contact li a {
    color: #B0A8A2;
    transition: color 0.2s;
}

.footer-contact li a:hover {
    color: #C4A052;
}

.footer-contact li span {
    flex: 1;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    font-size: 0.78rem;
    color: #8D857F;
    text-align: center;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: #8D857F;
}

/* ===== 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: #FDF8F2;
    border-radius: 30px;
    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);
    border-top: 4px solid #C4A052;
}

.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 #E8E0D5;
    flex-shrink: 0;
}

.modal-header h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #5D4037;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i {
    color: #C4A052;
}

.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: #F0E8DD;
    color: #5D4037;
}

.modal-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
}

.modal-body h4 {
    color: #5D4037;
    font-size: 0.95rem;
    margin: 20px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0 0 8px;
}

.modal-body a {
    color: #C4A052;
    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) {
    .craft-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero-visual {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        height: 100vh;
        background: #FDF8F2;
        flex-direction: column;
        padding: 30px 28px;
        gap: 6px;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s;
        z-index: 9000;
        overflow-y: auto;
        transform: translateX(100%);
        visibility: hidden;
    }

    .nav-links.open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-close {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        color: #5D4037;
        font-size: 1.4rem;
        cursor: pointer;
        margin-bottom: 20px;
        padding: 4px;
        width: 100%;
        background: none;
        border: none;
    }

    .nav-link {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid #F0E8DD;
        width: 100%;
    }

    .btn-shop {
        margin-top: 12px;
        text-align: center;
        width: 100%;
    }

    .hero-content {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero-features {
        align-items: center;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-feature {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        flex: none;
        max-width: 350px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrap {
        order: 2;
    }

    .about-content {
        order: 1;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-badge-float {
        right: 0;
        bottom: 0;
    }

    .craft-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .offer-title {
        font-size: 2.2rem;
    }

    .rating-summary {
        flex-direction: column;
        gap: 5px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-tagline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-links li a {
        text-align: left;
    }

    .footer-link-btn {
        text-align: left;
        width: 100%;
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-contact li {
        justify-content: flex-start;
        text-align: left;
        flex-wrap: wrap;
    }

    .section {
        padding: 60px 5%;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .stat-item {
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .badge-offer {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
        top: 10px;
        right: 10px;
    }

    .modal {
        width: 95vw;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }
}

/* ===== IOS TOUCH IMPROVEMENTS ===== */
@media (hover: none) and (pointer: coarse) {

    .nav-link,
    .btn-primary,
    .btn-secondary,
    .btn-shop,
    .faq-q,
    .modal-close {
        -webkit-tap-highlight-color: transparent;
    }

    .btn-primary:active,
    .btn-secondary:active,
    .btn-shop:active {
        transform: translateY(-1px);
    }
}