/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    --hf-purple: #6A0DAD; /* Royal Purple - Ana Renk */
    --hf-lilac: #C8A2C8; /* Lila - İkincil Renk */
    --hf-lavender: #DCD0FF; /* Açık Lavanta - Vurgular */
    --hf-dark: #1a0520; /* Çok Koyu Mor - Arkaplan */
    --hf-darker: #0d0010; /* Siyahımsı Mor */
    --love-pink: #ff1493; /* Canlı Pembe - Aşk Detayları */
    --gold: #ffd700;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--hf-darker);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(106, 13, 173, 0.15) 0%, transparent 60%),
        linear-gradient(0deg, rgba(13,0,16,0.95) 0%, rgba(26,5,32,0.9) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236A0DAD' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Racing Urgency Banner */
.racing-banner {
    background: #d0021b; /* Hot Wheels Red */
    color: white;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Racing Sans One', cursive;
    font-size: 1.1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100; /* Header'dan yüksek */
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    overflow: hidden;
}

.racing-checks {
    width: 100px;
    height: 100%;
    background-image: 
        linear-gradient(45deg, #000 25%, transparent 25%), 
        linear-gradient(-45deg, #000 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #000 75%), 
        linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: pulse-red 2s infinite;
}

.urgency-text {
    text-transform: uppercase;
    text-shadow: 1px 1px 0 #000;
}

.countdown {
    background: #000;
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid #fff;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
}

@keyframes pulse-red {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Yarış Pisti Temalı (Mor Versiyon) */
.header {
    background: linear-gradient(180deg, #000 0%, var(--hf-dark) 100%);
    border-bottom: 4px solid var(--hf-purple);
    padding: 5px 0;
    position: fixed;
    width: 100%;
    top: 40px; /* Banner için yer açıldı */
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(106, 13, 173, 0.4);
    height: 80px;
    overflow: visible;
}

.header .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    transform: skew(-10deg);
    transition: transform 0.3s;
    position: absolute;
    top: -50px;
    left: 0;
    z-index: 1001;
}

.logo:hover {
    transform: skew(-10deg) scale(1.05);
}

.logo-img {
    height: 220px;
    width: auto;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
}

/* Eski logo stilleri kaldırıldı */

.nav {
    display: flex;
    gap: 20px;
    margin-right: 30px; /* Sepet ile arası */
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    padding: 5px 15px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.nav a:hover {
    background: var(--hf-purple);
    color: var(--white);
    border-color: var(--hf-lilac);
    transform: skew(-10deg);
    box-shadow: 0 0 15px var(--hf-purple);
}

.cart-icon {
    background: var(--hf-purple);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: 2px solid var(--hf-lilac);
    box-shadow: 0 0 10px var(--hf-purple);
    transition: all 0.3s;
}

.cart-icon:hover {
    transform: scale(1.05);
    background: var(--hf-lilac);
    border-color: var(--hf-purple);
    color: var(--hf-darker);
    box-shadow: 0 0 20px var(--hf-lilac);
}

.cart-icon:hover span {
    color: var(--hf-darker) !important;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px; /* Banner (40px) + Header (60px) + boşluk */
    position: relative;
    overflow: hidden;
}

.hero-bg-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(106, 13, 173, 0.3) 0%, transparent 70%);
    z-index: 1;
}

/* Karışık Kutular Stili */
.hero-scattered-packs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-pack {
    position: absolute;
    width: 160px; /* Hot Wheels "Long Card" oranı (yaklaşık 10.8cm x 16.5cm) */
    opacity: 0.7;
    transition: all 0.5s;
    filter: blur(1px); /* Hafif bulanıklık derinlik katar */
    perspective: 1000px; /* 3D dönüş için perspektif */
}

/* Hero Animasyonları - Daha Hareketli ve 3D */
@keyframes float-cw {
    0% { transform: rotate(0deg) translateY(0) rotateY(0deg); }
    50% { transform: rotate(12deg) translateY(-20px) rotateY(15deg); }
    100% { transform: rotate(0deg) translateY(0) rotateY(0deg); }
}

@keyframes float-ccw {
    0% { transform: rotate(0deg) translateY(0) rotateY(0deg); }
    50% { transform: rotate(-12deg) translateY(-20px) rotateY(-15deg); }
    100% { transform: rotate(0deg) translateY(0) rotateY(0deg); }
}

/* Hero içindeki Blister Pack özelleştirmeleri */
.hero-pack .blister-pack {
    animation: float-cw 6s ease-in-out infinite;
    transform-origin: center center;
}

/* Karışık Animasyon Varyasyonları */
.hero-pack:nth-child(even) .blister-pack {
    animation-name: float-ccw;
    animation-duration: 7s;
    animation-delay: 0.5s;
}

.hero-pack:nth-child(3n) .blister-pack {
    animation-duration: 8s;
    animation-delay: 1.5s;
}

.hero-pack:nth-child(5n) .blister-pack {
    animation-duration: 5.5s;
    animation-delay: 1s;
}

.hero-pack .card-backing {
    padding-bottom: 40px;
    /* Gerçekçi Karton Efekti */
    background: linear-gradient(135deg, #2a0a3a 0%, #1a0520 100%);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.6),
        inset 0 0 0 1px rgba(255,255,255,0.1); /* Kenar parlaması */
    border-radius: 12px 12px 6px 6px;
    border: 1px solid rgba(106, 13, 173, 0.3);
    position: relative;
    overflow: hidden;
}

/* Asma Deliği (Euro Slot) */
.hero-pack .card-backing::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 10px;
    background: #0d0211; /* Arka plan rengiyle uyumlu koyu renk */
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.8);
    z-index: 10;
}

/* Karton Üzeri Işık Yansıması */
.hero-pack .card-backing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.05) 45%, transparent 50%);
    transform: translateX(-100%);
    animation: shine-card 8s infinite;
}

@keyframes shine-card {
    0% { transform: translateX(-100%); }
    20% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.hero-pack .plastic-blister {
    height: 110px;
    margin-top: 15px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 
        inset 0 0 15px rgba(255,255,255,0.05),
        0 5px 10px rgba(0,0,0,0.3);
    position: relative;
}

/* Plastik Parlaması */
.hero-pack .plastic-blister::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    border-radius: 20px;
    filter: blur(2px);
    opacity: 0.6;
}

.hero-pack .card-logo-img {
    width: 85%;
    margin: 8px auto 4px auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.hero-pack .card-series {
    position: relative;
    top: auto;
    right: auto;
    font-size: 0.5rem;
    padding: 2px 6px;
    margin: 0 auto 8px auto;
    display: inline-block;
    transform: rotate(-2deg);
    background: var(--hf-lilac);
    color: #000;
    font-weight: 800;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.hero-pack .card-info {
    padding: 8px;
    background: linear-gradient(to bottom, #fff 0%, #f0f0f0 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0 0 6px 6px;
    clip-path: polygon(0 10px, 100% 0, 100% 100%, 0% 100%);
}

.hero-pack .product-name {
    font-size: 0.85rem;
    margin-top: 5px;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kutuların Düzenli Izgara Konumları */
/* 1. Satır */
.hero-pack.p1 { top: 15%; left: 20%; transform: translate(-50%, -50%) rotate(-5deg) scale(0.8); z-index: 1; }
.hero-pack.p2 { top: 15%; left: 50%; transform: translate(-50%, -50%) rotate(3deg) scale(0.8); z-index: 1; }
.hero-pack.p3 { top: 15%; left: 80%; transform: translate(-50%, -50%) rotate(-8deg) scale(0.8); z-index: 1; }

/* 2. Satır */
.hero-pack.p4 { top: 50%; left: 15%; transform: translate(-50%, -50%) rotate(6deg) scale(0.8); z-index: 2; }
.hero-pack.p5 { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-2deg) scale(0.8); z-index: 0; opacity: 0.4; filter: blur(2px); } /* Merkezin arkasında */
.hero-pack.p6 { top: 50%; left: 85%; transform: translate(-50%, -50%) rotate(4deg) scale(0.8); z-index: 2; }

/* 3. Satır */
.hero-pack.p7 { top: 85%; left: 20%; transform: translate(-50%, -50%) rotate(-4deg) scale(0.8); z-index: 3; }
.hero-pack.p8 { top: 85%; left: 50%; transform: translate(-50%, -50%) rotate(7deg) scale(0.8); z-index: 3; }
.hero-pack.p9 { top: 85%; left: 80%; transform: translate(-50%, -50%) rotate(-6deg) scale(0.8); z-index: 3; }

/* Hover Efekti Kaldırıldı - Kutular sabit kalacak */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    background: rgba(0,0,0,0.6); /* Yazı okunabilirliği için */
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero h2 {
    font-family: 'Racing Sans One', cursive;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--hf-lilac);
    text-transform: uppercase;
    text-shadow: 
        4px 4px 0 var(--hf-purple),
        8px 8px 0 #000;
    transform: skew(-5deg) rotate(-2deg);
}

.hero h2 span {
    color: var(--white);
    display: block;
    font-size: 3rem;
    text-shadow: 
        3px 3px 0 var(--hf-purple),
        6px 6px 0 #000;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--hf-lavender);
    font-weight: 600;
    text-shadow: 2px 2px 4px #000;
}

.btn-primary {
    background: linear-gradient(45deg, var(--hf-purple), var(--love-pink));
    color: white;
    padding: 20px 50px;
    font-size: 1.5rem;
    font-family: 'Racing Sans One', cursive;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 
        0 0 20px rgba(106, 13, 173, 0.6),
        inset 0 2px 0 rgba(255,255,255,0.3);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 0 40px rgba(106, 13, 173, 0.8);
    background: linear-gradient(45deg, var(--love-pink), var(--hf-purple));
}

/* Products - BLISTER PACK TASARIMI */
.products {
    padding: 80px 0;
}

.section-title {
    font-family: 'Racing Sans One', cursive;
    font-size: 3.5rem;
    text-align: center;
    color: var(--hf-lilac);
    text-shadow: 4px 4px 0 var(--hf-purple);
    margin-bottom: 80px;
    transform: skew(-5deg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px;
    padding: 20px;
}

/* KART TASARIMI - BLISTER PACK */
.blister-pack {
    position: relative;
    width: 100%;
    perspective: 1000px;
    transition: transform 0.3s;
}

.blister-pack:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
}

/* Karton Arkalık */
.card-backing {
    /* Mor degrade arka plan */
    background: linear-gradient(135deg, var(--hf-purple) 0%, var(--hf-dark) 100%);
    border-radius: 20px 20px 10px 10px;
    padding: 15px;
    padding-bottom: 120px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border: 2px solid var(--hf-lilac);
    overflow: hidden;
    text-align: center; /* Logo ve series ortalama için */
}

/* Asma Deliği */
.card-backing::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 15px;
    background: var(--hf-darker);
    border-radius: 10px;
    border: 2px solid var(--hf-lilac);
    z-index: 5;
}

/* Karton Üzerindeki Grafikler */
.card-logo-img {
    width: 80%;
    height: auto;
    display: block;
    margin: 10px auto 2px auto;
    filter: drop-shadow(2px 2px 0px rgba(255, 255, 255, 0.5));
    transform: skew(-5deg);
}

.card-series {
    position: relative;
    top: auto;
    right: auto;
    background: var(--hf-lilac);
    color: var(--hf-darker);
    padding: 3px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    transform: rotate(-3deg);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
    display: inline-block;
    margin: 0 auto 5px auto;
}

/* Ultimate Pack Styling - Diğer kutularla aynı boyut */
.ultimate-pack {
    /* Grid'de normal boyutta durur */
}

.ultimate-pack .card-backing {
    background: var(--hf-lilac);
    border: 2px solid var(--hf-purple);
    box-shadow: 0 10px 30px rgba(200, 162, 200, 0.5);
    padding-bottom: 100px; /* Aynı padding */
}

.ultimate-pack .plastic-blister {
    height: 450px; /* Daha büyük alan */
    background: rgba(255,255,255,0.3);
}

.ultimate-pack .product-name {
    font-size: 1.2rem;
    color: var(--hf-darker);
    text-shadow: none;
}

.ultimate-pack .product-price {
    font-size: 1.5rem;
    color: var(--hf-purple);
    font-weight: 800;
}

.tag.ultimate {
    background: var(--hf-purple);
    color: var(--white);
    border: 1px solid var(--hf-lilac);
}

/* Ultimate Grid Styling - 9 adet mini kutu */
.ultimate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    height: 100%;
    padding: 10px;
    align-content: stretch;
}

/* Mini Blister Pack - Aynı tasarım, küçük boyut */
.mini-blister-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.mini-card-backing {
    width: 100%;
    height: 100%;
    border-radius: 4px 4px 2px 2px;
    border: 1px solid var(--hf-lilac);
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px;
    overflow: hidden;
}

/* Asma Deliği - Mini */
.mini-card-backing::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 4px;
    background: var(--hf-darker);
    border-radius: 3px;
    border: 1px solid var(--hf-lilac);
}

