/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #2C3E50;
    line-height: 1.5;
    position: relative;
    padding-top: 105px;
    /* (Ad bar ~35px + Header ~70px) */
}

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: #2C5F8A;
    color: #FFFFFF;
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    z-index: 1001;
    letter-spacing: 0.3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: top;
}

body.ad-hidden .ad-bar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.8s;
    overflow: hidden;
}

.loader.hidden {
    transform: translateY(-100%);
    visibility: hidden;
}

.loader-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, #1E4A6F 0%, #0F2537 100%);
}

.loader-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.loader-infinity {
    width: 120px;
    position: relative;
    margin: 0 auto 30px;
}

.infinity-path {
    stroke: #C9A87C;
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    animation: drawPath 4s linear infinite;
    filter: drop-shadow(0 0 8px rgba(201, 168, 124, 0.6));
}

.loader-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #C9A87C;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 25px #C9A87C, 0 0 50px #C9A87C;
    animation: pulseCore 2s ease-in-out infinite;
}

.loader-name {
    color: #FFFFFF;
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #FFFFFF, #C9A87C, #FFFFFF);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

.loader-status {
    color: #C9A87C;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes drawPath {
    0% {
        stroke-dashoffset: 250;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -250;
    }
}

@keyframes pulseCore {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
    }
}

@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: #FFFFFF;
    border-radius: 12px;
    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 #C9A87C;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-icon {
    font-size: 2.5rem;
    color: #C9A87C;
    margin-bottom: 12px;
}

.cookie-box h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    color: #2C5F8A;
    margin: 0 0 10px;
}

.cookie-box p {
    color: #5a6b7a;
    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: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-accept {
    background: linear-gradient(135deg, #2C5F8A, #1E4A6F);
    color: #FFFFFF;
    border: none;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 138, 0.4);
}

.btn-reject {
    background: transparent;
    color: #2C5F8A;
    border: 2px solid #2C5F8A;
}

.btn-reject:hover {
    background: #2C5F8A;
    color: #FFFFFF;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease, top 0.3s ease;
    border-bottom: 1px solid rgba(44, 95, 138, 0.1);
}

body.ad-hidden .header {
    top: 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 70px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.logo-icon {
    color: #C9A87C;
    font-size: 1.4rem;
}

.logo-text {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C5F8A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-accent {
    color: #C9A87C;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-close {
    display: none;
    font-size: 1.5rem;
    color: #2C5F8A;
    padding: 8px;
}

.nav-link {
    color: #4a5b6e;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(201, 168, 124, 0.1);
    color: #2C5F8A;
}

.btn-shop {
    background: linear-gradient(135deg, #2C5F8A, #1E4A6F);
    color: #FFFFFF !important;
    padding: 8px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(44, 95, 138, 0.2);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 138, 0.3);
}

.btn-shop i {
    margin-right: 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #2C5F8A;
    border-radius: 2px;
    display: block;
    transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 5% 60px;
    overflow: hidden;
    background: #FFFFFF;
}

.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: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge-trust,
.badge-returns {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(44, 95, 138, 0.08);
    color: #2C5F8A;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-trust i,
.badge-returns i {
    color: #C9A87C;
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #2C3E50;
    margin: 0 0 15px;
}

.highlight {
    color: #C9A87C;
}

.hero-sub {
    font-size: 1rem;
    color: #5a6b7a;
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 500px;
}

.hero-price {
    margin-bottom: 30px;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2C5F8A;
    font-family: 'Merriweather', serif;
}

.price-approx {
    font-size: 0.9rem;
    color: #8a9bb0;
    background: #F5F7FA;
    padding: 4px 12px;
    border-radius: 30px;
}

.condition-badge {
    display: inline-block;
    background: #F5F7FA;
    color: #5a6b7a;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #E8ECF0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #C9A87C;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: #7a8b9c;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: #E0E6EC;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #C9A87C, #B38F64);
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 6px 18px rgba(201, 168, 124, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(201, 168, 124, 0.4);
}

.btn-primary i {
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #2C5F8A;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid #2C5F8A;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #2C5F8A;
    color: #FFFFFF;
    border-color: #2C5F8A;
}

/* Product Showcase */
.hero-visual {
    flex: 0 0 400px;
    position: relative;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-gallery {
    background: #F8FAFD;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #E8ECF0;
}

.product-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
}

.thumbnail-strip {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: #C9A87C;
}

.product-badge {
    display: flex;
    gap: 15px;
    justify-content: center;
    background: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #E8ECF0;
}

.product-badge span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #5a6b7a;
}

.product-badge i {
    color: #C9A87C;
}

.scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8a9bb0;
    font-size: 0.8rem;
    font-weight: 400;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid #E8ECF0;
}

.scroll-hint i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(44, 95, 138, 0.08);
    color: #2C5F8A;
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #2C3E50;
    margin: 0 0 12px;
    font-weight: 700;
}

.title-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2C5F8A, #C9A87C);
    border-radius: 2px;
    margin: 0 auto;
}

.section-desc {
    color: #5a6b7a;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 20px auto 0;
}

/* ===== ABOUT ===== */
.about {
    background: #F8FAFD;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 95, 138, 0.1);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-badge-float {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, #C9A87C, #B38F64);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(201, 168, 124, 0.3);
}

.about-lead {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    color: #2C5F8A;
    margin: 0 0 20px;
    font-weight: 400;
    line-height: 1.5;
}

.about-body {
    color: #5a6b7a;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 20px;
}

.seller-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0 35px;
    background: #FFFFFF;
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #E8ECF0;
}

