@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,400&family=Caveat:wght@600;700&display=swap');

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

body {
    overflow-x: clip;
    width: 100%;
}

/* =========================================================================
   LIGHT THEME DESIGN SYSTEM (AYDINLIK TEMA & NET OKUNABİLİR YAZI SİSTEMİ)
   ========================================================================= */
:root {
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --border-glass: rgba(226, 232, 240, 0.95);
    --border-glow: rgba(244, 63, 94, 0.35);
    
    --primary: #be123c;
    --primary-light: #e11d48;
    --primary-dark: #9f1239;
    --secondary: #db2777;
    --accent: #0284c7;
    --gold: #d97706;
    --rose: #e11d48;
    
    /* Ultra-readable high contrast text colors */
    --text-main: #0f172a;       /* Slate-900: Crisp deep charcoal */
    --text-muted: #334155;      /* Slate-700: Highly readable secondary */
    --text-dim: #64748b;        /* Slate-500: Metadata & subheadings */
    
    --glow-primary: 0 4px 20px rgba(225, 29, 72, 0.2);
    --glow-secondary: 0 4px 20px rgba(219, 39, 119, 0.2);
    --glow-gold: 0 4px 20px rgba(217, 119, 6, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: clip;
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
}

.content-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    position: relative;
}

/* Cosmic background atmosphere (Light Romantic Pearl Tone) */
.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 15%, rgba(254, 205, 211, 0.45) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(245, 208, 254, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 50% 85%, rgba(254, 243, 199, 0.35) 0%, transparent 50%),
        #f8fafc;
    z-index: 0;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

/* Typography Helpers */
h1, h2, h3, h4, .font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.gradient-text {
    background: linear-gradient(135deg, #be123c 15%, #9333ea 60%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-gold {
    background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Luxury Frosted Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    height: 74px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

/* Ambient glow accent line under the navbar */
.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(225, 29, 72, 0.1) 15%, 
        rgba(225, 29, 72, 0.8) 40%, 
        rgba(219, 39, 119, 0.8) 60%, 
        rgba(147, 51, 234, 0.1) 85%, 
        transparent 100%
    );
    pointer-events: none;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: -0.03em;
}

.brand-logo-img {
    height: 42px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(225, 29, 72, 0.15));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo-img:hover {
    transform: scale(1.03);
}

/* Studio Pro Badge */
.studio-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0.85rem;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #be123c;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.08);
    white-space: nowrap;
}

.studio-badge-pill .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e11d48;
    box-shadow: 0 0 8px #e11d48;
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* Back Link in Header */
.btn-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 12px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-nav-back:hover {
    color: #0f172a;
    background: #e2e8f0;
    border-color: #cbd5e1;
    transform: translateX(-2px);
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    align-items: center;
    background: rgba(248, 250, 252, 0.9);
    padding: 0.3rem 0.45rem;
    border-radius: 50px;
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.nav-links a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.45rem 1.15rem;
    border-radius: 40px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1.2;
    border: 1px solid transparent;
}

.nav-links a:hover {
    color: #e11d48;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.nav-links a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #e11d48, #db2777);
    border: 1px solid #e11d48;
    box-shadow: 0 2px 10px rgba(225, 29, 72, 0.25);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-xl);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(225, 29, 72, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(225, 29, 72, 0.5);
    color: #ffffff !important;
}

.btn-glass {
    background: #ffffff;
    backdrop-filter: blur(12px);
    color: #1e293b;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-glass:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Luxury Segmented Language Switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 50px;
    padding: 2px;
    gap: 2px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #64748b;
    padding: 0.22rem 0.6rem;
    border-radius: 30px;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.03em;
}

.lang-btn:hover {
    color: #0f172a;
}

.lang-btn.active {
    background: #ffffff;
    color: #e11d48;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

/* Navbar CTA Button */
.nav-cta-btn {
    padding: 0.55rem 1.3rem !important;
    font-size: 0.88rem !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #e11d48 0%, #db2777 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.5) !important;
    color: #ffffff !important;
}

.nav-cta-btn .cta-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}

.nav-cta-btn:hover .cta-arrow {
    transform: translateX(4px);
}

/* Hero Section - Aşk, Sevgi & Hediye Teması */
.hero {
    padding: 5rem 5% 3.5rem;
    text-align: center;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

/* Floating romantic heart ornaments */
.hero-floating-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.heart-float {
    position: absolute;
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 8px rgba(244, 63, 94, 0.3));
    animation: floatHeart 6s infinite ease-in-out;
    opacity: 0.8;
}

.heart-float.h1 { top: 12%; left: 8%; animation-delay: 0s; font-size: 1.6rem; }
.heart-float.h2 { top: 20%; right: 9%; animation-delay: 1.5s; font-size: 1.8rem; }
.heart-float.h3 { bottom: 35%; left: 4%; animation-delay: 3s; font-size: 1.2rem; }
.heart-float.h4 { bottom: 25%; right: 6%; animation-delay: 4.2s; font-size: 1.5rem; }
.heart-float.h5 { top: 4%; right: 28%; animation-delay: 2.2s; font-size: 1.1rem; }

@keyframes floatHeart {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-18px) rotate(10deg) scale(1.15);
        opacity: 0.95;
    }
}

.gradient-love {
    background: linear-gradient(135deg, #9f1239 5%, #e11d48 40%, #be123c 75%, #a21caf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(225, 29, 72, 0.15));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(225, 29, 72, 0.1);
    position: relative;
    z-index: 1;
}

.hero-badge.love-badge {
    background: linear-gradient(135deg, #fff1f2, #fdf4ff);
    border-color: #fbcfe8;
    color: #be123c;
}

.pulse-sparkle {
    display: inline-block;
    animation: sparklePulse 2s infinite ease-in-out;
}

@keyframes sparklePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.1rem);
    line-height: 1.18;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
    color: #0f172a;
}

.hero p {
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    color: #334155;
    max-width: 720px;
    margin: 0 auto 2.2rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-love-primary {
    background: linear-gradient(135deg, #e11d48 0%, #db2777 50%, #9333ea 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.4) !important;
}

.btn-love-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 30px rgba(225, 29, 72, 0.6) !important;
    color: #ffffff !important;
}

.btn-love-glass {
    background: #ffffff !important;
    border: 1.5px solid #fbcfe8 !important;
    color: #be123c !important;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.08) !important;
}

.btn-love-glass:hover {
    background: #fff1f2 !important;
    border-color: #f43f5e !important;
    color: #9f1239 !important;
}

/* Romantic Keywords Pills */
.hero-love-pills {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 2.2rem auto 1rem;
    position: relative;
    z-index: 1;
}

.love-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1.05rem;
    background: #ffffff;
    border: 1px solid #fecdd3;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #be123c;
    box-shadow: 0 2px 6px rgba(225, 29, 72, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.love-pill:hover {
    background: #fff1f2;
    border-color: #e11d48;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.18);
    color: #9f1239;
}

/* Hero Promotional Banner Showcase (Admin-managed) */
.hero-banner-showcase-wrapper {
    margin: 2.8rem auto 1rem;
    text-align: left;
    position: relative;
    z-index: 1;
    max-width: 980px;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
}

.showcase-tag {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #be123c;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.showcase-admin-link {
    display: none !important;
}

.banner-slider-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #fbcfe8;
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.08);
    backdrop-filter: blur(20px);
    background: #ffffff;
}

.banner-slider-track {
    position: relative;
    min-height: 220px;
}