.mini-logo {
    width: 75%;
    height: 10px;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 6px;
    margin-bottom: 2px;
    filter: drop-shadow(1px 1px 0 rgba(255,255,255,0.5));
}

.mini-plastic-blister {
    width: 88%;
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 0 5px rgba(255,255,255,0.15),
        0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    margin-bottom: 2px;
}

/* Mini Plastik Işık Yansıması */
.mini-plastic-blister::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 30%;
    height: 40%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.mini-product-image {
    width: 90%;
    height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}

/* Plastik Kabarcık (Blister) */
.plastic-blister {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    position: relative;
    box-shadow: 
        inset 0 0 20px rgba(255,255,255,0.1),
        0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(2px);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Işık Yansıması */
.plastic-blister::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30%;
    height: 60%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(5px);
    pointer-events: none;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
    transition: transform 0.3s;
}

.blister-pack:hover .product-image {
    transform: scale(1.1) rotate(5deg);
}

/* Alt Bilgi Alanı */
.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 12px 15px;
    border-radius: 0 0 10px 10px;
    color: #000;
    clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%);
}

.product-name {
    font-family: 'Racing Sans One', cursive;
    font-size: 1.4rem;
    color: var(--hf-darker);
    margin-top: 10px;
    line-height: 1.1;
}

.product-tags {
    display: flex;
    gap: 5px;
    margin: 5px 0;
}

.tag {
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.tag.rare { background: var(--gold); color: #000; }
.tag.limited { background: var(--hf-purple); color: #fff; }
.tag.new { background: var(--hf-lilac); color: var(--hf-darker); }

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hf-purple);
    text-align: right;
    margin-top: 0;
    line-height: 1.2;
}

.btn-add-cart {
    width: 100%;
    padding: 10px;
    background: var(--hf-purple);
    color: #fff;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    font-style: italic;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
}

.btn-add-cart:hover {
    background: var(--hf-lilac);
    color: var(--hf-darker);
}

/* About Section */
.about {
    background: var(--white);
    color: var(--hf-darker);
    padding: 80px 0;
    transform: skewY(-2deg);
    margin: 50px 0;
    border-top: 5px solid var(--hf-purple);
    border-bottom: 5px solid var(--hf-purple);
}

.about-content {
    transform: skewY(2deg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-family: 'Racing Sans One', cursive;
    font-size: 3rem;
    color: var(--hf-purple);
    margin-bottom: 30px;
}

.about-single-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #444;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    border-left: 5px solid var(--hf-purple);
    border-right: 5px solid var(--hf-purple);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.about-single-text strong {
    color: var(--hf-purple);
    font-weight: 800;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    color: var(--hf-darker);
    z-index: 2000;
    transition: right 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    background: var(--hf-purple);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item {
    background: #f5f5f5;
    border-left: 5px solid var(--hf-purple);
    margin-bottom: 10px;
    padding: 10px;
    display: flex;
    gap: 10px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #fff;
    border-radius: 5px;
}

/* Footer Styles */
.footer {
    background: #0d0010;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 4px solid var(--hf-purple);
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--hf-lilac);
    font-family: 'Racing Sans One', cursive;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--hf-lilac);
    padding-left: 5px;
}

.payment-desc {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.payment-logo {
    height: 45px;
    width: auto;
    border-radius: 8px;
    background: #fff;
    padding: 6px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.payment-logo:hover {
    transform: scale(1.1);
}

.payment-icon {
    background: #fff;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    font-family: sans-serif;
}

/* Footer col güvenli ödeme ortalama */
.footer-col:last-child {
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--hf-darker);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 15px;
    border: 2px solid var(--hf-purple);
    box-shadow: 0 0 30px rgba(106, 13, 173, 0.5);
    position: relative;
    padding: 40px;
    overflow-y: auto;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--hf-lilac);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.2);
    color: var(--white);
}

/* Modal İçerik Stilleri */
#modal-body h2 {
    font-family: 'Racing Sans One', cursive;
    color: var(--hf-lilac);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--hf-purple);
    padding-bottom: 10px;
}

#modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #ddd;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--hf-purple);
    padding: 15px;
    border-radius: 5px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.2);
    box-shadow: 0 0 10px var(--hf-purple);
}

.faq-item {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--hf-purple);
}

.faq-item h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.legal-text {
    font-size: 0.9rem;
    color: #ccc;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 5px;
    max-height: 400px;
    overflow-y: auto;
}

.btn-checkout {
    background: linear-gradient(45deg, var(--hf-purple), var(--love-pink));
    color: #fff;
    padding: 20px;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-checkout:hover {
    background: linear-gradient(45deg, var(--love-pink), var(--hf-purple));
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    color: white;
    text-align: center;
    padding: 15px;
    margin-bottom: 40px;
    border-radius: 10px;
    font-family: 'Racing Sans One', cursive;
    font-size: 1.5rem;
    transform: skew(-5deg);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: skew(-5deg) scale(1); }
    50% { transform: skew(-5deg) scale(1.02); }
    100% { transform: skew(-5deg) scale(1); }
}

.promo-icon {
    font-size: 2rem;
    margin-right: 10px;
    vertical-align: middle;
}