.seller-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.seller-stat i {
    font-size: 1.8rem;
    color: #C9A87C;
}

.seller-stat strong {
    display: block;
    font-size: 0.95rem;
    color: #2C3E50;
    font-weight: 600;
}

.seller-stat span {
    font-size: 0.85rem;
    color: #7a8b9c;
}

/* ===== TRUST SECTION ===== */
.trust {
    background: #FFFFFF;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.trust-card {
    background: #F8FAFD;
    padding: 35px 25px;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #E8ECF0;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 95, 138, 0.08);
}

.trust-card.featured {
    background: linear-gradient(135deg, #FFFFFF, #F8FAFD);
    border: 2px solid #C9A87C;
}

.trust-icon {
    margin-bottom: 20px;
}

.trust-icon i {
    font-size: 2.2rem;
    color: #2C5F8A;
}

.trust-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: #2C3E50;
    margin: 0 0 12px;
}

.trust-card p {
    color: #5a6b7a;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 20px;
}

.trust-badge {
    display: inline-block;
    background: rgba(201, 168, 124, 0.1);
    color: #C9A87C;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== SPECS ===== */
.specs {
    background: #F8FAFD;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.specs-title {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: #2C3E50;
    margin: 0 0 25px;
}

.specs-list {
    list-style: none;
    background: #FFFFFF;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #E8ECF0;
}

.specs-list li {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #E8ECF0;
}

.specs-list li:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #2C5F8A;
    width: 140px;
    flex-shrink: 0;
}

.seller-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #E8ECF0;
}

.seller-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.seller-header i {
    font-size: 2.5rem;
    color: #C9A87C;
}

.seller-header h4 {
    font-size: 1.2rem;
    color: #2C3E50;
    margin: 0 0 4px;
}

.seller-header p {
    color: #7a8b9c;
    font-size: 0.9rem;
}

.seller-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E8ECF0;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C5F8A;
}

.metric-label {
    font-size: 0.8rem;
    color: #7a8b9c;
}

.seller-since {
    color: #5a6b7a;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.seller-since i {
    color: #C9A87C;
    margin-right: 6px;
}

.seller-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #FFFFFF;
}

.feedback-summary {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.feedback-rating {
    font-size: 1.2rem;
    color: #C9A87C;
    font-weight: 600;
}

.feedback-count {
    font-size: 0.9rem;
    color: #7a8b9c;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testi-card {
    background: #F8FAFD;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #E8ECF0;
}

.testi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(44, 95, 138, 0.05);
}

