/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-primary);
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

:root {
    --bg-primary: #f8f9fa;      /* Ana arka plan (hafif gri-beyaz) */
    --bg-secondary: #ffffff;    /* Kartlar ve bölümler için saf beyaz */
    --text-dark: #1a1a1a;       /* Ana metin rengi */
    --text-muted: #666666;      /* Yardımcı metin rengi */
    --accent-gold: #e6b800;     /* Beyazda daha iyi görünen koyu sarı/altın */
    --border-color: #e0e0e0;    /* Kenarlıklar için açık gri */
}



.logo {
    font-size: 34px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    color: #1a1a1a !important;
}
.logo span {
    color: gold;
}




/* ============================= */
/*         HERO (YENİ)           */
/* ============================= */

.hero {
    margin-top: 80px;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 80px;
    background: var(--bg-primary);
    
}

/* Sol taraf */
.hero-left {
    width: 50%;
    animation: fadeInLeft 1.2s ease-out forwards;
    opacity: 0;
}

.hero-title {
    font-size: 80px !important; /* Dev boyut */
    font-weight: 900 !important; /* Ekstra kalın */
    line-height: 1.1;
    color: #1a1a1a; /* Net siyah */
    margin-bottom: 15px;
    text-transform: uppercase;
}
.hero-title span {
    color: #e6b800;
}

.hero-subtitle {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #333 !important; /* Daha okunaklı koyu gri */
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-btn {
    background-color: #e6b800 !important; /* İçi dolu sarı */
    color: #000 !important;
    padding: 16px 40px !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    border-radius: 50px !important; /* Oval daha modern durur */
    border: 2px solid #e6b800 !important;
    display: inline-block;
    transition: 0.3s all ease;
    box-shadow: 0 10px 20px rgba(230, 184, 0, 0.2);
}
.hero-btn:hover {
    background-color: transparent !important;
    color: #e6b800 !important;
    box-shadow: 0 5px 15px rgba(230, 184, 0, 0.4);
}

/* Sağ taraf (fotoğraf) */
.hero-right {

    width: 60%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 110px;
}


.hero-img img:hover {
    width: 480px; 
    transform: none;
    filter: brightness(1.05);
    
}

/* ANIMATIONS */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ABOUT SECTION */
.about-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    display: flex;
    justify-content: center; /* Yatayda ortalar */
}

.about-content {
    max-width: 900px;
    text-align: center;
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 62px;
    color: #1a1a1a !important;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.about-text {
    color: #444 !important;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 300;
}

/* GALLERY SECTION */
.gallery-section {
    padding: 120px 60px;
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    text-align: center;
}

.gallery-title {
    font-size: 48px;
    font-family: 'Bebas Neue', sans-serif;
    color: #1a1a1a !important;
    margin-bottom: 50px;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    cursor: pointer;
    transition: .3s;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(255,215,0,0.4);
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* POPUP */
.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup video {
    width: 70%;
    border-radius: 10px;
}

.popup .close {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 50px;
    color: gold;
    cursor: pointer;
    font-weight: bold;
}

/* ========================
   DARK SLIDE TRANSITION
========================= */

#page-transition {
    position: fixed;
    top: 0;
    right: -100%; /* başlangıçta görünmez */
    width: 100%;
    height: 100%;
    background: #000;  /* tamamen siyah panel */
    z-index: 0; 
    transition: right 0.6s ease-in-out;
}

/* kapanış animasyonu */
body.fade-out #page-transition {
    right: 0;
}

/* açılış animasyonu */
body.page-loaded #page-transition {
    right: -100%;
}

#aboutContainer {
    position: relative;
    display: inline-block;
}

#aboutText {
    color: #1a1a1a !important; /* Yazıları koyu gri/siyah yap */
    font-size: 22px;
    line-height: 1.7;
    opacity: 1 !important;
}

#aboutText strong {
    color: #000000 !important;
    font-weight: 700;
}



.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    font-size: 19px !important;
    color: #555 !important; /* Okunabilirliği yüksek gri */
    line-height: 1.7 !important; /* Satır aralığını açtık */
    font-weight: 500 !important;
    max-width: 550px;
}