.banner-slide {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 2.2rem 2.8rem;
    gap: 2rem;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

.banner-slide.active {
    display: flex;
    animation: fadeInBannerSlide 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInBannerSlide {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.banner-slide.theme-romantic-rose {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
}

.banner-slide.theme-midnight-love {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.banner-slide.theme-warm-amber {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.banner-slide.theme-emerald-passion {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.banner-slide-content {
    flex: 1;
    max-width: 620px;
    z-index: 2;
}

.banner-slide-badge {
    display: inline-block;
    padding: 0.28rem 0.8rem;
    background: #ffffff;
    border: 1px solid #fecdd3;
    color: #be123c;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.banner-slide-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 0.45rem;
}

.banner-slide-subtitle {
    font-size: 0.93rem;
    color: #334155;
    line-height: 1.55;
    margin-bottom: 1.3rem;
}

.banner-slide-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.banner-btn-primary {
    padding: 0.65rem 1.4rem !important;
    font-size: 0.88rem !important;
    background: linear-gradient(135deg, #e11d48 0%, #db2777 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(225, 29, 72, 0.35) !important;
}

.banner-btn-secondary {
    padding: 0.65rem 1.3rem !important;
    font-size: 0.88rem !important;
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #1e293b !important;
}

.banner-slide-media {
    position: relative;
    width: 210px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.banner-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.banner-slide:hover .banner-slide-img {
    transform: scale(1.06);
}

.banner-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slider-arrow:hover {
    background: #e11d48;
    border-color: #e11d48;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.4);
}

.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.slider-dot.active {
    width: 24px;
    border-radius: 10px;
    background: #e11d48;
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.5);
}

@media (max-width: 768px) {
    .banner-slide {
        flex-direction: column;
        text-align: center;
        padding: 2.2rem 1.4rem;
    }
    .banner-slide-content {
        max-width: 100%;
    }
    .banner-slide-actions {
        justify-content: center;
    }
    .banner-slide-media {
        width: 100%;
        max-width: 260px;
        height: 130px;
    }
    .hero-floating-hearts {
        display: none;
    }
}

/* Filter Tabs */
.categories-bar {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 3rem auto 2.5rem;
    padding: 0.4rem;
    background: #f1f5f9;
    backdrop-filter: blur(12px);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    max-width: max-content;
    flex-wrap: wrap;
}

.cat-btn {
    background: transparent;
    border: none;
    color: #475569;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cat-btn:hover {
    color: #0f172a;
}

.cat-btn.active {
    background: linear-gradient(135deg, #e11d48 0%, #db2777 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

/* Template Showcase Grid */
.templates-section {
    padding: 2rem 5% 6rem;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
    color: #0f172a;
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.template-card {
    background: #ffffff;
    border: 1.5px solid #f1f5f9;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.template-card:hover {
    transform: translateY(-6px);
    border-color: #fbcfe8;
    box-shadow: 0 18px 40px rgba(225, 29, 72, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
}

.card-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.32rem 0.8rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    z-index: 5;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.card-badge.popular {
    background: linear-gradient(135deg, #e11d48, #db2777);
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.4);
}

.card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.template-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.card-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #0f172a;
    line-height: 1.35;
}

.card-body p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.1rem;
    flex-grow: 1;
    line-height: 1.55;
}

.card-tags {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}

.card-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.22rem 0.55rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #475569;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 0.65rem;
}

.card-footer .btn {
    border-radius: 12px;
    height: 40px;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.card-footer .btn-preview-action {
    flex: 0 0 auto;
    padding: 0 0.85rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.card-footer .btn-preview-action:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-footer .btn-preview-action .action-icon {
    display: inline-block;
    flex-shrink: 0;
    color: #e11d48;
    transition: transform 0.2s ease;
}

.card-footer .btn-preview-action:hover .action-icon {
    transform: scale(1.15);
}

.card-footer .btn-create-action {
    flex: 1;
    padding: 0 1rem;
    background: linear-gradient(135deg, #e11d48 0%, #db2777 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card-footer .btn-create-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.55);
    color: #ffffff !important;
}

.card-footer .btn-create-action .action-sparkle {
    display: inline-block;
    flex-shrink: 0;
    color: #fef08a;
    transition: transform 0.25s ease;
}

.card-footer .btn-create-action:hover .action-sparkle {
    transform: rotate(15deg) scale(1.2);
}

/* Feature Showcase */
.features-section {
    padding: 5rem 5%;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.feature-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #fbcfe8;
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.08);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #0f172a;
}

.feature-item p {
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.9rem;
}

footer a {
    color: #334155;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #e11d48;
}

/* Keyframes */
@keyframes sparkleSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.15); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Responsive Mobile App Experience */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .brand-logo-img {
        height: 38px !important;
        max-width: 190px !important;
    }

    .navbar {
        padding: 0.75rem 1.2rem;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid #e2e8f0;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .nav-cta .btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.82rem;
        border-radius: 12px;
    }

    .hero {
        padding: 2.8rem 1.2rem 2.2rem;
    }

    .hero h1 {
        font-size: 2.1rem;
        line-height: 1.25;
        color: #0f172a;
    }

    .hero p {
        font-size: 0.98rem;
        padding: 0 0.5rem;
        color: #334155;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 1.6rem auto;
        gap: 0.8rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.4rem;
        font-size: 1rem;
    }

    /* Mobile Template Grid & Cards are managed cleanly in the dedicated section at the bottom of stylesheet */


    /* Swipeable Sound Sampler on Mobile */
    .sound-sampler-section {
        padding: 1.1rem 1rem !important;
        border-radius: 18px !important;
        margin: 1.8rem auto 0.5rem !important;
    }

    .sampler-chips {
        display: flex !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        gap: 0.55rem !important;
        padding-bottom: 0.5rem !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
        justify-content: flex-start !important;
    }

    .sampler-chips::-webkit-scrollbar {
        display: none !important;
    }

    .sampler-chip {
        flex-shrink: 0 !important;
        padding: 0.55rem 0.95rem !important;
        font-size: 0.82rem !important;
    }

    /* Category Filter Pills on Mobile */
    .filter-bar {
        display: flex !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        padding: 0.4rem 0.2rem 0.8rem !important;
        gap: 0.5rem !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .filter-bar::-webkit-scrollbar {
        display: none !important;
    }

    .filter-btn {
        flex-shrink: 0 !important;
        font-size: 0.82rem !important;
        padding: 0.45rem 0.9rem !important;
    }

    /* Mobile App Bottom Dock on Homepage */
    .home-mobile-dock {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 66px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-top: none;
        z-index: 999;
        padding: 0 0.8rem;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -8px 25px rgba(225, 29, 72, 0.12), 0 -1px 3px rgba(0, 0, 0, 0.05);
    }

    .home-mobile-dock::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #e11d48, #ec4899, #8b5cf6, #06b6d4, #f59e0b);
    }

    body {
        padding-bottom: 96px; /* space for dock */
    }

    footer {
        padding-bottom: 6rem !important;
    }
}

/* Mobile Bottom Dock styles are unified below */

/* =====================================================
   ADVANCED HOMEPAGE FEATURES & STYLES
   ===================================================== */

/* 1. Interactive Sound & Melody Sampler Bar */
.sound-sampler-section {
    max-width: 900px;
    margin: 2.5rem auto 1rem;
    background: #ffffff;
    border: 1px solid #fbcfe8;
    border-radius: var(--radius-lg);
    padding: 1.4rem 2rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sound-sampler-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(225, 29, 72, 0.6), transparent);
}

.sampler-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.sampler-header h4 {
    font-size: 1.15rem;
    color: #0f172a;
    font-weight: 700;
}

.sampler-desc {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 1.2rem;
}

.sampler-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.sampler-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.sampler-chip:hover {
    background: #fff1f2;
    border-color: #fbcfe8;
    transform: translateY(-2px);
    color: #be123c;
}

.sampler-chip.active {
    background: linear-gradient(135deg, #fff1f2, #fdf4ff);
    border-color: #e11d48;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.15);
    color: #9f1239;
}

/* Sound Wave Bars Animation */
.sound-wave {
    display: inline-flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 14px;
}

.sound-wave span {
    width: 2.5px;
    background: #e11d48;
    border-radius: 2px;
    height: 4px;
    transition: height 0.2s ease;
}

.sampler-chip.active .sound-wave span {
    animation: waveBounce 0.8s infinite ease-in-out alternate;
}

.sampler-chip.active .sound-wave span:nth-child(1) { animation-delay: 0.0s; height: 12px; }
.sampler-chip.active .sound-wave span:nth-child(2) { animation-delay: 0.2s; height: 16px; }
.sampler-chip.active .sound-wave span:nth-child(3) { animation-delay: 0.4s; height: 8px; }
.sampler-chip.active .sound-wave span:nth-child(4) { animation-delay: 0.1s; height: 14px; }

@keyframes waveBounce {
    0% { height: 4px; }
    100% { height: 14px; }
}

/* 2. Template Live Search Bar */
.search-wrapper {
    max-width: 600px;
    margin: 1.5rem auto 0;
    position: relative;
}

.template-search-box {
    width: 100%;
    padding: 0.85rem 1.4rem;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    color: #0f172a;
    font-size: 0.95rem;
    font-family: inherit;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.template-search-box:focus {
    outline: none;
    border-color: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15), 0 4px 16px rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.template-search-box::placeholder {
    color: #94a3b8;
}

.no-results-msg {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
    color: #475569;
    font-size: 1.05rem;
    grid-column: 1 / -1;
}

/* 3. Interactive Quick Preview Device Modal */
.preview-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.preview-modal-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.preview-modal-overlay.active .preview-modal-content {
    transform: scale(1);
}

.modal-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.modal-header-bar h4 {
    color: #0f172a;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close-btn {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: #fee2e2;
    color: #dc2626;
    transform: rotate(90deg);
}

.modal-simulator-body {
    flex-grow: 1;
    height: 560px;
    background: #f8fafc;
    position: relative;
}

.modal-simulator-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-bottom-bar {
    padding: 1.1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* 4. Comparison Table Section */
.comparison-section {
    padding: 5rem 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
    margin-top: 2.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 1.25rem 1.6rem;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-table th {
    background: #f8fafc;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: #0f172a;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-table th.highlight-col, .comparison-table td.highlight-col {
    background: #fff1f2;
    border-left: 1px solid #fecdd3;
    border-right: 1px solid #fecdd3;
}

.comparison-table th.highlight-col {
    color: #be123c;
    font-weight: 700;
}

.comparison-table td {
    font-size: 0.95rem;
    color: #334155;
}

.comparison-table tr:hover td {
    background: #f8fafc;
}

.comparison-table tr:hover td.highlight-col {
    background: #ffe4e6;
}

.check-icon {
    color: #059669;
    font-weight: 700;
    margin-right: 0.3rem;
}

.cross-icon {
    color: #e11d48;
    font-weight: 700;
    margin-right: 0.3rem;
}

/* 5. Reviews / Testimonials Section */
.reviews-section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 3rem;
}

.review-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 2rem;
    backdrop-filter: blur(14px);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.review-card:hover {
    border-color: #fbcfe8;
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(225, 29, 72, 0.1);
}

.review-stars {
    color: #d97706;
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
    display: flex;
    gap: 3px;
}

.review-text {
    font-size: 0.96rem;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.review-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.92rem;
}

.review-badge {
    font-size: 0.75rem;
    background: #fdf4ff;
    border: 1px solid #f0abfc;
    color: #9333ea;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
}

/* 6. FAQ Accordion Section */
.faq-section {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.faq-item.active {
    border-color: #fbcfe8;
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.08);
}

.faq-question {
    padding: 1.25rem 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #e11d48;
}

.faq-icon {
    font-size: 1.2rem;
    color: #e11d48;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
    padding: 0 1.6rem;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 1.6rem 1.4rem;
    transition: max-height 0.4s ease-in-out, padding 0.35s ease;
}

/* 7. Sticky Quick-CTA Floating Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(225, 29, 72, 0.15);
    border-radius: 50px;
    padding: 0.75rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    z-index: 90;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.sticky-cta-bar.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-cta-bar span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
}

.sticky-cta-bar .btn {
    padding: 0.55rem 1.4rem;
    font-size: 0.9rem;
    border-radius: 50px;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .sticky-cta-bar {
        width: 90%;
        justify-content: space-between;
        padding: 0.65rem 1.2rem;
    }
    .sticky-cta-bar span {
        font-size: 0.85rem;
    }
}

/* Floating WhatsApp Support Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #fff;
    padding: 0.65rem 1.35rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 85px;
        right: 16px;
        padding: 0.55rem 1rem;
        font-size: 0.82rem;
    }
}

/* =========================================================================
   ROMANTİK AŞK & HEDİYE TEŞVİK BİLEŞENLERİ (LOVE THEMED ATTRACTIONS)
   ========================================================================= */

/* Heart Burst Animation */
.burst-heart {
    position: fixed;
    font-size: 1.5rem;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    animation: burstHeartAnim 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes burstHeartAnim {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.6) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--tx, 0px)), calc(-50% + var(--ty, -50px))) scale(1.4) rotate(25deg);
    }
}

/* 1. İNTERAKTİF AÇILAN AŞK MEKTUBU DEMO VİTRİNİ */
.love-envelope-demo-section {
    padding: 3.5rem 5%;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.envelope-demo-card {
    background: linear-gradient(135deg, #fff1f2 0%, #fdf4ff 60%, #ffffff 100%);
    border: 1px solid #fbcfe8;
    border-radius: var(--radius-xl);
    padding: 2.8rem 2.2rem;
    text-align: center;
    box-shadow: 0 12px 35px rgba(225, 29, 72, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.envelope-demo-header {
    margin-bottom: 2rem;
}

.envelope-demo-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.envelope-demo-header p {
    color: #334155;
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
}

/* 3D Interactive Envelope Widget */
.envelope-interactive-box {
    width: 100%;
    max-width: 320px;
    height: 200px;
    margin: 1.5rem auto 2.5rem;
    position: relative;
    perspective: 1000px;
    cursor: pointer;
    box-sizing: border-box;
}

.envelope-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #be123c, #881337);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 12px 30px rgba(190, 18, 60, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(244, 63, 94, 0.4);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 0%, 100% 0%, 50% 55%);
    background: linear-gradient(180deg, #e11d48, #9f1239);
    transform-origin: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.3s ease;
    z-index: 5;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.wax-seal-btn {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #f43f5e, #881337);
    border: 2px solid #fda4af;
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(244, 63, 94, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: pulseWaxSeal 2.2s infinite ease-in-out;
}

@keyframes pulseWaxSeal {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 4px 18px rgba(244, 63, 94, 0.7); }
    50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 6px 28px rgba(244, 63, 94, 0.95); }
}

.wax-seal-btn:hover {
    transform: translate(-50%, -50%) scale(1.15) rotate(10deg);
}

.wax-seal-hint {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #be123c;
    text-transform: uppercase;
    animation: bounceHint 1.8s infinite ease-in-out;
}

@keyframes bounceHint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
}

/* Letter inside the envelope */
.envelope-letter-paper {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: #ffffff;
    border-radius: 8px;
    color: #0f172a;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    z-index: 2;
    overflow: hidden;
}

.envelope-letter-paper h4 {
    font-family: 'Playfair Display', serif;
    color: #be123c;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.envelope-letter-paper p {
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    color: #1e293b;
    line-height: 1.45;
}

/* Opened state */
.envelope-interactive-box.opened {
    height: 290px;
}

.envelope-interactive-box.opened .envelope-flap {
    transform: rotateX(180deg);
    z-index: 1;
}

.envelope-interactive-box.opened .wax-seal-btn {
    opacity: 0;
    pointer-events: none;
}

.envelope-interactive-box.opened .wax-seal-hint {
    display: none;
}

.envelope-interactive-box.opened .envelope-letter-paper {
    opacity: 1;
    transform: translateY(-80px) scale(1.05);
    z-index: 8;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    height: 210px;
}

/* Action block revealed after opening */
.envelope-reveal-actions {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease 0.4s;
    pointer-events: none;
    max-width: 580px;
    margin: 1rem auto 0;
}

.envelope-interactive-box.opened ~ .envelope-reveal-actions {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.reveal-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.reveal-sub {
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 1.25rem;
}

/* 2. "KİME AŞK HEDİYESİ GÖNDERİYORSUN?" HIZLI SİHİRBAZ */
.gift-wizard-section {
    padding: 4rem 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.wizard-card {
    background: #ffffff;
    border: 1px solid #fbcfe8;
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 35px rgba(225, 29, 72, 0.06);
}

.wizard-step-box {
    margin-bottom: 2rem;
}

.wizard-step-label {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #be123c;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.wizard-options-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.wizard-rec-btn, .wizard-occ-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    padding: 0.65rem 1.3rem;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.wizard-rec-btn:hover, .wizard-occ-btn:hover {
    color: #be123c;
    background: #fff1f2;
    border-color: #fbcfe8;
}

.wizard-rec-btn.active, .wizard-occ-btn.active {
    background: linear-gradient(135deg, #e11d48, #db2777);
    color: #fff;
    border-color: #e11d48;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

/* Wizard Recommended Result */
.wizard-result-box {
    background: linear-gradient(135deg, #fff1f2 0%, #fdf4ff 100%);
    border: 1px solid #fbcfe8;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.08);
    animation: fadeInSlide 0.35s ease forwards;
}

.wizard-result-media {
    width: 180px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.wizard-result-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wizard-result-info {
    flex: 1;
}

.wizard-result-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.wizard-result-info p {
    font-size: 0.94rem;
    color: #334155;
    margin-bottom: 1rem;
    line-height: 1.55;
}

/* 3. NEDEN ŞİMDİ HEDİYE GÖNDERMELİSİN? (EMOTIONAL PERSUASION) */
.why-now-section {
    padding: 4.5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.why-now-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-now-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.why-now-card:hover {
    transform: translateY(-4px);
    border-color: #fbcfe8;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.08);
}

.why-now-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.why-now-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.why-now-card p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
}

/* 4. ROMANTİK SÖZLER İLHAM ÜRETECİ (LOVE QUOTES) */
.love-quote-section {
    padding: 4rem 5%;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.quote-parchment-box {
    background: linear-gradient(135deg, #fff1f2 0%, #fdf4ff 100%);
    border: 1px solid #fbcfe8;
    border-radius: var(--radius-xl);
    padding: 2.8rem 2.2rem;
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.06);
    backdrop-filter: blur(16px);
}

.quote-icon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid #fecdd3;
    color: #be123c;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.romantic-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    font-style: italic;
    color: #881337;
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.quote-actions-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* 5. CANLI SOSYAL KANIT AŞK BİLDİRİM TOSTU (LIVE SOCIAL PROOF) */
.live-love-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #ffffff;
    border: 1px solid #fbcfe8;
    border-radius: 50px;
    padding: 0.75rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12), 0 0 15px rgba(225, 29, 72, 0.1);
    backdrop-filter: blur(16px);
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.live-love-toast.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast-heart-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e11d48, #db2777);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 0 12px rgba(225, 29, 72, 0.4);
    flex-shrink: 0;
}

.toast-text {
    font-size: 0.84rem;
    line-height: 1.35;
}

.toast-title {
    color: #be123c;
    font-weight: 700;
}

.toast-sub {
    color: #334155;
}

.toast-sub span {
    color: #0284c7;
    font-weight: 600;
}

@media (max-width: 768px) {
    .wizard-result-box {
        flex-direction: column;
        text-align: center;
    }
    .wizard-result-media {
        width: 100%;
        max-width: 240px;
        height: 130px;
    }
    .live-love-toast {
        bottom: 85px;
        left: 12px;
        right: 12px;
        border-radius: 16px;
        padding: 0.65rem 1rem;
    }
}

/* =========================================================================
   TOP ANNOUNCEMENT BAR: ÜCRETSİZ HEDİYELEŞME DÖNEMİ
   ========================================================================= */
.top-free-banner {
    background: linear-gradient(90deg, #be123c 0%, #e11d48 30%, #db2777 70%, #9333ea 100%);
    color: #fff;
    padding: 0.65rem 1.25rem;
    position: relative;
    z-index: 101;
    font-size: 0.88rem;
    box-shadow: 0 2px 12px rgba(225, 29, 72, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.top-free-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    text-align: center;
}

.top-free-tag {
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.top-free-text {
    font-weight: 500;
    letter-spacing: 0.01em;
}

.top-free-text strong {
    color: #fef08a;
    font-weight: 800;
}

.top-free-link {
    background: #ffffff;
    color: #be123c;
    font-weight: 700;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.82rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
}

.top-free-link:hover {
    background: #fff1f2;
    color: #9f1239;
    transform: translateY(-1px) scale(1.04);
}

/* =========================================================================
   HERO ENTRANCE FREE CARD: GİRİŞTEKİ ÜCRETSİZ HEDİYE KARTI
   ========================================================================= */
.hero-free-card {
    position: relative;
    max-width: 780px;
    margin: 1.5rem auto 2rem;
    background: linear-gradient(135deg, #fff1f2 0%, #fdf4ff 50%, #ffffff 100%);
    border: 1.5px solid #fbcfe8;
    border-radius: var(--radius-xl);
    padding: 2rem 2.2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 35px rgba(225, 29, 72, 0.08);
    overflow: hidden;
    animation: fadeInSlide 0.6s ease-out forwards;
}

.hero-free-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(244, 63, 94, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: rotateAura 15s linear infinite;
}

@keyframes rotateAura {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.free-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #ffe4e6;
    border: 1px solid #fecdd3;
    color: #be123c;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

.free-card-title {
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.highlight-free {
    background: linear-gradient(135deg, #be123c 0%, #e11d48 50%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.free-card-desc {
    color: #334155;
    font-size: clamp(0.95rem, 1.8vw, 1.06rem);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 1.4rem;
}

.free-card-desc strong {
    color: #0f172a;
    font-weight: 700;
}

.free-card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-free-cta {
    background: linear-gradient(135deg, #e11d48, #be123c) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.4) !important;
    padding: 0.85rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
}

.btn-free-cta:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.6) !important;
    color: #ffffff !important;
}

.free-extra-note {
    font-size: 0.86rem;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* =========================================================================
   ENVELOPE AUDIO TOGGLE BAR & LETTER MUTE BUTTON
   ========================================================================= */
.envelope-audio-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 520px;
    margin: 0 auto 1.5rem;
    padding: 0.65rem 1.25rem;
    background: #ffffff;
    border: 1px solid #fbcfe8;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.envelope-audio-bar.visible {
    display: flex;
    animation: fadeInSlide 0.35s ease forwards;
}

.audio-pulse-indicator {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.audio-pulse-indicator .sound-wave {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.audio-pulse-indicator .sound-wave span {
    width: 3px;
    height: 100%;
    background: #e11d48;
    border-radius: 2px;
    animation: waveBar 1.2s infinite ease-in-out;
}

.audio-pulse-indicator.paused .sound-wave span {
    animation-play-state: paused;
    height: 4px;
}

.audio-now-playing {
    font-size: 0.84rem;
    font-weight: 600;
    color: #0f172a;
}

.envelope-audio-toggle-btn {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
    padding: 0.35rem 0.95rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.envelope-audio-toggle-btn:hover {
    background: #e11d48;
    color: #ffffff;
    box-shadow: 0 0 14px rgba(225, 29, 72, 0.4);
}

.letter-top-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.letter-top-meta h4 {
    margin-bottom: 0 !important;
}

.letter-quick-mute {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.letter-quick-mute:hover {
    background: #e11d48;
    color: #ffffff;
}

/* =========================================================================
   HABER / MAGAZİN PORTALI TEMASI (NEWS & EDITORIAL MAGAZINE BLOG THEME)
   ========================================================================= */

/* 1. Breaking / Trending News Ticker Bar */
.news-ticker-bar {
    background: #ffffff;
    border-bottom: 1px solid #fecdd3;
    box-shadow: 0 2px 10px rgba(225, 29, 72, 0.04);
    font-size: 0.85rem;
    position: relative;
    z-index: 50;
}

.news-ticker-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0.55rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    overflow: hidden;
}

.ticker-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.3);
}

.ticker-pulse {
    width: 7px;
    height: 7px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: tickerBlink 1.4s infinite alternate;
}

@keyframes tickerBlink {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.15); }
}

.ticker-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.ticker-content::-webkit-scrollbar {
    display: none;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.84rem;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.ticker-item:hover {
    color: #e11d48;
}

.ticker-dot {
    color: #f43f5e;
}

.ticker-views {
    font-size: 0.74rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-weight: 500;
}

.ticker-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #64748b;
    font-size: 0.8rem;
    flex-shrink: 0;
    font-weight: 600;
}

/* 2. News Portal Header & Masthead */
.news-portal-header {
    max-width: 1240px;
    margin: 2rem auto 2.2rem;
    padding: 0 1.25rem;
}

.news-header-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.8rem;
    border-bottom: 2px solid #f1f5f9;
    flex-wrap: wrap;
}

.news-badge-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #be123c;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.65rem;
}

.news-portal-title {
    font-size: clamp(1.8rem, 3.8vw, 2.7rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.news-portal-subtitle {
    font-size: 1.02rem;
    color: #475569;
    max-width: 620px;
    line-height: 1.55;
    margin: 0;
}

/* Integrated News Search Bar */
.news-search-box {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #ffffff;
    border: 1.5px solid #fecdd3;
    border-radius: 50px;
    padding: 0.35rem 0.45rem 0.35rem 1.25rem;
    box-shadow: 0 4px 18px rgba(225, 29, 72, 0.08);
    transition: all 0.25s ease;
    min-width: 320px;
    flex-shrink: 0;
}

.news-search-box:focus-within {
    border-color: #e11d48;
    box-shadow: 0 6px 24px rgba(225, 29, 72, 0.16);
}

.news-search-box input[type="text"] {
    flex: 1;
    background: transparent;
    border: none;
    color: #0f172a;
    font-size: 0.92rem;
    outline: none;
    font-family: inherit;
    padding: 0.4rem 0;
    min-width: 0;
}

.news-search-box input[type="text"]::placeholder {
    color: #94a3b8;
}

.news-search-box .btn {
    border-radius: 50px;
    padding: 0.5rem 1.15rem;
    font-size: 0.86rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Category Navigation Ribbon */
.news-cat-ribbon {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-top: 1.2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.news-cat-ribbon::-webkit-scrollbar {
    display: none;
}

.news-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.05rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    color: #475569;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.cat-pill-count {
    font-size: 0.74rem;
    opacity: 0.8;
}

.news-cat-pill:hover, .news-cat-pill.active {
    background: linear-gradient(135deg, #e11d48, #db2777);
    color: #ffffff !important;
    border-color: #e11d48;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
    transform: translateY(-2px);
}

/* 3. EDITORIAL MANŞET (HEADLINE SHOWCASE GRID) */
.news-manset-section {
    max-width: 1240px;
    margin: 0 auto 3rem;
    padding: 0 1.25rem;
}

.news-manset-grid {
    display: grid;
    grid-template-columns: 1.85fr 1fr;
    gap: 1.5rem;
}

.manset-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.manset-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(225, 29, 72, 0.18);
}

.manset-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.manset-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.manset-card:hover .manset-bg-img {
    transform: scale(1.06);
}

.manset-gradient-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.45) 45%, rgba(15, 23, 42, 0.96) 100%);
    pointer-events: none;
    z-index: 2;
}

.manset-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.2rem;
    z-index: 5;
    color: #ffffff;
}

/* Ana Manşet */
.manset-main {
    min-height: 470px;
    display: flex;
}

.manset-badge-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
}

.badge-fire-manset {
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(225, 29, 72, 0.4);
}

.badge-cat-tag {
    background: rgba(255, 255, 255, 0.92);
    color: #be123c;
    font-size: 0.74rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.manset-title {
    font-size: clamp(1.45rem, 2.6vw, 2.1rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 0.8rem;
}

.manset-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.manset-card:hover .manset-title a {
    color: #fbcfe8;
}

.manset-excerpt {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.1rem;
    max-width: 650px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.manset-meta-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.84rem;
    color: #cbd5e1;
    flex-wrap: wrap;
}

.manset-sep {
    opacity: 0.5;
}

/* Yan Manşetler (Stacked) */
.manset-side-col {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
}

.manset-sub {
    min-height: 220px;
    display: flex;
}

.manset-sub .manset-content {
    padding: 1.4rem;
}

.manset-sub .badge-cat-tag {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.manset-sub-title {
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.manset-sub-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.manset-card:hover .manset-sub-title a {
    color: #fbcfe8;
}

.manset-mini-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: #cbd5e1;
}

/* 4. MAIN TWO-COLUMN NEWS PORTAL CONTAINER */
.news-portal-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    max-width: 1240px;
    margin: 0 auto 4rem;
    padding: 0 1.25rem;
}

/* News Feed Column */
.news-stream-col {
    min-width: 0;
}

.news-section-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1.8rem;
    border-bottom: 2px solid #f1f5f9;
}

.section-bar-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-accent-line {
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #e11d48, #db2777);
    border-radius: 4px;
    display: inline-block;
}

.section-bar-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.01em;
}

.section-count-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}

/* News Feed Cards Stream */
.news-feed-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-feed-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1.6rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-feed-card:hover {
    transform: translateY(-4px);
    border-color: #fbcfe8;
    box-shadow: 0 14px 35px rgba(225, 29, 72, 0.1);
}

.feed-thumb-col {
    position: relative;
    height: 165px;
    border-radius: 14px;
    overflow: hidden;
    background: #f1f5f9;
}

.feed-thumb-link {
    display: block;
    width: 100%;
    height: 100%;
}

.feed-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-feed-card:hover .feed-thumb-img {
    transform: scale(1.07);
}

.feed-cat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #fecdd3;
    color: #be123c;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    backdrop-filter: blur(6px);
}

.feed-body-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.feed-meta-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.55rem;
    flex-wrap: wrap;
}

.meta-bullet {
    opacity: 0.5;
}

.feed-headline {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0.55rem;
}

.feed-headline a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-feed-card:hover .feed-headline a {
    color: #e11d48;
}

.feed-summary {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feed-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f8fafc;
    font-size: 0.82rem;
}

.feed-author-tag {
    color: #64748b;
    font-weight: 600;
}

.feed-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #e11d48;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.news-feed-card:hover .feed-read-btn {
    transform: translateX(4px);
    color: #be123c;
}

/* 5. EDITORIAL SIDEBAR WIDGETS */
.news-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.news-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.widget-title-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 0.85rem;
    margin-bottom: 1.1rem;
    border-bottom: 2px solid #f8fafc;
}

.widget-accent-marker {
    width: 4px;
    height: 18px;
    background: #e11d48;
    border-radius: 2px;
}

.widget-heading {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

/* Trend Rankings Widget */
.trend-rankings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trend-rank-row {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    text-decoration: none;
    padding: 0.6rem 0.5rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.trend-rank-row:hover {
    background: #fff1f2;
    transform: translateX(4px);
}

.rank-pos-num {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    min-width: 28px;
    font-family: 'Outfit', sans-serif;
}

.rank-pos-num.rank-1 { color: #e11d48; text-shadow: 0 2px 6px rgba(225, 29, 72, 0.3); }
.rank-pos-num.rank-2 { color: #f59e0b; }
.rank-pos-num.rank-3 { color: #8b5cf6; }
.rank-pos-num.rank-4, .rank-pos-num.rank-5 { color: #94a3b8; }

.rank-row-content {
    flex: 1;
    min-width: 0;
}

.rank-row-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.trend-rank-row:hover .rank-row-title {
    color: #e11d48;
}

.rank-row-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.74rem;
    color: #64748b;
}

/* Studio Promo Widget */
.studio-promo-widget {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 50%, #fdf2f8 100%);
    border: 1.5px solid #fecdd3;
    position: relative;
    overflow: hidden;
}

.promo-badge-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #be123c;
    background: rgba(255, 255, 255, 0.85);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

.promo-widget-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.promo-widget-desc {
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

/* Buy Me a Coffee News Widget */
.bmc-news-widget {
    background: #fffbeb;
    border-color: #fde68a;
}

.bmc-widget-top {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.bmc-widget-emoji {
    font-size: 2.2rem;
    line-height: 1;
}

.bmc-widget-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 0.25rem;
}

.bmc-widget-desc {
    font-size: 0.82rem;
    color: #78350f;
    line-height: 1.45;
    margin: 0;
}

.bmc-widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f59e0b;
    color: #ffffff !important;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    transition: all 0.2s ease;
}

.bmc-widget-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
}

/* Popular Tags Cloud */
.tags-pill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.tag-cloud-pill {
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag-cloud-pill:hover {
    background: #e11d48;
    color: #ffffff;
    transform: translateY(-2px);
}

/* =========================================================================
   NEWS PORTAL RESPONSIVE STYLES (TABLET & MOBILE)
   ========================================================================= */
@media (max-width: 1024px) {
    .news-manset-grid {
        grid-template-columns: 1fr;
    }

    .manset-main {
        min-height: 380px;
    }

    .manset-side-col {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .news-portal-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .news-ticker-inner {
        padding: 0.45rem 1rem;
        gap: 0.8rem;
    }

    .news-portal-header {
        margin: 1.4rem auto 1.6rem;
        padding: 0 1rem;
    }

    .news-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding-bottom: 1.4rem;
    }

    .news-portal-title {
        font-size: 1.65rem;
        line-height: 1.25;
    }

    .news-portal-subtitle {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .news-search-box {
        width: 100%;
        min-width: 0;
    }

    .news-manset-section {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .manset-main {
        min-height: 310px;
        border-radius: 18px;
    }

    .manset-main .manset-content {
        padding: 1.4rem 1.2rem;
    }

    .manset-title {
        font-size: 1.26rem;
        line-height: 1.32;
        margin-bottom: 0.5rem;
    }

    .manset-side-col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .manset-sub {
        min-height: 180px;
        border-radius: 16px;
    }

    .manset-sub .manset-content {
        padding: 1.15rem;
    }

    .manset-sub-title {
        font-size: 1.02rem;
        line-height: 1.35;
    }

    .news-portal-container {
        padding: 0 1rem;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .news-section-bar {
        margin-bottom: 1.25rem;
    }

    .section-bar-title {
        font-size: 1.15rem;
    }

    /* Single column news card on mobile */
    .news-feed-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        border-radius: 18px;
    }

    .feed-thumb-col {
        height: 185px;
        border-radius: 12px;
    }

    .feed-headline {
        font-size: 1.12rem;
        line-height: 1.35;
    }

    .feed-summary {
        font-size: 0.86rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .news-sidebar-col {
        gap: 1.5rem;
    }

    .news-widget {
        padding: 1.25rem;
        border-radius: 18px;
    }
}

/* =========================================================================
   HOMEPAGE BLOG & EDITORIAL GUIDES SECTION (MODERN LUXURY MAGAZINE STYLE)
   ========================================================================= */
.home-blog-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, rgba(255, 241, 242, 0.4) 0%, #ffffff 50%, rgba(253, 242, 248, 0.4) 100%);
    position: relative;
}

.home-blog-container {
    max-width: 1240px;
    margin: 0 auto;
}

.home-blog-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.home-blog-card,
.blog-card {
    background: #ffffff;
    border: 1.5px solid #f1f5f9;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.home-blog-card:hover,
.blog-card:hover {
    transform: translateY(-8px);
    border-color: #fbcfe8;
    box-shadow: 0 18px 40px rgba(225, 29, 72, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
}

.home-blog-thumb,
.blog-card-img-wrap {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.home-blog-thumb-link {
    display: block;
    width: 100%;
    height: 100%;
}

.home-blog-thumb img,
.blog-card-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-blog-card:hover .home-blog-thumb img,
.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.08);
}

.home-blog-badge,
.card-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #fecdd3;
    color: #be123c;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 0.28rem 0.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.home-blog-body,
.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.home-blog-meta,
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 0.65rem;
}

.home-blog-meta .meta-dot {
    opacity: 0.5;
}

.home-blog-title,
.blog-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.38;
    margin-bottom: 0.65rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.76em;
}

.home-blog-title a,
.blog-card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-blog-card:hover .home-blog-title a,
.blog-card:hover .blog-card-title a {
    color: #e11d48;
}

.home-blog-excerpt,
.blog-card-excerpt {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.1em;
    flex-grow: 1;
}

.home-blog-footer,
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.95rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.home-blog-author,
.blog-author-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
}

.home-blog-read-btn,
.blog-read-btn {
    font-size: 0.84rem;
    font-weight: 800;
    color: #e11d48 !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.home-blog-read-btn:hover,
.blog-read-btn:hover {
    color: #be123c !important;
    transform: translateX(4px);
}

.home-blog-action-wrap {
    text-align: center;
    margin-top: 1rem;
}

.home-blog-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.4rem !important;
    border-radius: 9999px !important;
    font-size: 0.96rem !important;
    font-weight: 800 !important;
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #0f172a !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06) !important;
    transition: all 0.25s ease !important;
    text-decoration: none;
}

.home-blog-all-btn:hover {
    border-color: #e11d48 !important;
    color: #e11d48 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.15) !important;
}

@media (max-width: 1024px) {
    .home-blog-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.4rem !important;
    }
}

@media (max-width: 768px) {
    .home-blog-section {
        padding: 3rem 1rem !important;
    }
    .home-blog-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .home-blog-thumb,
    .blog-card-img-wrap {
        height: 190px !important;
    }
    .home-blog-body,
    .blog-card-body {
        padding: 1.2rem !important;
    }
    .home-blog-title,
    .blog-card-title {
        font-size: 1.05rem !important;
        min-height: auto !important;
    }
    .home-blog-excerpt,
    .blog-card-excerpt {
        font-size: 0.84rem !important;
        min-height: auto !important;
        margin-bottom: 1rem !important;
    }
    .home-blog-all-btn {
        width: 100% !important;
        justify-content: center !important;
        font-size: 0.88rem !important;
        padding: 0.85rem 1rem !important;
    }
}

/* =========================================================================
   BLOG DETAY SAYFASI (ARTICLE DETAIL PAGE - HIGH CONTRAST & READABILITY)
   ========================================================================= */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #e11d48, #f43f5e, #fb7185, #f59e0b);
    z-index: 99999;
    transition: width 0.08s ease-out;
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.5);
}

.article-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 2.2rem 1.4rem 5rem;
}

.article-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-breadcrumbs a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.article-breadcrumbs a:hover {
    color: #e11d48;
}

.breadcrumb-sep {
    color: #cbd5e1;
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: #0f172a;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

.article-header {
    margin-bottom: 2.2rem;
}

.article-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.35rem 0.95rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.06);
}

.article-title {
    font-size: clamp(1.95rem, 4.2vw, 2.85rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.28;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0 1.5rem;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.meta-author-info {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.meta-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    border: 1.5px solid #fecdd3;
    color: #be123c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.1);
}

.meta-author-text strong {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #0f172a;
    font-size: 0.96rem;
    font-weight: 700;
}

.meta-verified-badge {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #059669;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.meta-author-text span {
    color: #64748b;
    font-size: 0.82rem;
    display: block;
    margin-top: 0.15rem;
}

.meta-stats-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.meta-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.meta-pill.pill-views {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.article-cover-wrapper {
    margin: 2.2rem 0 2.8rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.article-cover-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* =========================================================================
   TABLE OF CONTENTS (İÇİNDEKİLER)
   ========================================================================= */
.article-toc-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4.5px solid #e11d48;
    border-radius: 18px;
    padding: 1.5rem 1.8rem;
    margin: 2rem 0 2.8rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.article-toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.article-toc-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
}

.article-toc-badge {
    font-size: 0.76rem;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-weight: 700;
}

.article-toc-toggle-btn {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
}

.article-toc-toggle-btn:hover {
    background: #fff1f2;
    border-color: #fbcfe8;
    color: #be123c;
}

.article-toc-list {
    list-style: none;
    padding: 0;
    margin: 1.3rem 0 0.4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.1rem;
    transition: all 0.3s ease;
}

.article-toc-list.is-collapsed {
    display: none;
}

.article-toc-item a {
    color: #334155;
    text-decoration: none;
    font-size: 0.96rem;
    line-height: 1.55;
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    transition: all 0.2s ease;
    padding: 0.3rem 0.5rem;
    border-radius: 8px;
}

.article-toc-item a:hover {
    color: #be123c;
    background: #fff1f2;
    transform: translateX(4px);
}

.article-toc-num {
    font-weight: 800;
    color: #e11d48;
    font-size: 0.88rem;
    min-width: 1.5rem;
}

/* =========================================================================
   ARTICLE CONTENT BODY - HIGH READABILITY MODERN TYPOGRAPHY
   ========================================================================= */
.article-body {
    font-size: clamp(1.06rem, 1.8vw, 1.16rem);
    line-height: 1.88;
    color: #1e293b;
    margin-bottom: 3.5rem;
    letter-spacing: -0.012em;
}

.article-body .lead-text {
    font-size: 1.22rem;
    font-weight: 500;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 2.2rem;
    background: #f8fafc;
    border-left: 4px solid #f43f5e;
    padding: 1.25rem 1.6rem;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.02);
}

.article-body h2 {
    font-size: clamp(1.45rem, 2.8vw, 1.85rem);
    font-weight: 800;
    color: #0f172a;
    margin: 3rem 0 1.2rem;
    position: relative;
    padding-left: 1.1rem;
    border-left: 4.5px solid #e11d48;
    line-height: 1.35;
    scroll-margin-top: 90px;
}

.article-body h3 {
    font-size: clamp(1.18rem, 2.2vw, 1.38rem);
    font-weight: 700;
    color: #0f172a;
    margin: 2.2rem 0 0.85rem;
    line-height: 1.4;
    scroll-margin-top: 90px;
}

.article-body p {
    margin-bottom: 1.65rem;
    color: #1e293b;
}

.article-body strong {
    color: #0f172a;
    font-weight: 700;
}

.article-body ul, .article-body ol {
    margin: 1.6rem 0 2.2rem 1.6rem;
    color: #1e293b;
}

.article-body li {
    margin-bottom: 0.95rem;
    line-height: 1.8;
    color: #1e293b;
    padding-left: 0.2rem;
}

.article-body li strong {
    color: #0f172a;
}

.blog-ordered-list {
    counter-reset: blog-counter;
    list-style: none;
    padding-left: 0 !important;
}

.blog-ordered-list > li {
    counter-increment: blog-counter;
    position: relative;
    padding-left: 2.4rem !important;
    margin-bottom: 1.2rem;
}

.blog-ordered-list > li::before {
    content: counter(blog-counter);
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 26px;
    height: 26px;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.article-body blockquote {
    background: #fff1f2;
    border-left: 4.5px solid #e11d48;
    padding: 1.5rem 1.8rem;
    border-radius: 0 16px 16px 0;
    margin: 2.4rem 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #881337;
    line-height: 1.7;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.04);
    position: relative;
}

.article-body blockquote::before {
    content: "“";
    font-size: 3.5rem;
    position: absolute;
    top: -0.5rem;
    left: 0.6rem;
    opacity: 0.2;
    font-family: serif;
    color: #be123c;
    pointer-events: none;
}

/* =========================================================================
   SEO CONTEXTUAL INTERNAL LINKING STYLES
   ========================================================================= */
.blog-internal-seo-link {
    color: #be123c !important;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-style: dashed;
    text-decoration-color: rgba(225, 29, 72, 0.45);
    text-underline-offset: 3.5px;
    padding: 0.1rem 0.35rem;
    border-radius: 5px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline;
}

.blog-internal-seo-link:hover {
    background: #fff1f2;
    color: #9f1239 !important;
    text-decoration-style: solid;
    text-decoration-color: #e11d48;
    box-shadow: 0 2px 6px rgba(225, 29, 72, 0.12);
}

.blog-inline-link {
    color: #e11d48;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.blog-inline-link:hover {
    color: #be123c;
}

/* =========================================================================
   ROMANTIC LOVE ENVELOPE CTA BANNER (Zarflı Özel Hediye Banner'ı)
   ========================================================================= */
.love-envelope-banner {
    position: relative;
    margin: 3.5rem 0;
    padding: 2.2rem 2.4rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff5f7 0%, #fff0f3 50%, #fdf2f8 100%);
    border: 2px solid #fecdd3;
    box-shadow: 0 16px 40px -10px rgba(225, 29, 72, 0.12),
                0 4px 15px rgba(0, 0, 0, 0.03);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.love-envelope-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px -8px rgba(225, 29, 72, 0.18);
    border-color: #fda4af;
}

/* Graphic Column: 3D Envelope with Wax Stamp & Letter */
.envelope-graphic-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 800px;
}

.love-envelope-card {
    width: 190px;
    height: 135px;
    position: relative;
    background: linear-gradient(145deg, #be123c, #9f1239);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(190, 18, 60, 0.28);
    transition: transform 0.4s ease;
}

.love-envelope-banner:hover .love-envelope-card {
    transform: rotate(-2deg) scale(1.03);
}

.envelope-back-fold {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #881337;
    border-radius: 12px;
    z-index: 1;
}

.envelope-paper-letter {
    position: absolute;
    top: -24px;
    left: 14px;
    right: 14px;
    height: 110px;
    background: #ffffff;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    padding: 10px 12px;
    z-index: 2;
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.love-envelope-banner:hover .envelope-paper-letter {
    transform: translateY(-12px);
}

.letter-stamp-rose {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1.1rem;
    line-height: 1;
    background: #fff1f2;
    border: 1px dashed #f43f5e;
    border-radius: 4px;
    padding: 2px 4px;
}

.letter-handwriting {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.hw-line {
    display: block;
    height: 3.5px;
    background: #fecdd3;
    border-radius: 4px;
}
.hw-line.w-85 { width: 85%; }
.hw-line.w-60 { width: 60%; }
.hw-line.w-75 { width: 75%; }

.letter-polaroid-mini {
    align-self: flex-start;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.envelope-front-pocket {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 95px solid #be123c;
    border-right: 95px solid #be123c;
    border-top: 60px solid transparent;
    border-bottom: 75px solid #9f1239;
    border-radius: 0 0 12px 12px;
    z-index: 3;
    pointer-events: none;
}

.envelope-wax-stamp {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #f43f5e, #be123c 65%, #881337);
    border: 2px solid #fda4af;
    box-shadow: 0 4px 12px rgba(190, 18, 60, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    cursor: pointer;
}

.wax-heart-emblem {
    font-size: 1.15rem;
    line-height: 1;
    animation: heartBeat 2s infinite ease-in-out;
}

/* Content Column */
.envelope-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
}

.envelope-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #ffe4e6 0%, #fce7f3 100%);
    border: 1px solid #fbcfe8;
    color: #be123c;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 6px rgba(225, 29, 72, 0.06);
}

.envelope-heading {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.28rem, 2.4vw, 1.7rem);
    font-weight: 800;
    color: #881337;
    margin: 0 0 0.6rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.envelope-summary {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0 0 1.25rem;
    max-width: 580px;
}

.envelope-cta-action {
    margin-bottom: 0.9rem;
    width: 100%;
}

.btn-envelope-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, #e11d48 0%, #db2777 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 24px -3px rgba(225, 29, 72, 0.45);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-envelope-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 30px -2px rgba(225, 29, 72, 0.55);
    color: #ffffff !important;
}

.cta-arrow-icon {
    display: inline-block;
    transition: transform 0.25s ease;
    font-size: 1.15rem;
}

.btn-envelope-cta:hover .cta-arrow-icon {
    transform: translateX(4px);
}

.envelope-micro-perks {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
    flex-wrap: wrap;
}

.perk-dot {
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .love-envelope-banner {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        padding: 2rem 1.25rem 1.6rem;
        text-align: center;
        margin: 2.5rem 0;
        border-radius: 20px;
    }

    .envelope-content-col {
        align-items: center;
        text-align: center;
    }

    .envelope-summary {
        margin: 0 auto 1.25rem;
    }

    .btn-envelope-cta {
        width: 100%;
        padding: 0.85rem 1.4rem;
        font-size: 0.98rem;
    }

    .envelope-micro-perks {
        justify-content: center;
        font-size: 0.76rem;
        gap: 0.4rem;
    }
}

/* =========================================================================
   IN-ARTICLE LUXURY HEDİYE CTA BOX (High-Converting & Modern Interactive)
   ========================================================================= */
.blog-cta-box {
    position: relative;
    margin: 3.6rem 0;
    padding: 3.2rem 2.6rem 2.8rem;
    border-radius: 28px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    background: 
        radial-gradient(circle at 92% 12%, rgba(244, 63, 94, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 8% 88%, rgba(236, 72, 153, 0.14) 0%, transparent 45%),
        linear-gradient(145deg, #ffffff 0%, #fff1f2 45%, #fdf2f8 100%);
    border: 2px solid #fecdd3;
    box-shadow: 0 22px 50px -12px rgba(225, 29, 72, 0.16),
                0 6px 20px -2px rgba(0, 0, 0, 0.04),
                inset 0 1px 2px rgba(255, 255, 255, 0.95);
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-cta-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 65px -10px rgba(225, 29, 72, 0.22),
                0 10px 25px -3px rgba(0, 0, 0, 0.06),
                inset 0 1px 2px rgba(255, 255, 255, 1);
    border-color: #fda4af;
}

/* Floating 3D Gift Box Animation */
.blog-cta-box::before {
    content: "🎁";
    position: absolute;
    top: 1.6rem;
    right: 2.2rem;
    font-size: 3.4rem;
    line-height: 1;
    filter: drop-shadow(0 10px 18px rgba(225, 29, 72, 0.22));
    animation: ctaGiftFloat 4s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.92;
    z-index: 1;
}

@keyframes ctaGiftFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-10px) rotate(6deg) scale(1.06);
    }
}

/* Top Badge */
.cta-box-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffe4e6 0%, #fce7f3 100%);
    border: 1.5px solid #fbcfe8;
    color: #be123c;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.35rem;
    box-shadow: 0 3px 12px rgba(225, 29, 72, 0.08);
    position: relative;
    z-index: 2;
}

/* Main Heading */
.blog-cta-box h3,
.cta-box-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 3.4vw, 2.05rem);
    font-weight: 800;
    color: #881337;
    margin: 0 auto 0.95rem;
    line-height: 1.32;
    letter-spacing: -0.025em;
    max-width: 620px;
    position: relative;
    z-index: 2;
}

/* Description Text */
.blog-cta-box p,
.cta-box-desc {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.72;
    margin: 0 auto 2.2rem;
    max-width: 590px;
    position: relative;
    z-index: 2;
}

/* Call-to-Action Clickable Modern Button */
.btn-blog-cta,
.blog-cta-box a.btn-blog-cta,
.blog-cta-box a.btn,
.blog-cta-box a:not(.blog-internal-seo-link) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    background: linear-gradient(135deg, #e11d48 0%, #ec4899 50%, #f43f5e 100%);
    background-size: 200% auto;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1.05rem 2.8rem;
    border-radius: 50px;
    box-shadow: 0 12px 30px -4px rgba(225, 29, 72, 0.48), 
                0 4px 14px -2px rgba(225, 29, 72, 0.3),
                inset 0 1px 1px rgba(255, 255, 255, 0.45);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    outline: none;
    letter-spacing: 0.015em;
    z-index: 2;
}

/* Light-sweep shine effect on hover */
.btn-blog-cta::before,
.blog-cta-box a.btn-blog-cta::before,
.blog-cta-box a:not(.blog-internal-seo-link)::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.75s ease;
    pointer-events: none;
}

.btn-blog-cta:hover,
.blog-cta-box a.btn-blog-cta:hover,
.blog-cta-box a.btn:hover,
.blog-cta-box a:not(.blog-internal-seo-link):hover {
    transform: translateY(-4px) scale(1.025);
    background-position: right center;
    box-shadow: 0 20px 42px -4px rgba(225, 29, 72, 0.62), 
                0 8px 18px -2px rgba(225, 29, 72, 0.38),
                inset 0 1px 2px rgba(255, 255, 255, 0.6);
    color: #ffffff !important;
}

.btn-blog-cta:hover::before,
.blog-cta-box a.btn-blog-cta:hover::before,
.blog-cta-box a:not(.blog-internal-seo-link):hover::before {
    left: 160%;
}

.btn-blog-cta:active,
.blog-cta-box a.btn-blog-cta:active,
.blog-cta-box a:not(.blog-internal-seo-link):active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 8px 20px -2px rgba(225, 29, 72, 0.45);
}

.btn-blog-cta span,
.blog-cta-box a.btn-blog-cta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-blog-cta span::after,
.blog-cta-box a.btn-blog-cta span::after {
    content: "→";
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    transition: transform 0.25s ease;
}

.btn-blog-cta:hover span::after,
.blog-cta-box a.btn-blog-cta:hover span::after {
    transform: translateX(5px);
}

/* Trust Micro-Features Under the Button */
.blog-cta-box::after {
    content: "⚡ 60 Saniyede Hazır   •   🎁 Anında Canlı Önizleme   •   💖 Tamamen Ücretsiz";
    display: block;
    margin-top: 1.6rem;
    font-size: 0.84rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
}

@media (max-width: 640px) {
    .blog-cta-box {
        padding: 2.4rem 1.4rem 2rem;
        margin: 2.5rem 0;
        border-radius: 22px;
    }
    .blog-cta-box::before {
        top: 1rem;
        right: 1rem;
        font-size: 2.4rem;
        opacity: 0.4;
    }
    .btn-blog-cta,
    .blog-cta-box a.btn-blog-cta,
    .blog-cta-box a:not(.blog-internal-seo-link) {
        width: 100%;
        padding: 0.95rem 1.8rem;
        font-size: 1.02rem;
    }
    .blog-cta-box::after {
        font-size: 0.76rem;
        margin-top: 1.3rem;
    }
}

/* =========================================================================
   E-E-A-T AUTHOR BIO & TRUST CARD
   ========================================================================= */
.article-author-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    box-shadow: 0 6px 25px rgba(15, 23, 42, 0.04);
}

.author-card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    border: 2px solid #fecdd3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.12);
}

.author-card-content {
    flex: 1;
}

.author-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.author-card-name {
    font-size: 1.12rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.author-card-title {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.author-card-bio {
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.6;
    margin: 0.6rem 0 0.9rem;
}

.author-trust-badges {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #475569;
}

.trust-pill.trust-verified {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

/* =========================================================================
   ARTICLE SHARE BOX
   ========================================================================= */
.article-share-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.8rem;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.share-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.share-buttons-row {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.share-wa {
    background: #25d366;
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.share-wa:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.share-tw {
    background: #0f172a;
    color: #fff;
}

.share-tw:hover {
    background: #1e293b;
    transform: translateY(-2px);
    color: #fff;
}

.share-tg {
    background: #229ed9;
    color: #fff;
}

.share-tg:hover {
    background: #1e8cb8;
    transform: translateY(-2px);
    color: #fff;
}

.share-copy {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #334155;
}

.share-copy:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

/* =========================================================================
   PREVIOUS & NEXT ARTICLE NAVIGATION CARDS
   ========================================================================= */
.article-prev-next-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin: 2.8rem 0;
}

.prev-next-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.4rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.03);
}

.prev-next-card:hover {
    border-color: #fbcfe8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.08);
}

.prev-next-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #be123c;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.4rem;
}

.prev-next-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prev-next-card.is-next {
    text-align: right;
}

.prev-next-card.is-next .prev-next-label {
    justify-content: flex-end;
}

/* =========================================================================
   ARTICLE GIFT WIDGET
   ========================================================================= */
.article-gift-widget {
    background: linear-gradient(135deg, #fff1f2 0%, #fdf4ff 100%);
    border: 1.5px solid #fbcfe8;
    border-radius: 20px;
    padding: 2.4rem;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.08);
}

.gift-widget-icon {
    font-size: 3.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.gift-widget-text {
    flex: 1;
}

.gift-widget-text h3 {
    color: #0f172a;
    font-size: 1.35rem;
    margin-bottom: 0.45rem;
    font-weight: 800;
}

.gift-widget-text p {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================================
   RELATED ARTICLES SECTION
   ========================================================================= */
.related-articles-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 3.5rem;
    margin-top: 2rem;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.4rem;
}

.related-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.related-card:hover {
    transform: translateY(-4px);
    border-color: #fbcfe8;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.1);
}

.related-card-img {
    height: 145px;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-card-img img {
    transform: scale(1.05);
}

.related-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: #be123c;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    border: 1px solid #fecdd3;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.related-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-card-body h4 {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.related-card-body h4 a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}

.related-card-body h4 a:hover {
    color: #e11d48;
}

.related-card-body p {
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 1.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-rel-link {
    color: #e11d48;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: transform 0.2s ease;
}

.read-rel-link:hover {
    transform: translateX(4px);
    color: #be123c;
}

/* Floating Scroll to Top & Quick Nav Button */
.article-quick-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 95;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.article-quick-fab.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.fab-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.12);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.fab-btn:hover {
    background: #fff1f2;
    border-color: #fbcfe8;
    color: #be123c;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .article-container {
        padding: 1.4rem 1rem 4rem;
    }

    .article-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .article-meta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
    }

    .meta-stats-info {
        width: 100%;
        justify-content: flex-start;
    }

    .article-body {
        font-size: 1.05rem;
        line-height: 1.82;
    }

    .article-body h2 {
        font-size: 1.35rem;
        margin: 2.2rem 0 1rem;
        padding-left: 0.8rem;
    }

    .article-body h3 {
        font-size: 1.15rem;
        margin: 1.6rem 0 0.6rem;
    }

    .article-toc-box {
        padding: 1.1rem 1.2rem;
    }

    .article-share-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
    }

    .share-buttons-row {
        width: 100%;
    }

    .share-btn {
        flex: 1;
        justify-content: center;
        padding: 0.6rem 0.8rem;
    }

    .article-prev-next-grid {
        grid-template-columns: 1fr;
    }

    .prev-next-card.is-next {
        text-align: left;
    }

    .prev-next-card.is-next .prev-next-label {
        justify-content: flex-start;
    }

    .article-author-card {
        flex-direction: column;
        padding: 1.4rem;
    }

    .author-card-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }

    .article-gift-widget {
        flex-direction: column;
        text-align: center;
        padding: 1.8rem 1.4rem;
    }

    .gift-widget-icon {
        font-size: 2.6rem;
    }

    .article-quick-fab {
        bottom: 78px; /* Above mobile dock */
        right: 16px;
    }
}

/* =========================================================================
   BUY ME A COFFEE (DESTEK & KAHVE ISMARLA ENTEGRASYONU)
   ========================================================================= */
.bmc-nav-btn {
    display: none !important;
}

.bmc-nav-btn:hover {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #78350f !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
}

.footer-bmc-card {
    max-width: 860px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
    border: 1.5px solid #fde68a;
    border-radius: var(--radius-xl);
    padding: 1.8rem 2.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.8rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.08);
    text-align: left;
    flex-wrap: wrap;
}

.bmc-card-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
    min-width: 260px;
}

.bmc-card-emoji {
    font-size: 2.8rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.2));
}

