/* ============================================================
   ESHA HOME — WARM LUXURY DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== CSS VARIABLES ===== */
:root {
    --bg-primary:    #080808;
    --bg-secondary:  #111111;
    --bg-surface:    #191919;
    --bg-card:       #1f1f1f;
    --bg-card-hover: #252525;
    --gold:          #c9973a;
    --gold-light:    #e8b84b;
    --gold-dark:     #9d7328;
    --gold-faint:    rgba(201, 151, 58, 0.12);
    --cream:         #f5f0e8;
    --cream-muted:   #a89e8d;
    --orange:        #e8621a;
    --orange-hover:  #d4561a;
    --white:         #ffffff;
    --border-gold:   rgba(201, 151, 58, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.07);
    --font-display:  'Playfair Display', Georgia, serif;
    --font-body:     'Inter', system-ui, -apple-system, sans-serif;
    --section-py:    110px;
    --shadow-card:   0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-gold:   0 0 40px rgba(201, 151, 58, 0.18);
    --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream);
    margin-bottom: 18px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--cream-muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

section { padding: var(--section-py) 0; }

/* ===== NAVBAR ===== */
.eh-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    padding: 22px 0;
    transition: var(--transition);
}
.eh-navbar.scrolled {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.brand-text span { color: var(--gold); }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.navbar-nav a {
    display: block;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cream-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.02em;
}
.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--gold);
    background: var(--gold-faint);
}
.navbar-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: #080808 !important;
    font-weight: 600 !important;
    padding: 9px 20px !important;
}
.navbar-cta:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 151, 58, 0.4) !important;
}
.navbar-toggler {
    display: none;
    background: none;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    cursor: pointer;
    color: var(--cream);
    font-size: 1.2rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #080808;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 151, 58, 0.4);
    color: #080808;
}
.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--border-gold);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-faint);
    transform: translateY(-2px);
}
.btn-orange {
    background: linear-gradient(135deg, var(--orange), #c4511a);
    color: var(--white);
}
.btn-orange:hover {
    background: linear-gradient(135deg, #ff7a35, var(--orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 98, 26, 0.4);
    color: var(--white);
}
.btn-lg { padding: 16px 38px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.8rem; }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(1.25) contrast(1.15) saturate(1.3);
    opacity: 0;
    animation: heroSlider 12s infinite;
}
.hero-bg-1 { animation-delay: 0s; }
.hero-bg-2 { animation-delay: 3s; }
.hero-bg-3 { animation-delay: 6s; }
.hero-bg-4 { animation-delay: 9s; }

@keyframes heroSlider {
    0%       { opacity: 0; transform: scale(1.0); }
    8.33%    { opacity: 1; transform: scale(1.01); }
    25%      { opacity: 1; transform: scale(1.03); }
    33.33%   { opacity: 0; transform: scale(1.04); }
    100%     { opacity: 0; transform: scale(1.04); }
}

/* Dinamik şömine ışığı - Daha Yoğun ve Belirgin */
.hero-fire-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 75% 65%, rgba(255, 110, 20, 0.45) 0%, rgba(220, 70, 10, 0.2) 30%, transparent 70%),
        radial-gradient(ellipse 80% 50% at 60% 100%, rgba(255, 180, 50, 0.3) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
    animation: firePulse 3s ease-in-out infinite alternate;
    mix-blend-mode: color-dodge;
}

@keyframes firePulse {
    0%   { opacity: 0.6; transform: scale(0.98); }
    50%  { opacity: 0.85; transform: scale(1.0); }
    100% { opacity: 1.0; transform: scale(1.03); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 8, 8, 0.9) 0%,
        rgba(8, 8, 8, 0.6) 40%,
        rgba(8, 8, 8, 0.15) 80%,
        transparent 100%
    );
}
.hero-overlay-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-faint);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-title .accent { color: var(--gold); font-style: italic; }
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--cream-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--cream-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s ease infinite;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ===== STATS BAND ===== */
.stats-band {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 20px 30px;
    border-right: 1px solid var(--border-subtle);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ===== CARDS ===== */
.card-glass {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.card-glass:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card), var(--shadow-gold);
}
.product-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: #080808;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 1;
}
.product-badge.new { background: #22c55e; color: #fff; }
.product-badge.sale { background: var(--orange); color: #fff; }
.product-card-body { padding: 22px; }
.product-card-body h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--cream);
}
.product-card-body p {
    font-size: 0.85rem;
    color: var(--cream-muted);
    margin-bottom: 18px;
    line-height: 1.6;
}
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== FEATURE ICONS ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.feature-icon {
    width: 68px;
    height: 68px;
    background: var(--gold-faint);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: #080808;
}
.feature-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--cream); }
.feature-card p { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.6; }