/* ===========================
   SABİT SOSYAL MEDYA BUTONLARI
=========================== */

.float-social {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white !important;
    font-size: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.float-btn img {
    color: #ffffff !important;
    font-size: 32px;
    display: block;
    line-height: 1; /* İkonun kutu dışına taşmasını engeller */
}

.float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 0 18px rgba(255, 215, 0, 1);
}

.cinematic-item {
  opacity: 0;
  transition: all 0.9s ease;
}

.cinematic-item.left {
  transform: translateX(-80px);
}
.cinematic-item.right {
  transform: translateX(80px);
}
.cinematic-item.bottom {
  transform: translateY(80px);
}

.cinematic-item.show {
  opacity: 1;
  transform: translate(0, 0);
}

.float-social {
    position: fixed;
    bottom: 20px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;

    opacity: 1; /* direkt görünür */
    transform: none;
}

@keyframes socialFade {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-intro {
background-color: #ffffff !important; /* Arka planı bembeyaz yap */
    padding: 100px 20px !important; /* Ferah bir alan bırak */
    text-align: center;
}

.intro-title {
    color: #1a1a1a !important; /* "KALİTELİ ÜRETİM" yazısını siyah yap */
    font-family: 'Bebas Neue', sans-serif;
    font-size: 70px;
    letter-spacing: 1px;
}

.intro-line {
    width: 90px;
    height: 3px;
    background: #ffcc00 !important; /* Altındaki sarı çizgiyi koru */
    margin: 10px auto 25px;
}

.intro-text {
    color: #333333 !important; /* Uzun açıklamayı koyu gri yap ki okunsun */
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.7;
}

/* STERİLİZASYON BÖLÜMÜ */
.steril-section {
    padding: 100px 0;
    text-align: center;
    background-color: #ffffff !important;
    color: #1a1a1a !important;
}

.steril-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a !important;
    margin-bottom: 10px;
}

.steril-desc {
    color: #444 !important;
    font-size: 18px;
    margin-bottom: 60px;
}

.steril-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.steril-box {
    width: 260px;
    background: #ffffff !important;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid #eeeeee !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
    font-family: "Poppins", sans-serif;
    transition: 0.3s ease;
}

.steril-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.18);
}

.steril-icon {
    width: 54px;
    margin-bottom: 15px;
}

.steril-box h3 {
    color: #e6b800 !important; /* Senin altın sarısı tonun kalsın ama daha belirgin olsun */
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}

.steril-box p {
    color: #555555 !important; /* Yazıları koyulaştırdık ki okunsun */
    font-size: 15px !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
}

/* Açılır Menü (Dropdown) Tasarımı */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none; /* Başlangıçta gizli */
    position: absolute;
    background-color: #1a1a1a; /* Sayfanın koyu temasına uygun */
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
    z-index: 1000;
    border-radius: 8px;
    top: 100%; /* Menünün tam altına açılması için */
    left: 0;
}

.dropdown-content a {
    color: white !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: 0.3s;
    border-bottom: 1px solid #333;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #ffcc00; /* Senin sarı rengin */
    color: black !important;
}

/* Mouse ile üzerine gelince göster */
.dropdown:hover .dropdown-content {
    display: block;
}