.bmc-card-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.bmc-card-content p {
    font-size: 0.92rem;
    color: #475569;
    margin: 0;
    line-height: 1.55;
}

.bmc-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffdd00 !important;
    border: 1.5px solid #eab308 !important;
    color: #000000 !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.96rem;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.35);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.bmc-button:hover {
    background: #ffe333 !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.5);
    color: #000000 !important;
}

/* Article Detail BMC Box */
.article-bmc-box {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1.5px solid #fde68a;
    border-radius: var(--radius-xl);
    padding: 2rem 2.2rem;
    margin: 2.5rem 0 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.8rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.1);
    flex-wrap: wrap;
}

.bmc-box-icon {
    font-size: 3rem;
    line-height: 1;
}

.bmc-box-body {
    flex: 1;
    min-width: 260px;
}

.bmc-box-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #78350f;
    margin-bottom: 0.4rem;
}

.bmc-box-body p {
    font-size: 0.95rem;
    color: #92400e;
    line-height: 1.55;
    margin: 0;
}

/* Modal BMC Support */
.modal-bmc-support {
    margin-top: 1.4rem;
    padding: 0.85rem 1.2rem;
    background: #fffbeb;
    border: 1px dashed #fde68a;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: #78350f;
    flex-wrap: wrap;
    text-align: left;
}