/* ===== SECTION DIVIDER ===== */
.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 16px 0 32px;
}
.divider-center { margin: 16px auto 32px; }

/* ===== GOLD GRADIENT SECTION ===== */
.section-dark { background: var(--bg-secondary); }
.section-surface { background: var(--bg-surface); }
.section-alt {
    background: linear-gradient(135deg, #0f0f0f 0%, #161616 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

/* ===== MARQUEE ===== */
.marquee-track {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.marquee-track::before,
.marquee-track::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
}
.marquee-track::before { left: 0; background: linear-gradient(to right, var(--bg-primary), transparent); }
.marquee-track::after { right: 0; background: linear-gradient(to left, var(--bg-primary), transparent); }
.marquee-inner {
    display: inline-flex;
    animation: marquee 25s linear infinite;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 50px;
    color: var(--cream-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.marquee-sep { color: var(--gold); font-size: 1.2rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #1a1200, #0f0a00);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    word-break: break-word;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 151, 58, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; color: var(--cream); }
.cta-banner p { color: var(--cream-muted); margin-bottom: 36px; font-size: 1.05rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(201, 151, 58, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero-inner { text-align: center; position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); margin-bottom: 16px; color: var(--cream); }
.page-hero p { color: var(--cream-muted); font-size: 1.1rem; max-width: 550px; margin: 0 auto; }

/* ===== BREADCRUMB ===== */
.breadcrumb-eh {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: var(--cream-muted);
    justify-content: center;
}
.breadcrumb-eh a { color: var(--gold); }
.breadcrumb-eh i { font-size: 0.6rem; }

/* ===== FILTER TABS ===== */
.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.filter-tab {
    padding: 9px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cream-muted);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.filter-tab:hover,
.filter-tab.active {
    background: var(--gold-faint);
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== REVIEWS ===== */
.rating-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
}
.review-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.reviewer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #080808;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== CAMPAIGN CARD ===== */
.campaign-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.campaign-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}
.campaign-badge-top {
    position: absolute;
    top: 0; right: 0;
    background: linear-gradient(135deg, var(--orange), #c4511a);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom-left-radius: var(--radius-sm);
}
.campaign-discount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.campaign-discount span { font-size: 1.8rem; }

/* ===== CONTACT ===== */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: 100%;
}
.contact-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card), var(--shadow-gold);
}
.contact-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}
.contact-icon-wp { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; }
.contact-icon-mail { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #080808; }
.contact-icon-phone { background: linear-gradient(135deg, #4f86f7, #2563eb); color: #fff; }
.contact-card h4 { font-size: 1.1rem; color: var(--cream); margin: 0; }
.contact-card p { font-size: 0.88rem; color: var(--cream-muted); margin: 0; text-align: center; }
.contact-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-body);
    margin-top: 4px;
}
.contact-link-btn.wp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}
.contact-link-btn.wp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}
.contact-link-btn.mail {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #080808;
}
.contact-link-btn.mail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 151, 58, 0.4);
}
.contact-link-btn.phone {
    background: linear-gradient(135deg, #4f86f7, #2563eb);
    color: white;
}
.contact-link-btn.phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(79, 134, 247, 0.4);
}
.btn-detail-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border-gold);
    background: transparent;
    color: var(--cream);
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-body);
    margin-top: 4px;
}
.btn-detail-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-faint);
    transform: translateY(-2px);
}
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.info-icon {
    width: 46px;
    height: 46px;
    background: var(--gold-faint);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.info-card h5 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    font-family: var(--font-body);
}
.info-card p {
    font-size: 0.9rem;
    color: var(--cream-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== REFERENCE CARDS ===== */
.ref-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.ref-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ref-card:hover img { transform: scale(1.08); }
.ref-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0.9;
    transition: var(--transition);
}
.ref-card:hover .ref-card-overlay { opacity: 1; }
.ref-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.ref-title { font-size: 1.1rem; color: var(--cream); }
.ref-desc { font-size: 0.82rem; color: var(--cream-muted); margin-top: 4px; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 2px; }
.timeline::before {
    content: '';
    position: absolute;
    left: 19px; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item { display: flex; gap: 30px; margin-bottom: 36px; align-items: flex-start; }
.timeline-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold-faint);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.timeline-content h5 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; font-family: var(--font-body); }
.timeline-content p { font-size: 0.9rem; color: var(--cream-muted); line-height: 1.6; margin: 0; }

