/* ============================================
   mesire.com.tr - Erotik Dark Theme
   Siyah, Kırmızı, Işıklı, Yıldızlı Tasarım
   ============================================ */

/* CSS Variables */
:root {
    /* Ana Renkler - Dark Erotik Tema */
    --color-bg-dark: #0a0a0a;
    --color-bg-primary: #0d0d0d;
    --color-bg-secondary: #141414;
    --color-bg-card: #1a1a1a;
    --color-bg-elevated: #1f1f1f;
    
    /* Accent Renkler */
    --color-red: #dc2626;
    --color-red-dark: #991b1b;
    --color-red-light: #fecaca;
    --color-red-glow: rgba(220, 38, 38, 0.5);
    
    --color-gold: #d4a574;
    --color-gold-light: #e8c9a0;
    
    --color-green: #2d5a27;
    --color-green-dark: #1e3d1a;
    
    /* Text Renkler */
    --color-text-primary: #ffffff;
    --color-text-secondary: #e0e0e0;
    --color-text-muted: #888888;
    --color-text-dim: #666666;
    
    /* Border & Effects */
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(255, 255, 255, 0.12);
    --color-border-red: rgba(220, 38, 38, 0.3);
    
    /* WhatsApp */
    --color-whatsapp: #25d366;
    
    /* Diğer */
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-primary: #dc2626;
    --color-primary-dark: #991b1b;
    
    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height: 1.6;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow-red: 0 0 30px rgba(220, 38, 38, 0.3);
    --shadow-glow-gold: 0 0 20px rgba(212, 165, 116, 0.2);
    
    /* Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container */
    --container-max: 1200px;
    --container-narrow: 800px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    color: var(--color-text-secondary);
    background: var(--color-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Animated Stars Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(220,38,38,0.3), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(212,165,116,0.3), transparent),
        radial-gradient(1px 1px at 250px 90px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(220,38,38,0.2), transparent),
        radial-gradient(1px 1px at 350px 60px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 400px 100px, rgba(255,255,255,0.3), transparent);
    background-size: 450px 200px;
    animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-red);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-gold);
}

::selection {
    background: var(--color-red);
    color: white;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* ============================================
   Navigation - Dark Erotik Style
   ============================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(13, 13, 13, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Navbar üst çizgi efekti */
.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-red) 20%, 
        var(--color-gold) 50%, 
        var(--color-red) 80%, 
        transparent 100%);
    animation: glowLine 3s ease-in-out infinite;
}

@keyframes glowLine {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.nav__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 28px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: 800;
    text-decoration: none;
    position: relative;
}

.brand__logo {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: contain;
    border: 2px solid rgba(255, 68, 68, 0.4);
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.2);
}