.modal-bmc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #ffdd00;
    color: #000 !important;
    font-weight: 800;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.82rem;
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.25);
    transition: all 0.2s ease;
}

.modal-bmc-link:hover {
    background: #ffe333;
    transform: translateY(-1px);
}

.sticky-bmc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #78350f;
    font-size: 0.84rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sticky-bmc-btn:hover {
    background: #ffdd00;
    color: #000;
}

/* =========================================================================
   LUXURY REDESIGN SYSTEM (ATELIER LUXE, BANNER CTAs & MODULAR ARCHITECTURE)
   ========================================================================= */

/* 1. Header & Navigation Refinements */
.site-header-sticky-wrapper {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1001 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.site-header-sticky-wrapper.is-sticky-scrolled {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
}

.site-header-sticky-wrapper.is-sticky-scrolled .site-luxury-nav {
    padding-top: 0.55rem !important;
    padding-bottom: 0.55rem !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9) !important;
}

.site-luxury-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 5%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 25px rgba(15, 23, 42, 0.04);
}

.nav-left-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-sub-badge {
    display: none !important;
}

.nav-actions-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    background: #f1f5f9;
    padding: 2px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.header-lang-switch .lang-btn {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 16px;
    color: #64748b;
    text-decoration: none;
    line-height: 1;
    transition: all 0.2s ease;
}