.product-label {
    background: #ffcc00;
    color: #000;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

/* Footer Link Düzenlemesi */
footer p a {
    color: #ffcc00; /* Linki senin sarı rengine çevirir */
    text-decoration: none; /* Altındaki çizgiyi kaldırır */
    transition: 0.3s; /* Üzerine gelince yumuşak geçiş yapar */
}

footer p a:hover {
    color: #ffffff; /* Üzerine gelince beyaza döner */
    text-decoration: underline; /* Üzerine gelince istersen çizgi çıkabilir (isteğe bağlı) */
}

/* Buton Kapsayıcı (Ortalamak İçin) */
.all-products-wrapper {
    background-color: #ffffff !important; /* Arka planı beyaz yap */
    padding: 40px 0; /* Şeridi biraz daraltıp ferahlatır */
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Şekilli Buton Tasarımı */
.all-products-btn {
    position: relative;
    padding: 15px 40px;
    background-color: black;
    color: #ffcc00;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-decoration: none;
    border: 2px solid #ffcc00;
    border-radius: 50px; /* Kenarları yuvarlak yapar */
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -80px;
}

/* Üzerine gelince dolma efekti */
.all-products-btn:hover {
    background-color: #ffcc00;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
    transform: translateY(-3px);
}

/* Butonun içindeki metin ve ikon için hafif animasyon */
.all-products-btn span {
    position: relative;
    z-index: 1;
}

.all-products-btn i {
    transition: transform 0.4s ease;
}

.all-products-btn:hover i {
    transform: translateX(8px); /* Ok sağa doğru kayar */
}

/* GENEL AYARLAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* KATALOG KONTEYNER */
/* Sayfa Yapısı */
.catalog-container {
    padding-top: 120px;
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    min-height: 100vh;
}

.category-block {
    padding: 20px 5% 40px;
}

.category-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #1a1a1a !important;
}

.title-line {
    width: 50px;
    height: 3px;
    background: #ffcc00;
    margin-bottom: 25px;
}

/* Ürün Grid Yapısı */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

/* Trendyol Tarzı Ürün Kartı */
.product-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}

.product-img {
    background: #fff;
    height: 200px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 14px;
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.product-info h3 {
color: #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.4;

    /* 🔥 2 SATIR SINIR */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* WhatsApp Butonu */
.whatsapp-link {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    transition: 0.2s;
    box-shadow: 0 5px 15px rgba(0,255,100,0.3);
}

.whatsapp-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,255,100,0.5);
}

.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 0 15px rgba(214, 36, 159, 0.5); /* Pembe/Mor parlama */
}

.instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(214, 36, 159, 0.8);
}

/* FOOTER */
footer {
    width: 100%;
    margin-top: auto; /* Üstten itebildiği kadar iter */
    text-align: center;
    padding: 30px;
    background: #111;
    border-top: 1px solid #222;
}
footer a {
    color: #ffcc00;
    text-decoration: none;
}

/* SEARCH BAR TASARIMI */
.search-container {
    flex: 0 1 400px; /* Genişliğini ayarlar */
    display: flex;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 5px 15px;
    margin: 0 20px;
    transition: 0.3s;
}

.search-container:focus-within {
    border-color: #ffcc00;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

.search-container input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 8px;
    font-size: 14px;
}

.search-container button {
    background: transparent;
    border: none;
    color: #777;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.search-container button:hover {
    color: #ffcc00;
}

/* Mobil için Navbar Düzenlemesi */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .search-container {
        width: 100%;
        margin: 0;
    }
}

/* TOPLU ALIM BANNER TASARIMI */
.wholesale-banner {
    background: linear-gradient(90deg, #111 0%, #1a1a1a 100%);
    border-top: 2px solid #ffcc00;
    border-bottom: 2px solid #ffcc00;
    padding: 50px 5%;
    margin: 60px 0;
}

.wholesale-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.wholesale-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.wholesale-text h2 span {
    color: #ffcc00;
}

.wholesale-text p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 700px;
}

/* Teklif Al Butonu */
.offer-btn {
    background: #ffcc00;
    color: #000;
    padding: 15px 35px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    white-space: nowrap;
}

.offer-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .wholesale-content {
        flex-direction: column;
        text-align: center;
    }
    .wholesale-text h2 {
        font-size: 2rem;
    }
    .wholesale-action {
        width: 100%;
    }
    .offer-btn {
        justify-content: center;
    }
}