.nav__brand:hover .brand__logo {
    border-color: #FF4444;
    box-shadow: 0 0 25px rgba(255, 68, 68, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.brand__text {
    background: linear-gradient(135deg, #FF4444 0%, #FFD700 50%, #FF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    font-size: 28px;
    text-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
}

.nav__menu {
    display: flex;
    gap: 10px;
}

.nav__link {
    color: #CCCCCC;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 24px;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Link text */
.nav__link-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-weight: 700;
}

/* Yıldızlar container */
.nav__link-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Yıldız efektleri */
.nav__link-stars::before,
.nav__link-stars::after {
    content: '✦';
    position: absolute;
    font-size: 12px;
    opacity: 0;
    transition: all 0.4s ease;
}

.nav__link-stars::before {
    top: 6px;
    left: 10px;
    color: #FFD700;
    text-shadow: 0 0 15px #FFD700, 0 0 30px #FFD700;
}

.nav__link-stars::after {
    bottom: 6px;
    right: 10px;
    color: #FF4444;
    text-shadow: 0 0 15px #FF4444, 0 0 30px #FF4444;
}

/* Alt çizgi efekti */
.nav__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF4444, #FFD700, #FF4444);
    transition: width var(--transition);
    box-shadow: 0 0 15px #FF4444, 0 0 30px #FFD700;
    border-radius: 3px;
}

/* Arka plan glow efekti */
.nav__link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(255, 68, 68, 0.25) 0%, rgba(255, 215, 0, 0.15) 50%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 0;
}

/* HOVER State - Tüm efektler */
.nav__link:hover {
    color: #FFFFFF;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.2) 0%, rgba(255, 215, 0, 0.15) 100%);
    box-shadow: 
        0 0 25px rgba(255, 68, 68, 0.4),
        0 0 50px rgba(255, 215, 0, 0.25),
        inset 0 0 25px rgba(255, 68, 68, 0.15);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.nav__link:hover .nav__link-text {
    transform: scale(1.1);
    color: #FFFFFF;
    text-shadow: 0 0 10px #FFD700, 0 0 20px rgba(255, 68, 68, 0.5);
}

.nav__link:hover .nav__link-stars {
    opacity: 1;
}

.nav__link:hover .nav__link-stars::before {
    opacity: 1;
    animation: starSparkle1 0.8s ease-in-out infinite;
}

.nav__link:hover .nav__link-stars::after {
    opacity: 1;
    animation: starSparkle2 0.8s ease-in-out infinite 0.2s;
}

.nav__link:hover::before {
    width: 90%;
}

.nav__link:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Yıldız animasyonları */
@keyframes starSparkle1 {
    0%, 100% { 
        opacity: 0.5; 
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.5) rotate(180deg);
        text-shadow: 0 0 15px #FFD700, 0 0 30px #FFD700, 0 0 45px #FFD700;
    }
}

@keyframes starSparkle2 {
    0%, 100% { 
        opacity: 0.5; 
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.5) rotate(-180deg);
        text-shadow: 0 0 15px #FF4444, 0 0 30px #FF4444, 0 0 45px #FF4444;
    }
}

.nav__link--admin {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(220, 38, 38, 0.05) 100%);
    color: var(--color-red) !important;
    border: 1px solid var(--color-border-red);
    font-weight: 600;
    font-size: 13px;
}

.nav__link--admin:hover {
    background: var(--color-red);
    color: white !important;
    border-color: var(--color-red);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__cart {
    position: relative;
    color: #FFD700;
    padding: 12px;
    border-radius: 50%;
    transition: all var(--transition);
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.nav__cart svg {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.nav__cart:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.cart__badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #FF4444 0%, #c41e3a 100%);
    color: white;
    font-size: 12px;
    font-weight: 800;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.6);
    animation: pulse-badge 1.5s infinite;
    border: 2px solid #0d0d0d;
}

/* Sepete eklendi animasyonu */
.nav__cart.cart-added {
    animation: cartBounce 0.5s ease;
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.1); }
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.nav__whatsapp {
    color: var(--color-whatsapp);
    padding: 12px;
    border-radius: 50%;
    transition: all var(--transition);
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__whatsapp svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.5));
}

.nav__whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    color: var(--color-whatsapp);
    border-color: var(--color-whatsapp);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
}

.nav__cta {
    display: none;
}