/* ===== FOOTER ===== */
.eh-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-brand p {
    font-size: 0.9rem;
    color: var(--cream-muted);
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
}
.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-faint);
    transform: translateY(-3px);
}

/* Store Icon Masks */
.store-icon-mask {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: currentColor;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: contain;
    -webkit-mask-size: contain;
    transition: var(--transition);
}
.trendyol-mask {
    width: 26px;
    height: 26px;
    mask-image: url('/images/trendyol.svg');
    -webkit-mask-image: url('/images/trendyol.svg');
}
.hepsiburada-mask {
    width: 32px;
    height: 26px;
    mask-image: url('/images/hepsiburada.svg');
    -webkit-mask-image: url('/images/hepsiburada.svg');
}
.store-text-logo {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    display: inline-block;
}

.footer-col h5 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: var(--font-body);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.88rem;
    color: var(--cream-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--gold);
    opacity: 0;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; font-size: 0.85rem; width: 16px; }
.footer-contact-item span { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.5; }
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--cream-muted); }
.footer-bottom a { color: var(--gold); }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== ANIMATIONS ===== */
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 151, 58, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(201, 151, 58, 0); }
}

.animate-hero .hero-badge { animation: fadeInUp 0.7s ease 0.2s both; }
.animate-hero .hero-title { animation: fadeInUp 0.7s ease 0.4s both; }
.animate-hero .hero-subtitle { animation: fadeInUp 0.7s ease 0.6s both; }
.animate-hero .hero-actions { animation: fadeInUp 0.7s ease 0.8s both; }

.pulse { animation: pulse-gold 2s ease infinite; }

/* ===== GRID UTILITIES ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== SPACING ===== */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 36px; }
.mb-5 { margin-bottom: 48px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted-eh { color: var(--cream-muted); }

/* ===== GOLD BORDER ACCENT ===== */
.gold-border-left {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    z-index: 9998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream-muted);
    padding: 12px 30px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); background: var(--gold-faint); }
.mobile-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--cream-muted);
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.mobile-close:hover { border-color: var(--gold); color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; }
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-top: 1px solid var(--border-subtle); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .cta-banner { padding: 60px 40px; }
    .page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
}

@media (max-width: 768px) {
    :root { --section-py: 60px; }
    .navbar-nav { display: none; }
    .navbar-toggler { display: flex; align-items: center; justify-content: center; }
    /* Hero */
    .hero { min-height: 100svh; }
    .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 30px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    /* Grids */
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-brand p { max-width: 100%; }
    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 2.2rem; }
    /* CTA */
    .cta-banner { padding: 40px 20px; border-radius: var(--radius-md); }
    .cta-banner h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
    /* Feature grid */
    .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .feature-card { padding: 24px 16px; }
    /* Filter tabs */
    .filter-tabs { justify-content: center; }
    /* Page hero */
    .page-hero { padding: 120px 0 50px; }
    .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
    .page-hero p { font-size: 0.95rem; }
    /* Product card footer */
    .product-card-footer { padding: 12px 16px; }
    .product-card-footer > div { flex-direction: column !important; width: 100%; gap: 8px !important; }
    .product-card-footer > div a { width: 100%; justify-content: center; flex: unset; }
    /* Buttons */
    .btn-lg { padding: 13px 24px; font-size: 0.9rem; }
    /* Section label */
    .section-label { font-size: 0.7rem; }
}

@media (max-width: 480px) {
    :root { --section-py: 50px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .stat-item { padding: 16px 12px; }
    .stat-number { font-size: 2rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
    .hero-subtitle { font-size: 0.9rem; }
    .cta-banner { padding: 32px 16px; }
    .cta-banner h2 { font-size: 1.4rem; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .page-hero { padding: 110px 0 40px; }
    .navbar-inner { padding: 0 16px; }
    .container { padding: 0 16px; }
    .mobile-menu a { font-size: 1.6rem; padding: 10px 20px; }
    .footer-socials { justify-content: flex-start; }
    .review-card { padding: 20px; }
    .contact-card { padding: 28px 20px; }
}