/* İletişim Grubu Konumu */
.hero-contact {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Telefon Numarası Stilize Etme */
.phone-link {
    display: flex !important;
    align-items: center !important; /* Dikeyde tam ortalar */
    gap: 12px;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    text-decoration: none;
    margin-top: 25px;
    line-height: 1;
}

.phone-link i {
    color: #e6b800;
    display: flex; /* İkonu bir flex kutusu gibi davranmaya zorlar */
    align-items: center;
    justify-content: center;
    line-height: 0; /* İkonun altındaki hayali boşluğu yok eder */
    height: 30px;
}

/* Üstüne gelince parlaması ve sağa kayması için */
.phone-link:hover {
    color: #ffcc00;
    opacity: 1;
    transform: translateX(8px);
}

/* Eğer JS ile 'reveal' kullanıyorsan, başlangıçta gizli olması için: */
.hero-contact.reveal {
    /* Senin mevcut animasyon sınıflarınla çakışmaması için 
       diğer elementlerin animasyon koduna bakabilirsin. 
       Genelde şöyledir: */
    animation: fadeInUp 1s ease forwards;
}

/* KATEGORİ BLOKLARI ARASI BOŞLUK */
.category-block {
    margin-bottom: 80px; /* Kategoriler arasındaki boşluğu artırdık */
    padding: 0 20px;
}

/* KATEGORİ BAŞLIKLARI YENİ STİL */
.category-header {
    background: #fdfdfd;
    padding: 20px;
    border-left: 5px solid #e6b800; /* Senin meşhur sarı tonun */
    margin: 40px 0 20px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-title {
    font-size: 32px !important; /* Başlığı büyüttük */
    font-weight: 800; /* Daha kalın ve belirgin yaptık */
    text-transform: uppercase; /* Tüm harfleri büyük yaptık */
    letter-spacing: 2px; /* Harf arasını açarak daha premium bir hava verdik */
    color: #1a1a1a !important;
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
}

.title-line {
    display: none; /* Eski ince çizgiyi kaldırıp sol taraftaki kalın çizgiyi kullandık */
}

/* HAKKIMIZDA SAYFASI ÖZEL STİLLERİ */
.about-hero {
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('image/hero-bg.webp'); /* Arka plana bir görsel koyabilirsin */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px; /* Navbar yüksekliği kadar */
}

.about-hero h1 {
    font-size: 3.5rem;
    color: #ffcc00; /* CetinWeb sarısı */
    font-weight: 800;
}

.about-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

.about-text h2 {
    font-size: 2rem;
    color: #fff;
    border-left: 5px solid #ffcc00;
    padding-left: 15px;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-box {
    background: var(--bg-secondary) !important;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color) !important;
    transition: 0.3s;
}

.stat-box:hover {
    border-color: #ffcc00;
    transform: translateY(-5px);
}

.stat-box i {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 2rem;
    color: #fff;
}

.stat-box p {
    color: #888;
}

/* İLETİŞİM SAYFASI - TÜMÜ (BAŞTAN) */

/* Ana Sayfa Yapısı */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 20px 80px; /* Üstten 150px boşluk vererek yapışmayı engelledik */
    min-height: 100vh;
}

/* Üst Başlık */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3.2rem;
    color: #ffcc00;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-header p {
    color: #888;
    font-size: 1.1rem;
}

/* Ana Grid (Sol: İletişim, Sağ: Özellikler) */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 80px;
}

/* Sol Taraftaki İletişim Kartları */
.method-card {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: #ffcc00;
    transform: translateX(10px);
}

.method-card i {
    font-size: 3rem;
    color: #ffcc00;
}

.method-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.method-info p {
    color: #ccc;
    font-weight: 600;
    font-size: 1.1rem;
}

.method-info span {
    color: #666;
    font-size: 0.9rem;
}

.method-btn.wa {
    display: inline-block;
    margin-top: 12px;
    background: #25D366;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Sağ Taraftaki "Neden Biz" Paneli */
.contact-features {
    background: var(--bg-secondary) !important;
    padding: 45px;
    border-radius: 25px;
    border: 1px solid var(--border-color) !important;
}

.contact-features h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
}

.yellow-bar {
    width: 60px;
    height: 5px;
    background: #ffcc00;
    margin: 15px 0 35px;
}

.f-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.f-item i {
    color: #ffcc00;
    font-size: 1.5rem;
    margin-top: 5px;
}

.f-item h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.f-item p {
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Harita Alanı */
.full-map {
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-page {
        padding-top: 120px;
    }
}

/* HARİTA YERİNE GELEN YENİ ALANIN CSS'İ */
.extra-info-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.faq-box {
    background: var(--bg-secondary) !important;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--border-color) !important;
}

.faq-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.faq-item i {
    color: #ffcc00;
    font-size: 1.8rem;
    margin-top: 5px;
}