/* Sipariş Ver sadece masaüstünde görünsün */
.nav__cta--desktop {
    display: none;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold));
    border-radius: 2px;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .nav__cta--desktop {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .nav {
        position: relative;
        z-index: 100;
    }
    
    .nav__wrap {
        padding: 12px 0;
        flex-wrap: nowrap;
    }
    
    .nav__brand {
        gap: 8px;
        z-index: 100;
    }
    
    .brand__logo {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .brand__text {
        font-size: 20px;
    }
    
    .nav__toggle {
        display: flex;
        order: 3;
        z-index: 10001;
        padding: 10px;
        background: rgba(255, 68, 68, 0.15);
        border-radius: var(--radius);
        border: 1px solid rgba(255, 68, 68, 0.4);
        position: relative;
    }
    
    .nav__toggle span {
        width: 24px;
        height: 3px;
        transition: all 0.3s ease;
    }
    
    .nav__toggle.is-active {
        position: fixed;
        top: 15px;
        right: 20px;
        background: rgba(255, 68, 68, 0.3);
        border-color: #FF4444;
        z-index: 2147483647;
    }
    
    .nav__toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__toggle.is-active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav__actions {
        order: 2;
        gap: 8px;
    }
    
    /* Mobilde Sipariş Ver butonunu KESİNLİKLE gizle */
    .nav__cta,
    .nav__cta--desktop {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    .nav__cart {
        padding: 8px;
    }
    
    .nav__cart svg {
        width: 24px;
        height: 24px;
    }
    
    .nav__whatsapp {
        padding: 8px;
    }
    
    .nav__whatsapp svg {
        width: 22px;
        height: 22px;
    }
    
    .nav__menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0d0d0d;
        flex-direction: column;
        padding: 70px 20px 30px;
        gap: 8px;
        z-index: 2147483647;
        overflow-y: auto;
    }
    
    .nav__menu.is-open {
        display: flex;
    }
    
    /* Mobil menüde logo - kaldırıldı, gereksiz */
    .nav__menu::before {
        display: none;
    }
    
    .nav__link {
        font-size: 1.1rem;
        padding: 16px 20px;
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        justify-content: center;
        min-height: 54px;
        color: #fff;
    }
    
    .nav__link:active {
        background: linear-gradient(135deg, rgba(255, 68, 68, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
        border-color: rgba(255, 68, 68, 0.5);
    }
    
    .nav__link-text {
        font-size: 1rem;
    }
    
    /* Mobilde yıldız efektlerini kapat */
    .nav__link-stars,
    .nav__link::before,
    .nav__link::after {
        display: none !important;
    }
    
    .nav__link--admin {
        margin-top: 10px;
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.25) 0%, rgba(220, 38, 38, 0.15) 100%);
        font-size: 0.95rem;
    }
    
    /* Desktop menü mobilde gizle */
    .nav__menu--desktop {
        display: none !important;
    }
}

/* ============================================
   Mobile Menu Overlay - Her şeyin üstünde
   ============================================ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    z-index: 999999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.mobile-menu-overlay.is-open {
    display: flex;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 68, 68, 0.2);
    border: 2px solid #FF4444;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__close span {
    position: absolute;
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, #FF4444, #FFD700);
    border-radius: 2px;
}

.mobile-menu__close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu__close span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu__link {
    display: block;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-menu__link:active {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
    border-color: #FF4444;
    color: #FFD700;
}

.mobile-menu__link--admin {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-color: rgba(220, 38, 38, 0.3);
    color: #FF4444;
    margin-top: 10px;
}

/* Mobil menü açıkken body scroll engelle */
body.menu-open {
    overflow: hidden;
}

/* Desktop'ta mobile menu overlay gizle */
@media (min-width: 768px) {
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .nav__toggle {
        display: none !important;
    }
}

/* ============================================
   Buttons - Erotik Style
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn--lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    color: white;
    border-color: var(--color-red);
    box-shadow: 0 4px 20px var(--color-red-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--color-red-glow);
    color: white;
}

.btn--outline {
    background: transparent;
    color: var(--color-red);
    border-color: var(--color-red);
}

.btn--outline:hover {
    background: var(--color-red);
    color: white;
    box-shadow: var(--shadow-glow-red);
}

.btn--gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8956a 100%);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
}

.btn--gold:hover {
    box-shadow: var(--shadow-glow-gold);
    color: var(--color-bg-dark);
}

.btn--success {
    background: linear-gradient(135deg, var(--color-success) 0%, #16a34a 100%);
    color: white;
    border-color: var(--color-success);
}

.btn--success:hover {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    color: white;
}

.btn--whatsapp {
    background: linear-gradient(135deg, var(--color-whatsapp) 0%, #20bd5a 100%);
    color: white;
    border-color: var(--color-whatsapp);
}

.btn--whatsapp:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn--dark {
    background: var(--color-bg-card);
    color: var(--color-text-secondary);
    border-color: var(--color-border);
}

.btn--dark:hover {
    border-color: var(--color-red);
    color: var(--color-text-primary);
}

/* ============================================
   Page Header - Erotik Style
   ============================================ */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-secondary) 50%, rgba(45, 90, 39, 0.3) 100%);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