/* Footer */
.footer {
    background: var(--hf-darker);
    color: var(--hf-lilac);
    padding: 50px 0;
    text-align: center;
    border-top: 5px solid var(--hf-purple);
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    /* Global Layout */
    .container {
        padding: 0 15px;
    }

    /* === MOBİL ANİMASYONLAR === */
    @keyframes mobile-glow-pulse {
        0%, 100% { box-shadow: 0 0 10px var(--hf-purple), 0 0 20px rgba(106, 13, 173, 0.3); }
        50% { box-shadow: 0 0 20px var(--hf-purple), 0 0 40px rgba(106, 13, 173, 0.6); }
    }

    @keyframes mobile-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @keyframes mobile-shake {
        0%, 100% { transform: rotate(0deg); }
        25% { transform: rotate(-3deg); }
        75% { transform: rotate(3deg); }
    }

    @keyframes mobile-slide-up {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes countdown-flash {
        0%, 100% { background: #000; color: #fff; transform: scale(1); }
        50% { background: linear-gradient(45deg, #ff0040, #ff6b00); color: #fff; transform: scale(1.05); }
    }

    @keyframes text-glow {
        0%, 100% { text-shadow: 0 0 5px var(--hf-purple); }
        50% { text-shadow: 0 0 20px var(--hf-lilac), 0 0 30px var(--hf-purple); }
    }

    @keyframes banner-gradient-move {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    @keyframes fire-flicker {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(1.1); }
    }

    @keyframes neon-border {
        0%, 100% { border-color: var(--hf-purple); }
        25% { border-color: var(--hf-lilac); }
        50% { border-color: #ff6b9d; }
        75% { border-color: var(--hf-yellow); }
    }

    @keyframes logo-breathe {
        0%, 100% { 
            filter: drop-shadow(0 5px 15px rgba(106, 13, 173, 0.6)) brightness(1);
            transform: translateY(0) scale(1);
        }
        50% { 
            filter: drop-shadow(0 10px 30px rgba(106, 13, 173, 0.9)) brightness(1.1);
            transform: translateY(-8px) scale(1.02);
        }
    }

    /* === ACİLİYET BANNER - Mobilde Sabit Kalır === */
    .racing-banner {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        height: 40px;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        background: linear-gradient(90deg, #8B0000, #dc143c, #8B0000);
        overflow: hidden;
    }

    .racing-banner::before,
    .racing-banner::after {
        content: none;
    }

    .racing-checks {
        width: 40px;
        display: none; /* Mobilde gizle - taşma yaratıyor */
    }
    
    .banner-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .urgency-text {
        font-size: 0.7rem;
        letter-spacing: 0;
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
        animation: none;
        color: #fff;
    }
    
    .countdown {
        font-size: 0.85rem;
        padding: 2px 8px;
        border-radius: 4px;
        animation: none;
        font-weight: bold;
        letter-spacing: 2px;
        border: 1px solid #fff;
        font-family: 'Courier New', monospace;
        background: #000;
    }

    /* === HEADER - Mobilde Sabit Değil (Scroll ile gider) === */
    .header {
        height: auto !important;
        padding: 8px 0 !important;
        position: absolute !important;
        top: 40px !important; /* Banner altında başlar */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        z-index: 9998 !important;
        margin-top: 0 !important;
        border-bottom: 2px solid var(--hf-purple) !important;
        animation: none !important;
        background: linear-gradient(180deg, #000 0%, var(--hf-dark) 100%) !important;
        overflow: hidden !important;
    }

    .header::before,
    .header::after {
        content: none;
    }

    .header .container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: auto;
        gap: 0;
        position: relative;
        z-index: 1;
        padding: 0 10px;
    }

    .logo {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin-bottom: 0;
        display: block;
        text-align: center;
    }

    .logo:hover {
        transform: scale(1.02) !important;
    }

    .logo-img {
        height: 70px !important;
        width: auto;
        animation: none;
        filter: drop-shadow(0 3px 8px rgba(0,0,0,0.5));
    }

    /* Navigasyon - Mobilde Gizle */
    .nav {
        display: none;
    }

    /* Hero Section - Tam Ekran */
    .hero {
        padding-top: 130px; /* Banner (40px) + Header (~90px) */
        padding-bottom: 20px;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .hero h2 { 
        font-size: 2.2rem; 
        margin-bottom: 10px;
        animation: mobile-shake 5s ease-in-out infinite;
    }
    
    .hero h2 span { 
        font-size: 1.3rem;
        display: block;
        animation: text-glow 3s ease-in-out infinite;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 5px;
        margin-bottom: 20px;
        animation: mobile-slide-up 0.8s ease-out;
    }

    .btn-primary {
        padding: 15px 30px;
        font-size: 1.1rem;
        animation: mobile-glow-pulse 2s ease-in-out infinite;
        position: relative;
        overflow: hidden;
    }

    .hero-content {
        padding: 20px 15px;
        background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(26, 5, 32, 0.9));
        width: 95%;
        border-radius: 15px;
        border: 1px solid rgba(106, 13, 173, 0.4);
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        margin-top: 10px;
    }

    /* Hero Kutularını Gizle - Mobilde sadece içerik */
    .hero-scattered-packs {
        display: none;
    }

    /* Hero arka plan efektini kaldır mobilde */
    .hero-bg-effect {
        display: none;
    }

    .btn-primary::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        animation: shine-btn 3s infinite;
    }

    @keyframes shine-btn {
        0% { left: -100%; }
        50%, 100% { left: 100%; }
    }

    /* Products Grid */
    .products-grid { 
        grid-template-columns: 1fr; 
        padding: 0 15px; 
        gap: 40px;
    }

    .product-card {
        max-width: 100%;
        animation: mobile-slide-up 0.5s ease-out;
    }

    .product-card:active {
        transform: scale(0.98);
    }

    /* Blister Pack Mobil Animasyonları */
    .blister-pack {
        transition: transform 0.3s ease;
    }

    .blister-pack:active {
        transform: scale(0.95) rotate(-2deg);
    }

    /* === PRODUCT DETAIL PAGE - Mobil === */
    .product-detail-page {
        padding-top: 160px !important; /* Header çakışmasını önlemek için optimize edildi */
        min-height: 100vh;
        background: radial-gradient(circle at center top, #2a0a3a 0%, #000000 50%);
        display: block !important;
    }

    .detail-garage-container {
        flex-direction: column;
        gap: 25px;
        padding: 15px;
        margin-top: 10px !important; /* Ekstra güvenlik boşluğu */
    }

    .detail-left {
        min-width: auto;
        width: 100%;
        order: 1;
    }

    /* Blister Pack Mobil Görünümü */
    .detail-left .blister-pack {
        transform: scale(0.85);
        margin: 0 auto;
    }

    .showcase-stand {
        display: flex;
        justify-content: center;
    }

    .showcase-stand img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }

    .detail-right {
        width: 100%;
        padding: 20px 15px;
        order: 2;
        border-radius: 15px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(106, 13, 173, 0.3);
    }

    .detail-right::before {
        border-radius: 15px 15px 0 0;
    }

    .detail-title {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .detail-meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }

    .meta-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .detail-price-box {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .big-price {
        font-size: 3.5rem;
    }

    /* Stats Bars */
    .stats-container {
        margin-bottom: 25px;
    }

    .stat-row {
        margin-bottom: 12px;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Story Box */
    .story-box {
        padding: 15px;
        margin-bottom: 25px;
    }

    .story-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Action Buttons */
    .action-area {
        flex-direction: column;
        gap: 15px;
    }

    .buy-btn {
        width: 100%;
        padding: 18px 25px;
        font-size: 1.3rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }

    .buy-btn:active {
        transform: scale(0.98);
    }

    .back-btn {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
        border-radius: 15px;
    }

    /* === Related Products Slider - Mobil === */
    .related-products-section {
        margin-top: 50px;
        padding-top: 30px;
    }

    .section-header {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .related-scroll-container {
        gap: 20px;
        padding: 20px 15px;
    }

    .related-scroll-container .blister-pack {
        transform: scale(0.75);
    }

    /* === Reviews Slider - Mobil === */
    .reviews-section {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .review-card {
        width: 280px;
        padding: 20px;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .reviewer-info h4 {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    /* Footer Mobil */
    .footer {
        padding: 30px 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .payment-methods {
        justify-content: center;
    }

    .payment-logo {
        height: 40px;
    }
}

/* --- Product Detail Page Styles --- */
.product-detail-page {
    background: radial-gradient(circle at center, #2a0a3a 0%, #000000 100%);
    min-height: 100vh;
    padding-top: 120px; /* Header space */
}

.detail-garage-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* Left Side: Showcase Stand */
.detail-left {
    flex: 1;
    min-width: 350px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.showcase-stand {
    position: relative;
    transform-style: preserve-3d;
    animation: floatCard 6s ease-in-out infinite;
}

.showcase-stand::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(106, 13, 173, 0.6) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
}

/* Right Side: Specs Panel */
.detail-right {
    flex: 1.2;
    min-width: 350px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.detail-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--hf-purple), var(--hf-lilac), var(--hf-purple));
}

.detail-title {
    font-family: 'Racing Sans One', cursive;
    font-size: 3.5rem;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(106, 13, 173, 0.8);
    line-height: 1;
}

.detail-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.meta-badge {
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--hf-lilac);
    border: 1px solid var(--hf-purple);
    text-transform: uppercase;
    font-weight: bold;
}

.detail-price-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.big-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--hf-yellow);
    text-shadow: 2px 2px 0 #000;
    font-family: 'Racing Sans One', cursive;
}

/* Stats Bars */
.stats-container {
    margin-bottom: 30px;
}

.stat-row {
    margin-bottom: 15px;
}

.stat-label {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-bar-bg {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--hf-purple), var(--hf-lilac));
    border-radius: 4px;
    width: 0; /* Animated via JS */
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 10px var(--hf-purple);
}

/* Story Box */
.story-box {
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--hf-yellow);
    margin-bottom: 30px;
}

.story-text {
    font-style: italic;
    color: #ddd;
    line-height: 1.6;
}

/* Action Buttons */
.action-area {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.buy-btn {
    flex: 2;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.2);
}

.buy-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.back-btn {
    flex: 1;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    padding: 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

@media (max-width: 900px) {
    .detail-garage-container {
        flex-direction: column;
        padding-top: 0;
    }
    
    .detail-left, .detail-right {
        width: 100%;
        min-width: auto;
    }
    
    .detail-title {
        font-size: 2.5rem;
    }
}

/* --- Related Products Slider --- */
.related-products-section {
    margin-top: 100px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.section-header {
    font-family: 'Racing Sans One', cursive;
    font-size: 2.5rem;
    color: var(--hf-lilac);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 10px var(--hf-purple);
}

.related-scroll-container {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 40px 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--hf-purple) rgba(255,255,255,0.05);
}

.related-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.related-scroll-container::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.related-scroll-container::-webkit-scrollbar-thumb {
    background: var(--hf-purple);
    border-radius: 4px;
}

/* --- Customer Reviews Slider --- */
.reviews-section {
    margin-top: 80px;
    margin-bottom: 80px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollReviews 60s linear infinite;
    padding: 20px 0;
}

.reviews-track:hover {
    animation-play-state: paused;
}

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

.review-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    width: 400px;
    color: #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    border-color: var(--hf-lilac);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--hf-purple), var(--hf-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    border: 2px solid var(--hf-lilac);
}

.reviewer-info h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.1rem;
}

.review-stars {
    color: var(--hf-yellow);
    font-size: 0.9rem;
    margin-top: 3px;
}

.review-text {
    font-style: italic;
    line-height: 1.6;
    font-size: 1rem;
    color: #ccc;
}

/* --- Stock Counter (Yarış Temalı) --- */
.stock-warning {
    background: #e60012;
    color: white;
    font-weight: 800;
    font-size: 0.6rem;
    padding: 3px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0;
    font-family: 'Racing Sans One', cursive;
    animation: pulse-red 2s infinite;
    box-shadow: 0 0 5px rgba(230, 0, 18, 0.5);
    transform: skewX(-10deg);
    float: left;
    margin-top: 8px;
}

.stock-warning.detail-stock {
    font-size: 1.2rem;
    padding: 8px 15px;
    margin-bottom: 20px;
    float: none;
    margin-top: 0;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(230, 0, 18, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(230, 0, 18, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 0, 18, 0); }
}

/* --- Gift Wrap Option (Kupa Töreni) --- */
.gift-wrap-option {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

.gift-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-family: 'Racing Sans One', cursive;
    color: var(--hf-yellow);
    font-size: 1.1rem;
}

.gift-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 25px;
    width: 25px;
    background-color: rgba(0,0,0,0.3);
    border: 2px solid var(--hf-yellow);
    border-radius: 5px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s;
}

.gift-checkbox:hover input ~ .checkmark {
    background-color: rgba(255, 215, 0, 0.2);
}

.gift-checkbox input:checked ~ .checkmark {
    background-color: var(--hf-yellow);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.gift-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.gift-checkbox .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* --- 3D Tilt / Gyroscope Effect --- */
.blister-pack {
    transform-style: preserve-3d;
    /* transition: transform 0.1s ease-out; REMOVED for smoother JS LERP */
    will-change: transform;
}

.blister-pack .card-backing {
    transform: translateZ(0px);
    transform-style: preserve-3d;
}

.blister-pack .plastic-blister {
    transform: translateZ(30px);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.blister-pack .product-image {
    transform: translateZ(10px);
}

.blister-pack .card-info {
    transform: translateZ(20px);
}

/* Glare Effect */
.blister-pack::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        125deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.05) 40%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0.05) 60%, 
        rgba(255,255,255,0) 100%
    );
    transform: translateZ(50px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 12px;
    mix-blend-mode: overlay;
}

.blister-pack:hover::after {
    opacity: 1;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

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

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-text {
    position: absolute;
    right: 70px;
    background: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Mobile WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-text {
        display: none;
    }
}

/* ========================================
   B2B SECTION
======================================== */
.b2b-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
    text-align: center;
}

.b2b-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6a0dad 0%, #9b59b6 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.b2b-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 800;
}

.b2b-subtitle {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.b2b-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.b2b-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.b2b-card:hover {
    transform: translateY(-10px);
    background: rgba(106, 13, 173, 0.15);
    border-color: #6a0dad;
    box-shadow: 0 20px 40px rgba(106, 13, 173, 0.3);
}

.b2b-card.featured {
    background: rgba(106, 13, 173, 0.2);
    border: 2px solid #6a0dad;
    transform: scale(1.05);
}

.b2b-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.b2b-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.b2b-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.b2b-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.b2b-card p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.b2b-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.b2b-features li {
    color: #ccc;
    font-size: 0.85rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.b2b-features li:last-child {
    border-bottom: none;
}

.b2b-cta {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.3) 0%, rgba(155, 89, 182, 0.2) 100%);
    border: 1px solid rgba(106, 13, 173, 0.5);
    border-radius: 25px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.b2b-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.b2b-cta p {
    color: #ccc;
    margin-bottom: 25px;
}

.b2b-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.b2b-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.b2b-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.b2b-btn.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.b2b-btn.email-btn {
    background: linear-gradient(135deg, #6a0dad 0%, #9b59b6 100%);
    color: white;
}

.b2b-btn.email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.4);
}

.b2b-btn.phone-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.b2b-btn.phone-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* B2B Mobile */
@media (max-width: 1024px) {
    .b2b-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .b2b-card.featured {
        transform: scale(1);
    }
    
    .b2b-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .b2b-section {
        padding: 50px 15px;
    }
    
    .b2b-title {
        font-size: 1.8rem;
    }
    
    .b2b-subtitle {
        font-size: 1rem;
    }
    
    .b2b-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .b2b-cta {
        padding: 25px 20px;
    }
    
    .b2b-cta h3 {
        font-size: 1.4rem;
    }
    
    .b2b-buttons {
        flex-direction: column;
    }
    
    .b2b-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Blog Styles */
.blog-page {
    background: linear-gradient(180deg, #0a0014 0%, #1a0520 50%, #0a0014 100%);
    min-height: 100vh;
    padding: 120px 20px 40px; /* Adjusted for fixed header */
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h1 {
    font-family: 'Racing Sans One', cursive;
    font-size: 3rem;
    color: var(--hf-lilac);
    text-shadow: 0 0 20px var(--hf-purple);
    margin-bottom: 10px;
}

.blog-header p {
    color: #aaa;
    font-size: 1.1rem;
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--hf-lilac);
    box-shadow: 0 20px 40px rgba(106, 13, 173, 0.3);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--hf-purple), var(--hf-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card h2 {
    font-family: 'Racing Sans One', cursive;
    color: var(--hf-lilac);
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-card .read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.blog-card .read-more:hover {
    text-decoration: underline;
}

.blog-tag {
    display: inline-block;
    background: var(--hf-purple);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

/* Full Article Styles */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(106, 13, 173, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.blog-article h1 {
    font-family: 'Racing Sans One', cursive;
    color: var(--hf-lilac);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.blog-article h2 {
    font-family: 'Racing Sans One', cursive;
    color: var(--hf-lilac);
    font-size: 2rem;
    margin: 30px 0 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(106, 13, 173, 0.3);
}

.blog-article h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.blog-article h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin: 20px 0 10px;
}

.blog-article p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.blog-article ul, .blog-article ol {
    color: #ccc;
    margin: 15px 0 15px 25px;
    line-height: 1.8;
}

.blog-article li {
    margin-bottom: 8px;
}

.blog-article strong {
    color: var(--hf-lilac);
}

.article-meta {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(106, 13, 173, 0.3);
}

.cta-box {
    background: linear-gradient(135deg, var(--hf-purple), #2a0a3a);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
}

.cta-box h3 {
    color: var(--gold);
    font-family: 'Racing Sans One', cursive;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-box p {
    color: white;
    margin-bottom: 15px;
}

.cta-box a {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-box a:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-article {
        padding: 20px;
    }
    
    .blog-article h2 {
        font-size: 1.5rem;
    }
}

/* License Plate */
.license-plate-area {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -15px;
    margin-bottom: 5px;
    z-index: 20;
    position: relative;
}

.plate-badge {
    background: #ffcc00;
    color: #000;
    font-family: 'Courier New', monospace;
    font-weight: 900;
    padding: 2px 8px;
    border: 2px solid #000;
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    transform: rotate(-2deg);
}

/* Pit Stop Notification */
.pit-stop-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--hf-purple);
    border-left: 5px solid var(--hf-purple);
    padding: 15px;
    border-radius: 8px;
    color: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
}

.pit-stop-notification.active {
    transform: translateX(0);
}

.pit-stop-icon {
    font-size: 1.5rem;
}

.pit-stop-content h4 {
    color: var(--hf-lilac);
    font-size: 0.8rem;
    margin-bottom: 2px;
    font-family: 'Racing Sans One', cursive;
}

.pit-stop-content p {
    font-size: 0.85rem;
    color: #ddd;
    line-height: 1.3;
}

/* --- Flip Card Styles --- */
.blister-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.blister-pack.flipped .blister-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    top: 0;
    left: 0;
}

.card-front {
    position: relative;
    z-index: 2;
}

.card-back {
    position: absolute;
}

.card-back {
    position: absolute;
    transform: rotateY(180deg);
    /* Match Front Card Background */
    background: linear-gradient(135deg, var(--hf-purple) 0%, var(--hf-dark) 100%);
    border-radius: 20px 20px 10px 10px;
    border: 2px solid var(--hf-lilac);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: inset 0 0 60px rgba(0,0,0,0.5), 0 0 15px rgba(106, 13, 173, 0.3);
    overflow: hidden;
}

/* Holographic Sticker */
.holo-sticker {
    width: 60px;
    height: 60px;
    /* Shiny Silver/Chrome Gradient */
    background: linear-gradient(135deg, #f0f0f0 0%, #a0a0a0 50%, #f0f0f0 100%);
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #333;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    font-size: 0.65rem;
    text-align: center;
    line-height: 1.2;
    transform: rotate(5deg);
    overflow: hidden;
    border: 1px solid #fff;
}

.holo-sticker::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: rotate(45deg);
    animation: holo-shine 2s infinite linear;
}

@keyframes holo-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Barcode Area */
.barcode-area {
    background: white;
    padding: 5px;
    width: 100%;
    height: 40px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    opacity: 0.9;
}

.barcode-lines {
    height: 100%;
    width: 90%;
    background: repeating-linear-gradient(
        90deg,
        #000,
        #000 2px,
        #fff 2px,
        #fff 4px
    );
}

/* Watermark Logo */
.card-back::before {
    content: 'HF';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    z-index: 0;
    pointer-events: none;
    font-family: 'Racing Sans One', cursive;
}

.back-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.back-info-title {
    color: var(--hf-yellow);
    font-family: 'Racing Sans One', cursive;
    font-size: 1.1rem;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--hf-purple);
    padding-bottom: 5px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.back-info-title::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--hf-yellow);
    transform: rotate(45deg);
}

.back-info-text {
    color: #ddd;
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: left;
    width: 100%;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid var(--hf-lilac);
    margin-bottom: 10px;
}

/* Official License Hologram Effect */
.official-license {
    margin-top: auto;
    font-size: 0.6rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #444;
    padding: 5px 15px;
    border-radius: 20px;
    background: linear-gradient(135deg, #222 0%, #333 50%, #222 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.official-license::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: hologram 3s infinite linear;
}

@keyframes hologram {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* --- Turkish License Plate (Restored) --- */
.tr-plate {
    width: 220px;
    height: 55px;
    background: white;
    border: 2px solid black;
    border-radius: 4px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    margin: 15px 0;
    position: relative;
    transform: translateZ(30px); /* Pop out */
}

.tr-blue-stripe {
    width: 45px;
    height: 100%;
    background: #003399;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 4px;
    color: white;
    font-weight: bold;
    font-size: 10px;
    border-right: 1px solid black;
}

.tr-text {
    flex-grow: 1;
    text-align: center;
    font-family: 'Oswald', sans-serif; /* Fallback to sans-serif if not loaded */
    font-size: 28px;
    font-weight: 900;
    color: black;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
}

/* =============================================
   � MOBİL OPTİMİZASYON v3.0 - HIGH END / PREMIUM
   ============================================= */

@media (max-width: 768px) {
    
    /* === GLOBAL PREMIUM FEEL === */
    html, body {
        overflow-x: hidden !important;
        background-color: #050505; /* Derin siyah, koyu mor yerine */
    }

    /* === HEADER - Gelişmiş Glassmorphism === */
    .header {
        height: 70px;
        background: rgba(0, 0, 0, 0.6) !important;
        backdrop-filter: blur(25px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0 20px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-img {
        height: 48px !important; /* Logoyu daha belirgin yap */
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    }

    .cart-btn {
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* === RACING BANNER - Minimalist === */
    .racing-banner {
        height: 30px !important;
        font-size: 0.7rem !important;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    /* === HERO SECTION - Magazine Style === */
    .hero {
        padding-top: 140px !important;
        padding-bottom: 60px !important;
        min-height: 85vh !important; /* Neredeyse tam ekran */
        display: flex;
        align-items: center;
        background: radial-gradient(circle at center, #1a0524 0%, #000000 70%) !important;
    }

    .hero-content {
        width: 100% !important;
        padding: 0 25px !important;
        text-align: left !important; /* Soldan hizalı modern tipografi */
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .hero h2 {
        font-size: 3rem !important; /* Çok büyük başlık */
        line-height: 0.95 !important;
        font-weight: 800;
        letter-spacing: -1px;
        margin-bottom: 20px !important;
        text-transform: uppercase;
        background: linear-gradient(to bottom, #fff, #aaa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero h2 span {
        font-size: 1.2rem !important;
        display: block !important;
        color: var(--hf-yellow);
        -webkit-text-fill-color: var(--hf-yellow);
        letter-spacing: 2px;
        font-weight: 400;
        margin-bottom: 10px !important;
    }

    .hero p {
        font-size: 1.1rem !important;
        color: rgba(255, 255, 255, 0.7);
        max-width: 80%;
        margin-bottom: 40px !important;
        line-height: 1.4;
    }

    .btn-primary {
        width: auto !important;
        display: inline-block !important;
        padding: 18px 40px !important;
        font-size: 1rem !important;
        font-weight: 700;
        letter-spacing: 1px;
        background: var(--hf-yellow) !important;
        color: #000 !important;
        border: none !important;
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3) !important;
        transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    
    .btn-primary:active {
        transform: scale(0.95);
    }

    /* === PRODUCTS GRID - Showcase Modu === */
    .section-title {
        font-size: 2.5rem !important;
        text-align: left !important;
        padding-left: 20px;
        margin-bottom: 50px !important;
        color: #fff;
    }

    .products-grid {
        display: flex !important;
        flex-direction: column;
        gap: 80px !important; /* Ürünler arası devasa boşluk */
        padding-bottom: 100px;
    }

    .product-card {
        transform: none !important;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    /* Kartı Mobil Ekrana Mükemmel Oranla */
    .blister-pack {
        transform: scale(0.9) !important; /* Biraz daha büyük */
        margin: 0 auto !important;
        box-shadow: 0 20px 50px rgba(0,0,0,0.6) !important;
    }

    .product-info {
        margin-top: 30px !important;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }

    .product-name {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }

    .product-price {
        font-size: 1.3rem !important;
        color: var(--hf-yellow);
        font-weight: 700;
    }

    .btn-buy-now {
        margin-top: 15px !important;
        background: transparent !important;
        border: 2px solid rgba(255,255,255,0.2) !important;
        width: 100% !important;
        padding: 15px !important;
    }

    /* === DETAY SAYFASI - App Hissi === */
    .product-detail-page {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2000;
        background: #000;
        overflow-y: auto; /* Kendi scroll'u olsun */
        padding-top: 80px !important;
        padding-bottom: 120px !important; /* Alt bar için boşluk */
    }

    .detail-garage-container {
        display: flex;
        flex-direction: column;
        gap: 40px !important;
        padding: 0 20px !important;
    }

    .detail-left {
        height: 480px !important; /* 3D Kart için sabit alan */
        display: flex;
        align-items: center;
        justify-content: center;
        perspective: 1000px;
        /* Blur arkası efekti */
        background: radial-gradient(circle, rgba(106, 13, 173, 0.2) 0%, rgba(0,0,0,0) 70%);
    }

    .detail-left .blister-pack {
        transform: scale(0.85) !important;
        margin: 0 !important;
    }

    .detail-right {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

    .detail-title {
        font-size: 2.2rem !important;
        line-height: 1.1;
        margin-bottom: 10px !important;
    }

    .detail-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .big-price {
        font-size: 2.5rem !important;
        color: var(--hf-yellow);
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    
    .story-box {
        background: rgba(255, 255, 255, 0.05) !important;
        border-left: 4px solid var(--hf-purple);
        padding: 20px !important;
        margin: 20px 0 !important;
    }

    /* === STICKY BOTTOM ACTION BAR (EN ÖNEMLİ DEĞİŞİKLİK) === */
    .action-area {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px 20px 30px 20px; /* iPhone home bar için extra padding */
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 2001;
        display: flex;
        flex-direction: row !important; /* Yan yana */
        gap: 15px !important;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    }

    /* CUSTOM PLATE GİRİŞİ STICKY BAR'IN ÜSTÜNE TAŞINSIN */
    .custom-plate-option {
        margin-bottom: 20px !important;
        background: #111;
        border: 1px solid #333;
    }

    /* SATIN AL BUTONU - TAM APP TARZI */
    .buy-btn {
        flex: 2 !important;
        background: var(--hf-yellow) !important;
        color: #000 !important;
        font-weight: 800;
        font-size: 1.1rem !important;
        padding: 18px !important;
        border-radius: 12px !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2) !important;
    }

    .back-btn {
        flex: 1 !important;
        background: rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
        font-size: 0.9rem !important;
        border-radius: 12px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* === DİĞER DETAYLAR === */
    .features-list li {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
        padding-left: 30px !important;
    }

    .related-section {
        margin-bottom: 150px !important; /* Sticky bar altında kalmasın */
    }
}

/* === KÜÇÜK EKRANLAR İÇİN DÜZELTMELER === */
@media (max-width: 375px) {
    .detail-left .blister-pack {
        transform: scale(0.75) !important;
    }
    
    .hero h2 {
        font-size: 2.4rem !important;
    }
}


/* =============================================
   💎 MOBİL OPTİMİZASYON v3.1 - SADE & ŞIK & İŞLEVSEL
   ============================================= */

@media (max-width: 768px) {
    
    /* === GLOBAL DÜZEN === */
    html, body {
        overflow-x: hidden !important;
        background-color: #050505;
        background-image: none !important; /* Mobilde karmaşık arka planı kaldır */
    }

    /* === HEADER & NAVIGATION === */
    .header {
        height: 65px;
        background: rgba(5, 5, 5, 0.95) !important;
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 0 !important;
    }

    .header-content-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px !important;
        width: 100% !important;
    }

    /* Hamburger Menu Button */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1002;
    }

    .hamburger .bar, 
    .hamburger .bar2 {
        display: block;
        height: 2px;
        width: 100%;
        background-color: white;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .hamburger .bar {
        transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active .bar2 {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Logo - İstenildiği gibi BÜYÜK */
    .logo-img {
        height: 50px !important;
        filter: drop-shadow(0 0 8px rgba(106, 13, 173, 0.5));
    }

    /* Sepet İkonu */
    .mobile-cart-icon {
        font-size: 1.2rem;
        width: 30px;
        text-align: right;
    }

    /* Mobile Menu Drawer */
    .nav {
        position: fixed;
        top: 65px; /* Header yüksekliği */
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: #050505;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex !important;
        border-right: 1px solid rgba(255,255,255,0.05);
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        font-size: 1.5rem !important;
        margin: 20px 0 !important;
        opacity: 0.8;
        padding-left: 30px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .nav a:hover {
        opacity: 1;
        color: var(--hf-yellow);
        padding-left: 40px; /* Hover efekti */
        transition: all 0.3s ease;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* === HERO SECTION - Sadeleştirilmiş === */
    .hero {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
        min-height: auto !important;
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, #0d0010 100%) !important;
    }

    .hero-bg-effect, .hero-scattered-packs {
        display: none !important; /* Karmaşıklığı azaltmak için arka plan öğelerini gizle */
    }

    .hero-content {
        width: 90% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
        background: transparent !important;
        border: none !important;
    }

    .hero h2 {
        font-size: 2.2rem !important; /* Çok büyük olmasın, şık olsun */
        line-height: 1.1 !important;
        margin-bottom: 15px !important;
    }

    .hero h2 span {
        font-size: 1rem !important;
        letter-spacing: 3px;
        margin-bottom: 15px !important;
        display: block;
    }

    .hero p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        color: #aaa;
        margin-bottom: 30px !important;
    }

    .btn-primary {
        width: 100% !important;
        padding: 15px !important;
    }

    /* === ÜRÜN KARTLARI - Daha Derli Toplu === */
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
        padding-left: 20px;
        text-align: left !important;
    }

    .products-grid {
        grid-template-columns: 1fr !important; /* Tek sütun */
        gap: 40px !important;
        padding: 0 20px !important;
    }

    .product-card {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05); /* Ayırıcı çizgi */
    }

    /* Blister Pack Boyutu - Optimize Edildi */
    .blister-pack {
        max-width: 280px !important; /* Çok büyük değil, ideal */
        margin: 0 auto !important;
        transform: none !important;
    }

    .product-name {
        font-size: 1.2rem !important;
        margin-top: 15px !important;
    }

    .price-tag {
        font-size: 1.2rem !important;
    }

    /* === DETAY SAYFASI - Gereksiz Büyüklük Yok === */
    .product-detail-page {
        padding-top: 70px !important;
        background: #080808;
    }

    .detail-garage-container {
        padding: 0 15px !important;
        gap: 25px !important;
    }

    .detail-left {
        /* Kart Sunumu */
        height: 380px !important; /* Yüksekliği azalttık */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .detail-left .blister-pack {
        transform: scale(0.75) !important; /* Kartı ekrana sığdır */
        margin: 0 !important;
    }

    .detail-right {
        padding-bottom: 100px !important; /* Alt bar için */
    }

    .detail-title {
        font-size: 1.8rem !important; /* Dev başlık yerine şık başlık */
        text-align: left !important;
        margin-bottom: 5px !important;
    }

    .detail-meta {
        justify-content: flex-start !important;
        margin-bottom: 15px !important;
    }

    .big-price {
        font-size: 2rem !important; /* Abartılı değil */
        text-align: left !important;
        color: var(--hf-yellow);
    }
    
    .detail-price-box {
        align-items: flex-start !important;
        margin-bottom: 25px !important;
        flex-direction: column !important;
        gap: 5px !important;
    }

    .story-box {
        padding: 15px !important;
        background: rgba(255,255,255,0.03) !important;
        border-radius: 12px;
        margin-bottom: 25px !important;
    }
    
    .story-text {
        font-size: 0.9rem !important;
        line-height: 1.5;
    }

    .features-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* === STICKY ALT BAR - İşlevsel === */
    .action-area {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 12px 15px 25px 15px; /* Alt boşluk iPhone gesture bar için */
        background: rgba(15, 15, 15, 0.95);
        border-top: 1px solid rgba(255,255,255,0.1);
        display: flex;
        gap: 10px !important;
        z-index: 999;
    }

    .back-btn {
        flex: 1 !important;
        padding: 0 !important;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem !important; /* Sadece ok */
    }

    .buy-btn {
        flex: 4 !important;
        margin: 0 !important;
        height: 50px;
        font-size: 1rem !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Plaka girişi sticky barın üzerinde */
    .custom-plate-option {
        margin-bottom: 10px !important;
        border: 1px dashed rgba(255,255,255,0.2);
        background: transparent;
    }
}

/* =============================================
   🔥 MOBİL v4.0 - BÜYÜK LOGO & TAM MOBİL UX
   ============================================= */

@media (max-width: 768px) {
    
    /* ========== HEADER - WEB'E YAKIN BÜYÜK LOGO ========== */
    .header {
        height: 80px !important;
        padding: 0 15px !important;
        background: rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
    }

    .header .container,
    .header-content-wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 100% !important;
        padding: 0 !important;
        max-width: 100% !important;
    }

    /* LOGO - WEB GİBİ BÜYÜK */
    .logo-img {
        height: 65px !important;
        width: auto !important;
        filter: drop-shadow(0 0 15px rgba(106, 13, 173, 0.6)) !important;
    }

    /* Hamburger Menü */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 6px !important;
        width: 32px !important;
        height: 32px !important;
        cursor: pointer !important;
        z-index: 10001 !important;
        order: -1 !important;
    }

    .hamburger .bar,
    .hamburger .bar2 {
        display: block !important;
        height: 3px !important;
        width: 100% !important;
        background: #fff !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }

    .hamburger.active .bar:first-child {
        transform: rotate(45deg) translate(6px, 6px) !important;
    }
    .hamburger.active .bar2 {
        opacity: 0 !important;
    }
    .hamburger.active .bar:last-child {
        transform: rotate(-45deg) translate(6px, -6px) !important;
    }

    /* Mobil Menü */
    .nav {
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background: rgba(0, 0, 0, 0.98) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding-top: 60px !important;
        gap: 30px !important;
        transform: translateX(-100%) !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        z-index: 9998 !important;
    }

    .nav.active {
        transform: translateX(0) !important;
    }

    .nav a {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        color: #fff !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        width: 80% !important;
        text-align: center !important;
    }

    .mobile-cart-icon {
        font-size: 1.5rem !important;
        order: 1 !important;
    }

    /* Racing Banner */
    .racing-banner {
        display: none !important;
    }

    /* ========== HERO SEKSİYONU ========== */
    .hero {
        padding-top: 100px !important;
        padding-bottom: 50px !important;
        min-height: auto !important;
    }

    .hero-bg-effect,
    .hero-scattered-packs {
        display: none !important;
    }

    .hero-content {
        width: 92% !important;
        margin: 0 auto !important;
        padding: 30px 20px !important;
        background: linear-gradient(145deg, rgba(26,5,32,0.9), rgba(0,0,0,0.95)) !important;
        border-radius: 24px !important;
        border: 1px solid rgba(106, 13, 173, 0.3) !important;
        text-align: center !important;
    }

    .hero h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .hero h2 span {
        font-size: 0.9rem !important;
        display: block !important;
        margin-bottom: 10px !important;
    }

    .hero p {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
        color: #ccc !important;
    }

    .btn-primary {
        width: 100% !important;
        padding: 18px !important;
        font-size: 1.1rem !important;
        border-radius: 14px !important;
    }

    /* ========== ÜRÜN KARTLARI ========== */
    .products-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 35px !important;
        padding: 0 15px !important;
    }

    .blister-pack {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        transform: none !important;
    }

    .section-title {
        font-size: 1.6rem !important;
        text-align: center !important;
        margin-bottom: 30px !important;
        padding: 0 !important;
    }

    /* ========== ÜRÜN DETAY SAYFASI - TAM YENİDEN ========== */
    .product-detail-page {
        padding-top: 90px !important;
        padding-bottom: 0 !important;
        min-height: 100vh !important;
        background: #0a0a0a !important;
    }

    .detail-garage-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
    }

    /* Kart Gösterim Alanı */
    .detail-left {
        width: 100% !important;
        height: 350px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: linear-gradient(180deg, rgba(106,13,173,0.15) 0%, transparent 100%) !important;
        padding: 20px !important;
    }

    .detail-left .blister-pack {
        transform: scale(0.72) !important;
        margin: 0 !important;
    }

    /* Bilgi Alanı */
    .detail-right {
        padding: 25px 20px 150px 20px !important;
        background: transparent !important;
        border: none !important;
    }

    .detail-meta {
        display: flex !important;
        gap: 10px !important;
        margin-bottom: 15px !important;
    }

    .meta-badge {
        font-size: 0.7rem !important;
        padding: 5px 10px !important;
    }

    .detail-title {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
        text-align: left !important;
    }

    .stock-warning {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
    }

    .detail-price-box {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin-bottom: 20px !important;
        padding: 15px !important;
        background: rgba(255,255,255,0.03) !important;
        border-radius: 12px !important;
    }

    .big-price {
        font-size: 2.2rem !important;
        color: var(--hf-yellow, #ffd700) !important;
        font-weight: 800 !important;
    }

    .story-box {
        padding: 15px !important;
        margin-bottom: 20px !important;
        background: rgba(255,255,255,0.02) !important;
        border-radius: 12px !important;
        border-left: 3px solid var(--hf-purple, #6A0DAD) !important;
    }

    .story-box h3 {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }

    .story-text {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        color: #bbb !important;
    }

    /* Plaka Giriş Alanı */
    .custom-plate-option {
        padding: 15px !important;
        margin-bottom: 15px !important;
        background: rgba(255,255,255,0.03) !important;
        border: 1px dashed rgba(255,255,255,0.15) !important;
        border-radius: 12px !important;
    }

    .custom-plate-option label {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
        display: block !important;
    }

    .custom-plate-option input {
        width: 100% !important;
        padding: 14px !important;
        font-size: 1.1rem !important;
        border-radius: 10px !important;
        background: #111 !important;
        border: 1px solid #333 !important;
        color: #fff !important;
        text-align: center !important;
        text-transform: uppercase !important;
    }

    /* ========== SABİT ALT BAR ========== */
    .action-area {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 15px 20px !important;
        padding-bottom: calc(15px + env(safe-area-inset-bottom, 20px)) !important;
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
        display: flex !important;
        gap: 12px !important;
        z-index: 9997 !important;
    }

    .back-btn {
        flex: 0 0 60px !important;
        height: 54px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255,255,255,0.1) !important;
        border: none !important;
        border-radius: 12px !important;
        color: #fff !important;
        font-size: 1.3rem !important;
    }

    .buy-btn {
        flex: 1 !important;
        height: 54px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        background: linear-gradient(135deg, #ffd700, #ffaa00) !important;
        color: #000 !important;
        font-weight: 800 !important;
        font-size: 1rem !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        border: none !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3) !important;
    }

    /* Özellikler Listesi */
    .detail-features-box {
        margin-bottom: 20px !important;
    }

    .detail-features-box ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .detail-features-box li {
        font-size: 0.9rem !important;
        padding: 10px !important;
        background: rgba(255,255,255,0.02) !important;
        border-radius: 8px !important;
    }

    /* WhatsApp Butonu */
    .whatsapp-float {
        bottom: 100px !important;
        right: 15px !important;
        z-index: 9996 !important;
    }

    /* Footer */
    .footer {
        padding-bottom: 120px !important;
    }
}

/* iPhone SE ve küçük ekranlar */
@media (max-width: 375px) {
    .logo-img {
        height: 55px !important;
    }
    
    .detail-left {
        height: 300px !important;
    }
    
    .detail-left .blister-pack {
        transform: scale(0.65) !important;
    }
    
    .big-price {
        font-size: 1.8rem !important;
    }
    
    .detail-title {
        font-size: 1.4rem !important;
    }
}

/* =============================================
   🏠 MOBİL v4.1 - ANASAYFA & HEADER GELİŞTİRME
   ============================================= */

@media (max-width: 768px) {

    /* ========== HEADER - DAHA DA BÜYÜK LOGO ========== */
    .header {
        height: 90px !important;
        padding: 0 20px !important;
        background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border-bottom: 1px solid rgba(106, 13, 173, 0.3) !important;
    }

    /* LOGO - WEB'DEKİ GİBİ ÇOK BÜYÜK */
    .logo-img {
        height: 75px !important;
        width: auto !important;
        filter: drop-shadow(0 0 20px rgba(106, 13, 173, 0.7)) drop-shadow(0 0 40px rgba(106, 13, 173, 0.3)) !important;
        transition: transform 0.3s ease !important;
    }

    .logo-img:active {
        transform: scale(0.95) !important;
    }

    /* Hamburger - Daha Belirgin */
    .hamburger {
        width: 36px !important;
        height: 36px !important;
        padding: 6px !important;
        background: rgba(255,255,255,0.05) !important;
        border-radius: 10px !important;
        gap: 7px !important;
    }

    .hamburger .bar,
    .hamburger .bar2 {
        height: 3px !important;
        background: linear-gradient(90deg, #fff, #C8A2C8) !important;
        border-radius: 3px !important;
    }

    /* Mobile Cart Icon */
    .mobile-cart-icon {
        font-size: 1.6rem !important;
        background: rgba(255,255,255,0.05) !important;
        padding: 8px 12px !important;
        border-radius: 10px !important;
    }

    /* Menü - Daha Şık */
    .nav {
        top: 90px !important;
        height: calc(100vh - 90px) !important;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a0520 100%) !important;
        padding-top: 50px !important;
    }

    .nav a {
        font-size: 1.6rem !important;
        padding: 20px 0 !important;
        width: 85% !important;
        border-bottom: 1px solid rgba(106, 13, 173, 0.2) !important;
        transition: all 0.3s ease !important;
    }

    .nav a:active {
        background: rgba(106, 13, 173, 0.2) !important;
        border-radius: 12px !important;
    }

    /* ========== HERO - ANASAYFA TAM YENİDEN ========== */
    .hero {
        padding-top: 110px !important;
        padding-bottom: 60px !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: 
            radial-gradient(ellipse at top, rgba(106, 13, 173, 0.2) 0%, transparent 50%),
            radial-gradient(ellipse at bottom, rgba(200, 162, 200, 0.1) 0%, transparent 50%),
            linear-gradient(180deg, #050505 0%, #0d0010 50%, #050505 100%) !important;
    }

    .hero-content {
        width: 90% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        padding: 40px 25px !important;
        background: linear-gradient(145deg, rgba(20,5,25,0.95), rgba(5,5,5,0.98)) !important;
        border-radius: 28px !important;
        border: 1px solid rgba(106, 13, 173, 0.4) !important;
        box-shadow: 
            0 25px 50px rgba(0,0,0,0.5),
            0 0 100px rgba(106, 13, 173, 0.15),
            inset 0 1px 0 rgba(255,255,255,0.05) !important;
        text-align: center !important;
    }

    .hero h2 {
        font-size: 2.4rem !important;
        line-height: 1.1 !important;
        margin-bottom: 12px !important;
        background: linear-gradient(180deg, #fff 0%, #C8A2C8 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    .hero h2 span {
        font-size: 0.85rem !important;
        display: block !important;
        margin-bottom: 15px !important;
        color: var(--hf-yellow, #ffd700) !important;
        -webkit-text-fill-color: var(--hf-yellow, #ffd700) !important;
        letter-spacing: 4px !important;
        text-transform: uppercase !important;
    }

    .hero p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
        color: #aaa !important;
        padding: 0 10px !important;
    }

    .btn-primary {
        width: 100% !important;
        padding: 20px 30px !important;
        font-size: 1.15rem !important;
        font-weight: 700 !important;
        border-radius: 16px !important;
        background: linear-gradient(135deg, var(--hf-yellow, #ffd700) 0%, #ffaa00 100%) !important;
        color: #000 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3) !important;
        border: none !important;
        transition: all 0.3s ease !important;
    }

    .btn-primary:active {
        transform: scale(0.97) !important;
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4) !important;
    }

    /* ========== ÜRÜNLER SEKSİYONU ========== */
    #products {
        padding: 60px 0 !important;
        background: linear-gradient(180deg, #0d0010 0%, #050505 100%) !important;
    }

    .section-title {
        font-size: 1.8rem !important;
        text-align: center !important;
        margin-bottom: 40px !important;
        padding: 0 20px !important;
        background: linear-gradient(180deg, #fff 0%, #C8A2C8 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    .products-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        padding: 0 20px !important;
    }

    /* Ürün Kartları */
    .blister-pack {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        transform: none !important;
        box-shadow: 
            0 20px 40px rgba(0,0,0,0.4),
            0 0 60px rgba(106, 13, 173, 0.1) !important;
        transition: transform 0.3s ease !important;
    }

    .blister-pack:active {
        transform: scale(0.98) !important;
    }

    .product-name {
        font-size: 1.1rem !important;
        margin-top: 15px !important;
        text-align: center !important;
    }

    .price-tag {
        font-size: 1.2rem !important;
        color: var(--hf-yellow, #ffd700) !important;
        font-weight: 700 !important;
    }

    .btn-buy-now {
        width: 100% !important;
        padding: 14px !important;
        margin-top: 10px !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
    }

    /* ========== HAKKINDA / STORY SEKSİYONU ========== */
    #about, .about-section {
        padding: 60px 20px !important;
        background: linear-gradient(180deg, #050505 0%, #0a0510 100%) !important;
    }

    .about-content {
        text-align: center !important;
    }

    .about-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }

    .about-content p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        color: #bbb !important;
    }

    /* ========== YORUMLAR ========== */
    .reviews-section {
        padding: 60px 0 !important;
        background: #050505 !important;
    }

    .reviews-track {
        gap: 15px !important;
        padding: 0 15px !important;
    }

    .review-card {
        min-width: 280px !important;
        padding: 20px !important;
        background: rgba(255,255,255,0.03) !important;
        border-radius: 16px !important;
        border: 1px solid rgba(255,255,255,0.05) !important;
    }

    .review-text {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    /* ========== FOOTER ========== */
    .footer {
        padding: 50px 20px 130px 20px !important;
        background: linear-gradient(180deg, #0a0510 0%, #000 100%) !important;
    }

    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 35px !important;
        text-align: center !important;
    }

    .footer-col h4 {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
        color: var(--hf-yellow, #ffd700) !important;
    }

    .footer-col p,
    .footer-col a {
        font-size: 0.95rem !important;
        color: #888 !important;
    }

    .footer-logo {
        height: 60px !important;
        margin-bottom: 15px !important;
    }

    .footer-bottom {
        margin-top: 30px !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
        font-size: 0.85rem !important;
        color: #666 !important;
    }

    /* ========== PIT STOP BİLDİRİMLERİ ========== */
    .pit-stop-notification {
        bottom: 100px !important;
        left: 15px !important;
        right: 15px !important;
        max-width: none !important;
        border-radius: 14px !important;
        padding: 15px 20px !important;
        font-size: 0.9rem !important;
        background: rgba(0,0,0,0.95) !important;
        border: 1px solid rgba(106, 13, 173, 0.3) !important;
    }

    /* ========== SCROLL DAVRANIŞI ========== */
    html {
        scroll-behavior: smooth !important;
    }

    /* Touch Feedback */
    a, button, .blister-pack, .review-card {
        -webkit-tap-highlight-color: transparent !important;
    }
}

/* ========== KÜÇÜK EKRANLAR (iPhone SE) ========== */
@media (max-width: 375px) {
    .header {
        height: 80px !important;
        padding: 0 15px !important;
    }

    .logo-img {
        height: 60px !important;
    }

    .nav {
        top: 80px !important;
        height: calc(100vh - 80px) !important;
    }

    .hero {
        padding-top: 100px !important;
    }

    .hero-content {
        padding: 30px 20px !important;
    }

    .hero h2 {
        font-size: 2rem !important;
    }

    .blister-pack {
        max-width: 260px !important;
    }
}

/* =============================================
   🔥 MOBİL v4.2 - BİLDİRİM GİZLE & BÜYÜK LOGO
   ============================================= */

@media (max-width: 768px) {
    
    /* BİLDİRİMLERİ TAMAMEN GİZLE */
    .pit-stop-notification {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* LOGO - DAHA DA BÜYÜK (WEB GİBİ) */
    .logo-img {
        height: 85px !important;
        width: auto !important;
        filter: drop-shadow(0 0 25px rgba(106, 13, 173, 0.8)) drop-shadow(0 0 50px rgba(106, 13, 173, 0.4)) !important;
    }

    /* Header yüksekliğini logoya göre ayarla */
    .header {
        height: 100px !important;
    }

    /* Menü pozisyonunu güncelle */
    .nav {
        top: 100px !important;
        height: calc(100vh - 100px) !important;
    }

    /* Hero padding güncelle */
    .hero {
        padding-top: 120px !important;
    }

    /* Detay sayfası padding güncelle */
    .product-detail-page {
        padding-top: 110px !important;
    }
}

@media (max-width: 375px) {
    .logo-img {
        height: 70px !important;
    }
    
    .header {
        height: 85px !important;
    }
    
    .nav {
        top: 85px !important;
        height: calc(100vh - 85px) !important;
    }
    
    .hero {
        padding-top: 105px !important;
    }
}

/* =============================================
   🔥 MOBİL v4.3 - WHATSAPP POZİSYON & HEADER FIX
   ============================================= */

@media (max-width: 768px) {
    
    /* WHATSAPP BUTONUNU DAHA AŞAĞIYA AL */
    .whatsapp-float {
        bottom: 20px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
        z-index: 9990 !important;
    }

    .whatsapp-icon {
        width: 26px !important;
        height: 26px !important;
    }

    /* ========== HEADER - TEMİZ TASARIM ========== */
    .header {
        height: 85px !important;
        background: linear-gradient(180deg, 
            rgba(10, 0, 20, 0.98) 0%,
            rgba(30, 10, 50, 0.95) 100%) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(255, 0, 128, 0.3) !important;
        box-shadow: 0 4px 30px rgba(255, 0, 128, 0.2) !important;
        padding: 0 15px !important;
        display: flex !important;
        align-items: center !important;
    }

    .header-content-wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
    }

    /* LOGO - ORTALANMIŞ VE BÜYÜK */
    .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .logo-img {
        height: 70px !important;
        width: auto !important;
        filter: drop-shadow(0 0 15px rgba(255, 0, 128, 0.6)) !important;
        transition: all 0.3s ease !important;
    }

    /* HAMBURGER MENU - SOL TARAF */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        cursor: pointer !important;
        z-index: 1001 !important;
        padding: 10px !important;
        position: relative !important;
        left: 0 !important;
    }

    .hamburger .bar,
    .hamburger .bar2 {
        width: 26px !important;
        height: 3px !important;
        background: linear-gradient(90deg, #ff0080, #ff6b00) !important;
        border-radius: 3px !important;
        transition: all 0.3s ease !important;
    }

    /* SEPET İKONU - SAĞ TARAF */
    .mobile-cart-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.5rem !important;
        z-index: 1001 !important;
        padding: 10px !important;
    }

    /* NAV MENÜ */
    .nav {
        position: fixed !important;
        top: 85px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 85px) !important;
        background: linear-gradient(180deg, 
            rgba(15, 0, 30, 0.98) 0%,
            rgba(20, 5, 40, 0.98) 100%) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding-top: 40px !important;
        gap: 0 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 999 !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
    }

    .nav.active {
        transform: translateX(0) !important;
    }

    .nav-link {
        font-size: 1.3rem !important;
        padding: 20px 30px !important;
        border-bottom: 1px solid rgba(255, 0, 128, 0.15) !important;
        text-align: left !important;
        width: 100% !important;
        color: white !important;
        transition: all 0.3s ease !important;
    }

    .nav-link:hover,
    .nav-link:active {
        background: linear-gradient(90deg, rgba(255, 0, 128, 0.2), transparent) !important;
        padding-left: 40px !important;
    }

    /* HERO BÖLÜMÜ DÜZELTMESİ */
    .hero {
        padding-top: 105px !important;
    }

    /* Racing Banner */
    .racing-banner {
        font-size: 0.75rem !important;
        padding: 8px 10px !important;
    }

    .urgency-text {
        font-size: 0.7rem !important;
    }

    .countdown {
        font-size: 0.85rem !important;
    }
}

/* iPhone SE ve küçük ekranlar */
@media (max-width: 375px) {
    .whatsapp-float {
        bottom: 15px !important;
        right: 10px !important;
        width: 45px !important;
        height: 45px !important;
    }

    .whatsapp-icon {
        width: 22px !important;
        height: 22px !important;
    }

    .header {
        height: 75px !important;
    }

    .logo-img {
        height: 55px !important;
    }

    .nav {
        top: 75px !important;
        height: calc(100vh - 75px) !important;
    }

    .hero {
        padding-top: 95px !important;
    }
}

/* =============================================
   🔥 MOBİL v4.4 - ESKİ HEADER + BÜYÜK LOGO
   ============================================= */

@media (max-width: 768px) {
    
    /* HEADER - ORİJİNAL TASARIM */
    .header {
        background: linear-gradient(180deg, #000 0%, #0a0014 100%) !important;
        border-bottom: 4px solid #6a0dad !important;
        box-shadow: 0 5px 20px rgba(106, 13, 173, 0.4) !important;
        height: 80px !important;
        padding: 5px 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .header-content-wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        height: 100% !important;
        padding: 0 15px !important;
        position: relative !important;
    }

    /* LOGO - BÜYÜK VE ORTADA */
    .logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 1001 !important;
    }

    .logo-img {
        height: 100px !important;
        width: auto !important;
        filter: drop-shadow(0 5px 15px rgba(106, 13, 173, 0.6)) !important;
    }

    /* HAMBURGER - SOL */
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        z-index: 1002 !important;
        padding: 10px !important;
    }

    .hamburger .bar,
    .hamburger .bar2 {
        width: 28px !important;
        height: 3px !important;
        background: #6a0dad !important;
        border-radius: 3px !important;
    }

    /* SEPET - SAĞ */
    .mobile-cart-icon {
        font-size: 1.5rem !important;
        z-index: 1002 !important;
        padding: 10px !important;
    }

    /* NAV MENÜ */
    .nav {
        top: 80px !important;
        height: calc(100vh - 80px) !important;
        background: linear-gradient(180deg, #0a0014 0%, #1a0a2e 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* HERO */
    .hero {
        padding-top: 140px !important;
    }

    /* WHATSAPP - AŞAĞIDA */
    .whatsapp-float {
        bottom: 20px !important;
        right: 15px !important;
    }
}

@media (max-width: 375px) {
    .header {
        height: 70px !important;
    }

    .logo-img {
        height: 80px !important;
    }

    .nav {
        top: 70px !important;
        height: calc(100vh - 70px) !important;
    }

    .hero {
        padding-top: 130px !important;
    }
}

/* =============================================
   🔥 MOBİL v4.5 - HAMBURGER SAĞDA & SEPET YOK
   ============================================= */

@media (max-width: 768px) {
    
    /* SEPET İKONUNU GİZLE */
    .mobile-cart-icon,
    .cart-icon {
        display: none !important;
    }

    /* HAMBURGER - SAĞDA */
    .hamburger {
        order: 3 !important;
        position: absolute !important;
        right: 15px !important;
        left: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        z-index: 1002 !important;
        padding: 12px !important;
        cursor: pointer !important;
    }

    .hamburger .bar,
    .hamburger .bar2 {
        width: 28px !important;
        height: 3px !important;
        background: linear-gradient(90deg, #6a0dad, #ff0080) !important;
        border-radius: 3px !important;
        transition: all 0.3s ease !important;
    }

    /* LOGO - SOLDA */
    .logo {
        position: absolute !important;
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1001 !important;
    }

    .logo-img {
        height: 90px !important;
        width: auto !important;
        filter: drop-shadow(0 5px 15px rgba(106, 13, 173, 0.6)) !important;
    }

    /* HEADER */
    .header {
        height: 75px !important;
    }

    .header-content-wrapper {
        position: relative !important;
        height: 100% !important;
    }

    /* NAV MENÜ */
    .nav {
        position: fixed !important;
        top: 75px !important;
        right: 0 !important;
        left: auto !important;
        width: 280px !important;
        height: calc(100vh - 75px) !important;
        background: linear-gradient(180deg, #0a0014 0%, #1a0a2e 100%) !important;
        flex-direction: column !important;
        padding-top: 30px !important;
        transform: translateX(100%) !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 999 !important;
        box-shadow: -5px 0 30px rgba(106, 13, 173, 0.3) !important;
    }

    .nav.active {
        transform: translateX(0) !important;
    }

    .nav-link {
        font-size: 1.2rem !important;
        padding: 18px 25px !important;
        border-bottom: 1px solid rgba(106, 13, 173, 0.2) !important;
        text-align: left !important;
        width: 100% !important;
        color: white !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .nav-link:hover,
    .nav-link:active {
        background: linear-gradient(90deg, rgba(106, 13, 173, 0.3), transparent) !important;
        border-left: 3px solid #ff0080 !important;
    }

    /* HERO */
    .hero {
        padding-top: 135px !important;
    }
}

@media (max-width: 375px) {
    .header {
        height: 65px !important;
    }

    .logo-img {
        height: 70px !important;
    }

    .nav {
        top: 65px !important;
        height: calc(100vh - 65px) !important;
        width: 100% !important;
    }

    .hero {
        padding-top: 125px !important;
    }
}

/* =============================================
   🔥 MOBİL v4.6 - HAMBURGER SAĞDA, MENÜ SOLDAN
   ============================================= */

@media (max-width: 768px) {
    
    /* HAMBURGER - SAĞDA */
    .hamburger {
        position: absolute !important;
        right: 15px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        z-index: 1002 !important;
        padding: 10px !important;
        cursor: pointer !important;
    }

    .hamburger .bar,
    .hamburger .bar2 {
        width: 26px !important;
        height: 3px !important;
        background: #6a0dad !important;
        border-radius: 3px !important;
        transition: all 0.3s ease !important;
    }

    /* LOGO - SOLDA */
    .logo {
        position: absolute !important;
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1001 !important;
    }

    .logo-img {
        height: 85px !important;
        width: auto !important;
        filter: drop-shadow(0 5px 15px rgba(106, 13, 173, 0.5)) !important;
    }

    /* HEADER */
    .header {
        height: 70px !important;
        background: linear-gradient(180deg, #000 0%, #0a0014 100%) !important;
        border-bottom: 4px solid #6a0dad !important;
        box-shadow: 0 5px 20px rgba(106, 13, 173, 0.4) !important;
    }

    /* NAV MENÜ - SOLDAN AÇILIR (ESKİ GİBİ) */
    .nav {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: auto !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: linear-gradient(180deg, #0a0014 0%, #1a0a2e 100%) !important;
        flex-direction: column !important;
        padding-top: 30px !important;
        transform: translateX(-100%) !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 999 !important;
        box-shadow: none !important;
    }

    .nav.active {
        transform: translateX(0) !important;
    }

    .nav-link {
        font-size: 1.2rem !important;
        padding: 18px 30px !important;
        border-bottom: 1px solid rgba(106, 13, 173, 0.2) !important;
        text-align: left !important;
        width: 100% !important;
        color: white !important;
    }

    .nav-link:hover,
    .nav-link:active {
        background: rgba(106, 13, 173, 0.2) !important;
    }

    /* HERO */
    .hero {
        padding-top: 130px !important;
    }
}

@media (max-width: 375px) {
    .header {
        height: 60px !important;
    }

    .logo-img {
        height: 65px !important;
    }

    .nav {
        top: 60px !important;
        height: calc(100vh - 60px) !important;
    }

    .hero {
        padding-top: 120px !important;
    }
}

/* =============================================
   🔥 MOBİL v4.7 - LOGO ORTADA & BÜYÜK
   ============================================= */

@media (max-width: 768px) {
    
    /* LOGO - ORTADA VE BÜYÜK */
    .logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 1001 !important;
    }

    .logo-img {
        height: 100px !important;
        width: auto !important;
        filter: drop-shadow(0 5px 20px rgba(106, 13, 173, 0.6)) !important;
    }

    /* HEADER - YÜKSEK */
    .header {
        height: 80px !important;
    }

    /* NAV MENÜ */
    .nav {
        top: 80px !important;
        height: calc(100vh - 80px) !important;
    }

    /* HERO */
    .hero {
        padding-top: 140px !important;
    }
}

@media (max-width: 375px) {
    .logo-img {
        height: 80px !important;
    }

    .header {
        height: 70px !important;
    }

    .nav {
        top: 70px !important;
        height: calc(100vh - 70px) !important;
    }

    .hero {
        padding-top: 130px !important;
    }
}

/* =============================================
   🔥 MOBİL v4.8 - ÜST BÖLÜM DÜZENLEME
   ============================================= */

@media (max-width: 768px) {
    
    /* RACING BANNER - TEMİZ */
    .racing-banner {
        height: 35px !important;
        padding: 0 10px !important;
        font-size: 0.75rem !important;
        justify-content: center !important;
        gap: 0 !important;
    }

    .racing-checks {
        display: none !important;
    }

    .banner-content {
        flex-direction: row !important;
        gap: 8px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .urgency-text {
        font-size: 0.7rem !important;
        white-space: nowrap !important;
    }

    .countdown {
        font-size: 0.75rem !important;
        padding: 2px 8px !important;
        letter-spacing: 1px !important;
    }

    /* HEADER - DÜZGÜN POZİSYON */
    .header {
        position: fixed !important;
        top: 35px !important;
        left: 0 !important;
        right: 0 !important;
        height: 75px !important;
        z-index: 1000 !important;
        display: flex !important;
        align-items: center !important;
        background: linear-gradient(180deg, #000 0%, #0a0014 100%) !important;
        border-bottom: 3px solid #6a0dad !important;
        box-shadow: 0 4px 15px rgba(106, 13, 173, 0.4) !important;
        padding: 0 !important;
    }

    .header-content-wrapper {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        padding: 0 15px !important;
    }

    /* LOGO - ORTADA, BÜYÜK */
    .logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 10 !important;
    }

    .logo-img {
        height: 95px !important;
        width: auto !important;
        max-width: 200px !important;
        object-fit: contain !important;
        filter: drop-shadow(0 4px 15px rgba(106, 13, 173, 0.5)) !important;
    }

    /* HAMBURGER - SAĞDA */
    .hamburger {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        z-index: 20 !important;
        padding: 10px !important;
        cursor: pointer !important;
    }

    .hamburger .bar,
    .hamburger .bar2 {
        width: 25px !important;
        height: 3px !important;
        background: #6a0dad !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }

    /* NAV MENÜ */
    .nav {
        position: fixed !important;
        top: 110px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 110px) !important;
        background: linear-gradient(180deg, #0a0014 0%, #1a0a2e 100%) !important;
        flex-direction: column !important;
        padding-top: 30px !important;
        gap: 0 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.35s ease !important;
        z-index: 998 !important;
        display: flex !important;
    }

    .nav.active {
        transform: translateX(0) !important;
    }

    .nav-link {
        display: block !important;
        font-size: 1.1rem !important;
        padding: 16px 25px !important;
        border-bottom: 1px solid rgba(106, 13, 173, 0.2) !important;
        color: white !important;
        text-decoration: none !important;
    }

    /* HERO BÖLÜMÜ */
    .hero {
        padding-top: 130px !important;
        margin-top: 0 !important;
    }

    /* BODY SCROLL */
    body {
        padding-top: 0 !important;
    }
}

@media (max-width: 375px) {
    .racing-banner {
        height: 30px !important;
    }

    .urgency-text {
        font-size: 0.6rem !important;
    }

    .countdown {
        font-size: 0.65rem !important;
    }

    .header {
        top: 30px !important;
        height: 65px !important;
    }

    .logo-img {
        height: 75px !important;
    }

    .nav {
        top: 95px !important;
        height: calc(100vh - 95px) !important;
    }

    .hero {
        padding-top: 115px !important;
    }
}

/* =============================================
   🔥 MOBİL v4.9 - SADECE BANNER & HERO DÜZELTMESİ
   ============================================= */

@media (max-width: 768px) {
    
    /* RACING BANNER - TEMİZ */
    .racing-banner {
        height: 32px !important;
        padding: 0 10px !important;
        font-size: 0.75rem !important;
        justify-content: center !important;
    }

    .racing-checks {
        display: none !important;
    }

    .banner-content {
        flex-direction: row !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .urgency-text {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
    }

    .countdown {
        font-size: 0.7rem !important;
        padding: 2px 6px !important;
    }

    /* HEADER - ESKİSİ GİBİ KORU */
    .header {
        top: 32px !important;
    }

    /* HERO - DÜZGÜN POZİSYON */
    .hero {
        padding-top: 130px !important;
    }
}

@media (max-width: 375px) {
    .racing-banner {
        height: 28px !important;
    }

    .urgency-text {
        font-size: 0.55rem !important;
    }

    .countdown {
        font-size: 0.6rem !important;
    }

    .header {
        top: 28px !important;
    }

    .hero {
        padding-top: 115px !important;
    }
}

/* =============================================
   🔥 MOBİL v5.0 - TEMİZ BAŞLANGIÇ & DÜZGÜN YERLEŞİM
   ============================================= */

@media (max-width: 768px) {

    /* 1. ÜST BANNER - SABİT VE İNCE */
    .racing-banner {
        height: 35px !important;
        min-height: 35px !important;
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        z-index: 1100 !important;
        padding: 0 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .banner-content {
        flex-direction: row !important;
        gap: 5px !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .racing-checks { display: none !important; }

    .urgency-text {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
    }

    .countdown {
        font-size: 0.7rem !important;
        padding: 1px 5px !important;
    }

    /* 2. HEADER - BANNER'IN ALTINDA */
    .header {
        position: fixed !important;
        top: 35px !important;
        height: 80px !important;
        background: linear-gradient(180deg, #000 0%, #0a0014 100%) !important;
        border-bottom: 4px solid #6a0dad !important;
        box-shadow: 0 5px 20px rgba(106, 13, 173, 0.4) !important;
        padding: 0 !important;
    }

    .header-content-wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 15px !important;
    }

    /* 3. LOGO - SOLDA VE NET (KARIŞIKLIĞI ÖNLEMEK İÇİN) */
    .logo {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 !important;
    }

    .logo-img {
        height: 85px !important;
        filter: drop-shadow(0 0 15px rgba(106, 13, 173, 0.5)) !important;
    }

    /* 4. HAMBURGER - SAĞDA */
    .hamburger {
        position: relative !important;
        right: auto !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin-left: auto !important; /* Sağa yasla */
        display: flex !important;
        order: 99 !important; /* En sağda */
    }

    /* 5. MENÜ - HEADER'IN ALTINDAN BAŞLAR */
    .nav {
        top: 115px !important; /* 35px Banner + 80px Header */
        height: calc(100vh - 115px) !important;
        padding-top: 20px !important;
    }

    /* 6. HERO - İÇERİK KAYMASINI ÖNLE */
    .hero {
        padding-top: 140px !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 375px) {
    .racing-banner { height: 30px !important; }
    .header { top: 30px !important; height: 70px !important; }
    .nav { top: 100px !important; height: calc(100vh - 100px) !important; }
    .logo-img { height: 75px !important; }
    .hero { padding-top: 125px !important; }
}

/* =============================================
   🔥 MOBİL v5.1 - LOGO ORTADA
   ============================================= */

@media (max-width: 768px) {
    
    .header-content-wrapper {
        position: relative !important;
        justify-content: flex-end !important; /* Hamburgeri sağa itmek için */
    }

    /* LOGO - TAM ORTADA */
    .logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        z-index: 1001 !important;
        width: auto !important;
    }

    .logo-img {
        height: 90px !important; /* Biraz daha büyüttüm */
    }

    /* HAMBURGER - SAĞDA SABİT */
    .hamburger {
        margin-left: 0 !important;
        z-index: 1002 !important;
    }
}

@media (max-width: 375px) {
    .logo-img {
        height: 80px !important;
    }
}

/* =============================================
   🔥 MOBİL v5.2 - HERO METİN VE HİZALAMA DÜZELTMESİ
   ============================================= */

@media (max-width: 768px) {
    
    .hero-content {
        padding: 20px 15px !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* BAŞLIK DÜZELTMESİ - YAMUKLUĞU GİDER */
    .hero h2 {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        transform: none !important; /* Skew efektini kaldır */
        margin-bottom: 15px !important;
        width: 100% !important;
    }

    .hero h2 span {
        font-size: 1.4rem !important;
        display: block !important;
        margin-top: 5px !important;
    }

    /* AÇIKLAMA METNİ DÜZELTMESİ */
    .hero p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
        padding: 0 10px !important;
        color: #ddd !important;
        max-width: 350px !important;
    }

    /* BUTON DÜZELTMESİ */
    .btn-primary {
        font-size: 1rem !important;
        padding: 15px 30px !important;
        width: auto !important;
        transform: none !important; /* Buton skew'ini de kaldır */
    }
    
    .btn-primary:hover, .btn-primary:active {
        transform: scale(1.05) !important;
    }
}

/* =============================================
   🔥 MOBİL v5.3 - 2026 SERİSİ BAŞLIK DÜZELTMESİ
   ============================================= */

@media (max-width: 768px) {
    
    .section-title {
        font-size: 1.5rem !important; /* Daha küçük */
        color: #e0e0e0 !important; /* Açık gri/beyaz */
        background: none !important;
        -webkit-background-clip: border-box !important;
        -webkit-text-fill-color: #e0e0e0 !important;
        text-shadow: 0 2px 10px rgba(106, 13, 173, 0.5) !important; /* Hafif glow */
        transform: none !important; /* Düz duruş */
        letter-spacing: 1px !important;
        margin-bottom: 20px !important;
        margin-top: 10px !important;
        border: none !important;
    }
}

/* =============================================
   🔥 MOBİL v5.4 - KUTU BOYUTLANDIRMASI (BEYAZ KISIMLAR)
   ============================================= */

@media (max-width: 768px) {
    
    /* Normal Ürünlerdeki Plastik Kısım */
    .plastic-blister {
        height: 200px !important; /* 250px'den düşürüldü */
        padding: 5px !important;
        background: rgba(255, 255, 255, 0.03) !important; /* Biraz daha şeffaf */
    }

    /* Hero Bölümündeki Uçuşan Kutular */
    .hero-pack .plastic-blister {
        height: 80px !important; /* 110px'den düşürüldü */
        margin-top: 5px !important;
    }

    .hero-pack .card-backing {
        padding: 8px !important;
        padding-bottom: 50px !important;
    }

    .hero-pack .product-name {
        font-size: 0.6rem !important;
        bottom: 15px !important;
    }

    /* Ürün Kartı Arkalık Ayarı */
    .card-backing {
        padding-bottom: 90px !important;
    }
}

/* =============================================
   🔥 MOBİL v5.5 - ÜRÜN KARTI DÜZELTMESİ (GÖRÜNÜR FOTO & BUTON)
   ============================================= */

@media (max-width: 768px) {
    
    /* 1. KARTI BÜYÜT Kİ İÇERİK SIĞSIN */
    .card-backing {
        padding-bottom: 110px !important; /* Alt kısım için yer aç */
        min-height: 400px !important;
    }

    /* 2. PLASTİK KISIM (FOTOĞRAF ALANI) */
    .plastic-blister {
        height: 220px !important; /* Fotoğraf daha büyük ve görünür */
        margin-bottom: 10px !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }

    /* 3. BEYAZ BİLGİ ALANI (CARD INFO) - KÜÇÜLT VE SIKIŞTIR */
    .card-info {
        padding: 8px 10px !important;
        clip-path: none !important; /* Yamuk kesimi kaldır, yer kazandırır */
        border-radius: 0 0 10px 10px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        height: auto !important;
        min-height: 100px !important;
    }

    /* 4. GEREKSİZ DETAYLARI GİZLE */
    .product-tags {
        display: none !important; /* Etiketleri gizle, yer aç */
    }
    
    .stock-warning {
        font-size: 0.65rem !important;
        margin-bottom: 2px !important;
    }

    .product-name {
        font-size: 1rem !important;
        margin-top: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .product-price {
        font-size: 1.1rem !important;
        margin: 2px 0 !important;
    }

    /* 5. HEMEN AL BUTONU - GÖRÜNÜR YAP */
    .btn-buy-now {
        display: block !important;
        width: 100% !important;
        padding: 8px !important;
        font-size: 0.9rem !important;
        background: var(--hf-purple) !important;
        color: white !important;
        margin-top: 5px !important;
        box-shadow: 0 2px 5px rgba(106, 13, 173, 0.4) !important;
    }

    .button-group {
        display: block !important;
        margin-top: 5px !important;
    }
}

/* =============================================
   🔥 MOBİL v5.6 - KART BİLGİ ALANI YAMUK (SKEWED) GÖRÜNÜM
   ============================================= */

@media (max-width: 768px) {
    
    .card-info {
        /* Yamuk kesim */
        clip-path: polygon(0 20px, 100% 0, 100% 100%, 0% 100%) !important;
        
        /* İçerik kesilmemesi için üst boşluk */
        padding-top: 25px !important; 
        padding-bottom: 10px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        
        background: rgba(255, 255, 255, 0.95) !important;
        margin-top: -20px !important; /* Yukarı çekerek boşluğu kapat */
        position: absolute !important;
        bottom: 0 !important;
    }

    /* Ürün adını biraz daha aşağı al */
    .product-name {
        margin-top: 5px !important;
    }

    /* Buton görünürlüğü garanti olsun */
    .btn-buy-now {
        position: relative !important;
        z-index: 5 !important;
    }
}

/* =============================================
   🔥 MOBİL v5.7 - HAKKINDA BÖLÜMÜ DÜZELTMESİ (YAMUKLUĞU GİDER)
   ============================================= */

@media (max-width: 768px) {
    
    .about {
        transform: none !important; /* Yamukluğu gider */
        border-top: 1px solid rgba(106, 13, 173, 0.3) !important;
        border-bottom: 1px solid rgba(106, 13, 173, 0.3) !important;
        background: radial-gradient(circle at center, #1a0520 0%, #000 100%) !important;
        padding: 50px 20px !important;
        margin: 0 !important;
    }

    .about-content {
        transform: none !important; /* İçerik yamukluğunu gider */
        text-align: center !important;
        padding: 0 !important;
    }

    .about h2 {
        font-size: 2rem !important;
        color: #fff !important;
        margin-bottom: 25px !important;
        text-shadow: 0 0 15px rgba(106, 13, 173, 0.6) !important;
        letter-spacing: 1px !important;
    }

    .about-single-text {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        color: #e0e0e0 !important;
        background: rgba(255, 255, 255, 0.05) !important;
        padding: 25px !important;
        border-radius: 15px !important;
        border: 1px solid rgba(106, 13, 173, 0.3) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    }
}

/* =============================================
   🔥 LOGO SABİTLEME (HAREKETİ DURDUR)
   ============================================= */

.logo, .logo-img {
    transition: none !important; /* Geçişleri kapat */
}

/* DESKTOP İÇİN SABİTLEME */
@media (min-width: 769px) {
    .logo:hover, .logo:active {
        transform: skew(-10deg) !important; /* Sadece eğiklik kalsın, büyüme olmasın */
    }
}

/* MOBİL İÇİN SABİTLEME */
@media (max-width: 768px) {
    .logo:hover, .logo:active, .logo:focus {
        transform: translate(-50%, -50%) !important; /* Konum sabit kalsın */
    }

    .logo-img:hover, .logo-img:active, .logo-img:focus {
        transform: none !important; /* Resim büyümesin/küçülmesin */
        filter: drop-shadow(0 0 15px rgba(106, 13, 173, 0.5)) !important; /* Gölge efekti değişmesin */
    }
}

/* =============================================
   🔥 MENU ACILMA SORUNU FIX (v5.8)
   ============================================= */

@media (max-width: 768px) {
    /* Hamburger'i en üste ve tıklanabilir yap */
    .hamburger {
        z-index: 99999 !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        position: absolute !important;
        right: 15px !important;
        /* Yüksekliği ve genişliği garantiye al */
        width: 40px !important; 
        height: 40px !important;
        display: flex !important;
        align-items: center; 
        justify-content: center;
        background: transparent !important; /* Tıklama alanını görelim (gerekirse red yap) */
    }

    /* Logo'nun hamburgeri engellemediğinden emin ol */
    .logo {
        z-index: 1001 !important;
        pointer-events: auto !important;
        max-width: 60% !important; /* Genişliği kısıtla */
    }
    
    /* Header üzerindeki diğer her şeyin altında kalsın */
    .header-content-wrapper {
        pointer-events: none; /* Wrapper tıklamayı engellemesin */
    }
    .logo, .hamburger, .cart-icon {
        pointer-events: auto !important; /* Çocuklar tıklanabilsin */
    }

    /* Nav açıldığında */
    .nav {
        z-index: 10000 !important; /* Menü en üstte (hamburgerden düşük ama) */
    }
    
    /* Menü açıkken Hamburger hala tıklanabilir olsun */
    body.menu-open .hamburger {
        z-index: 100001 !important;
    }
}

/* =============================================
   🔥 HEADER OVERFLOW FIX (v5.9)
   ============================================= */
@media (max-width: 768px) {
    .header {
        overflow: visible !important; /* Menünün dışarı taşmasına izin ver */
        /* backdrop-filter fixed pozisyonu etkileyebilir, bu yüzden nav'ı body'e taşımak daha iyi olurdu ama */
        /* şimdilik overflow'u açarak çözmeyi deniyoruz */
    }
}

/* =============================================
   🔥 STOK YAZISI BOŞLUK DÜZELTMESİ (v5.10)
   ============================================= */
@media (max-width: 768px) {
    .stock-warning {
        margin-bottom: 6px !important; /* Butona yapışmasın, yukarı kaydırıldı */
        display: inline-block !important; /* Margin'in işlemesi için */
        padding-bottom: 2px !important;
    }
}

/* =============================================
   🔥 STOK YAZISI BOŞLUK GÜNCELLEME (v5.11)
   ============================================= */
@media (max-width: 768px) {
    .stock-warning {
        margin-bottom: 12px !important; /* Boşluğu artırdım (önceki 6px idi) */
    }
}

/* =============================================
   🔥 STOK YAZISI BOŞLUK GÜNCELLEME (v5.12)
   ============================================= */
@media (max-width: 768px) {
    .stock-warning {
        margin-bottom: 16px !important; /* Boşluğu artırdım (önceki 12px idi) */
    }
}

/* =============================================
   🔥 STOK POZİSYON & BUTON ORTALAMA DÜZELTMESİ (v5.13)
   ============================================= */
@media (max-width: 768px) {
    .stock-warning {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        margin-top: -8px !important; /* Yukarı taşı */
        margin-bottom: 10px !important; /* Altındaki boşluğu koru */
        padding: 0 !important;
        transform: none !important; /* Varsa skew/translate temizle */
        background: transparent !important; /* Arkaplan varsa kaldır */
        color: #e60012 !important; /* Kırmızı renk */
    }

    .button-group {
        display: flex !important;
        justify-content: center !important; /* Butonu ortala */
        width: 100% !important;
        margin-top: 5px !important;
    }

    .btn-buy-now {
        width: 90% !important; /* Genişliği ayarla */
        margin: 0 auto !important; /* Kesin ortala */
    }
}

/* =============================================
   🔥 MOBİL MENU KESİN ÇÖZÜM (v5.14)
   ============================================= */
@media (max-width: 768px) {
    /* Menü Kapalıyken */
    .nav {
        display: flex !important; /* Her zaman render et */
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important; /* Sağdan gelsin */
        width: 70% !important; /* Ekranın %70'ini kapla */
        height: 100vh !important;
        background: linear-gradient(180deg, #050010 0%, #1a0520 100%) !important;
        transform: translateX(100%) !important; /* Ekran dışına it */
        transition: transform 0.3s ease-in-out !important;
        z-index: 10000 !important;
        padding-top: 100px !important; /* Üstten boşluk */
        box-shadow: -5px 0 20px rgba(0,0,0,0.8) !important;
    }

    /* Menü Açıkken */
    .nav.active {
        transform: translateX(0) !important; /* Ekrana getir */
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Hamburger Konumu */
    .hamburger {
        position: fixed !important; /* Scroll olsa da kalsın */
        top: 25px !important;
        right: 20px !important;
        z-index: 10001 !important; /* Menünün üstünde kalsın */
    }
    
    /* Menü Linkleri */
    .nav-link {
        font-size: 1.2rem !important;
        padding: 20px !important;
        text-align: center !important;
        color: white !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
}

/* =============================================
   🔥 MENU GÖRÜNÜRLÜK FIX (v5.15)
   ============================================= */
@media (max-width: 768px) {
    .nav {
        /* Kapalıyken kesinlikle gizle */
        visibility: hidden !important; 
        opacity: 0 !important;
        pointer-events: none !important;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s !important;
    }

    .nav.active {
        /* Açıkken göster */
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

/* =============================================
   🔥 HAMBURGER POZİSYON GÜNCELLEME (v5.16)
   ============================================= */
@media (max-width: 768px) {
    .hamburger {
        top: 38px !important; /* Biraz aşağı alındı (önceki 25px) */
    }
}

/* =============================================
   🔥 ÜRÜN DETAY SAYFASI DÜZELTMESİ (v5.17)
   ============================================= */
@media (max-width: 768px) {
    .product-detail-page {
        /* Header sabit olduğu için içerik altta kalmamalı */
        padding-top: 130px !important; 
        position: relative !important; /* Fixed olmamalı */
        height: auto !important;
        overflow: visible !important;
        z-index: 1 !important; /* Header (1000) altında kalsın */
    }
}

/* =============================================
   🔥 ÜRÜN DETAY BOŞLUK AZALTMA (v5.18)
   ============================================= */
@media (max-width: 768px) {
    /* 1. Header ile ürün arasındaki boşluğu azalt */
    .product-detail-page {
        padding-top: 100px !important; /* 130px'den düşürüldü */
    }

    /* 2. Ürün görseli alanını daralt (Alt boşluğu al) */
    .detail-left {
        height: 300px !important; /* 350px'den düşürüldü */
        margin-bottom: -20px !important; /* Negatif margin ile metni yaklaştır */
    }

    /* 3. Açıklama metninin üst boşluğunu azalt */
    .detail-right {
        padding-top: 0 !important; /* 25px'den 0'a çekildi */
    }

    /* Blister Pack ölçeğini koru ama konumunu ayarla */
    .detail-left .blister-pack {
        transform: scale(0.65) !important; /* Biraz daha küçültüp ekrana tam oturt */
        margin-top: -20px !important; /* Yukarı çek */
    }
}

/* =============================================
   🔥 B2B SAYFASI MOBİL UYUM (v5.19)
   ============================================= */
@media (max-width: 768px) {
    /* Header çakışmasını önle */
    .b2b-hero {
        padding-top: 130px !important;
        padding-bottom: 40px !important;
    }

    /* Başlık boyutunu küçült */
    .b2b-title {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
    }

    .b2b-subtitle {
        font-size: 1rem !important;
        padding: 0 10px !important;
    }

    /* Grid aralıkları */
    .b2b-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
        margin-bottom: 40px !important;
    }

    /* Kart stili */
    .b2b-card {
        padding: 25px 20px !important;
    }

    /* CTA Alanı */
    .b2b-cta {
        padding: 40px 20px !important;
        border-radius: 20px !important;
        margin: 0 15px 60px 15px !important;
    }

    .b2b-cta h3 {
        font-size: 1.5rem !important;
    }

    .b2b-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .b2b-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px !important;
    }
}

/* =============================================
   🔥 SEO & ERİŞİLEBİLİRLİK (v6.0)
   ============================================= */

/* Screen Reader Only - Görünmez ama okunabilir (SEO için) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