.faq-item h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Sağdaki Sertifika/Sosyal Kartı */
.social-trust-card {
    background: linear-gradient(145deg, #111, #000);
    border: 2px solid #ffcc00;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.trust-content i {
    font-size: 4rem;
    color: #ffcc00;
    margin-bottom: 20px;
}

.trust-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.trust-content p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.s-icon {
    font-size: 1.5rem;
    color: #fff;
    transition: 0.3s;
}

.s-icon:hover {
    color: #ffcc00;
    transform: scale(1.2);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* GALERİ ALANI DÜZENLEME */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
}

.gallery-item {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.gallery-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Üzerine gelince resmi hafifçe büyütelim, şık dursun */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Resmin üzerindeki yazı (Etiket) */
.product-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9)); /* Yazı okunabilsin diye gölge */
    color: #ffcc00; /* CetinWeb Sarısı */
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* =========================================
   NEW ABOUT PAGE V2 - WHITE THEME
   ========================================= */

.ozekim-about-wrapper {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
}

/* Üst Başlık */
.about-header-v2 {
    padding: 120px 0 60px;
    text-align: center;
    background: #fcfcfc;
}

.about-header-v2 .header-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 65px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.about-header-v2 .header-line {
    width: 80px;
    height: 4px;
    background: #e6b800; /* CetinWeb Gold */
    margin: 0 auto 20px;
}

.about-header-v2 .header-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* İçerik ve Izgara Yapısı */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    padding: 80px 5%;
    align-items: center;
}

.about-text-v2 .section-subtitle {
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.about-text-v2 p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* İstatistik Kartları */
.about-stats-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stat-number {
    display: block;
    font-size: 35px;
    font-weight: 800;
    color: #e6b800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 15px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-header-v2 .header-title {
        font-size: 45px;
    }
}

/* =========================================
   CONTACT PAGE V3 - FULL WHITE DESIGN
   ========================================= */

.ozekim-contact-full {
    background-color: #ffffff;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

/* Header */
.contact-header-v3 {
    padding: 100px 0 50px;
    text-align: center;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

.v3-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: #111;
    margin: 0;
}

.v3-line {
    width: 70px;
    height: 5px;
    background: #e6b800;
    margin: 15px auto;
}

/* Grid Yapısı */
.v3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 5%;
}

/* Sol Kartlar */
.v3-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.v3-card:hover {
    transform: scale(1.02);
    border-color: #e6b800;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.v3-card i {
    font-size: 40px;
    color: #e6b800;
}

.v3-card-text h4 {
    margin: 0;
    font-size: 15px;
    color: #888;
    text-transform: uppercase;
}

.v3-card-text a, .v3-card-text p {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
}

.v3-card-text span {
    font-size: 13px;
    color: #999;
}

/* Sağ Bilgi Kutusu */
.v3-info-box {
    background: #1a1a1a; /* Burası kontrast için koyu kalsın çok şık durur */
    padding: 50px;
    border-radius: 30px;
    color: #fff;
}

.v3-info-box h3 {
    font-size: 30px;
    color: #e6b800;
    margin-bottom: 30px;
}

.v3-list {
    list-style: none;
    padding: 0;
}

.v3-list li {
    margin-bottom: 25px;
    font-size: 16px;
    display: flex;
    gap: 15px;
    line-height: 1.6;
}

.v3-list i {
    color: #e6b800;
    font-size: 20px;
    margin-top: 5px;
}