/* Üst ışık çizgisi */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--color-red) 25%,
        var(--color-gold) 50%,
        var(--color-red) 75%,
        transparent 100%);
}

/* Yıldız efekti */
.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 30% 60%, rgba(220,38,38,0.3), transparent),
        radial-gradient(1px 1px at 50% 30%, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 70% 70%, rgba(212,165,116,0.3), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,0.3), transparent);
    pointer-events: none;
    animation: twinkle 5s ease-in-out infinite;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

/* ============================================
   Cards - Erotik Style
   ============================================ */
.card {
    background: linear-gradient(145deg, var(--color-bg-card) 0%, var(--color-bg-secondary) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-red), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-red);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(220, 38, 38, 0.1);
}

.card:hover::before {
    opacity: 1;
}

/* ============================================
   Forms - Erotik Style
   ============================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-bg-secondary);
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text-primary);
    font-size: 1rem;
    transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-dim);
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: var(--color-danger);
}

.form-error {
    display: block;
    color: var(--color-danger);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ============================================
   Footer - Erotik Style
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-dark) 100%);
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid var(--color-border);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--color-red) 20%,
        var(--color-gold) 50%,
        var(--color-red) 80%,
        transparent 100%);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .footer__brand {
        justify-content: center;
    }
}

.footer__logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid var(--color-border-red);
}

.footer__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__col .footer__title {
    color: var(--color-text-primary);
    -webkit-text-fill-color: initial;
    background: none;
}

.footer__text {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: var(--color-text-muted);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition);
    color: var(--color-red);
}

.footer__links a:hover {
    color: var(--color-text-primary);
    padding-left: 5px;
}

.footer__links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-whatsapp);
    font-weight: 500;
    padding: 12px 20px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.footer__whatsapp:hover {
    background: var(--color-whatsapp);
    color: white;
}

.footer__badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.footer__badge:hover {
    border-color: var(--color-border-red);
    background: rgba(220, 38, 38, 0.05);
}

.footer__badge svg {
    color: var(--color-red);
    flex-shrink: 0;
}

.footer__badge span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer__disclaimer {
    color: var(--color-text-dim);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer__copyright {
    color: var(--color-text-dim);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    min-width: 65px;
    height: 65px;
    padding: 0 20px 0 18px;
    background: linear-gradient(135deg, var(--color-whatsapp) 0%, #20bd5a 100%);
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all var(--transition);
    animation: float-pulse 2s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float__text {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

@keyframes float-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
    color: white;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        height: 55px;
        padding: 0 16px 0 14px;
    }
    
    .whatsapp-float__text {
        font-size: 0.85rem;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ============================================
   Messages / Toasts
   ============================================ */
.messages-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.message {
    padding: 18px 45px 18px 20px;
    border-radius: var(--radius);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: slideIn 0.3s ease;
    color: var(--color-text-secondary);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.message--success {
    border-left: 4px solid var(--color-success);
}

.message--error {
    border-left: 4px solid var(--color-danger);
}

.message--warning {
    border-left: 4px solid var(--color-warning);
}

.message--info {
    border-left: 4px solid var(--color-red);
}

.message__close {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-text-muted);
    line-height: 1;
    transition: color var(--transition);
}

.message__close:hover {
    color: var(--color-red);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--color-bg-primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--color-border-red);
}

.faq-item__question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: left;
    transition: all var(--transition);
}

