/*
Theme Name: Mavruz Tema
Author: Ramazan Burak Demir
Description: Özel kodlanmış modern tarım ve e-ticaret teması.
Version: 2.4
*/

/* =========================================
   1. GENEL AYARLAR & FONTLAR
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&family=Open+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700;900&display=swap');

:root {
    --primary: #D9381E; /* Domates Kırmızısı */
    --secondary: #2E7D32; /* Yaprak Yeşili */
    --dark: #333;
    --light: #fff;
}

/* Sıfırlama ve Temel Ayarlar */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9f9;
    color: var(--dark);
}

/* Header yüksekliği (Masaüstü için) */
body { padding-top: 250px; }

h1, h2, h3, nav a { font-family: 'Poppins', sans-serif; }

/* Boşluk Düzeltme */
main, .hero-slider, .page-content {
    margin-top: -100px !important; 
    padding-top: 0 !important;
    display: block; 
    border: none;
    outline: none;
}


/* #region 2. HEADER (MASAÜSTÜ) */
.main-header {
    display: flex;
    width: 100%;
    height: 200px;
    position: fixed;
    top: 0; left: 0;
    z-index: 9999;
    transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                background-color 0.6s ease,
                box-shadow 0.6s ease;
    box-shadow: none;
    border-bottom: none;
    align-items: stretch;
}

/* Sol Blok (Yeşil Alan) */
.brand-panel {
    width: 350px;
    background-color: #1E3329;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 40px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.brand-text span { transition: all 0.5s ease; color: #ffffff; }

/* Sağ Blok (Resimli Alan) */
.visual-panel {
    flex-grow: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: background 0.4s ease;
    height: 100%;
}

.visual-panel .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* --- İÇERİK YAPISI (MENÜ + BUTONLAR) --- */
.header-content-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
    gap: 20px; /* Menü ile Buton Grubu arasındaki boşluk */
}

/* 1. MENÜ LİNKLERİ */
.glass-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 90px;
    padding: 6px 25px; /* Menü kutusu inceldi */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
    gap: 5px;
}

