/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2C5F2D;
    --primary-dark: #1E451F;
    --primary-light: #3F7840;
    --secondary: #8B5A2B;
    --secondary-dark: #6B441F;
    --secondary-light: #A67B4E;
    --accent: #C4A052;
    --accent-dark: #9A8458;
    --accent-light: #D8BC7A;
    --text-dark: #2C2C2C;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --bg-light: #FDFAF5;
    --bg-white: #FFFFFF;
    --border: #E8E0D5;
    --shadow: 0 10px 30px rgba(44, 95, 45, 0.08);
    --shadow-hover: 0 20px 40px rgba(44, 95, 45, 0.15);
}

.html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.btn-base {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section {
    padding: 100px 0;
    overflow: hidden;
    width: 100%;
}

/* ===== STICKY NAV WRAPPER ===== */
.sticky-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.4s ease;
    width: 100%;
}

.sticky-nav-wrapper.hide-ad-bar {
    transform: translateY(-42px);
    /* Height of the ad-bar */
}

/* ===== AD BAR ===== */
.ad-bar {
    background: var(--primary-dark);
    color: var(--bg-white);
    min-height: 42px;
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    z-index: 1001;
    border-bottom: 2px solid var(--accent);
    width: 100%;
    padding: 5px 0;
}

.ad-text {
    width: 100%;
    display: block;
    line-height: 1.4;
    padding: 0 15px;
}