.header-lang-switch .lang-btn:hover {
    color: #0f172a;
}

.header-lang-switch .lang-btn.active {
    background: #e11d48;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(225, 29, 72, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 38px;
    height: 38px;
    padding: 9px 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #0f172a;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.mobile-menu-toggle:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

/* Mobile Off-canvas Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    box-shadow: -10px 0 35px rgba(15, 23, 42, 0.15);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-drawer-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1.2rem;
}

.mobile-drawer-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #0f172a;
    font-size: 1.1rem;
}

.mobile-drawer-close {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.mobile-drawer-links a {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.mobile-drawer-links a:hover,
.mobile-drawer-links a.active {
    background: #fff1f2;
    color: #be123c;
    border-color: #fecdd3;
}

.mobile-drawer-links .mobile-drawer-cta {
    margin-top: 1rem;
    background: linear-gradient(135deg, #e11d48, #db2777);
    color: #ffffff !important;
    text-align: center;
    box-shadow: 0 4px 16px rgba(225, 29, 72, 0.3);
}

.mobile-drawer-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 1.5rem;
}

.bmc-drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #78350f;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.9rem;
}

/* 2. Luxury Hero Section & Real-time Live Simulator */
.luxury-hero {
    padding: 3.5rem 5% 3.5rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.luminous-ambient-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 1000px;
    height: 480px;
    background: radial-gradient(ellipse at center, rgba(254, 205, 211, 0.55) 0%, rgba(245, 208, 254, 0.35) 45%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.luxury-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-col {
    text-align: left;
}

.hero-editorial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.42rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 242, 242, 0.85));
    border: 1px solid rgba(244, 63, 94, 0.3);
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.08);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: #be123c;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.hero-editorial-badge .badge-twinkle {
    color: #d97706;
    animation: sparklePulse 2s infinite ease-in-out;
}