/* Sosyal Medya */
.social-links-v3 {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-links-v3 a {
    width: 50px;
    height: 50px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.social-links-v3 a:hover {
    background: #e6b800;
    color: #1a1a1a;
}

/* Harita Alanı */
.contact-map-v3 {
    padding: 50px 5% 100px;
    text-align: center;
}

.map-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    margin-bottom: 30px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #f5f5f5;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ddd;
}

/* =========================================
   📱 FULL PREMIUM MOBILE (FINAL VERSION)
   ========================================= */

@media (max-width: 768px) {

    /* GENEL */
    body {
        overflow-x: hidden;
        font-size: 15px;
    }

    section {
        padding: 60px 15px !important;
    }

    /* NAVBAR */
    .navbar {
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 24px !important;
    }

    /* HAMBURGER */
    .menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999; /* BUNU YÜKSEK YAP */
    }

    .menu-btn span {
        height: 3px;
        width: 100%;
        background: white;
        border-radius: 2px;
        transition: 0.3s;
    }



    /* X animasyon */
    .menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* MENÜ PANEL (DÜZELTİLMİŞ) */


    body.menu-open {
        overflow: hidden;
    }

    /* HERO */
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 50px 15px;
        height: auto !important;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        margin: 0;
    }

    .hero-right {
        display: flex;
        justify-content: center;
    }

    .hero-right img {
        width: 100%;
        max-width: 260px;
        margin-bottom: 20px;
        animation: float 3s ease-in-out infinite;
        margin-left: -50px;
    }

    .hero-title {
        font-size: 30px !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px !important;
    }

    .hero-description {
        font-size: 14px !important;
        padding: 0 5px;
    }

    .hero-btn {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        font-size: 14px !important;
        padding: 12px 20px !important;
    }

    .phone-link {
        font-size: 18px !important;
        justify-content: center;
    }

    /* FLOAT ANİMASYON */
    @keyframes float {
        0%,100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    /* GALLERY */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 200px;
        border-radius: 12px;
    }

    .product-label {
        font-size: 13px;
        padding: 8px;
    }

    /* TOPLU ALIM */
    .wholesale-content {
        flex-direction: column;
        text-align: center;
    }

    .wholesale-text h2 {
        font-size: 20px;
    }

    .offer-btn {
        width: 100%;
        justify-content: center;
        font-size: 15px;
        padding: 12px;
    }

    /* TÜM ÜRÜNLER */
    .all-products-btn {
        margin-top: 20px;
        font-size: 1.1rem;
        padding: 12px 25px;
    }

    /* STERİL */
    .steril-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .steril-box {
        width: 100%;
        max-width: 300px;
        padding: 20px;
    }

    .steril-title {
        font-size: 26px;
    }

    .steril-desc {
        font-size: 14px;
    }

    /* HAKKIMIZDA FIX */
    .about-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .about-title {
        font-size: 32px;
    }

    #aboutText {
        font-size: 15px;
        line-height: 1.6;
        word-break: break-word;
        padding: 0 5px;
    }

    /* FOOTER */
    footer {
        font-size: 13px;
        padding: 20px 10px;
    }

    /* FLOAT SOCIAL */
    .float-social {
        right: 10px;
        bottom: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* =========================================
   🚫 MOBİL ANİMASYON FIX (EN KRİTİK)
   ========================================= */

@media (max-width: 768px) {

    .cinematic-item,
    .cinematic-item.left,
    .cinematic-item.right,
    .cinematic-item.bottom {
        transform: none !important;
        opacity: 1 !important;
    }

}

.about-page {
    padding: 80px 5%;
    background-color: #fff;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-header h1 span {
    color: #e6b800;
}

.about-header p {
    color: #666;
    font-size: 18px;
    margin-top: 10px;
}

.about-content-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Sol Taraf */
.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 35px;
    font-weight: 900;
    color: #e6b800;
}

.stat-desc {
    font-size: 14px;
    color: #777;
    font-weight: 600;
}

/* Sağ Taraf: Kartlar */
.about-features {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    transition: 0.3s;
    border-left: 5px solid #e6b800;
}

.feature-card:hover {
    transform: translateX(10px);
}

.feature-card i {
    font-size: 30px;
    color: #e6b800;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #ccc;
}

/* Mobil Uyumluluk */
@media screen and (max-width: 992px) {
    .about-content-wrapper {
        flex-direction: column;
    }
    .about-header h1 { font-size: 35px; }
}

/* Sayfanın tamamını kapsayan bir yapı kuruyoruz */
body {
    display: block;
    flex-direction: column;
    min-height: 100vh; /* Ekranın tamamını kapla */
    margin: 0;
}

/* Hakkımızda bölümünü esneterek footer'ı aşağı itmesini sağlıyoruz */
.about-page {
    flex: 1; /* Mevcut boşluğu bu alan doldursun */
}

/* Footer'ın kendisi */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