.testi-card.featured {
    background: linear-gradient(135deg, #FFFFFF, #F8FAFD);
    border: 2px solid #C9A87C;
}

.testi-rating {
    color: #C9A87C;
    margin-bottom: 12px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.testi-text {
    font-size: 0.9rem;
    color: #5a6b7a;
    line-height: 1.7;
    margin: 0 0 15px;
    font-style: italic;
}

.testi-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E8ECF0;
    padding-top: 12px;
}

.author-name {
    font-weight: 600;
    color: #2C5F8A;
    font-size: 0.9rem;
}

.author-date {
    font-size: 0.75rem;
    color: #8a9bb0;
}

/* ===== FAQS ===== */
.faqs {
    background: #F8FAFD;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid #E8ECF0;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    color: #2C5F8A;
    transition: background 0.2s;
    border: none;
    background: #FFFFFF;
    text-align: left;
}

.faq-q:hover {
    background: rgba(44, 95, 138, 0.03);
}

.faq-q i {
    color: #C9A87C;
    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 22px 20px;
    color: #5a6b7a;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

.faq-a a {
    color: #C9A87C;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: #1E2F3F;
    color: #FFFFFF;
    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: 'Merriweather', serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #C9A87C;
}

.footer-logo i {
    color: #C9A87C;
    margin-right: 8px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: #B0C4DE;
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 280px;
}

.footer-heading {
    color: #C9A87C;
    font-size: 0.9rem;
    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: #B0C4DE;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #C9A87C;
}

.footer-link-btn {
    background: none;
    border: none;
    color: #B0C4DE;
    font-size: 0.85rem;
    transition: color 0.2s;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.footer-link-btn:hover {
    color: #C9A87C;
}

.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.85rem;
    color: #B0C4DE;
}

.footer-contact li i {
    color: #C9A87C;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
}

.footer-contact li a {
    color: #B0C4DE;
    transition: color 0.2s;
}

.footer-contact li a:hover {
    color: #C9A87C;
}

.footer-contact li span {
    flex: 1;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 0;
    font-size: 0.75rem;
    color: #7f96ab;
    text-align: center;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 18px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: #7f96ab;
}

/* ===== 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: #FFFFFF;
    border-radius: 16px;
    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 70px rgba(0, 0, 0, 0.3);
    border-top: 4px solid #C9A87C;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    border-bottom: 1px solid #E8ECF0;
    flex-shrink: 0;
}

.modal-header h3 {
    margin: 0;
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    color: #2C5F8A;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i {
    color: #C9A87C;
}

.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: #F0F4F8;
    color: #2C5F8A;
}

.modal-body {
    padding: 22px 26px;
    overflow-y: auto;
    flex: 1;
}

.modal-body h4 {
    color: #2C5F8A;
    font-size: 0.95rem;
    margin: 18px 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #5a6b7a;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 6px;
}

.modal-body a {
    color: #C9A87C;
    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) {
    .trust-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: #FFFFFF;
        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: #2C5F8A;
        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 #E8ECF0;
        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-badge {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        flex: none;
        max-width: 350px;
        margin: 0 auto;
    }

    .product-badge {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrap {
        order: 2;
    }

    .about-content {
        order: 1;
        text-align: center;
    }

    .seller-stats {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .seller-stat {
        justify-content: center;
    }

    .about-badge-float {
        right: 0;
        bottom: 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .specs-list li {
        flex-direction: column;
        gap: 5px;
    }

    .spec-label {
        width: 100%;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-tagline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links li a {
        text-align: center;
    }

    .footer-link-btn {
        text-align: center;
        width: 100%;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
        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;
    }

    .hero-badge {
        flex-direction: column;
        gap: 8px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-divider {
        display: none;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .seller-metrics {
        flex-direction: column;
        gap: 10px;
    }

    .modal {
        width: 95vw;
    }

    .modal-header {
        padding: 18px 22px;
    }

    .modal-body {
        padding: 18px 22px;
    }

    .thumbnail {
        width: 50px;
        height: 50px;
    }
}

/* ===== 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);
    }
}