.hero-editorial-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.3rem, 4.8vw, 3.85rem);
    font-weight: 800;
    line-height: 1.14;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-editorial-desc {
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    color: #334155;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 620px;
}

/* Viral Live Interactive Name Testing Box */
.hero-live-name-box {
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(244, 63, 94, 0.25);
    border-radius: 20px;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 12px 35px -10px rgba(225, 29, 72, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
    margin-bottom: 1.8rem;
    max-width: 580px;
    transition: all 0.3s ease;
}

.hero-live-name-box:focus-within {
    border-color: #e11d48;
    box-shadow: 0 16px 40px -10px rgba(225, 29, 72, 0.2);
}

.name-box-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #be123c;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.name-box-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.35rem 0.5rem 0.35rem 0.9rem;
    transition: border-color 0.2s ease;
}

.name-box-input-wrap:focus-within {
    border-color: #f43f5e;
    background: #ffffff;
}

.name-box-input-wrap .input-icon {
    font-size: 1.25rem;
}

.hero-name-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    color: #0f172a;
    outline: none;
    min-width: 0;
}

.hero-name-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.btn-name-start {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, #e11d48, #db2777);
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
    transition: all 0.2s ease;
}

.btn-name-start:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.45);
}

.name-box-hint {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Hero Action Buttons */
.hero-dual-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 0.95rem 2.2rem;
    font-size: 1.05rem;
    background: linear-gradient(135deg, #e11d48 0%, #db2777 50%, #9333ea 100%);
    color: #ffffff !important;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(225, 29, 72, 0.35);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 32px rgba(225, 29, 72, 0.5);
    color: #ffffff !important;
}

.btn-hero-demo {
    padding: 0.95rem 1.9rem;
    font-size: 1rem;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #1e293b;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-hero-demo:hover {
    border-color: #e11d48;
    color: #be123c;
    background: #fff1f2;
}

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.proof-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.proof-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
}

.proof-text strong {
    color: #0f172a;
}

/* Hero Right Column: iPhone 16 Pro Mockup */
.hero-visual-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-phone-frame {
    width: 320px;
    height: 640px;
    background: #111827;
    border: 10px solid #334155;
    border-radius: 50px;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.35), inset 0 0 0 2px #475569;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Dynamic Island */
.phone-dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 24px;
    background: #000000;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.phone-island-cam {
    width: 8px;
    height: 8px;
    background: #1e293b;
    border-radius: 50%;
}

.phone-island-sensor {
    width: 5px;
    height: 5px;
    background: #090d16;
    border-radius: 50%;
}

/* Inner Phone Screen Content */
.phone-screen-content {
    flex: 1;
    background: linear-gradient(180deg, #fff1f2 0%, #ffffff 40%, #fdf2f8 100%);
    padding: 44px 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    position: relative;
}

.phone-card-preview {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-radius: 24px;
    padding: 1.5rem 1.1rem;
    box-shadow: 0 12px 28px rgba(225, 29, 72, 0.08);
    position: relative;
    margin-top: 0.5rem;
}

.phone-card-seal {
    font-size: 2.4rem;
    margin-bottom: 0.4rem;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(225, 29, 72, 0.25));
    animation: gentleBob 3s infinite ease-in-out;
}

@keyframes gentleBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.phone-card-recipient {
    font-family: 'Playfair Display', serif;
    font-size: 1.22rem;
    font-style: italic;
    color: #be123c;
    margin-bottom: 0.6rem;
}

.phone-card-text {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.phone-card-equalizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #fff1f2;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
}

.phone-card-equalizer span {
    display: block;
    width: 3px;
    background: #e11d48;
    border-radius: 3px;
    animation: eqBar 1.2s infinite ease-in-out;
}

.phone-card-equalizer span:nth-child(1) { height: 10px; animation-delay: 0.1s; }
.phone-card-equalizer span:nth-child(2) { height: 16px; animation-delay: 0.3s; }
.phone-card-equalizer span:nth-child(3) { height: 8px; animation-delay: 0.2s; }
.phone-card-equalizer span:nth-child(4) { height: 14px; animation-delay: 0.4s; }

.phone-eq-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #be123c;
    margin-left: 6px;
    white-space: nowrap;
}

@keyframes eqBar {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

.phone-bottom-action {
    background: linear-gradient(135deg, #e11d48, #db2777);
    color: #ffffff;
    padding: 0.65rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

/* Floating Glass Badges on Phone */
.mockup-floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 0.55rem 0.95rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
    z-index: 20;
    animation: floatBadge 4s infinite ease-in-out;
}

.mockup-floating-badge.badge-top-left {
    top: 60px;
    left: -35px;
    animation-delay: 0s;
}

.mockup-floating-badge.badge-bottom-right {
    bottom: 85px;
    right: -30px;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* 3. Luxury CTA Banners (Kutulu, Zengin Banner Formatı) */
.container-luxury-banner {
    padding: 1.5rem 5% 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.luxury-cta-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(254, 242, 242, 0.92) 50%, rgba(253, 244, 255, 0.88) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(244, 63, 94, 0.28);
    border-radius: 28px;
    padding: 2.6rem 3.2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 20px 50px -15px rgba(225, 29, 72, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.luxury-cta-banner:hover {
    border-color: rgba(225, 29, 72, 0.45);
    box-shadow: 0 25px 60px -15px rgba(225, 29, 72, 0.18), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.cta-banner-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.95rem;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

.cta-banner-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 2.15rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
}

.cta-banner-desc {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: 680px;
}

.cta-banner-perks {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.cta-banner-perks span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.cta-banner-perks span::before {
    content: '✓';
    color: #10b981;
    font-weight: 900;
}

.cta-banner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
}

.btn-luxury-banner-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.05rem 2.4rem;
    background: linear-gradient(135deg, #e11d48 0%, #db2777 50%, #9333ea 100%);
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(225, 29, 72, 0.4);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-luxury-banner-action:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(225, 29, 72, 0.55);
}

.cta-banner-subtext {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* 4. Global Site Luxury Footer */
.site-luxury-footer {
    background: #ffffff;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    padding: 4.5rem 5% 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.footer-top-container {
    max-width: 1280px;
    margin: 0 auto 3.5rem;
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.9fr 1fr;
    gap: 3.5rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.65;
    max-width: 380px;
}

.footer-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #334155;
}

.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links-list a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #be123c;
    transform: translateX(3px);
}

.footer-highlight-link {
    color: #be123c !important;
    font-weight: 700 !important;
    margin-top: 0.35rem;
}

/* BMC Luxury Card in Footer */
.footer-bmc-luxury-card {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.08);
}

.bmc-luxury-badge {
    font-size: 0.72rem;
    font-weight: 800;
    color: #92400e;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.bmc-luxury-text {
    font-size: 0.84rem;
    color: #78350f;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.bmc-luxury-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.65rem 1rem;
    background: #ffdd00;
    color: #000000 !important;
    font-weight: 800;
    font-size: 0.88rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.25);
    transition: all 0.2s ease;
}

.bmc-luxury-btn:hover {
    background: #ffe333;
    transform: translateY(-1px);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #be123c;
}

.footer-bmc-link {
    color: #d97706 !important;
    font-weight: 700 !important;
}

/* Global Desktop/Mobile text helpers */
.desktop-text { display: inline; }
.mobile-text { display: none; }

/* 5. Mobile App Bottom Dock - Floating & Fitted (100% Screen Width Lock) */
.home-mobile-dock {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    padding: 0.35rem 0.15rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
    z-index: 1000;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
    overflow: visible;
}

.home-dock-item {
    flex: 1 1 0;
    width: 20%;
    max-width: 20%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0.25rem 0.1rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.home-dock-item .dock-icon {
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 2px;
    transition: transform 0.2s ease;
}

.home-dock-item .dock-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 95%;
    display: block;
    text-align: center;
}

.home-dock-item:hover,
.home-dock-item.active {
    color: #be123c;
    background: transparent !important;
}

.home-dock-item.active .dock-label {
    font-weight: 800;
    color: #be123c;
}

.home-dock-item.active .dock-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 6px rgba(225, 29, 72, 0.35));
}

/* Center Prominent Glowing Floating CTA Button */
.dock-item-center-cta {
    position: relative;
    top: -12px;
    flex: 1 1 0;
    width: 20%;
    max-width: 20%;
    min-width: 0;
    overflow: visible;
    color: #be123c !important;
}

.dock-center-pulse {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #e11d48, #db2777);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(225, 29, 72, 0.45);
    border: 2.5px solid #ffffff;
    margin: 0 auto;
    transition: transform 0.2s ease;
}

.dock-center-pulse .dock-center-icon {
    font-size: 1.25rem;
}

.dock-item-center-cta:hover .dock-center-pulse {
    transform: scale(1.06);
}