/* ===============================
   NAVBAR GENEL (PC)
================================ */
.navbar {
    width: 100%;
    padding: 15px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 999;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

/* LOGO */
.logo {
    font-size: 50px;
    font-family: 'Bebas Neue', sans-serif;
}

.logo span {
    color: #e6b800;
}

/* --- NAV-PHONE TAM ORTALAMA VE ANIMASYON --- */
.nav-phone {
    /* PC'de Tam Orta İçin Mutlak Konumlandırma */
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0); /* Yatayda tam merkeze çiviler */
    
    /* Temel Ayarlar */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    transition: background-color 0.3s ease;

    /* Boyut ve Renk */
    font-size: 30px;
    padding: 12px 24px;
    background-color: red; /* Logodaki sarı #e6b800*/
    color: #fff;
    border-radius: 8px;
    z-index: 1000; /* Diğer öğelerin üstünde kalması için */
    
    /* Sürekli Animasyon */
    animation: canliButon 1s infinite ease-in-out;
}

/* Animasyon Tanımı (Nefes + Titreşim) */
@keyframes canliButon {
    0% { transform: translate(-50%, 0) scale(1) translateX(0); box-shadow: 0 0 0 0 rgba(230, 184, 0, 0.7); }
    20% { transform: translate(-50%, 0) scale(1.05) translateX(-3px); }
    40% { transform: translate(-50%, 0) scale(1.05) translateX(3px); }
    60% { transform: translate(-50%, 0) scale(1.05) translateX(-3px); box-shadow: 0 0 20px 10px rgba(230, 184, 0, 0); }
    80% { transform: translate(-50%, 0) scale(1.05) translateX(3px); }
    100% { transform: translate(-50%, 0) scale(1) translateX(0); box-shadow: 0 0 0 0 rgba(230, 184, 0, 0); }
}

.nav-phone:hover {
    background-color: #f1c40f; 
}

/* --- MOBİL DÜZENLEME --- */
@media (max-width: 768px) {
    .nav-phone {
        /* Mobilde absolute devredışı, normal akışa döner */
        position: relative;
        left: auto;
        transform: none;
        margin: 10px auto;
        display: flex;
        width: fit-content;
        font-size: 22px;
        padding: 10px 20px;
        animation: canliButonMobil 1s infinite ease-in-out;
    }

    /* Mobil için ayrı animasyon (çünkü translate değerleri farklı) */
    @keyframes canliButonMobil {
        0% { transform: scale(1) translateX(0); }
        20% { transform: scale(1.05) translateX(-3px); }
        40% { transform: scale(1.05) translateX(3px); }
        100% { transform: scale(1) translateX(0); }
    }
}

/* ===============================
   PC NAV
================================ */
.nav-links {
    display: flex;
    gap: 30px;
    z-index: 999998 !important;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 20px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e6b800;
}

/* ===============================
   HAMBURGER (PC gizli)
================================ */
.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;

    position: fixed !important;
    top: 20px;
    right: 20px;

    z-index: 9999999 !important; /* BUNU YÜKSELT */
}
/* ===============================
   📱 MOBİL
================================ */
@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
    }

    /* hamburger aç */
    .menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        cursor: pointer;
        position: fixed !important;
        top: 20px;
        right: 20px;
        z-index: 999999 !important; /* en üste çıkar */
    }

    .menu-btn span {
        height: 3px;
        width: 100%;
        background: #111;
        border-radius: 2px;
        transition: 0.3s;
        
    }

    /* X animasyon */
    .menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px,5px);
    }

    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px,-5px);
    }

    /* FULL SCREEN MENU */
    .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transform: translateY(-100%);
    transition: 0.4s ease;

    z-index: 9999 !important;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        color: white;
        font-size: 28px;
        margin: 15px 0;

        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    /* delay */
    .nav-links.active a:nth-child(1){ transition-delay: .1s }
    .nav-links.active a:nth-child(2){ transition-delay: .2s }
    .nav-links.active a:nth-child(3){ transition-delay: .3s }
    .nav-links.active a:nth-child(4){ transition-delay: .4s }

    /* scroll kilitle */
    body.menu-open {
        overflow: hidden;
    }
}