.ad-icon {
    color: var(--accent);
    margin-right: 8px;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    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: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

.loader-name {
    color: var(--bg-white);
    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-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 5px solid var(--accent);
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-header {
    margin-bottom: 20px;
}

.cookie-icon {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.cookie-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary);
}

.cookie-text {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-cookie {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-accept {
    background: var(--primary);
    color: var(--bg-white);
    border: none;
}

.btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-reject {
    background: var(--bg-light);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-reject:hover {
    background: var(--primary);
    color: var(--bg-white);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    height: 80px;
    display: flex;
    align-items: center;
}

.container-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.8rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-accent {
    color: var(--accent);
}

.navbar a {
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-close {
    display: none !important;
}

.nav-link:hover {
    background: rgba(196, 160, 82, 0.1);
    color: var(--primary);
}

.mobile-only-icon {
    display: none;
}

.btn-shop {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(196, 160, 82, 0.3);
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 160, 82, 0.4);
    color: var(--text-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 5% 60px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.hero-content {
    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-container {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge-base {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-family {
    background: rgba(44, 95, 45, 0.1);
    color: var(--primary);
    border: 1px solid rgba(44, 95, 45, 0.2);
}

.badge-rfid {
    background: rgba(196, 160, 82, 0.1);
    color: var(--accent-dark);
    border: 1px solid rgba(196, 160, 82, 0.2);
}

.badge-icon {
    color: var(--accent);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin: 0 0 15px;
}

.title-highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 25px;
    max-width: 500px;
}

.hero-price-container {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.price-main {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-availability-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.availability-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--accent);
    color: var(--text-dark);
}

.availability-vendor {
    color: var(--text-light);
    font-size: 0.9rem;
}

.hero-features-list {
    margin-bottom: 30px;
    list-style: none;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.hero-feature-icon {
    color: var(--accent);
    width: 20px;
    font-size: 1rem;
}

.hero-dimensions-container {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.dimension-box {
    text-align: center;
    min-width: 70px;
}

.dimension-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.dimension-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-white);
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 18px rgba(44, 95, 45, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(44, 95, 45, 0.4);
    color: var(--bg-white);
}

.hero-visual {
    flex: 0 0 450px;
}

.product-showcase {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(44, 95, 45, 0.1);
    border: 1px solid var(--border);
}

.product-new-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: var(--text-dark);
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
}

.product-image-container {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.6s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

.leather-quality-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(44, 95, 45, 0.1);
    padding: 12px;
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.leather-quality-icon {
    color: var(--accent);
}

.hero-scroll-pill {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.hero-scroll-icon {
    animation: bounce-anim 2s infinite;
}

@keyframes bounce-anim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 5%;
    scroll-margin-top: 100px;
}

.section-header-container {
    text-align: center;
    margin-bottom: 60px;
}

.section-tagline {
    display: inline-block;
    background: rgba(196, 160, 82, 0.1);
    color: var(--accent-dark);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    margin: 0 0 15px;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-img-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img {
    width: 100%;
    transition: transform 0.6s ease;
}

.about-img-card:hover .about-img {
    transform: scale(1.05);
}

.about-badge-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--bg-white);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

.about-badge-icon {
    color: var(--accent);
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-body {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.about-stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 700;
}

/* ===== CRAFT SECTION ===== */
.craft {
    background: var(--bg-white);
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.craft-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.craft-card.featured {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.craft-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.craft-icon-container {
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.craft-card.featured .craft-icon-container {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-light);
}

.craft-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.craft-card.featured .craft-title {
    color: var(--bg-white);
}

.craft-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.craft-card.featured .craft-text {
    color: rgba(255, 255, 255, 0.8);
}

.craft-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--text-dark);
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ===== DETAILS SECTION ===== */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.details-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.details-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.details-card-icon {
    color: var(--accent);
}

.details-list {
    list-style: none;
}

.details-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.details-list-item:last-child {
    border-bottom: none;
}

.details-list-icon {
    color: var(--accent);
    font-size: 0.9rem;
}

.detail-label {
    font-weight: 700;
    min-width: 100px;
}

/* ===== FAMILY HIGHLIGHT ===== */
.family-highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    padding: 60px;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.family-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.family-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.family-icon {
    color: var(--accent);
}

.family-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.family-meta-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.family-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.family-meta-icon {
    color: var(--accent);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
}

.testimonials .section-title,
.testimonials .section-title .highlight {
    color: var(--bg-white);
}

.testimonials .title-line {
    background: var(--accent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--bg-white), rgba(196, 160, 82, 0.1));
    border: 2px solid var(--accent);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.author-name {
    font-weight: 600;
    color: var(--primary);
}

.author-verified {
    color: var(--accent);
    font-size: 0.8rem;
}

.author-verified i {
    margin-right: 3px;
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg-light);
    font-size: 0.8rem;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-verified-icon {
    font-size: 0.9rem;
}

/* ===== FAQ SECTION ===== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.faq-icon {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-text {
    padding: 0 30px 24px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===== RETURN SECTION ===== */
.return {
    background: var(--bg-white);
}

.return-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.return-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.return-card:hover {
    transform: translateY(-5px);
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.return-card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.return-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.return-card-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.footer-wave {
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.footer-body {
    padding: 50px 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;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-logo i {
    color: var(--accent);
    margin-right: 8px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: #c0d6b3;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    color: var(--accent);
    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,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-link,
.footer-contact-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-link:hover,
.footer-contact-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    color: var(--accent);
    margin-top: 5px;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 30000;
    display: none;
    opacity: 0;
    transition: all 0.4s ease;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    background: var(--bg-white);
    border-radius: 24px;
    z-index: 30001;
    display: none;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border);
    overflow: hidden;
}

.modal.active {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.modal-header {
    padding: 30px 40px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-light);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header-icon {
    color: var(--accent);
}

.modal-close {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-dark);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    color: var(--text-medium);
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.modal-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 25px 0 15px;
}

.modal-text {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.nav-link {
    cursor: pointer;
    text-decoration: none;
}

.hamburger-line {
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding-top: 40px;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .hero-badge-container,
    .hero-price-container,
    .hero-availability-container,
    .hero-dimensions-container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
    }

    .hero-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        position: relative;
    }

    .product-showcase {
        max-width: 100%;
        overflow: hidden;
    }

    .navbar {
        height: 70px;
        justify-content: space-between;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 80px 30px;
        gap: 10px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 20000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--bg-white);
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
    }

    .mobile-only-icon {
        display: block;
        color: var(--accent);
        font-size: 0.8rem;
    }

    .nav-close {
        display: flex !important;
        position: absolute;
        top: 20px;
        right: 20px;
        color: var(--bg-white);
        font-size: 1.6rem;
        z-index: 20001;
    }

    .btn-shop {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .about-grid,
    .craft-grid,
    .details-grid,
    .testimonials-grid,
    .return-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-stats-container {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 400px;
        margin: 30px auto 0;
    }

    .about-image-wrap {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .about-lead,
    .about-body {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .details-card-title {
        justify-content: center;
    }

    .details-list-item {
        justify-content: center;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo,
    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 20px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .family-highlight {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-badge {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .hero-dimensions {
        flex-direction: column;
        gap: 15px;
    }

    .about-stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .return-grid {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .modal {
        width: 95vw;
    }
}