.dock-item-center-cta .dock-label {
    margin-top: 2px;
    font-weight: 800;
    color: #be123c;
}

/* 6. Responsive Adaptations */
@media (max-width: 1024px) {
    .luxury-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-text-col {
        text-align: center;
    }
    
    .hero-editorial-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-live-name-box {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-dual-actions {
        justify-content: center;
    }
    
    .hero-social-proof {
        justify-content: center;
    }
    
    .luxury-cta-banner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2.2rem 1.8rem;
    }
    
    .cta-banner-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-banner-perks {
        justify-content: center;
    }
    
    .footer-top-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: clip !important;
        width: 100% !important;
        position: relative !important;
    }

    .desktop-only-links,
    .desktop-only,
    .desktop-text {
        display: none !important;
    }

    .mobile-text {
        display: inline !important;
    }

    /* Fixed & Sticky Native Mobile Header (APK Style) */
    .site-header-sticky-wrapper {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1001 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        box-shadow: 0 2px 14px rgba(15, 23, 42, 0.08) !important;
    }

    .top-free-banner {
        padding: 0.28rem 0.4rem !important;
        font-size: 0.68rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .top-free-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.25rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .top-free-tag {
        font-size: 0.58rem !important;
        padding: 0.08rem 0.32rem !important;
        flex-shrink: 0 !important;
    }

    .top-free-text.mobile-text {
        font-size: 0.66rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .top-free-link {
        padding: 0.1rem 0.45rem !important;
        font-size: 0.64rem !important;
        border-radius: 20px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .navbar {
        height: 52px !important;
        padding: 0.4rem 0.75rem !important;
        background: transparent !important;
        border-bottom: 1px solid rgba(244, 63, 94, 0.15) !important;
        box-shadow: none !important;
    }

    .nav-left-group {
        display: flex !important;
        align-items: center !important;
    }

    .brand-logo-img {
        height: 26px !important;
        max-height: 26px !important;
        width: auto !important;
        max-width: 120px !important;
    }

    .nav-actions-group {
        display: flex !important;
        align-items: center !important;
        gap: 0.35rem !important;
    }

    .header-lang-switch {
        display: flex !important;
        align-items: center !important;
        gap: 2px !important;
        background: #f1f5f9 !important;
        padding: 2px !important;
        border-radius: 20px !important;
        border: 1px solid #e2e8f0 !important;
    }

    .header-lang-switch .lang-btn {
        font-size: 0.66rem !important;
        font-weight: 700 !important;
        padding: 0.18rem 0.42rem !important;
        border-radius: 12px !important;
        color: #64748b !important;
        text-decoration: none !important;
        line-height: 1 !important;
    }

    .header-lang-switch .lang-btn.active {
        background: #e11d48 !important;
        color: #ffffff !important;
        box-shadow: 0 2px 6px rgba(225, 29, 72, 0.3) !important;
    }

    .nav-cta-btn {
        padding: 0.32rem 0.68rem !important;
        font-size: 0.74rem !important;
        border-radius: 50px !important;
        font-weight: 700 !important;
        gap: 0.2rem !important;
        white-space: nowrap !important;
        box-shadow: 0 3px 10px rgba(225, 29, 72, 0.3) !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        width: 34px !important;
        height: 34px !important;
        border-radius: 10px !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        padding: 0 !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        flex-shrink: 0 !important;
    }

    .mobile-menu-toggle span {
        width: 16px !important;
        height: 2px !important;
        background: #0f172a !important;
        border-radius: 2px !important;
    }

    /* Fixed Native Mobile Bottom Dock (100% Locked to Bottom) */
    .home-mobile-dock {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100% !important;
        z-index: 1000 !important;
        background: rgba(255, 255, 255, 0.97) !important;
        backdrop-filter: blur(24px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
        border-top: 1px solid rgba(226, 232, 240, 0.9) !important;
        box-shadow: 0 -4px 25px rgba(15, 23, 42, 0.1) !important;
        padding: 0.35rem 0.1rem calc(0.45rem + env(safe-area-inset-bottom, 0px)) !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    body {
        padding-bottom: 92px !important;
    }
    
    .footer-top-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    /* Hero Mobile Layout Fixes */
    .luxury-hero {
        padding: 1.25rem 0.85rem 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .luxury-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-text-col {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-editorial-badge {
        font-size: 0.68rem !important;
        letter-spacing: 0.02em !important;
        padding: 0.3rem 0.75rem !important;
        max-width: 95% !important;
        margin: 0 auto 0.85rem !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.35 !important;
        box-sizing: border-box !important;
        display: inline-flex !important;
        justify-content: center !important;
    }

    .hero-editorial-title {
        font-size: clamp(1.4rem, 5.2vw, 1.85rem) !important;
        line-height: 1.24 !important;
        letter-spacing: -0.02em !important;
        margin: 0 auto 0.85rem !important;
        padding: 0 0.25rem !important;
        max-width: 100% !important;
        word-break: break-word !important;
        text-wrap: balance !important;
        box-sizing: border-box !important;
    }

    .hero-editorial-desc {
        font-size: 0.86rem !important;
        line-height: 1.58 !important;
        margin: 0 auto 1.15rem !important;
        padding: 0 0.5rem !important;
        max-width: 390px !important;
        color: #475569 !important;
        box-sizing: border-box !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
    }

    .hero-live-name-box {
        padding: 0.85rem 0.75rem !important;
        margin: 0 auto 1.15rem !important;
        width: 100% !important;
        max-width: 350px !important;
        border-radius: 16px !important;
        box-sizing: border-box !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border: 1.5px solid rgba(244, 63, 94, 0.25) !important;
        box-shadow: 0 8px 24px rgba(225, 29, 72, 0.08) !important;
        text-align: center !important;
    }

    .name-box-label {
        font-size: 0.72rem !important;
        letter-spacing: 0.04em !important;
        margin-bottom: 0.45rem !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.35rem !important;
    }

    .name-box-input-wrap {
        display: flex !important;
        align-items: center !important;
        gap: 0.35rem !important;
        padding: 0.25rem 0.35rem 0.25rem 0.65rem !important;
        border-radius: 50px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: #ffffff !important;
        border: 1px solid #fecdd3 !important;
    }

    .hero-name-input {
        font-size: 0.86rem !important;
        min-width: 0 !important;
        flex: 1 1 auto !important;
        padding: 0.35rem 0 !important;
        color: #0f172a !important;
    }

    .btn-name-start {
        padding: 0.45rem 0.75rem !important;
        font-size: 0.76rem !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        border-radius: 50px !important;
        gap: 0.25rem !important;
    }

    .name-box-hint {
        font-size: 0.70rem !important;
        margin-top: 0.5rem !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        color: #64748b !important;
        line-height: 1.35 !important;
        padding: 0 0.25rem !important;
    }

    .hero-dual-actions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto 1.15rem !important;
        gap: 0.55rem !important;
        box-sizing: border-box !important;
    }

    .btn-hero-primary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.8rem 1rem !important;
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        border-radius: 50px !important;
        box-shadow: 0 6px 20px rgba(225, 29, 72, 0.3) !important;
        white-space: normal !important;
        text-align: center !important;
    }

    .btn-hero-demo {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.65rem 1rem !important;
        font-size: 0.85rem !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        border-radius: 50px !important;
    }

    .hero-social-proof {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.2rem !important;
        width: 100% !important;
        margin: 0 auto 1.25rem !important;
    }

    .proof-stars {
        font-size: 0.82rem !important;
        letter-spacing: 2px !important;
    }

    .proof-text {
        font-size: 0.76rem !important;
        line-height: 1.35 !important;
        color: #64748b !important;
    }

    .hero-visual-col {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        position: relative !important;
        padding: 0.5rem 0 1.5rem !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .hero-phone-frame {
        width: min(270px, 76vw) !important;
        height: 460px !important;
        margin: 0 auto !important;
        border-width: 8px !important;
        border-radius: 40px !important;
        box-shadow: 0 15px 40px -10px rgba(15, 23, 42, 0.25) !important;
    }
    
    .phone-screen-content {
        padding: 42px 12px 14px !important;
    }

    .phone-card-preview {
        padding: 0.95rem 0.8rem !important;
        border-radius: 18px !important;
    }

    .phone-card-recipient {
        font-size: 1.25rem !important;
        margin-bottom: 0.45rem !important;
    }

    .phone-card-text {
        font-size: 0.76rem !important;
        line-height: 1.45 !important;
        margin-bottom: 0.75rem !important;
    }

    .phone-audio-eq {
        padding: 0.35rem 0.65rem !important;
    }

    .phone-mockup-cta {
        padding: 0.55rem 0.9rem !important;
        font-size: 0.76rem !important;
    }

    .mockup-floating-badge.badge-top-left {
        top: 25px !important;
        left: 2px !important;
        font-size: 0.66rem !important;
        padding: 0.28rem 0.55rem !important;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12) !important;
    }
    
    .mockup-floating-badge.badge-bottom-right {
        bottom: 25px !important;
        right: 2px !important;
        font-size: 0.66rem !important;
        padding: 0.28rem 0.55rem !important;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12) !important;
    }
}

/* =========================================================================
   2-3-4 COLUMN DESKTOP ARCHITECTURE & MOBILE APK NATIVE APP STYLING
   ========================================================================= */

/* --- 1. 4-COLUMN TRUST & FEATURE METRICS GRID --- */
.section-feature-metrics {
    max-width: 1360px;
    margin: 1.5rem auto 3.5rem;
    padding: 0 1.5rem;
}

.metrics-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.metric-card {
    background: #ffffff;
    border: 1px solid #fce7f3;
    border-radius: 20px;
    padding: 1.5rem 1.4rem;
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.metric-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f43f5e, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    border-color: #fbcfe8;
    box-shadow: 0 14px 30px rgba(225, 29, 72, 0.1);
}

.metric-card:hover::after {
    opacity: 1;
}

.metric-icon-wrap {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    border: 1px solid #fecdd3;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.08);
}

.metric-body h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.metric-body p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* --- 2. 2-COLUMN INTERACTIVE STUDIO (Wax Envelope + 2-Step Gift Wizard) --- */
.interactive-studio-section {
    padding: 3.5rem 1.5rem 4.5rem;
    max-width: 1360px;
    margin: 0 auto;
}

.interactive-studio-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    align-items: stretch;
}

.envelope-demo-card {
    background: #ffffff;
    border: 1px solid #fbcfe8;
    border-radius: 28px;
    padding: 2.8rem 2.4rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 35px rgba(225, 29, 72, 0.06);
    position: relative;
    overflow: hidden;
}

.envelope-demo-header {
    margin-bottom: 1.5rem;
    text-align: left;
}

.envelope-demo-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.envelope-demo-header p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.55;
}

.envelope-audio-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: 14px;
    padding: 0.6rem 1rem;
    margin-bottom: 1.8rem;
}

.audio-pulse-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.audio-now-playing {
    font-size: 0.85rem;
    font-weight: 700;
    color: #be123c;
}

.envelope-audio-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #ffffff;
    border: 1px solid #f43f5e;
    color: #be123c;
    border-radius: 50px;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.envelope-audio-toggle-btn:hover {
    background: #be123c;
    color: #ffffff;
}

/* Envelope Interactive Widget Fixes */
.envelope-interactive-box.open {
    height: 290px;
}

.envelope-interactive-box.open .envelope-flap {
    transform: rotateX(180deg);
    z-index: 1;
}

.envelope-interactive-box.open .wax-seal-btn {
    opacity: 0;
    pointer-events: none;
}

.envelope-interactive-box.open .wax-seal-hint {
    display: none;
}

.envelope-interactive-box.open .envelope-letter-paper {
    opacity: 1;
    transform: translateY(-80px) scale(1.05);
    z-index: 8;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    height: 210px;
}

.envelope-reveal-actions.revealed {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Wizard Card in 2-Col Studio */
.interactive-studio-2col .wizard-card {
    background: #ffffff;
    border: 1px solid #fbcfe8;
    border-radius: 28px;
    padding: 2.8rem 2.4rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 35px rgba(225, 29, 72, 0.06);
    margin: 0;
}

.interactive-studio-2col .wizard-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.wizard-step-box {
    margin-bottom: 1.4rem;
}

.wizard-step-label {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #0f172a;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.wizard-options-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.wizard-rec-btn, .wizard-occ-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    padding: 0.55rem 1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wizard-rec-btn:hover, .wizard-occ-btn:hover {
    border-color: #f43f5e;
    color: #be123c;
    background: #fff1f2;
}

.wizard-rec-btn.active, .wizard-occ-btn.active {
    background: linear-gradient(135deg, #e11d48, #db2777);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
}

.wizard-result-box {
    margin-top: auto;
    background: linear-gradient(135deg, #fff1f2 0%, #ffffff 100%);
    border: 1.5px solid #fecdd3;
    border-radius: 20px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.06);
}

.wizard-result-media {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(225, 29, 72, 0.2);
}

.wizard-result-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wizard-result-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.wizard-result-info p {
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.45;
    margin-bottom: 0.75rem;
}

/* --- 3. 4-COLUMN TEMPLATE SHOWCASE ON DESKTOP --- */
@media (min-width: 1200px) {
    .templates-section {
        max-width: 1400px !important;
        padding: 3rem 1.5rem 6rem !important;
    }
    .template-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1.5rem !important;
    }
    .template-card {
        border-radius: 20px;
    }
    .template-card .card-img-wrapper {
        height: 180px;
    }
    .template-card .card-body {
        padding: 1.3rem;
    }
    .template-card h3 {
        font-size: 1.15rem;
    }
    .template-card p {
        font-size: 0.88rem;
        line-height: 1.5;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .template-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.4rem !important;
    }
}

@media (min-width: 641px) and (max-width: 899px) {
    .template-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
    }
}