.faq-item__question:hover {
    color: var(--color-red);
}

.faq-item__question svg {
    color: var(--color-red);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.is-open .faq-item__question svg {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-item.is-open .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: 0 24px 24px;
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.faq-contact {
    margin-top: 60px;
    text-align: center;
    padding: 50px;
    background: linear-gradient(145deg, var(--color-bg-card) 0%, var(--color-bg-secondary) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.faq-contact h3 {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.faq-contact p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.faq-contact__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--color-bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.contact-item:hover {
    border-color: var(--color-border-red);
    box-shadow: var(--shadow-glow-red);
}

.contact-item__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item__icon svg {
    color: white;
}

.contact-item__content h3 {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: 0.3rem;
}

.contact-item__content a {
    color: var(--color-text-muted);
}

.contact-item__content a:hover {
    color: var(--color-red);
}

.contact-cta {
    margin-top: 30px;
}

.contact-form-wrapper {
    background: var(--color-bg-card);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.contact-form {
    margin-top: 1.5rem;
}

/* ============================================
   Content Body (Page Detail)
   ============================================ */
.page-content {
    padding: 80px 0;
    background: var(--color-bg-primary);
}

.content-body {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: 50px;
    border: 1px solid var(--color-border);
    line-height: 1.9;
    color: var(--color-text-secondary);
}

.content-body h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-border-red);
    position: relative;
}

.content-body h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-red);
}

.content-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-body p {
    margin-bottom: 1.2rem;
}

.content-body ul, 
.content-body ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.content-body li {
    margin-bottom: 0.6rem;
    position: relative;
}

.content-body ul li::marker {
    color: var(--color-red);
}

.content-body strong {
    color: var(--color-text-primary);
}

.content-body a {
    color: var(--color-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.content-body a:hover {
    color: var(--color-gold);
}

.page-meta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .content-body {
        padding: 30px 20px;
    }
}

/* ============================================
   Empty State
   ============================================ */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.empty-state p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    padding: 80px 0;
    background: var(--color-bg-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: linear-gradient(145deg, var(--color-bg-card) 0%, var(--color-bg-secondary) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold), var(--color-red));
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-border-red);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(220, 38, 38, 0.15);
}

.product-card:hover::before {
    opacity: 1;
}

/* ============================================
   Trust Mini Bar
   ============================================ */
.trust-mini-bar {
    background: var(--color-bg-secondary);
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-mini-bar__items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-mini-bar__items span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.trust-mini-bar__items span svg {
    color: var(--color-red);
}

/* ============================================
   Category Filter
   ============================================ */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-filter__item {
    padding: 12px 24px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: all var(--transition);
    background: var(--color-bg-card);
}

.category-filter__item:hover,
.category-filter__item.is-active {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    border-color: var(--color-red);
    color: white;
    box-shadow: var(--shadow-glow-red);
}

/* ============================================
   Utilities
   ============================================ */
.text-success {
    color: var(--color-success) !important;
}

.text-danger {
    color: var(--color-danger) !important;
}

.text-warning {
    color: var(--color-warning) !important;
}

.text-muted {
    color: var(--color-text-muted) !important;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--color-gold) !important;
}

.text-red {
    color: var(--color-red) !important;
}

/* Glow Effects */
.glow-red {
    box-shadow: var(--shadow-glow-red);
}

.glow-gold {
    box-shadow: var(--shadow-glow-gold);
}

/* ============================================
   Scrollbar Styling
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-red);
}

/* ============================================
   Loading Spinner
   ============================================ */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   Promo Banner / Ticker
   ============================================ */
.promo-ticker {
    background: linear-gradient(90deg, var(--color-red) 0%, var(--color-red-dark) 50%, var(--color-red) 100%);
    color: white;
    padding: 14px 0;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    animation: ticker-scroll 25s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ticker-item i,
.ticker-item svg {
    margin-right: 12px;
    color: var(--color-gold);
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 50px 0;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
}