.nav-item {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem; /* Yazı boyutu ideal */
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.nav-item:hover {
    background-color: #ffffff;
    color: #1E3329;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* 2. DİKEY BUTON KUTUSU (YENİ EKLENDİ) */
.header-buttons-group {
    display: flex;
    flex-direction: column; /* Sihirli kod: Alt alta dizer */
    gap: 6px; /* İki buton arasındaki boşluk */
    align-items: flex-end; /* Sağa yaslar */
    justify-content: center;
}

/* 3. BUTONLARIN ORTAK STİLİ (SEPET + GİRİŞ) */
/* Daha önce inline style vardı, şimdi class ile kontrol ediyoruz */
.glass-cart-btn, .login-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* İNCELİK VE ŞEKİL AYARLARI */
    height: 32px !important;       /* İncecik yükseklik */
    padding: 0 20px !important;    /* Yanlardan boşluk */
    min-width: 140px !important;   /* İkisinin genişliği eşit olsun */
    
    font-family: 'Inter', sans-serif !important;
    font-size: 0.75rem !important; /* Küçük, kibar font */
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
    margin: 0 !important; /* PHP'deki marginleri sıfırla */
}

/* Sepet Butonu Renkleri */
.glass-cart-btn:not(.login-btn) {
    background: #D9381E !important; /* Kırmızı */
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

/* Giriş Butonu Renkleri */
.login-btn {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.5) !important; /* İnce beyaz çerçeve */
}

.login-btn:hover {
    background: #fff !important;
    color: #1E3329 !important;
}

.glass-cart-btn:hover {
    transform: translateX(-3px);
}

.cart-badge {
    background: #ffffff;
    color: #E53935;
    font-size: 10px;
    font-weight: 900;
    height: 16px; width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.main-header .glass-cart-btn {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #1E3329 !important; 
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

/* Hover durumunda tam beyaz olsun */
.main-header .glass-cart-btn:hover {
    background-color: #ffffff !important;
    color: #0F1F18 !important;
    transform: translateY(-2px);
}

/* İkonların rengini metinle uyumlu hale getir (Koyu Yeşil) */
.main-header .glass-cart-btn svg {
    color: #1E3329 !important;
}

/* Hesabım butonundaki ikon dolgulu olduğu için fill ayarı */
.main-header .glass-cart-btn.account-btn svg,
.main-header .glass-cart-btn.login-btn svg {
    fill: #1E3329 !important;
}

/* Sepet içi ürün sayısı (Badge) kırmızı kalsın ki dikkat çeksin */
.main-header .glass-cart-btn .cart-badge {
    background-color: #D9381E !important;
    color: #ffffff !important;
}


/* --- SCROLL EFEKTİ --- */
.main-header.scrolled {
    height: 80px;
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.main-header.scrolled .brand-panel {
    width: auto; padding-right: 30px; background-color: transparent;
}

.main-header.scrolled .brand-text { flex-direction: row; align-items: center; }
.main-header.scrolled .brand-text span { font-size: 1.4rem; color: #1E3329; margin-right: 5px; }

.main-header.scrolled .visual-panel {
    background-image: none !important; background-color: transparent;
    justify-content: center; display: flex; flex-direction: column;
}

.main-header.scrolled .overlay { opacity: 0; }
.main-header.scrolled .header-content-wrapper { height: auto; padding-right: 30px; }

.main-header.scrolled .glass-nav { background: transparent; border: none; box-shadow: none; padding: 0; }
.main-header.scrolled .nav-item { font-size: 0.85rem; padding: 10px 15px; color: #1E3329; }
.main-header.scrolled .nav-item:hover { background-color: #f0f0f0; }

/* Scrolled Halinde Butonlar */
.main-header.scrolled .glass-cart-btn:not(.login-btn) {
    background-color: #1E3329 !important; /* Sepet yeşil olur */
}
.main-header.scrolled .login-btn {
    border-color: #1E3329 !important; /* Çerçeve yeşil olur */
    color: #1E3329 !important;
}
.main-header.scrolled .login-btn:hover {
    background-color: #1E3329 !important;
    color: #fff !important;
}
/*#endregion*/

/* #region 3. HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #333;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active { opacity: 1; z-index: 2; }

.slide-content {
    color: #fff;
    max-width: 800px;
    padding: 20px;
    margin-top: 60px;
}

.slide-content h1 {
    font-family: 'Merriweather', serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.slide-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.btn-dark {
    display: inline-block;
    background-color: #0d0d0d;
    color: #fff;
    padding: 16px 45px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #0d0d0d;
}
.btn-dark:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.slider-dots {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
}
.dot {
    height: 12px; width: 12px; margin: 0 6px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 50%; cursor: pointer; transition: 0.3s;
}
.dot.active { background-color: #fff; transform: scale(1.2); }

@media (max-width: 768px) {
    .slide-content h1 { font-size: 2.5rem; }
    .slide-content p { font-size: 1rem; }
}
/*#endregion*/

/* #region 4. ANA SAYFA BÖLÜMLERİ (Info, Vitrin, About...)  */

/* Info Strip */
.info-strip {
    background-color: #224229;
    padding: 100px 0;
    color: #faf4eb;
    display: flex;
    justify-content: center;
}

.strip-container {
    max-width: 1800px; width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.strip-text { flex: 1; min-width: 300px; }
.strip-text h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}
.strip-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.btn-white {
    display: inline-block;
    background-color: #fff;
    color: #1E3329;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #d4d4d4;
    transform: translateY(-3px);
}

.strip-image { flex: 1; display: flex; justify-content: center; }
.strip-image img {
    max-width: 110%; height: auto;
    opacity: 1;
    max-height: 500px;
}

@media (max-width: 768px) {
    .info-strip { padding: 50px 0; }
    .strip-container { flex-direction: column; text-align: center; }
    .strip-image { margin-top: 30px; }
}



/* Ürün Vitrini & Fidanlar */
.product-showcase {
    background-color: #faf4eb;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 5; }

.section-title {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: #1E3329;
    margin-bottom: 10px;
}
.title-underline {
    width: 60px; height: 3px;
    background-color: #1E3329;
    margin: 0 auto 50px auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card { transition: transform 0.3s ease; }
.product-card:hover { transform: translateY(-5px); }
.product-link { text-decoration: none; color: inherit; }

.p-image img {
    width: 100%; height: 300px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.p-info { text-align: left; padding: 15px 0; }
.p-info h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
.price { font-family: 'Open Sans', sans-serif; font-size: 1rem; color: #555; }
.price ins { text-decoration: none; font-weight: bold; }
.price del { color: #999; font-size: 0.9em; margin-right: 5px; }

.view-all-container { margin-top: 40px; }
.btn-outline {
    display: inline-block;
    padding: 12px 50px;
    border: 2px solid #1E3329;
    color: #1E3329;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}
.btn-outline:hover { background-color: #1E3329; color: #fff; }

/* Domates Fidanları Animasyonu */
.sapling-container {
    position: absolute; bottom: 0;
    width: 350px; height: 600px;
    z-index: 0; pointer-events: none;
}
.left-sapling { left: 0px; bottom: -80px; }
.right-sapling { right: 0px; bottom: -80px; transform: scaleX(-1); }

.sapling-svg { width: 100%; height: 100%; overflow: visible; --scroll-progress: 0; }
.vine-stem {
    fill: none; stroke: #388E3C; stroke-linecap: round;
    stroke-dasharray: 800;
    stroke-dashoffset: calc(800 - ( clamp(0, (var(--scroll-progress) - var(--delay)) * 2, 1) * 800 ));
}
.leaf {
    fill: #66BB6A; transform-box: fill-box; transform-origin: center bottom;
    transform: scale( clamp(0, (var(--scroll-progress) - var(--delay) - 0.2) * 10, 1) );
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tomato {
    fill: #E53935; transform-box: fill-box; transform-origin: center top;
    transform: scale( clamp(0, (var(--scroll-progress) - var(--delay) - 0.4) * 15, 1) );
    transition: transform 0.5s ease-out;
}
@media (max-width: 768px) { .sapling-container { display: none; } }

/* Hakkımızda */
.about-section {
    position: relative; width: 100%; min-height: 600px;
    background-attachment: fixed; background-position: center;
    background-repeat: no-repeat; background-size: cover;
    display: flex; align-items: center; justify-content: center;
}
.glass-container { width: 100%; max-width: 1200px; padding: 20px; display: flex; justify-content: center; }
.glass-box {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    padding: 60px; max-width: 800px; text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-radius: 4px;
}
.glass-title { font-family: 'Merriweather', serif; font-size: 3rem; color: #1E3329; margin-bottom: 10px; font-weight: 900; }
.glass-subtitle { font-family: 'Open Sans', sans-serif; font-size: 1.5rem; color: #333; margin-bottom: 25px; font-weight: 700; }
.glass-text { font-size: 1.1rem; color: #1a1a1a; line-height: 1.8; margin-bottom: 40px; }
.btn-glass {
    display: inline-block; padding: 12px 35px;
    background: #fff; color: #1E3329; font-weight: 600;
    text-decoration: none; border: 1px solid #1E3329;
    transition: all 0.3s ease; text-transform: uppercase;
    font-size: 0.9rem; letter-spacing: 1px;
}
.btn-glass:hover { background: #1E3329; color: #fff; transform: translateY(-2px); }
@media (max-width: 768px) {
    .about-section { background-attachment: scroll; }
    .glass-box { padding: 30px; background: rgba(255, 255, 255, 0.85); }
    .glass-title { font-size: 2rem; }
}
 /* #endregion */

/* #region Konum Alanı */
.location-section { padding: 80px 0; background-color: #233f29; }
.location-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: stretch; }
.contact-info-card { background: #fff; padding: 50px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); display: flex; flex-direction: column; justify-content: center; }
.contact-title { font-family: 'Merriweather', serif; font-size: 2rem; color: #1E3329; margin-bottom: 10px; }
.contact-line { width: 60px; height: 3px; background-color: #224229; margin-bottom: 40px; }
.contact-item { display: flex; align-items: flex-start; margin-bottom: 30px; }
.contact-item:last-child { margin-bottom: 0; }
.icon-box { width: 50px; height: 50px; background-color: #e8f5e9; color: #2E7D32; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 20px; flex-shrink: 0; }
.info-content h4 { margin: 0 0 5px 0; color: #1E3329; font-size: 1.1rem; }
.info-content p, .info-content a { margin: 0; color: #555; text-decoration: none; font-size: 1rem; line-height: 1.6; transition: color 0.3s; }
.info-content a:hover { color: #4CAF50; }
.map-wrapper { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.05); min-height: 400px; background-color: #ddd; }
.google-map { width: 100%; height: 100%; }
.google-map iframe { width: 100% !important; height: 100% !important; border: none; display: block; min-height: 400px; }
@media (max-width: 992px) {
    .location-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-info-card { padding: 30px; }
    .map-wrapper { min-height: 300px; }
}
/*#endregion*/

/* #region 5. MAĞAZA (WOOCOMMERCE) SAYFASI  */

/* Sayfa Genel Yapısı (Mavruz Mağaza) */
.mavruz-shop-container {
    background-color: #fcfcfc;
    min-height: 100vh;
    padding: 60px 0 100px 0;
    font-family: 'Inter', sans-serif;
}

.mavruz-inner-content {
    max-width: 1350px; 
    width: 92%; 
    margin: 0 auto; 
}

/* Başlık Alanı */
.shop-header-wrapper { margin-bottom: 40px; }
.shop-title-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.shop-title-row .page-title,
.woocommerce-products-header__title.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #1E3329;
    margin: 0;
}
.shop-title-row .product-count {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Filtre Barı */
.shop-filter-bar {
    background-color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-search form { position: relative; min-width: 300px; }
.filter-search input[type="search"] {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    background-color: #f9f9f9;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}
.filter-search input[type="search"]:focus {
    background-color: #fff;
    border-color: #1E3329;
    box-shadow: 0 0 0 3px rgba(30, 51, 41, 0.1);
}

.filter-sort-links { display: flex; gap: 25px; align-items: center; }
.filter-sort-links a {
    text-decoration: none !important;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 5px 0;
    transition: all 0.2s;
    position: relative;
}
.filter-sort-links a:hover,
.filter-sort-links a.active { color: #1E3329; font-weight: 700; }
.filter-sort-links a.active::after {
    content: '';
    display: block;
    width: 6px; height: 6px;
    background: #1E3329;
    border-radius: 50%;
    margin: 5px auto 0 auto;
    position: absolute; left: 50%; transform: translateX(-50%);
}

/* Grid Sistemi (Ürünler) */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* 4 Sütun */
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Kart Tasarımı */
.woocommerce ul.products li.product {
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid #eee !important;
    padding: 20px !important;
    margin: 0 0 30px 0 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    position: relative;
    overflow: hidden;
    box-sizing: border-box !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    border-color: #d1e7dd !important;
}

/* Ürün Görseli Düzeltmeleri */
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
    display: block !important;
    text-align: center !important;
}
.woocommerce ul.products li.product img,
.woocommerce ul.products li.product a img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 250px !important; /* Maksimum yükseklik */
    object-fit: contain !important; /* Sığdır */
    margin: 0 auto 15px auto !important;
    display: inline-block !important;
    float: none !important;
    padding: 0 !important;
    background-color: #fff;
    box-shadow: none !important;
    border-radius: 5px;
}
.woocommerce ul.products li.product:hover a img {
    transform: scale(1.08);
}

/* Kategori Yazısını Gizle (Mavi/Mor Yazı) */
.woocommerce ul.products li.product .product-category, 
.woocommerce ul.products li.product .ast-woo-product-category,
.woocommerce ul.products li.product .posted_in {
    display: none !important;
}

/* Ürün Başlığı */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 600;
    color: #1E3329 !important;
    padding: 0 15px !important;
    margin: 5px 0 10px 0 !important;
    line-height: 1.4;
    text-decoration: none !important;
}
.woocommerce ul.products li.product a { text-decoration: none !important; }

/* Fiyat */
.woocommerce ul.products li.product .price {
    display: block;
    color: #1E3329 !important;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}
.woocommerce ul.products li.product .price del {
    color: #aaa; font-size: 0.9rem; font-weight: 400; margin-right: 8px; text-decoration: line-through;
}

/* İndirim Rozeti */
.onsale {
    position: absolute; top: 15px; left: 15px;
    background-color: #D9381E; color: #fff;
    padding: 4px 12px; font-size: 0.75rem; font-weight: 700;
    border-radius: 20px; z-index: 5;
    box-shadow: 0 3px 10px rgba(217, 56, 30, 0.2);
}

/* Sepete Ekle Butonu */
.woocommerce ul.products li.product .button {
    display: inline-block !important;
    background-color: #ffffff !important;
    color: #1E3329 !important;
    border: 1px solid #1E3329 !important;
    padding: 10px 0 !important;
    width: 80%; /* Buton genişliği */
    margin: 0 auto !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative; z-index: 10; cursor: pointer;
}
.woocommerce ul.products li.product .button:hover {
    background-color: #1E3329 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 51, 41, 0.2);
}
.woocommerce ul.products li.product .button.loading { opacity: 0.7; padding-right: 40px !important; }
.woocommerce ul.products li.product .button.loading::after {
    content: ''; position: absolute; top: 50%; right: 15px;
    width: 16px; height: 16px; margin-top: -8px;
    border: 2px solid #1E3329; border-top-color: transparent;
    border-radius: 50%; animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.woocommerce ul.products li.product .button.added {
    background-color: #2E7D32 !important; border-color: #2E7D32 !important; color: #fff !important;
}
.woocommerce ul.products li.product .button.added::after { content: '✓'; margin-left: 5px; }
a.added_to_cart { display: none !important; }

/* Mağaza Mobil Uyum */
@media (max-width: 1200px) {
    .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 900px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
    .mavruz-inner-content { width: 95%; }
}
@media (max-width: 600px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 15px !important; }
    .shop-filter-bar { flex-direction: column; padding: 15px; }
    .filter-search form, .filter-search input[type="search"] { width: 100%; min-width: auto; }
    .filter-sort-links { overflow-x: auto; white-space: nowrap; padding-bottom: 5px; }
    .shop-title-row { flex-direction: column; gap: 5px; }
    .woocommerce ul.products li.product a img { height: 160px !important; padding: 10px; }
    .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 0.9rem; }
    .woocommerce ul.products li.product .price { font-size: 1rem; }
}

/*#endregion*/

/* #region 6. SEPET SAYFASI (CART PAGE)   */    

/* Genel Sayfa Yapısı */
.woocommerce-cart .woocommerce {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding-bottom: 80px !important;
    align-items: flex-start !important;
}

/* Sol Taraf (Ürün Listesi) */
.woocommerce-cart-form {
    flex: 1 1 600px !important;
    background: #fff !important;
    padding: 30px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

/* Sağ Taraf (Özet) - Sticky */
.cart-collaterals {
    flex: 0 0 350px !important;
    width: 350px !important;
    position: sticky !important;
    top: 100px !important;
}

/* Kargo Takip Barı */
.mavruz-shipping-tracker {
    display: block !important;
    width: 100% !important;
    background: #f9fdfa !important;
    padding: 20px !important;
    border: 1px solid #e8f5e9 !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
}
.tracker-text {
    font-size: 1rem !important;
    color: #1E3329 !important;
    margin-bottom: 10px !important;
    display: block !important;
}
.tracker-bar {
    width: 100% !important;
    height: 10px !important;
    background-color: #e0e0e0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1) !important;
}
.tracker-fill {
    display: block !important;
    height: 100% !important;
    background: linear-gradient(90deg, #4CAF50, #2E7D32) !important;
    border-radius: 10px !important;
    transition: width 0.6s ease !important;
}

/* Tablo Düzeni */
.shop_table.cart {
    width: 100% !important; border-collapse: collapse !important; border: none !important; margin: 0 !important;
}
.shop_table.cart thead { display: none !important; }
.shop_table.cart td::before { content: none !important; }
.shop_table.cart tr.cart_item {
    display: flex !important; align-items: center !important; flex-wrap: wrap !important;
    padding: 25px 0 !important; border-bottom: 1px solid #eee !important; position: relative !important;
}

/* Resim Hücresi */
.shop_table.cart td.product-thumbnail {
    width: 90px !important; padding: 0 !important; border: none !important; margin-right: 20px !important;
}
.shop_table.cart td.product-thumbnail img {
    width: 80px !important; height: 80px !important; object-fit: cover !important;
    border-radius: 10px !important; box-shadow: none !important;
}

/* İsim Hücresi */
.shop_table.cart td.product-name {
    flex: 1 !important; padding: 0 !important; border: none !important;
    display: flex !important; flex-direction: column !important; justify-content: center !important;
}
.shop_table.cart td.product-name a {
    color: #1E3329 !important; font-weight: 700 !important; font-size: 1.1rem !important;
    text-decoration: none !important; font-family: sans-serif !important;
}

/* Miktar Hücresi */
.shop_table.cart td.product-quantity {
    width: auto !important; padding: 0 !important; border: none !important; margin: 0 20px !important;
}
.shop_table.cart .quantity input.qty {
    width: 50px !important; height: 40px !important; border: 1px solid #ddd !important;
    border-radius: 8px !important; text-align: center !important; font-weight: 600 !important;
}

/* Ara Toplam Hücresi */
.shop_table.cart td.product-subtotal {
    width: auto !important; padding: 0 !important; border: none !important;
    color: #1E3329 !important; font-weight: 800 !important; font-size: 1.1rem !important;
}

/* Silme İkonu */
.shop_table.cart td.product-remove {
    width: 30px !important; height: 30px !important; padding: 0 !important; border: none !important;
    order: -1 !important; margin-right: 15px !important;
}
.shop_table.cart td.product-remove a {
    display: flex !important; align-items: center !important; justify-content: center !important;
    width: 30px !important; height: 30px !important; background: #f5f5f5 !important;
    border-radius: 50% !important; color: #999 !important; font-size: 0 !important;
    text-decoration: none !important; transition: all 0.3s ease !important;
}
.shop_table.cart td.product-remove a svg { width: 16px !important; height: 16px !important; stroke: #666 !important; fill: none !important; }
.shop_table.cart td.product-remove a:hover { background: #ffebee !important; }
.shop_table.cart td.product-remove a:hover svg { stroke: #d32f2f !important; }

/* Sipariş Özeti Kutusu */
.cart_totals {
    background: #1E3329 !important; color: #fff !important; padding: 30px !important;
    border-radius: 16px !important; width: 100% !important;
}
.cart_totals h2 {
    font-size: 1.4rem !important; color: #fff !important; margin: 0 0 20px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important; padding-bottom: 15px !important;
}
.cart_totals table tr th, .cart_totals table tr td {
    padding: 12px 0 !important; font-size: 1rem !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important; color: #fff !important;
}
.order-total th { font-size: 1.2rem !important; padding-top: 20px !important; }
.order-total td { font-size: 1.5rem !important; color: #81C784 !important; padding-top: 20px !important; }

/* Ödeme Butonu */
.cart_totals .wc-proceed-to-checkout {
    display: block !important; width: 100% !important; padding: 0 !important; margin-top: 20px !important;
}
.wc-proceed-to-checkout a.checkout-button {
    display: block !important; width: 100% !important; text-align: center !important;
    padding: 18px 0 !important; margin: 0 !important;
    background-color: #D9381E !important; color: #fff !important;
    font-size: 1.1rem !important; border-radius: 8px !important; font-weight: 700 !important;
}
.wc-proceed-to-checkout a.checkout-button:hover { background-color: #b71c1c !important; }

/* Kupon Alanı */
.coupon {
    display: flex !important; align-items: center !important; gap: 10px !important;
    margin-top: 25px !important; padding-top: 25px !important; border-top: 1px solid #f0f0f0 !important; width: 100% !important;
}
.coupon input#coupon_code {
    flex: 1 !important; padding: 12px 15px !important; border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important; background-color: #f9fdfa !important; font-size: 0.95rem !important; height: 45px !important;
}
.coupon button[name='apply_coupon'] {
    background-color: #1E3329 !important; color: #fff !important; padding: 0 25px !important;
    height: 45px !important; border-radius: 8px !important; font-weight: 600 !important;
    font-size: 0.9rem !important; border: none !important; cursor: pointer !important;
}
.coupon button[name='apply_coupon']:hover { background-color: #2E7D32 !important; }

/* Gizlenenler */
button[name='update_cart'], input[name='update_cart'], .woocommerce-cart .woocommerce-message {
    display: none !important;
}

/* Sepet Mobil */
@media (max-width: 900px) {
    .woocommerce-cart .woocommerce { flex-direction: column !important; }
    .cart-collaterals { width: 100% !important; position: static !important; }
}
/*#endregion*/

/* #region 7. BLOG SİSTEMİ (Pop-Art ve Amorf Dalgalar) */

/* 1. BLOG KAPSAYICISI VE ARKA PLAN */
.simple-blog-section {
    padding: 80px 0;
    background-color: #F8F0E3 !important;
    
    /* 1. Katman: Üstte şeffaf, altta katı krem renk (Noktaları aşağıda %0 opaklığa düşürerek gizler)
       2. Katman: Kırmızı pop-art noktaları (Üstte belirginleşmesi için yoğunluk artırıldı)
       3. Katman: Yeşil pop-art noktaları
    */
    background-image: 
        linear-gradient(to bottom, rgba(248, 240, 227, 0) 0%, rgba(248, 240, 227, 1) 95%),
        radial-gradient(rgba(217, 56, 30, 0.35) 15%, transparent 15%), 
        radial-gradient(rgba(46, 125, 50, 0.25) 15%, transparent 15%) !important;
    
    background-position: center top, 0 0, 20px 20px !important; 
    background-size: 100% 100%, 40px 40px, 40px 40px !important;
    background-repeat: no-repeat, repeat, repeat !important;
    
    position: relative !important;
    overflow: visible !important; 
    z-index: 2;
}

/* SOL DALGA EFEKTİ (Küçültüldü, Kesiklik Giderildi, Parlama Kaldırıldı) */
.simple-blog-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 25vw; /* 35vw'den 25vw'ye düşürüldü - Bloglara mesafe açıldı */
    max-width: 350px;
    height: calc(100% + 100px);
    
    /* Duvara yumuşakça dönen, altı kesik olmayan yeni SVG (Xanadu & Sarı) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 1000' preserveAspectRatio='none'%3E%3Cpath fill='%23738678' d='M0,0 C300,0 400,350 100,650 C50,750 0,850 0,850 Z' opacity='0.85'/%3E%3Cpath fill='%23E6C229' d='M0,150 C350,200 350,600 50,800 L0,800 Z' opacity='0.7'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

/* SAĞ DALGA EFEKTİ (Küçültüldü, Kesiklik Giderildi, Parlama Kaldırıldı) */
.simple-blog-section::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 25vw; /* 35vw'den 25vw'ye düşürüldü */
    max-width: 350px;
    height: calc(100% + 100px);
    
    /* Duvara yumuşakça dönen, altı kesik olmayan yeni SVG (Turuncu & Xanadu) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 1000' preserveAspectRatio='none'%3E%3Cpath fill='%23D9641E' d='M350,0 C50,0 -50,350 250,650 C300,750 350,850 350,850 Z' opacity='0.75'/%3E%3Cpath fill='%23738678' d='M350,150 C0,200 0,600 300,800 L350,800 Z' opacity='0.8'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

/* MOBİLDE DALGALARI TAMAMEN GİZLE */
@media (max-width: 991px) {
    .simple-blog-section::before,
    .simple-blog-section::after {
        display: none !important;
    }
}
/* 2. SLIDER VE İÇERİK YAPISI (Mevcut Kodların) */
.simple-blog-header { text-align: center; margin-bottom: 25px; }
.header-line {
    width: 60px; height: 3px; background-color: #1E3329; margin: 15px auto 0; border-radius: 2px;
}
.slider-viewport { width: 100%; overflow: hidden; padding: 20px 5px; }
.slider-track { display: flex; gap: 30px; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform; }
.slide-item { flex: 0 0 calc(33.333% - 20px); max-width: calc(33.333% - 20px); }

/* Blog Kartı */
.minimal-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06); border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%;
    display: flex; flex-direction: column;
}
.minimal-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.card-img-link { height: 200px; display: block; overflow: hidden; position: relative; }
.card-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.minimal-card:hover .card-img-link img { transform: scale(1.05); }

.minimal-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.date-badge { font-size: 0.75rem; color: #999; font-weight: 600; margin-bottom: 10px; display: block; }
.min-title { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.min-title a { color: #1E3329; text-decoration: none; transition: color 0.2s; }
.min-title a:hover { color: #D9381E; }
.min-excerpt { font-size: 0.9rem; color: #666; margin-bottom: 20px; flex-grow: 1; }
.min-read-more {
    font-size: 0.85rem; font-weight: 700; color: #1E3329; text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.5px; margin-top: auto;
    border-bottom: 2px solid transparent; align-self: flex-start; transition: border-color 0.3s;
}
.min-read-more:hover { border-color: #D9381E; }

.slider-action { text-align: center; margin-top: 15px; }
.minimal-btn {
    background: transparent; border: 1px solid #ddd; padding: 12px 30px;
    border-radius: 50px; cursor: pointer; font-family: 'Poppins', sans-serif;
    font-weight: 600; color: #555; display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s ease;
}
.minimal-btn:hover { border-color: #1E3329; color: #1E3329; background-color: #f9f9f9; }

@media (max-width: 900px) { .slide-item { flex: 0 0 calc(50% - 15px); max-width: calc(50% - 15px); } }
@media (max-width: 600px) { .slide-item { flex: 0 0 100%; max-width: 100%; } .slider-track { gap: 15px; } }

/* Blog Detay Sayfası */
.blog-detail-container { background-color: #fff; padding-bottom: 100px; }
.blog-hero-section {
    position: relative; height: 60vh; min-height: 400px; display: flex; align-items: flex-end; overflow: hidden; margin-bottom: 60px;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 1;
}
.hero-overlay {
    position: relative; z-index: 2; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(30,51,41,0.9) 0%, rgba(30,51,41,0.3) 60%, rgba(30,51,41,0) 100%);
    display: flex; align-items: flex-end; padding-bottom: 60px;
}
.hero-content { color: #fff; max-width: 800px; }
.hero-cat {
    background-color: #D9381E; color: #fff; padding: 5px 15px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase; display: inline-block; margin-bottom: 20px;
}
.hero-title {
    font-family: 'Poppins', sans-serif; font-size: 3rem; line-height: 1.2; margin-bottom: 20px;
    font-weight: 700; text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-meta { display: flex; gap: 20px; font-size: 1rem; opacity: 0.9; }
.hero-meta span { display: flex; align-items: center; gap: 8px; }

.blog-content-wrapper { max-width: 800px; margin: 0 auto; }
.blog-article-body { font-family: 'Inter', sans-serif; font-size: 1.15rem; line-height: 1.8; color: #333; }
.blog-article-body p { margin-bottom: 25px; }
.blog-article-body h2 { font-size: 2rem; color: #1E3329; margin: 40px 0 20px 0; font-family: 'Poppins', sans-serif; }
.blog-article-body h3 { font-size: 1.5rem; color: #1E3329; margin: 30px 0 15px 0; }
.blog-article-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; }
.blog-article-body blockquote {
    border-left: 4px solid #D9381E; padding-left: 20px; font-style: italic;
    color: #555; margin: 30px 0; font-size: 1.3rem;
}
.blog-footer-nav { margin-top: 60px; padding-top: 30px; border-top: 1px solid #eee; }
.back-link { display: inline-block; color: #1E3329; font-weight: 600; text-decoration: none; transition: color 0.3s; }
.back-link:hover { color: #D9381E; }
@media (max-width: 768px) { .blog-hero-section { height: 50vh; } .hero-title { font-size: 2rem; } }
/*#endregion*/

/* #region 8. DİĞER (Bakım & Efektler) */

/* Bakım Modu Sayfası */
.maintenance-container {
    height: 80vh; display: flex; align-items: center; justify-content: center;
    background-color: #fdfbf7; text-align: center; padding-top: 80px;
}
.maintenance-box { max-width: 500px; padding: 20px; }
.maintenance-icon { margin-bottom: 20px; animation: wrenchFloat 3s ease-in-out infinite; }
.maintenance-title { font-family: 'Merriweather', serif; font-size: 2.5rem; color: #1E3329; margin-bottom: 15px; }
.maintenance-text { font-family: 'Inter', sans-serif; color: #666; line-height: 1.6; margin-bottom: 30px; font-size: 1.1rem; }
.back-home-btn {
    display: inline-block; padding: 12px 30px; background-color: #1E3329; color: #fff;
    text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s ease;
}
.back-home-btn:hover { background-color: #D9381E; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(217, 56, 30, 0.3); }
@keyframes wrenchFloat {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}
/*#endregion*/

/* #region 9. Efsanevi Kart Efekti */
.woocommerce ul.products li.product.legendary-effect {
    animation: cardPulse 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-color: #00e676 !important; z-index: 100 !important;
}
.woocommerce ul.products li.product.legendary-effect::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.2) 0%, rgba(0, 230, 118, 0) 70%);
    opacity: 0; z-index: 1; pointer-events: none; animation: innerFlash 0.8s ease-out;
}
.woocommerce ul.products li.product.legendary-effect::after {
    content: ''; position: absolute; top: -50%; left: -100%; width: 50%; height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(25deg); z-index: 2; pointer-events: none; animation: holoSwipe 0.6s ease-out 0.1s;
}
@keyframes cardPulse {
    0% { transform: scale(1); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
    40% { transform: scale(1.02); box-shadow: 0 0 30px rgba(0, 230, 118, 0.6); background-color: #e8f5e9; }
    100% { transform: scale(1); box-shadow: 0 5px 15px rgba(0,0,0,0.05); background-color: #ffffff; }
}
@keyframes innerFlash { 0% { opacity: 0; } 30% { opacity: 1; } 100% { opacity: 0; } }
@keyframes holoSwipe { 0% { left: -100%; } 100% { left: 200%; } }
/*#endregion*/

/* #region 10. DOMATES ADAM MOUSE İKONU (CUSTOM CURSOR) --- */

/* 1. Genel İmleç (Normal duruş) */
body, html {
    /* 32px boyutunda SVG Domates */
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='35' height='35' viewport='0 0 32 32' style='font-size:24px;'><text y='28'>🍅</text></svg>") 16 16, auto !important;
}

/* 2. Tıklanabilir Alanlar (Linkler, Butonlar) */
a, button, input, select, .mavruz-trigger-btn, .woocommerce-loop-product__link {
    /* Üzerine gelince biraz daha büyük veya farklı bir efekt (Opsiyonel: Şimdilik aynısı kalsın) */
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewport='0 0 32 32' style='font-size:24px;'><text y='28'>🍅</text></svg>") 16 16, pointer !important;
}

/* 3. Özel Durumlar (Resimlerin üzeri vb.) */
.woocommerce ul.products li.product img {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewport='0 0 32 32' style='font-size:24px;'><text y='28'>🍅</text></svg>") 16 16, pointer !important;
}

/* --- DİREKT SEPETE EKLE BUTONU DÜZENİ --- */
.woocommerce ul.products li.product .add_to_cart_button.product_type_simple {
    /* Daha önce yazdığımız genel buton stillerini miras alır ama */
    /* Özel bir durum varsa buraya ekleyebilirsin. Şimdilik standart kalsın. */
    display: inline-block !important;
}

/* Yükleniyor ikonu (Dönme efekti) */
.add_to_cart_button.loading {
    opacity: 0.7;
    padding-right: 40px !important;
}
.add_to_cart_button.loading::after {
    font-family: "WooCommerce";
    content: "\e01c";
    vertical-align: top;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    animation: spin 2s linear infinite;
}

/* --- MAĞAZA EKRANI: ÜST BİLGİ YAZILARINI GİZLE --- */

/* 1. Mağaza ve Kategori Sayfalarındaki Bildirim Alanını Kapat */
.woocommerce-shop .woocommerce-notices-wrapper,
.woocommerce-shop .woocommerce-message,
.woocommerce-shop .woocommerce-info,
.archive.woocommerce-page .woocommerce-notices-wrapper {
    display: none !important;
}

/* 2. Eğer yazı olarak bir yere sıkışmışsa onu da yakala */
.woocommerce-shop .woocommerce-error, 
.woocommerce-shop .woocommerce-message {
    display: none !important;
    visibility: hidden !important;
}

/* #endregion */

/* #region 11. MAĞAZA KARTI DÜZELTMELERİ (Varyasyon & Başlık) --- */
/* Eğer mor yazı bir link metni olarak "resmin dışında" duruyorsa onu gizle: */
.woocommerce ul.products li.product > a:not(.woocommerce-loop-product__link):not(.button) {
    display: none !important;
}

/* 2. Asıl Başlığı Düzenle (Siyah/Yeşil Olan) */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #1E3329 !important; /* Mavruz Yeşili */
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin: 10px 0 5px 0 !important;
    text-decoration: none !important;
}

/* 3. Fiyatı Vurgula (Sadece En Düşük Fiyat Görünecek) */
.woocommerce ul.products li.product .price {
    color: #D9381E !important; /* Kırmızı */
    font-size: 1.3rem !important; /* Biraz büyüt */
    font-weight: 800 !important;
    letter-spacing: -0.5px;
}

/* --- MOR BAŞLIK VE LİNK TEMİZLİĞİ --- */


/* 2. Eğer kategori span etiketi içindeyse onu da gizle */
.woocommerce ul.products li.product .product-category,
.woocommerce ul.products li.product .posted_in,
.woocommerce ul.products li.product .tagged_as {
    display: none !important;
}

/* 3. Başlığı ve Fiyatı Hizala */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    margin-top: 15px !important;
    display: block !important;
}

/* --- FİYAT YANINDAKİ AĞIRLIK ETİKETİ --- */
.mavruz-weight-tag {
    font-size: 0.9rem;       /* Fiyattan biraz küçük */
    color: #666;             /* Koyu gri renk */
    font-weight: 500;        /* Orta kalınlık */
    margin-left: 5px;        /* Fiyattan biraz uzaklaş */
    font-family: 'Inter', sans-serif;
    text-transform: capitalize; /* Baş harfi büyüt */
}

/* Mor Başlık İçin Kesin Çözüm (Hunter-Killer) */
/* Kartın içindeki başlık classına sahip olmayan VE buton olmayan tüm linkleri yok et */
.woocommerce ul.products li.product a:not(.woocommerce-loop-product__link):not(.button) {
    display: none !important;
}
/* #endregion */

/* #region 12. HOVER DETAY BUTONU TASARIMI --- */

/* 1. Ürün kartının pozisyonunu ayarla (Referans noktası) */
.woocommerce ul.products li.product {
    position: relative !important;
    overflow: hidden !important; /* Dışarı taşanları gizle */
}

/* 2. Butonun Kapsayıcısı (Ortalama ve Konumlandırma) */
.mavruz-hover-overlay {
    position: absolute;
    top: 40%; /* Resmin ortasının biraz üstü */
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8); /* Ortala ve biraz küçük başla */
    opacity: 0; /* Başlangıçta GİZLİ */
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none; /* Tıklamayı engelleme, alttaki linke geçir */
    width: 100%;
    text-align: center;
}

/* 3. Butonun Kendisi */
.mavruz-details-btn {
    display: inline-block;
    background-color: #1E3329; /* Mavruz Yeşili */
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    text-transform: uppercase;
}

/* 4. Resim Efekti (Hover olunca resim biraz kararsın/zoom yapsın) */
.woocommerce ul.products li.product:hover a img {
    transform: scale(1.1) !important; /* Resim büyüsün */
    filter: brightness(0.9); /* Hafif kararsın ki buton parlasın */
}

/* 5. HOVER ANI: Butonu Göster */
.woocommerce ul.products li.product:hover .mavruz-hover-overlay {
    opacity: 1; /* Görünür yap */
    top: 35%; /* Hafifçe yukarı kayarak gelsin (Animasyon) */
    transform: translate(-50%, -50%) scale(1); /* Normal boyutuna dönsün */
}

/* Mobilde bu efekti iptal et (Dokunmatik ekranda hover zor olur) */
@media (max-width: 768px) {
    .mavruz-hover-overlay {
        display: none !important;
    }
}
/* #endregion */
 
/* #region Alışveriş Tasarımı (GALERİ + SWATCH) */

.mavruz-single-product-page {
    padding-top: 260px !important;
    padding-bottom: 100px;
    background: #fff;
    font-family: 'Inter', sans-serif;
}
.mavruz-container { max-width: 1300px; width: 95%; margin: 0 auto; }

/* 2. Ana Izgara (Yan Yana) */
.single-product-wrapper {
    display: grid !important;
    grid-template-columns: 500px 1fr !important; /* Sol 500px, Sağ Esnek */
    gap: 60px !important;
    align-items: start !important;
    margin-bottom: 60px;
}

/* --- SOL SÜTUN: GALERİ SİSTEMİ --- */
.product-gallery-column {
    display: flex !important;
    flex-direction: row !important; /* Thumbs solda, Büyük sağda */
    gap: 15px !important;
    height: 400px !important; /* Yükseklik sabitleme */
}

/* Küçük Resimler (Thumbs) */
.mavruz-custom-thumbs {
    display: flex !important; flex-direction: column !important; gap: 10px !important;
    width: 80px !important; min-width: 80px !important;
    overflow-y: auto; /* Çok resim varsa kaydır */
}
.mavruz-thumb-item {
    width: 80px; height: 80px;
    border: 2px solid #eee; border-radius: 8px;
    cursor: pointer; opacity: 0.6; transition: 0.2s;
}
.mavruz-thumb-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mavruz-thumb-item.active { opacity: 1; border-color: #1E3329; }

/* Büyük Resim Alanı */
.woocommerce-product-gallery {
    flex: 1 !important; /* Kalan alanı kapla */
    height: 100% !important;
    border-radius: 15px; overflow: hidden;
    border: 1px solid #eee; position: relative;
}
.woocommerce-product-gallery__image { width: 100%; height: 100%; }
.woocommerce-product-gallery__image img {
    width: 100% !important; height: 100% !important;
    object-fit: cover !important; display: block;
}

/* --- SAĞ SÜTUN: BİLGİLER VE SWATCHLAR --- */
.product-info-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

/* -- SİHİRLİ SIRALAMA KODU -- */
/* Add-to-cart wrapper ve formun sınırlarını kaldırıyoruz ki içeriği sıralayabilelim */
.add-to-cart-wrapper, form.cart, .single_variation_wrap {
    display: contents !important;
}

/* SIRA 1: Başlık */
.single-product-title {
    order: 1;
    font-family: 'Poppins', sans-serif; font-size: 2.8rem;
    font-weight: 700; color: #1E3329; margin: 0; line-height: 1.1;
}

/* SIRA 2: Yıldızlar ve Açıklama (İsteğe bağlı, gizleyebilirsin) */
.single-rating-area { order: 2; margin-bottom: 10px; }
.single-product-description { order: 3; color: #666; font-size: 0.95rem; margin-bottom: 10px; }

/* SIRA 3: Ağırlık Seçimi (Swatches) */
.variations {
    order: 4; width: 100%; border: none !important; margin: 0 !important;
}
.variations label {
    color: #1E3329; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 5px; display: block;
}
/* JS ile oluşturduğumuz Butonlar */
.mavruz-swatch-wrapper { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.mavruz-swatch-item {
    padding: 10px 35px; border: 1px solid #ddd; border-radius: 50px;
    background: #fff; color: #333; font-weight: 600; cursor: pointer;
    font-size: 1.1rem; transition: all 0.2s;
}
.mavruz-swatch-item:hover { border-color: #1E3329; background: #f4f4f4; }
.mavruz-swatch-item.selected {
    background: #1E3329; color: #fff; border-color: #1E3329;
    box-shadow: 0 4px 10px rgba(30,51,41, 0.3);
}

/* SIRA 4: Fiyat */
.single-product-price {
    order: 5;
    font-size: 2.2rem; color: #D9381E; font-weight: 800;
    margin: 10px 0;
}
.single-product-price del { font-size: 1.2rem; color: #bbb; margin-right: 10px; }

/* SIRA 5: Adet ve Buton */
.woocommerce-variation-add-to-cart {
    order: 6;
    display: flex !important; gap: 15px !important; align-items: center !important; width: 100%;
}

.quantity input {
    width: 60px !important; height: 50px !important;
    border: 1px solid #ddd; border-radius: 10px;
    text-align: center; font-weight: bold; font-size: 1.2rem;
}

.single_add_to_cart_button {
    flex: 0.3; /* Uzayabildiği kadar uzasın */
    background: #1E3329 !important; color: #fff !important;
    height: 50px !important; border-radius: 50px !important;
    border: none !important; font-weight: 700 !important; text-transform: uppercase;
    cursor: pointer; transition: 0.3s;
}
.single_add_to_cart_button:hover { background: #D9381E !important; transform: translateY(-2px); }

/* --- ALT BÖLÜM: DETAYLAR --- */
.single-product-content-bottom {
    background: #f9f9f9; padding: 20px; border-radius: 12px;
}
.details-title { font-size: 1.5rem; color: #1E3329; border-bottom: 2px solid #ddd; padding-bottom: 15px; margin-bottom: 20px; }

/* GİZLE */
.product_meta, .sku_wrapper, .posted_in, .reset_variations, .woocommerce-variation-price { display: none !important; }

/* MOBİL */
@media (max-width: 900px) {
    .single-product-wrapper { grid-template-columns: 1fr !important; gap: 40px; }
    .product-gallery-column { height: auto !important; flex-direction: column-reverse !important; } /* Mobilde thumbs alta */
    .mavruz-custom-thumbs { flex-direction: row !important; width: 100% !important; height: 80px; overflow-x: auto; }
    .woocommerce-product-gallery { height: 350px !important; }
}
/* #endregion */

/* #region FOOTER DÜZENLEME YERİ */

/* 1. ÇİFT SCROLLBAR ENGELLEYİCİ AYAR */
html {
    height: auto; /* Yükseklik serbest kalsın */
    overflow-x: hidden; /* Yan taşmaları gizle */
}

body {
    min-height: 100vh; /* En az ekran kadar olsun ama uzayabilsin */
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* Yan scrollbar çıkmasın */
    position: relative;
}

/* 2. ANA İÇERİK (Footer'ı aşağı iter) */
main, #primary, .site-main, .page-content {
    flex: 1 0 auto; /* İçerik alanı esnesin */
    width: 100%; /* Tam genişlik */
    padding-bottom: 0px; /* Alt boşluğu sıfırla */
    z-index: 1;
}

/* 3. FOOTER GÖVDESİ (YUKARI ÇEKME TAKTİĞİ) */
.mavruz-footer {
    position: relative;
    background-color: #0f220f; /* Koyu Yeşil */
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    padding-bottom: 20px;
    z-index: 2; /* İçeriğin üzerine binsin */
    
    /* İŞTE BEYAZ BOŞLUĞU YOK EDEN KOD: */
    /* Footer'ı 150px yukarı çekip haritaya bindiriyoruz */
    margin-top: -10px !important; 
}

/* 4. VADİ DALGASI (Üst Kısım) */
.footer-wave {
    position: absolute;
    bottom: 99%; /* Tam tavan */
    left: 0;
    width: 100%;
    height: 150px;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 100%;
    transform: scale(1.02); /* Kenar boşluklarını kapat */
    transform-origin: bottom;
}

.footer-wave path {
    stroke: #0F1F18; /* Çizgi oluşmaması için aynı renk kontür */
    stroke-width: 3px;
}

/* 5. İÇERİK DÜZENİ (Hizalama Ayarı) */
.mavruz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 4;
    
    /* Footer yukarı kaydığı için içeriği aşağı itip kurtarıyoruz */
    padding-top: 80px; 
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* --- DETAYLAR --- */
.footer-col h3.footer-title { color: #fff; font-family: 'Merriweather', serif; font-size: 1.2rem; margin-bottom: 25px; padding-bottom: 10px; border-bottom: 2px solid #D9381E; display: inline-block; }
.footer-logo-img { max-width: 150px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 0.9rem; line-height: 1.6; color: #ccc; margin-bottom: 25px; }

.social-icons { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.1); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.social-link:hover { background: #D9381E; transform: translateY(-3px); }

.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu li a { color: #bbb; text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.footer-menu li a:hover { color: #fff; transform: translateX(5px); }

.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.contact-item .icon { font-size: 1.1rem; color: #D9381E; }
.contact-item p { margin: 0; font-size: 0.9rem; color: #ccc; line-height: 1.5; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: #888; }

/* Mobil */
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } .social-icons, .contact-item { justify-content: center; } .footer-bottom { flex-direction: column; gap: 15px; text-align: center; } .footer-logo-img { margin: 0 auto 20px auto; display: block; } }
/* #endregion */

/* #region Modal Arayüzü */
.login-modal-overlay {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.login-modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    width: 80%;
    max-width: 900px;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

/* WooCommerce iki sütun ayarı */
.login-modal-content .u-columns.col2-set {
    display: flex;
    gap: 30px;
}
.login-modal-content .u-column1, .login-modal-content .u-column2 {
    flex: 1;
}

/* #endregion */

/* #region MAVRUZ HAKKIMIZDA - ORGANİK & KREATİF SÜRÜM */

/* 1. Sayfa Genel Ayarı */
.mavruz-about-page {
    font-family: 'Inter', sans-serif;
    background-color: #F8F0E3; 
    color: #333;
    overflow-x: hidden;
}

/* 2. Hero Bölümü (Parallax Derinlik) */
.about-hero {
    position: relative;
    width: 100%;
    height: 70vh; /* Biraz daha büyüttük */
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15,31,24,0.3), rgba(15,31,24,0.6));
    z-index: 1;
}

.about-hero .mavruz-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeDown 1s ease-out forwards; 
}

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

.hero-subtitle {
    display: inline-block;
    color: #fff;
    background-color: #D9381E; /* Kırmızı hap şeklinde vurgu */
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.hero-title {
    color: #fff;
    font-family: 'Merriweather', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-desc {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* 3. Hikayemiz Bölümü */
.about-story-section {
    padding: 60px 0 160px 0; /* Alt boşluğu artırdık çünkü kutular buraya taşacak */
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; 
    gap: 80px;
    align-items: center;
}

.story-content .section-title {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    color: #0F1F18;
    margin-bottom: 20px;
    position: relative;
}

/* Fırça darbesi gibi başlık altı */
.title-separator-left {
    width: 80px;
    height: 4px;
    background: #D9381E;
    border-radius: 2px;
    margin-bottom: 35px;
    position: relative;
}
.title-separator-left::after {
    content: ''; position: absolute; left: 90px; top: 0; width: 15px; height: 4px; background: #D9381E; border-radius: 2px;
}

.story-text-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* --- YARATICI KISIM: YAŞAYAN GÖRSEL --- */
.story-image-wrapper {
    position: relative;
    padding: 20px;
}

.main-story-img {
    width: 100%;
    height: 600px; /* Sabit yükseklik */
    object-fit: cover;
    /* Düz kare değil, organik amorf bir şekil */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 30px 60px rgba(15,31,24,0.15);
    /* Şekil değiştirme animasyonu */
    animation: organicMorph 8s ease-in-out infinite alternate;
}

@keyframes organicMorph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }
}

/* Arkadaki dönen yeşil gölge */
.story-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #1E3329;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    opacity: 0.1;
    transform: scale(1.05);
    animation: organicMorph 10s ease-in-out infinite alternate-reverse;
}

/* 4. Değerlerimiz (İç İçe Geçen Kutular) */
.about-values-section {
    /* Kutuları yukarı çekip hikaye bölümüyle birleştiriyoruz */
    margin-top: -100px; 
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px); /* Cam efekti */
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Zıplama efekti */
}

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(30,51,41,0.12);
    background: #fff;
}

.icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #F0F5F1, #E2EBE5);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; /* İkon arka planı da organik */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px auto;
    color: #1E3329;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.8);
    /* Nabız atma animasyonu */
    animation: pulseIcon 3s infinite ease-in-out;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.value-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    color: #0F1F18;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* 5. Mobil Uyum */
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px;}
    .values-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
    .main-story-img { height: 400px; }
    .about-values-section { margin-top: 40px; } /* Mobilde iç içe geçmeyi iptal et ki sıkışmasın */
}

/* Hero bölümünün altına temanın zorla attığı tüm boşlukları ve çizgileri sıfırla */
.mavruz-about-page .about-hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Hikayemiz bölümünü yukarı çekip Hero ile aralarındaki o kılcal boşluğu bile yut */
.mavruz-about-page .about-story-section {
    margin-top: -2px !important; /* O inatçı çizgiyi fiziksel olarak ezip yutar */
    border: none !important;
    background-color: #F8F0E3 !important; /* Krem rengini buraya zorla basıyoruz */
    position: relative;
    z-index: 10;
}

/* Temanın araya kaynattığı görünmez ayırıcıları (hr, spacer) buharlaştır */
.mavruz-about-page hr,
.mavruz-about-page .wp-block-separator,
.mavruz-about-page .deco-leaf {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* #endregion */

/* #region MAVRUZ İLETİŞİM SAYFASI TASARIMI */

/* 1. Sayfa Genel Ayarı */
.mavruz-contact-page {
    font-family: 'Inter', sans-serif;
    background-color: #F8F0E3; 
    color: #333;
    overflow-x: hidden;
}

/* 2. Hero Bölümü (Parallax Derinlik) */
.contact-hero {
    position: relative;
    width: 100%;
    height: 50vh; 
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax efekti */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15,31,24,0.4), rgba(15,31,24,0.95));
    z-index: 1;
}

.contact-hero .mavruz-container {
    position: relative;
    z-index: 2;
    animation: fadeDown 1s ease-out forwards;
}

.page-title {
    color: #fff;
    font-family: 'Merriweather', serif;
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* 3. İletişim İçerik Alanı */
.contact-content {
    /* Formu yukarı çekip hero bölümüyle birleştirir */
    margin-top: -80px; 
    padding-bottom: 120px;
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Sol taraf 1 birim, Sağ form tarafı 1.2 birim */
    gap: 60px;
    align-items: flex-start;
}

/* 4. Sol Taraf (Bilgiler) */
.info-heading {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: #0F1F18;
    margin-bottom: 10px;
}

.info-sub {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Bilgi Kartları */
.info-card {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15,31,24,0.05);
    border: 1px solid rgba(255,255,255,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15,31,24,0.1);
    background: #fff;
}

/* Organik İkon Kutusu */
.icon-circle {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #F0F5F1, #E2EBE5);
    /* Amorf organik şekil */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #1E3329;
    box-shadow: inset 0 0 15px rgba(255,255,255,0.8);
    /* Hakkımızda sayfasındaki organik hareket animasyonu */
    animation: organicMorph 8s infinite alternate;
}

.card-details h3 {
    margin: 0 0 8px 0;
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: #0F1F18;
}

.card-details p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-details a {
    color: #D9382E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.card-details a:hover {
    color: #1E3329;
}

/* Harita Alanı */
.sidebar-map {
    margin-top: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15,31,24,0.1);
    height: 250px;
    border: 5px solid #fff;
}

.sidebar-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 5. Sağ Taraf (Form Kutusu) */
.form-box {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15,31,24,0.08);
    border-top: 6px solid #1E3329;
}

.form-box h3 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: #0F1F18;
    margin-bottom: 30px;
}

/* Contact Form 7 Standart Tasarım Ayarları */
.form-box input[type="text"], 
.form-box input[type="email"], 
.form-box input[type="tel"], 
.form-box textarea,
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1px solid #E2EBE5;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: #F9FAF9;
    transition: all 0.3s ease;
    box-sizing: border-box;
    color: #333;
}

.form-box input:focus, 
.form-box textarea:focus,
.wpcf7-form-control:focus {
    outline: none;
    border-color: #1E3329;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(30,51,41,0.05);
}

.form-box textarea {
    height: 160px;
    resize: vertical;
}

.form-box input[type="submit"], 
.wpcf7-submit {
    background: #1E3329;
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 10px;
}

.form-box input[type="submit"]:hover, 
.wpcf7-submit:hover {
    background: #D9381E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217,56,30,0.2);
}

.mavruz-contact-page .contact-content {
    margin-top: -30px !important; 
}

/* EĞER SADECE SAĞDAKİ BEYAZ FORMU ekstra aşağı itmek istersen bu kodu da kullanabilirsin: */
.mavruz-contact-page .form-box {
    margin-top: 30px !important; 
}


/* İLETİŞİM FORMU GÖNDER BUTONU TASARIMI */
.mavruz-contact-page .form-box input[type="submit"],
.mavruz-contact-page .form-box button[type="submit"],
.mavruz-contact-page .form-box .wpcf7-submit {
    background-color: #1E3329 !important; /* Mavruz Yeşili */
    color: #fff !important;
    border: none !important;
    padding: 16px 40px !important;
    border-radius: 30px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    width: 100% !important; /* Kutuya tam oturması için */
    margin-top: 15px !important;
    box-shadow: 0 10px 20px rgba(30, 51, 41, 0.15) !important;
    display: block !important;
}

/* Üzerine gelince (Hover) Efekti */
.mavruz-contact-page .form-box input[type="submit"]:hover,
.mavruz-contact-page .form-box button[type="submit"]:hover,
.mavruz-contact-page .form-box .wpcf7-submit:hover {
    background-color: #D9381E !important; /* Mavruz Kırmızısı */
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 25px rgba(217, 56, 30, 0.25) !important;
}

/* Eğer Contact Form 7 yanında dönen yükleniyor (spinner) ikonunu bozarsa düzeltmek için: */
.mavruz-contact-page .form-box .wpcf7-spinner {
    background-color: transparent !important;
    margin-top: 10px;
}

/* 6. Mobil Uyum */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-content {
        margin-top: 40px; /* Mobilde içeriği dışarı çıkar */
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .form-box {
        padding: 30px;
    }
    
    .sidebar-map {
        height: 300px;
    }

    /* Başlık ve Alt Yazı */
    .mavruz-contact-page .info-heading,
    .mavruz-contact-page .info-sub {
        text-align: center !important;
    }

    /* Bilgi Kartları (İkon + Yazı hizalaması) */
    .mavruz-contact-page .info-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .mavruz-contact-page .card-details {
        text-align: center !important;
    }

    .mavruz-contact-page .card-details p,
    .mavruz-contact-page .card-details a {
        display: block !important;
        text-align: center !important;
    }
}
/* #endregion */

/* #region MAVRUZ GİRİŞ VE KAYIT MODAL TASARIM */ 

/* Modal Arka Planı */
.login-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(15, 31, 24, 0.85) !important;
    display: none; /* JS tıklandığında burayı flex yapacak */
    align-items: center; /* Dikeyde tam ortalar */
    justify-content: center; /* Yatayda tam ortalar */
    z-index: 999999;
}

.login-modal-content {
    background-color: #F8F0E3; 
    padding: 40px;
    width: 90%;
    max-width: 900px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    margin: 0; /* Auto'yu kaldırdık çünkü flex zaten ortalayacak */
}

/* Çarpı Butonu (Kapatma) */
.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #1E3329;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.close-modal:hover {
    color: #D9381E; 
}

/* Sütun Yapısı (Giriş ve Kayıt Yan Yana) */
.login-modal-content .u-columns.col2-set {
    display: flex;
    gap: 40px;
    margin: 0;
    width: 100%;
}

.login-modal-content .u-column1, 
.login-modal-content .u-column2 {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 31, 24, 0.05);
    width: 100%;
}

/* Ortadaki Ayraç Çizgisi */
.login-modal-content .u-column1 {
    position: relative;
}
.login-modal-content .u-column1::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #E2EBE5;
}

/* Başlıklar */
.login-modal-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    color: #0F1F18;
    margin-bottom: 25px;
    text-align: left;
}

/* Form Elemanları ve Label'lar */
.login-modal-content label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

.login-modal-content input[type="text"],
.login-modal-content input[type="password"],
.login-modal-content input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid #E2EBE5;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: #F9FAF9;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-modal-content input[type="text"]:focus,
.login-modal-content input[type="password"]:focus,
.login-modal-content input[type="email"]:focus {
    outline: none;
    border-color: #1E3329;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30, 51, 41, 0.1);
}

/* Gönder Butonları (Login / Register) */
.login-modal-content .woocommerce-button.button {
    background-color: #1E3329;
    color: #fff;
    border: none;
    padding: 16px;
    width: 100%;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.login-modal-content .woocommerce-button.button:hover {
    background-color: #D9381E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(217, 56, 30, 0.2);
}

/* Beni Hatırla Seçeneği */
.woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.woocommerce-form-login__rememberme input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
}

/* Şifremi Unuttum Linki */
.woocommerce-LostPassword {
    text-align: center;
    margin-top: 20px;
}

.woocommerce-LostPassword a {
    color: #D9382E;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.woocommerce-LostPassword a:hover {
    color: #1E3329;
}

/* Kayıt Formu Gizlilik Politikası Metni */
.woocommerce-privacy-policy-text {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 20px;
}

.woocommerce-privacy-policy-text a {
    color: #1E3329;
    font-weight: 600;
    text-decoration: underline;
}

/* =========================================
   MOBİL UYUM (RESPONSIVE)
   ========================================= */
@media (max-width: 992px) {
    .login-modal-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 85vh;
        overflow-y: auto; /* Mobilde ekrana sığmazsa kaydırma çubuğu çıkar */
    }
    
    .login-modal-content .u-columns.col2-set {
        flex-direction: column;
        gap: 30px;
    }

    .login-modal-content .u-column1::after {
        display: none; /* Mobilde aradaki çizgiyi kaldır */
    }
    
    .login-modal-content .u-column1, 
    .login-modal-content .u-column2 {
        padding: 25px;
    }
    
    .login-modal-content h2 {
        font-size: 1.5rem;
    }
}

/* #endregion */

/* #region Çift Video Alanı */

.mavruz-dual-video-section {
    position: relative;
    background-color: #0F1F18; /* Sinematik Koyu Yeşil */
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}

/* Arkadaki Animasyonlu Işıklar */
.video-bg-shape {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(90px);
    z-index: -1;
    animation: organicMorph 12s infinite alternate linear;
    opacity: 0.25;
}
.video-bg-shape.shape-1 { width: 600px; height: 600px; background: #D9381E; top: -50px; left: -100px; }
.video-bg-shape.shape-2 { width: 500px; height: 500px; background: #2E7D32; bottom: -50px; right: -100px; animation-direction: alternate-reverse; animation-duration: 15s; }

/* Satır Düzeni (Esnek Yapı) */
.video-content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}
.video-content-row:last-child { margin-bottom: 0; }

/* --- ÇAPRAZ DURUŞ AYARLARI --- */
.video-card { flex: 1.2; position: relative; transition: transform 0.4s ease; z-index: 5; }
.video-card-left { transform: translateY(-30px); } /* Sol Üstte Durur */
.video-card-right { transform: translateY(30px); } /* Sağ Altta Durur */
.video-card:hover { transform: translateY(0) scale(1.02); z-index: 10; }

/* Video Thumbnail Kutusu */
.video-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
}
.video-placeholder-img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.8; transition: opacity 0.4s ease; }
.video-card:hover .video-placeholder-img { opacity: 0.5; }

/* Tıklanabilir Şeffaf Play Katmanı */
.video-overlay-click {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.play-btn-circle {
    width: 70px; height: 70px; background: #D9381E; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; margin-bottom: 12px; box-shadow: 0 10px 20px rgba(217,56,30,0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.play-btn-circle svg { width: 28px; height: 28px; margin-left: 5px; }
.video-overlay-click span { color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease; transform: translateY(10px); }
.video-card:hover .play-btn-circle { transform: scale(1.15); }
.video-card:hover .video-overlay-click span { opacity: 1; transform: translateY(0); }

/* --- METİN KUTUSU VE BAŞLIKLAR --- */
.video-text-box { flex: 1; z-index: 5; }
.mavruz-brand-shape { width: 45px; height: 45px; background-color: #2E7D32; border-radius: 0 0 45px 0; margin-bottom: 25px; }
.video-title { font-family: 'Poppins', sans-serif; font-size: 2.2rem; color: #fff; font-weight: 700; line-height: 1.2; margin-bottom: 15px; }
.video-title span { color: #81C784; font-weight: 400; font-size: 1.6rem; }
.video-desc { font-family: 'Inter', sans-serif; font-size: 1.05rem; color: #ccc; line-height: 1.6; margin-bottom: 30px; }

/* Sağdaki Metnin Özel Hizalaması */
.text-right-align { text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.text-right-align .mavruz-brand-shape { border-radius: 0 0 0 45px; }

/* Buton Tasarımı */
.video-action-btn {
    display: inline-block; padding: 10px 30px; border: 2px solid #81C784; color: #81C784;
    border-radius: 50px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem;
    text-transform: lowercase; text-decoration: none; transition: all 0.3s ease;
}
.video-action-btn:hover { background-color: #81C784; color: #0F1F18; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(129, 199, 132, 0.2); }

/* --- MODAL (BÜYÜTÜLMÜŞ SİNEMA EKRANI) --- */
.mavruz-video-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 999999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.mavruz-video-modal.active { opacity: 1; pointer-events: auto; }
.modal-close-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 20, 15, 0.95); cursor: pointer; }
.close-video-modal { position: absolute; top: 20px; right: 30px; font-size: 45px; color: #fff; cursor: pointer; z-index: 10; transition: color 0.3s; line-height: 1; }
.close-video-modal:hover { color: #D9381E; }
.modal-video-wrapper { position: relative; width: 90%; max-width: 1000px; aspect-ratio: 16 / 9; z-index: 5; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.9); transform: scale(0.95); transition: transform 0.4s ease; }
.mavruz-video-modal.active .modal-video-wrapper { transform: scale(1); }
.modal-video-wrapper iframe { width: 100%; height: 100%; display: block; }

/* --- MOBİL UYUM (Alt Alta Dizilim) --- */
@media (max-width: 992px) {
    .mavruz-dual-video-section { padding: 70px 0; }
    
    /* İkinci satırda normalde metin solda, video sağdaydı. 
       Mobilde önce video, sonra metin gelsin diye column-reverse yapıyoruz */
    .video-content-row { flex-direction: column; gap: 30px; margin-bottom: 60px; }
    .video-content-row:nth-child(2) { flex-direction: column-reverse; } 
    
    /* Çapraz Kaymaları İptal Et */
    .video-card-left, .video-card-right { transform: translateY(0); }
    .video-card:hover { transform: translateY(-5px) scale(1); }
    
    /* Metinleri Sola Yasla */
    .text-right-align { text-align: left; align-items: flex-start; }
    .text-right-align .mavruz-brand-shape { border-radius: 0 0 45px 0; }
    
    .video-title { font-size: 1.8rem; }
    .video-title span { font-size: 1.4rem; }
    .modal-video-wrapper { width: 95%; }
}

/* #endregion */

/* #region ALT SAYFALARDA KAYBOLAN BUTON VE MENÜ DÜZELTMESİ */
/* 1. Hesabım (Giriş) Butonu - Koyu Yeşil Çerçeve ve Yazı */
body:not(.home) .main-header .login-btn {
    color: #1E3329 !important;
    border-color: #1E3329 !important;
    background-color: transparent !important;
}
body:not(.home) .main-header .login-btn:hover {
    background-color: #1E3329 !important;
    color: #ffffff !important;
}

/* 2. Sepetim Butonu - Koyu Yeşil Arka Plan, Beyaz Yazı */
body:not(.home) .main-header .glass-cart-btn:not(.login-btn) {
    background-color: #1E3329 !important; 
    color: #ffffff !important;
    border-color: #1E3329 !important;
}

/* 3. Ortadaki Menü Linkleri (Açık zeminde okunabilmesi için) */
body:not(.home) .main-header .nav-item {
    color: #1E3329 !important;
    font-weight: 700 !important;
}
body:not(.home) .main-header .glass-nav {
    border-color: rgba(30, 51, 41, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
}

/* #endregion */

/* #region MAVRUZ HESABIM (MY ACCOUNT) SAYFASI TASARIMI */

/* Ana Kapsayıcı ve Boşluklar */
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 100px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

/* 1. SOL MENÜ (Navigasyon) */
.woocommerce-account .woocommerce-MyAccount-navigation {
    flex: 0 0 280px; /* Sabit genişlik */
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(15, 31, 24, 0.05);
    border: 1px solid #E2EBE5;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 8px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 14px 20px;
    color: #555;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

/* Menü Hover ve Aktif Durumu */
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: #F0F5F1;
    color: #1E3329;
    padding-left: 25px; /* Hover olunca hafif sağa kayar */
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: #1E3329;
    color: #fff;
    box-shadow: 0 5px 15px rgba(30, 51, 41, 0.2);
}

/* Çıkış Yap Butonunu Kırmızı Yapma */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #D9381E;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: #ffebee;
    color: #c62828;
}

/* 2. SAĞ İÇERİK ALANI */
.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1; /* Kalan alanı kaplar */
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(15, 31, 24, 0.05);
    border: 1px solid #E2EBE5;
    color: #444;
    line-height: 1.7;
}

/* İçerik Başlıkları */
.woocommerce-account .woocommerce-MyAccount-content h3,
.woocommerce-account .woocommerce-MyAccount-content legend {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    color: #0F1F18;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F0F5F1;
}

/* Uyarı ve Bilgi Mesajları (Yeşil Şerit) */
.woocommerce-account .woocommerce-Message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message {
    background: #F0F5F1;
    border-left: 5px solid #1E3329;
    padding: 15px 20px;
    color: #1E3329;
    font-weight: 500;
    border-radius: 0 8px 8px 0;
    margin-bottom: 25px;
}

.woocommerce-account .woocommerce-message a.button {
    float: right;
    background: #1E3329;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
}

/* Siparişler ve Tablo Düzeni */
.woocommerce-account table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.woocommerce-account table.shop_table th {
    background: #F9FAF9;
    padding: 15px;
    text-align: left;
    color: #1E3329;
    border-bottom: 2px solid #E2EBE5;
}

.woocommerce-account table.shop_table td {
    padding: 15px;
    border-bottom: 1px solid #E2EBE5;
    vertical-align: middle;
}

.woocommerce-account table.shop_table td.woocommerce-orders-table__cell-order-actions a.button {
    display: inline-block;
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #1E3329;
    color: #1E3329;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.woocommerce-account table.shop_table td.woocommerce-orders-table__cell-order-actions a.button:hover {
    background: #1E3329;
    color: #fff;
}

/* Form Elemanları (Hesap Detayları) */
.woocommerce-account form input[type="text"],
.woocommerce-account form input[type="password"],
.woocommerce-account form input[type="email"],
.woocommerce-account form input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid #E2EBE5;
    border-radius: 10px;
    background: #F9FAF9;
    transition: all 0.3s ease;
}

.woocommerce-account form input:focus {
    border-color: #1E3329;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 51, 41, 0.1);
}

.woocommerce-account form button[type="submit"] {
    background: #1E3329;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 15px;
}

.woocommerce-account form button[type="submit"]:hover {
    background: #D9381E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(217, 56, 30, 0.2);
}

/* 3. MOBİL UYUM */
@media (max-width: 900px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        margin-top: 20px;
    }
    
    .woocommerce-account .woocommerce-MyAccount-navigation {
        flex: auto;
        width: 100%;
        padding: 15px;
    }
    
    /* Mobilde menüyü yan yana dizme (Scroll edilebilir) */
    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 5px;
    }
    
    .woocommerce-account .woocommerce-MyAccount-navigation ul li {
        margin: 0;
        white-space: nowrap;
    }
    
    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 20px;
        width: 100%;
        overflow-x: auto; /* Tabloların taşmasını engeller */
    }
}

/* #endregion */

/* #region HESABIM SAYFASI - ÜYE PROFİL KARTI */
.woocommerce-account .woocommerce-MyAccount-navigation {
    padding: 30px 20px;
}

.mavruz-user-card {
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E2EBE5;
}

.mavruz-user-card .user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #F0F5F1;
    box-shadow: 0 5px 15px rgba(30, 51, 41, 0.1);
}

.mavruz-user-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #1E3329;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.mavruz-user-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #777;
    margin: 0;
    word-break: break-all;
}
/* #endregion */

/* #region MOBİL UYUMLULUK (ANA SAYFA VE HEADER) */

@media (max-width: 991px) {
    /* 1. Kapsayıcı ve Boşluk Düzeltmeleri */
    body { padding-top: 140px !important; }
    main, .hero-slider, .page-content { margin-top: 0 !important; }

    /* 2. Header Yapısını Dikey (Column) Hale Getir */
   .main-header,
    .main-header.scrolled {
        height: auto !important;
        flex-direction: column !important;
        position: absolute !important; /* fixed yerine absolute yapıldı, ekranı bloke etmez */
        transition: none !important; /* Büyüyüp küçülme animasyonu kalıcı olarak iptal edildi */
        background-color: transparent !important;
        box-shadow: none !important;
    }
    
    /* JavaScript'in eklediği scrolled sınıfının mobilde paddingleri bozmasını engelle */
    .main-header.scrolled .brand-panel {
        height: 60px !important;
        padding: 10px !important;
    }

    .main-header.scrolled .visual-panel {
        padding: 15px 10px !important;
    }

    /* Statik beyaz header mobilde yüksekliğini içeriğe göre ayarlasın */
    .main-header.static-dark-header { height: auto !important; }

    /* Sol Yeşil Blok (Logolar) */
    .brand-panel {
        width: 100% !important;
        height: 60px !important;
        padding: 10px !important;
        justify-content: center !important;
    }

    .brand-text {
        flex-direction: row !important;
        font-size: 1.2rem !important;
        gap: 8px;
    }

    /* Sağ Resimli Blok (Menü ve Butonlar) */
    .visual-panel {
        width: 100% !important;
        height: auto !important;
        padding: 15px 10px !important;
    }

    .header-content-wrapper {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
        gap: 15px !important;
    }

    /* Menü Linkleri (Yan yana sığmayacağı için alt alta veya sarılarak (wrap) dizilir) */
    .glass-nav {
        width: 100% !important;
        padding: 10px !important;
        border-radius: 15px !important;
    }

    .nav-list {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    .nav-item {
        font-size: 0.8rem !important;
        padding: 6px 10px !important;
    }

    /* Butonlar (Sepet ve Hesabım yan yana dursun) */
    .header-buttons-group {
        flex-direction: row !important;
        width: 100% !important;
        justify-content: space-around !important;
        gap: 10px !important;
    }

    .glass-cart-btn, .login-btn {
        min-width: 48% !important;
        padding: 0 10px !important;
        font-size: 0.7rem !important;
    }
}

@media (max-width: 768px) {
    /* 3. Hero (Kapak) Bölümü Düzeltmeleri */
    .about-hero {
        height: auto !important;
        min-height: 400px !important;
        padding: 60px 20px !important;
    }

    .hero-title {
        font-size: 2.2rem !important; /* 4rem mobilde ekrana sığmaz */
    }

    .hero-desc {
        font-size: 1rem !important;
    }

    /* 4. Hikayemiz ve Izgara (Grid) Yapıları */
    .story-grid, .values-grid {
        grid-template-columns: 1fr !important; /* Yan yana duran elemanları alt alta dizer */
        gap: 40px !important;
        text-align: center !important;
    }

    .title-separator-left {
        margin: 0 auto 30px auto !important; /* Çizgiyi ortala */
    }
    
    .title-separator-left::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-left: 50px !important;
    }
    /* 1. Logoyu Sola Daya */
    .brand-panel {
        justify-content: flex-start !important; 
        padding: 10px 20px !important; /* Sol taraftan okunaklı bir boşluk bırak */
    }

    .brand-text {
        text-align: left !important;
        font-size: 1.2rem !important;
    }

    /* 2. Dış Kutu Hizalamaları (Buzlu cam ve butonları aynı hizaya sokar) */
    .visual-panel {
        padding: 15px 20px !important; /* Sağdan soldan eşit ve simetrik boşluk */
        box-sizing: border-box !important;
    }

    .header-content-wrapper {
        width: 100% !important;
        box-sizing: border-box !important;
        gap: 10px !important;
    }

    /* 3. Buzlu Cam Kutu */
    .glass-nav {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px !important;
        margin: 0 !important;
    }

    /* 4. Alt Butonlar (Sepetim ve Giriş Yap) */
    .header-buttons-group {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        justify-content: space-between !important;
        gap: 10px !important; /* İki buton arasındaki kesin boşluk */
        box-sizing: border-box !important;
    }

    /* Butonları %100 eşit genişliğe zorla */
    .glass-cart-btn, .login-btn {
        flex: 1 !important; 
        min-width: 0 !important; 
        margin: 0 !important;
        padding: 10px 5px !important;
        justify-content: center !important;
    }


    /* Bej arka planın üst ve alt gereksiz boşluklarını kırp */
    .simple-blog-section {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    /* Viewport: Kaydırma alanını tanımla */
    .simple-blog-section .slider-viewport {
        width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0 20px !important; /* Sağ/sol boşluk */
        box-sizing: border-box !important;
    }

    /* Çirkin scroll barı gizle */
    .simple-blog-section .slider-viewport::-webkit-scrollbar { display: none !important; }
    .simple-blog-section .slider-viewport { -ms-overflow-style: none !important; scrollbar-width: none !important; }

    /* Track: Kartları yan yana tutan ray */
    .simple-blog-section .slider-track {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 20px !important; /* Kartlar arası net mesafe */
        width: max-content !important; /* Taşmayı ve kaydırmayı zorunlu kılar */
        margin: 0 !important;
    }

    /* Tekil Kart: Ekrana tam sığdır, yandakileri gizle */
    .simple-blog-section .slide-item {
        /* Ekran genişliğinden sağ/sol 20px padding'leri (toplam 40px) çıkararak tam oturt */
        flex: 0 0 calc(100vw - 80px) !important; 
        max-width: calc(100vw - 40px) !important;
        scroll-snap-align: center !important;
        scroll-snap-stop: always !important; /* Hızlı kaydırmada kartları atlamayı engeller */
        margin: 0 !important;
    }

    .simple-blog-section .minimal-card {
        width: 100% !important;
    }

    /* Butonu kartlara yaklaştır */
    .simple-blog-section .slider-action {
        margin-top: 20px !important; /* Eski devasa boşluğu küçültür */
    }

    /* Bej alanı şişiren tüm boşlukları ve minimum yükseklikleri zorla sıfırla */
    .simple-blog-section,
    .mavruz-mobile-blog {
        min-height: 0 !important;
        height: auto !important;
        padding-bottom: 20px !important; /* Alt kısımda sadece 20px nefes boşluğu bırakır */
        margin-bottom: 0 !important;
    }

    .simple-blog-section .mavruz-container,
    .mavruz-mobile-blog .mavruz-container {
        min-height: 0 !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Butonun altındaki gizli devasa boşluğu yok et */
    .simple-blog-section .slider-action,
    .mavruz-mobile-blog .slider-action {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }


    /* WordPress'in basabileceği hayalet boşlukları (p ve br) zorla yok et */
    .simple-blog-section p:empty, 
    .simple-blog-section br,
    .mavruz-mobile-blog p:empty,
    .mavruz-mobile-blog br {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 0 !important;
    }

    /* Kapsayıcının ekstra uzamasını ve taşmasını kesin olarak engelle */
    .simple-blog-section {
        padding-bottom: 20px !important;
    }

    /* Buton kapsayıcısındaki olası gizli satır yüksekliklerini (line-height) ez */
    .simple-blog-section .slider-action {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        line-height: 1 !important;
    }

 
    /* ALT SAYFALAR (Hakkımızda vb.) STATİK HEADER MOBİL DÜZELTMESİ */
    body .main-header.static-dark-header {
        height: auto !important;
        flex-direction: column !important;
        position: absolute !important; /* Ekranı kaplamaması için absolute */
        padding-bottom: 15px !important;
    }

    /* Logoyu sola daya */
    body .main-header.static-dark-header .brand-panel {
        width: 100% !important;
        justify-content: flex-start !important;
        padding: 10px 20px !important;
    }

    /* Kutu hizalamaları */
    body .main-header.static-dark-header .visual-panel {
        width: 100% !important;
        padding: 15px 20px !important;
        box-sizing: border-box !important;
        display: block !important;
    }

    body .main-header.static-dark-header .header-content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        padding: 0 !important;
    }

    /* Menü kutusu */
    body .main-header.static-dark-header .glass-nav {
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        padding: 10px !important;
        background-color: #f5f7f6 !important; /* Beyaz zeminde görünmesi için hafif gri */
        border: 1px solid #E2EBE5 !important;
        border-radius: 15px !important;
    }

    body .main-header.static-dark-header .nav-list {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    /* Alt Butonlar (Sepetim ve Giriş Yap) Yan Yana */
    body .main-header.static-dark-header .header-buttons-group {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        justify-content: space-between !important;
        gap: 10px !important;
        box-sizing: border-box !important;
    }

    /* Butonları %100 eşit genişliğe zorla */
    body .main-header.static-dark-header .glass-cart-btn,
    body .main-header.static-dark-header .login-btn,
    body .main-header.static-dark-header .account-btn {
        flex: 1 !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 10px 5px !important;
        justify-content: center !important;
        border-radius: 50px !important;
    }
       
    /* 1. Devasa bej boşluğu daralt ve içeriği tam ortala */
    .mavruz-about-page .about-story-section {
        padding: 40px 0 60px 0 !important; /* 160px olan alt boşluğu 60px'e düşürdük */
    }

    .mavruz-about-page .story-content {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mavruz-about-page .title-separator-left {
        margin: 0 auto 30px auto !important;
    }

    .mavruz-about-page .title-separator-left::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-left: 0 !important; /* Çizginin ortasını milimetrik hizalar */
    }

    /* 2. Resim alanındaki kaymayı düzelt ve boyutlandır */
    .mavruz-about-page .story-image-wrapper {
        padding: 0 !important;
        display: flex;
        justify-content: center;
        width: 100% !important;
    }

    .mavruz-about-page .main-story-img {
        width: 100% !important;
        max-width: 320px !important; /* Mobilde çok büyümesini engeller */
        height: 320px !important; /* Kareye yakın, organik amorf şekli korur */
        margin: 0 auto !important;
    }

    /* 3. Alt Kısım (3'lü Kart) için Kaydırmalı Karusel (Swipe) Yapısı */
    .mavruz-about-page .about-values-section {
        margin-top: 20px !important;
        padding-bottom: 40px !important;
        overflow: hidden !important; /* Kapsayıcının dışına taşmayı engelle */
    }

    .mavruz-about-page .values-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important; /* iOS için akıcı kaydırma */
        gap: 20px !important;
        padding: 10px 20px 40px 20px !important; /* Kart gölgelerinin kesilmemesi için alt padding */
        margin: 0 -20px !important; /* Kenarlara sıfıra sıfır değmesi için negatif margin */
        grid-template-columns: none !important; /* Masaüstü grid sistemini iptal et */
    }

    /* Yatay scroll çubuğunu gizle */
    .mavruz-about-page .values-grid::-webkit-scrollbar {
        display: none !important;
    }

    .mavruz-about-page .value-card {
        flex: 0 0 85vw !important; /* Ekranda 1 tam kart + yandakinin %15'lik ucu görünür */
        max-width: 85vw !important;
        scroll-snap-align: center !important; /* Kaydırmayı tam ortaya kitler */
        margin: 0 !important;
        transform: none !important; /* Mobilde dokunurken kartın zıplamasını iptal eder */
    }
    
    /* HAKKIMIZDA HERO MOBİL BAŞLIK ORTALAMA VE DÜZELTME */
    .mavruz-about-page .about-hero {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 60px 20px !important;
    }

    .mavruz-about-page .about-hero .mavruz-container,
    .mavruz-about-page .about-hero .hero-content {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Tüm içeriği milimetrik merkeze çeker */
        text-align: center !important;
    }

    /* Kırmızı küçük başlık (Hap şeklinde olan) */
    .mavruz-about-page .hero-subtitle {
        margin: 0 auto 15px auto !important;
    }

    /* Ana Başlık: Fontu küçült ve satır aralığını aç */
    .mavruz-about-page .hero-title {
        font-size: 2.2rem !important; /* 4rem'den 2.2rem'e düştü */
        line-height: 1.3 !important; /* Kelimeler üst üste binmesin diye aralık verildi */
        margin-bottom: 20px !important;
        width: 100% !important;
    }

    /* Alt Açıklama: Okunaklı yap */
    .mavruz-about-page .hero-desc {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        padding: 0 10px !important; /* Kenarlara yapışmasın diye iç boşluk */
    }

}

/* Sayfanın yatay scroll'unu tamamen kes */
body .mavruz-about-page .about-hero {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
}

body .mavruz-about-page .about-hero .mavruz-container {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

body .mavruz-about-page .about-hero .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

body .mavruz-about-page .about-hero .hero-title,
body .mavruz-about-page .about-hero .hero-desc,
body .mavruz-about-page .about-hero .hero-subtitle {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    box-sizing: border-box !important;
}

@media (max-width: 991px) {
    
    /* 1. Tüm Kapsayıcının Alt Boşluğunu Tıraşla */
    body .main-header.static-dark-header {
        padding-bottom: 5px !important;
    }

    /* 2. Üstteki Koyu Yeşil Logo Barını İncelt */
    body .main-header.static-dark-header .brand-panel {
        height: 45px !important; /* 60px'ten 45px'e düşürdük */
        padding: 5px 15px !important;
    }
    
    /* Logo yazısını biraz kibarlaştır */
    body .main-header.static-dark-header .brand-text {
        font-size: 1.05rem !important; 
    }

    /* 3. Menü ve Butonları Tutan Beyaz Alanın İç Boşluklarını Daralt */
    body .main-header.static-dark-header .visual-panel {
        padding: 10px 15px !important;
    }

    /* 4. Menü ile Butonlar Arasındaki Mesafeyi (Gap) Kıs */
    body .main-header.static-dark-header .header-content-wrapper {
        gap: 8px !important; /* Eski kaba boşluk daraldı */
    }

    /* 5. Menü Kutusunu ve Linkleri Sıkılaştır */
    body .main-header.static-dark-header .glass-nav {
        padding: 5px !important; 
    }
    
    body .main-header.static-dark-header .nav-item {
        font-size: 0.75rem !important;
        padding: 4px 8px !important;
    }

    /* 6. Butonları Daha İnce ve Zarif Hale Getir */
    body .main-header.static-dark-header .glass-cart-btn,
    body .main-header.static-dark-header .login-btn,
    body .main-header.static-dark-header .account-btn {
        padding: 8px 10px !important; /* Butonların iç şişkinliği alındı */
        height: auto !important;
        font-size: 0.7rem !important;
    }

    body .main-header.static-dark-header .glass-nav {
        width: max-content !important; /* Kutunun %100 uzamasını engeller, sadece yazılar kadar yer kaplar */
        max-width: 100% !important; /* Ekrana sığmasını garantiye alır */
        margin: 0 auto !important; /* Küçülen kutuyu tam merkeze hizalar */
        padding: 5px 15px !important; /* Kutunun iç boşluğunu daraltır */
        border-radius: 12px !important; /* Köşeleri biraz daha estetik yapar */
    }

    /* 1. Ana sayfaya özgü negatif margin'i alt sayfalarda sıfırla */
    body:not(.home) main,
    body:not(.home) .page-content {
    margin-top: 0 !important;
    }

    /* 2. About hero mobil padding çakışmasını çöz */
    @media (max-width: 991px) {
    .mavruz-about-page .about-hero {
        padding-top: 200px !important;  /* Header yüksekliğini temizle */
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 60px !important;
        height: auto !important;
        min-height: 0 !important;
    }
    }

    /* =========================================
       İLETİŞİM SAYFASI MOBİL ORTALAMA DÜZELTMELERİ
       ========================================= */

    /* 1. Sol taraftaki ana başlık ve alt metni ortala */
    .mavruz-contact-page .info-heading,
    .mavruz-contact-page .info-sub {
        text-align: center !important;
    }

    /* 2. Bilgi kartlarının (ikonlu kutuların) içini dikey yap ve ortala */
    .mavruz-contact-page .info-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 30px 20px !important;
    }

    /* İkonu tam merkeze al ve yazıyla arasına boşluk bırak */
    .mavruz-contact-page .info-card .icon-circle {
        margin: 0 auto 15px auto !important;
    }

    /* 3. İletişim Formunun başlığını ortala */
    .mavruz-contact-page .form-box h3 {
        text-align: center !important;
    }
}
/* #endregion */

/* =========================================
   TOPRAKTAN HABERLER - POP ART ARKA PLAN (TÜM CİHAZLAR)
   ========================================= */

.simple-blog-section {
    /* Ana krem arka plan rengini koruyoruz */
    background-color: #F8F0E3 !important;

    /* Saydam ve göz yormayan nokta deseni (Kırmızı ve Yeşil) */
    background-image: 
        radial-gradient(rgba(217, 56, 30, 0.1) 15%, transparent 15%), 
        radial-gradient(rgba(46, 125, 50, 0.1) 15%, transparent 15%) !important;
    
    /* Noktaların ekrandaki yerleşimi ve aralarındaki boşluk (sıklık) */
    background-position: 0 0, 20px 20px !important; 
    background-size: 40px 40px !important; 
}


/* =========================================
   SCROLL OLUNCA HEADER BUTON RENKLERİ DÜZELTMESİ
   ========================================= */

/* 1. Sepetim ve Hesabım butonları yeşil olunca yazıları BEYAZ olsun */
.main-header.scrolled .glass-cart-btn:not(.login-btn) {
    background-color: #1E3329 !important; /* Buton arka planı: Koyu Yeşil */
    color: #ffffff !important; /* Yazı: Beyaz */
}

/* 2. Sepetim ve Hesabım butonlarının içindeki İKONLAR da BEYAZ olsun */
.main-header.scrolled .glass-cart-btn:not(.login-btn) svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}

/* 3. Giriş Yap butonu (sadece çerçevesi yeşil kalsın diye) */
.main-header.scrolled .login-btn {
    background-color: transparent !important;
    border-color: #1E3329 !important;
    color: #1E3329 !important; /* Yazı: Yeşil */
}

.main-header.scrolled .login-btn svg {
    color: #1E3329 !important;
    fill: #1E3329 !important;
}

/* 4. Giriş Yap butonunun üzerine fare ile gelince (Hover) yazılar BEYAZ olsun */
.main-header.scrolled .login-btn:hover {
    background-color: #1E3329 !important; /* Arka plan: Yeşil */
    color: #ffffff !important; /* Yazı: Beyaz */
}

.main-header.scrolled .login-btn:hover svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}