/* --- 4. LUXURY COMPARISON SECTION (FARKIMIZ) --- */
.comparison-section {
    padding: 4.5rem 1.5rem;
    max-width: 1060px;
    margin: 0 auto;
}

.comparison-table-wrapper {
    background: #ffffff;
    border: 1.5px solid #fecdd3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(225, 29, 72, 0.06);
    margin-top: 2rem;
}


/* --- 5. 3-COLUMN REVIEWS & 3-COLUMN BLOG --- */
@media (min-width: 992px) {
    .reviews-section {
        max-width: 1360px !important;
        margin: 0 auto;
        padding: 4.5rem 1.5rem !important;
    }
    .reviews-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.8rem !important;
    }
    .home-blog-section {
        max-width: 1360px !important;
        margin: 0 auto;
        padding: 4.5rem 1.5rem !important;
    }
    .home-blog-section .blog-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.8rem !important;
    }
}

/* --- 6. 2-COLUMN FAQ & SUPPORT SECTION --- */
.faq-section {
    padding: 4.5rem 1.5rem;
    max-width: 1360px;
    margin: 0 auto;
}

.faq-2col-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
}

.faq-sidebar-col {
    position: sticky;
    top: 100px;
}

.faq-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.3rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-top: 0.6rem;
    margin-bottom: 0.5rem;
}

.faq-main-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.faq-support-card {
    background: linear-gradient(135deg, #fff1f2 0%, #ffffff 100%);
    border: 1.5px solid #fecdd3;
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.06);
}

.support-card-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.faq-support-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.faq-support-card p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 1.2rem;
}

.btn-whatsapp-support {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.4rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: all 0.25s ease;
}

.btn-whatsapp-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #ffffff !important;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.faq-item:hover {
    border-color: #fbcfe8;
}

.faq-item.active {
    border-color: #f43f5e;
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.08);
}

.faq-question {
    padding: 1.3rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.2s ease;
}

.faq-item.active .faq-question {
    color: #be123c;
}

.faq-icon {
    font-size: 0.75rem;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #be123c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.4rem;
}

.faq-answer p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
}

/* =========================================================================
   NATIVE MOBILE APK / APP EXPERIENCE STYLING (@media max-width: 768px)
   ========================================================================= */

@media (max-width: 768px) {
    /* 1. Haptic / Press Scale Feedback for APK Feel */
    .cat-btn:active,
    .template-card:active,
    .btn:active,
    .metric-card:active,
    .home-dock-item:active,
    .sampler-chip:active,
    .wizard-rec-btn:active,
    .wizard-occ-btn:active,
    .btn-name-start:active,
    .btn-preview-action:active,
    .btn-create-action:active {
        transform: scale(0.96) !important;
        transition: transform 0.1s ease !important;
    }

    /* 2. Bottom-Anchored Native Push Notification Banner (Above Mobile Dock) */
    .live-love-toast {
        top: auto !important;
        bottom: calc(75px + env(safe-area-inset-bottom, 0px)) !important;
        left: 12px !important;
        right: 12px !important;
        max-width: calc(100vw - 24px) !important;
        border-radius: 18px !important;
        padding: 0.65rem 0.95rem !important;
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1.5px solid rgba(244, 63, 94, 0.3) !important;
        box-shadow: 0 12px 35px rgba(15, 23, 42, 0.15) !important;
        transform: translateY(30px) !important;
        box-sizing: border-box !important;
        z-index: 995 !important;
    }

    .live-love-toast.visible {
        transform: translateY(0) !important;
    }

    /* 3. Horizontal Story-Style Category Swiper */
    .categories-bar {
        display: flex !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        padding: 0.5rem 0.2rem !important;
        margin: 1.2rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory;
    }

    .categories-bar::-webkit-scrollbar {
        display: none !important;
    }

    .cat-btn {
        flex-shrink: 0 !important;
        scroll-snap-align: start;
        padding: 0.5rem 1.15rem !important;
        font-size: 0.84rem !important;
        border-radius: 50px !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05) !important;
        color: #475569 !important;
    }

    .cat-btn.active {
        background: linear-gradient(135deg, #e11d48, #db2777) !important;
        color: #ffffff !important;
        border-color: transparent !important;
        box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35) !important;
    }

    /* 4. 2-Column Modern Mobile Template Cards (Luxury App Aesthetic) */
    .template-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
        padding: 0 0.1rem !important;
    }

    .template-card {
        padding: 0.75rem !important;
        border-radius: 20px !important;
        background: #ffffff !important;
        border: 1.5px solid #fce7f3 !important;
        box-shadow: 0 4px 18px rgba(225, 29, 72, 0.05), 0 1px 4px rgba(15, 23, 42, 0.03) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        position: relative !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        transition: transform 0.25s ease, box-shadow 0.25s ease !important;
    }

    .template-card .card-img-wrapper {
        height: 125px !important;
        border-radius: 14px !important;
        overflow: hidden !important;
        position: relative !important;
        margin-bottom: 0.55rem !important;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
    }

    .template-card .card-img-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .template-card .card-badge {
        top: 0.45rem !important;
        right: 0.45rem !important;
        font-size: 0.62rem !important;
        font-weight: 800 !important;
        padding: 0.22rem 0.55rem !important;
        border-radius: 20px !important;
        letter-spacing: 0.02em !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2) !important;
        backdrop-filter: blur(8px) !important;
        z-index: 3 !important;
        max-width: 90% !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
        overflow: hidden !important;
    }

    .template-card .card-body {
        padding: 0.2rem 0.15rem 0.1rem !important;
        display: flex !important;
        flex-direction: column !important;
        flex-grow: 1 !important;
    }

    .template-card h3 {
        font-family: 'Outfit', sans-serif !important;
        font-size: 0.94rem !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        line-height: 1.3 !important;
        margin: 0.15rem 0 0.35rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        min-height: 2.45em !important;
        white-space: normal !important;
    }

    .template-card p {
        font-size: 0.76rem !important;
        line-height: 1.4 !important;
        color: #64748b !important;
        margin-bottom: 0.65rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        min-height: 2.8em !important;
    }

    .template-card .card-tags {
        display: none !important;
    }

    .template-card .card-footer {
        display: flex !important;
        align-items: center !important;
        gap: 0.45rem !important;
        margin-top: auto !important;
        padding-top: 0.2rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .template-card .card-footer .btn {
        height: 38px !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }

    .template-card .card-footer .btn-preview-action {
        width: 38px !important;
        min-width: 38px !important;
        flex: 0 0 38px !important;
        height: 38px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 12px !important;
        background: #f8fafc !important;
        border: 1.5px solid #e2e8f0 !important;
        color: #334155 !important;
        cursor: pointer !important;
        overflow: hidden !important;
    }

    .template-card .card-footer .btn-preview-action .preview-icon {
        font-size: 1.1rem !important;
        line-height: 1 !important;
        display: inline-block !important;
    }

    .template-card .card-footer .btn-preview-action .desktop-text,
    .template-card .card-footer .btn-preview-action .action-text {
        display: none !important;
    }

    .template-card .card-footer .btn-create-action {
        flex: 1 1 auto !important;
        height: 38px !important;
        padding: 0 0.5rem !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.01em !important;
        border-radius: 12px !important;
        background: linear-gradient(135deg, #e11d48 0%, #db2777 100%) !important;
        color: #ffffff !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 14px rgba(225, 29, 72, 0.32) !important;
        white-space: nowrap !important;
        text-decoration: none !important;
        border: none !important;
    }

    .template-card .card-footer .btn-create-action .desktop-text {
        display: none !important;
    }

    .template-card .card-footer .btn-create-action .mobile-text {
        display: inline !important;
    }

    /* 5. 2x2 Compact Metric Cards on Mobile */
    .metrics-grid-4col {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
    }

    .metric-card {
        padding: 0.95rem 0.85rem !important;
        border-radius: 16px !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .metric-icon-wrap {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.2rem !important;
        border-radius: 10px !important;
    }

    .metric-body h4 {
        font-size: 0.88rem !important;
        margin-bottom: 0.2rem !important;
    }

    .metric-body p {
        font-size: 0.74rem !important;
        line-height: 1.35 !important;
    }

    /* 6. Stacked Sections on Mobile */
    .interactive-studio-2col {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .envelope-demo-card {
        padding: 1.8rem 1.2rem !important;
        border-radius: 22px !important;
    }

    .interactive-studio-2col .wizard-card {
        padding: 1.8rem 1.2rem !important;
        border-radius: 22px !important;
    }

    .comparison-section {
        padding: 2.5rem 1rem !important;
    }
    .comparison-table th, .comparison-table td {
        padding: 0.85rem 0.65rem !important;
        font-size: 0.82rem !important;
    }

    .faq-2col-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .faq-sidebar-col {
        position: static !important;
    }

    /* 7. Reviews & Blog Grid on Mobile */
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .home-blog-section .home-blog-grid,
    .home-blog-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    /* 8. Comparison Table Responsive Scrolling on Mobile */
    .comparison-table-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
        border-radius: 18px !important;
    }

    .comparison-table {
        min-width: 480px !important;
    }

    /* 9. Search Bar Mobile Refinement */
    .search-wrapper {
        margin: 1.2rem 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .template-search-box {
        font-size: 0.84rem !important;
        padding: 0.75rem 1rem !important;
        border-radius: 14px !important;
    }

    /* 10. Hero Name Box Polish for Mobile */
    .hero-live-name-box {
        padding: 0.9rem 0.9rem !important;
        border-radius: 18px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .name-box-input-wrap {
        padding: 0.25rem 0.4rem 0.25rem 0.7rem !important;
        gap: 0.4rem !important;
    }

    .hero-name-input {
        font-size: 0.9rem !important;
    }

    .btn-name-start {
        padding: 0.5rem 0.85rem !important;
        font-size: 0.78rem !important;
    }

    /* 11. Envelope Simulator Compact Mobile Dimensions */
    .envelope-demo-card {
        padding: 1.5rem 1rem !important;
        border-radius: 20px !important;
    }

    .envelope-interactive-box {
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .envelope-interactive-box.open {
        height: 270px !important;
    }

    .envelope-interactive-box.open .envelope-letter-paper {
        height: 190px !important;
        transform: translateY(-65px) scale(1.02) !important;
        padding: 1rem !important;
    }

    .phone-card-equalizer .phone-eq-label {
        white-space: nowrap !important;
        font-size: 0.72rem !important;
    }
}

/* =========================================================================
   MODERN BLOG PAGINATION (LÜKS SAYFALAMA)
   ========================================================================= */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 3.5rem 0 2rem;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.3rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #f43f5e;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(244, 63, 94, 0.25);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.pagination-btn:hover {
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.35);
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pagination-page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.5rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pagination-page-number:hover {
    background: rgba(244, 63, 94, 0.15);
    border-color: rgba(244, 63, 94, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
}

.pagination-page-number.is-active {
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: #ffffff;
    border-color: transparent;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.4);
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 42px;
    color: #64748b;
    font-weight: 700;
    font-size: 1.1rem;
}

/* =========================================================================
   SIDEBAR CATEGORIES WIDGET (YAN SÜTUN KATEGORİ GEZGİNİ)
   ========================================================================= */
.categories-sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.sidebar-cat-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.sidebar-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-cat-item:hover {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #be123c;
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.08);
}

.sidebar-cat-item.active {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    border-color: transparent;
    color: #ffffff !important;
    font-weight: 700;
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.3);
}

.cat-item-left {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}

.cat-item-icon {
    font-size: 1rem;
    line-height: 1;
}

.cat-item-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cat-item-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 22px;
    padding: 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    background: #e2e8f0;
    color: #475569;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.sidebar-cat-item:hover .cat-item-badge {
    background: #ffe4e6;
    color: #be123c;
}

.sidebar-cat-item.active .cat-item-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* =========================================================================
   SCROLL TO TOP (YUKARI ÇIK) FLOATING BUTTON
   ========================================================================= */
.btn-scroll-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #be123c;
    border: 1.5px solid rgba(244, 63, 94, 0.35);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12), 0 0 16px rgba(244, 63, 94, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.9);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.btn-scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.btn-scroll-to-top:hover {
    background: linear-gradient(135deg, #e11d48, #be123c);
    color: #ffffff;
    border-color: #be123c;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 14px 35px rgba(225, 29, 72, 0.45);
}

.btn-scroll-to-top:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-scroll-to-top svg {
    transition: transform 0.25s ease;
}

.btn-scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* Adjust position when WhatsApp button is visible */
.has-wa-float .btn-scroll-to-top {
    bottom: 88px;
}

@media (max-width: 768px) {
    .btn-scroll-to-top {
        bottom: 80px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
    .has-wa-float .btn-scroll-to-top {
        bottom: 142px;
    }
}

/* User Nav Pill Button */
.nav-user-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 30px;
    background: rgba(30, 41, 59, 0.7);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}
.nav-user-pill-btn:hover {
    background: rgba(225, 29, 72, 0.2);
    border-color: rgba(225, 29, 72, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}