/* KESİN ÇALIŞAN MOBİL KAPATMA BUTONU */
.mobile-close-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-close-btn {
        position: fixed !important;
        top: 18px !important;
        right: 22px !important;
        z-index: 2147483647 !important;

        width: 46px;
        height: 46px;
        border: none;
        border-radius: 50%;

        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        font-size: 38px;
        font-weight: 300;
        line-height: 46px;
        text-align: center;

        display: none;
        cursor: pointer;
        backdrop-filter: blur(10px);
        box-shadow: 0 0 20px rgba(255,255,255,0.25);
    }

    body.menu-open .mobile-close-btn {
        display: block !important;
    }

    body.menu-open .menu-btn {
        display: none !important;
    }

    .nav-links {
        background: rgba(0,0,0,0.96) !important;
        z-index: 999999 !important;
    }

    .float-social {
        z-index: 10 !important;
    }
}

/* ====== ÜRÜNLER SAYFASI MOBİL FULL RESET ====== */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 12px 14px;
    }

    .logo {
        font-size: 22px;
    }

    /* SEARCH */
    .search-container {
        order: 3;
        width: 100%;
        margin-top: 10px;
        position: relative;
    }

    .search-container input {
        width: 100%;
        height: 45px;
        border-radius: 12px;
        border: none;
        background: #111;
        color: #fff;
        padding: 0 40px 0 15px;
        font-size: 14px;
    }

    .search-container button {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #aaa;
    }

    /* GRID */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 10px;
    }

    /* KART */
    .product-card {
        background: #111;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .product-img {
        background: #fff;
        padding: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-img img {
        width: 100%;
        height: auto;
    }

    /* TEXT */
    .product-info {
        padding: 10px;
    }

    .product-info h3 {
        font-size: 13px;
        line-height: 1.3;
        height: 34px;
        overflow: hidden;
        color: #fff;
    }

    /* BUTON */
    .whatsapp-link {
        display: block;
        margin-top: 8px;
        padding: 8px;
        font-size: 12px;
        text-align: center;
        border-radius: 8px;
        background: linear-gradient(135deg, #00c853, #00e676);
        color: #fff;
        text-decoration: none;
    }

    /* CATEGORY */
    .category-title {
        font-size: 18px;
        padding-left: 10px;
    }

    .category-block {
        margin-bottom: 20px;
    }

}
@media (max-width: 768px) {

    /* 🔥 TÜM ESKİ SEARCH TASARIMINI SIFIRLA */
    .search-container {
        all: unset;
        display: block;
        width: 100%;
        padding: 0 10px;
        margin: 10px 0;
        position: relative;
    }

    .search-container input {
        width: 100%;
        height: 42px;
        border-radius: 30px;
        border: none;
        outline: none;
        padding: 0 45px 0 15px;
        font-size: 14px;
        background: #1c1c1c;
        color: #fff;
    }

    .search-container button {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #aaa;
        font-size: 16px;
    }

    /* 🔥 O DEV KUTUYU OLUŞTURAN HER ŞEYİ KAPAT */
    .search-container::before,
    .search-container::after {
        display: none !important;
    }

}

@media (min-width: 769px) {

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 260px));
        justify-content: flex-start; /* sola yasla */
        align-items: start;          /* uzamayı kes */
    }

    .product-card {
        align-self: start;
    }

}

/* ===============================
   İLETİŞİM SAYFASI ÖZEL RESET
================================ */

.ozekim-contact-full {
    position: relative;
    z-index: 1;
}

/* NAVBAR BOZULMA FIX */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* HAMBURGER FIX */
.menu-btn {
    z-index: 100000 !important;
}

/* CONTACT HEADER TAŞMA FIX */
.contact-header-v3 {
    margin-top: 80px; /* navbar altına iter */
}

/* GRID TAŞMA FIX */
.v3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* MOBİL FIX */
@media (max-width: 768px) {

    .v3-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-header-v3 {
        margin-top: 90px;
    }

    .v3-title {
        font-size: 36px;
    }

    .v3-card {
        padding: 20px;
    }

}

/* FLEX ÇAKIŞMA ENGEL */
body {
    display: block !important;
}

.v3-card-text a{
    text-decoration: none;
    color: #111;
    font-weight: 700;
    transition: 0.3s;
}

.v3-card-text a:hover{
    color: #eab308;
}

