
/* ====================================================
   XIVA — MARKA TASARIM SİSTEMİ
   Zarafet, Rahatlık ve Özgüvenin Buluşma Noktası
   ==================================================== */

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* ---- XIVA MARKA DEĞİŞKENLERİ ---- */
:root {
    --primary-color: #c0392b;
    --primary-dark:  #a93226;
    --primary-light: #f9eceb;
    --accent-color:  #8e1a10;
    --gold:          #c8a96e;
    --text-dark:     #1a1a1a;
    --text-mid:      #555555;
    --text-light:    #888888;
    --bg-cream:      #fdf8f5;
    --bg-light:      #f8f4f1;
    --border-subtle: #ecddd8;
    --border-color:  #e8e0db;
    --font-main:     'Mulish', sans-serif;
    --font-brand:    'Mulish', sans-serif;
    --shadow-soft:   0 2px 12px rgba(192,57,43,0.07);
    --shadow-hover:  0 8px 30px rgba(192,57,43,0.15);
    --radius:        0px;
    --radius-lg:     0px;
    --transition:    all 0.28s ease;
}

/* ====================================================
   HEADER
   ==================================================== */
.header-top {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 12px;
    padding: 9px 0;
    background: #fff;
    letter-spacing: 0.3px;
}
.header-top .row { display: flex; justify-content: space-between; align-items: center; }
.header-slogan {
    font-weight: 600;
    color: var(--text-mid);
    font-family: var(--font-main);
    font-style: italic;
    letter-spacing: 0.4px;
}
.header-top-links { display: flex; gap: 22px; }
.header-top-links a {
    font-family: var(--font-main);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-mid);
    transition: color 0.2s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.header-top-links a:hover { color: var(--primary-color); }
.header-top-links a i { font-size: 13px; }

.header-main { padding: 22px 0; border-bottom: 1px solid rgba(0,0,0,0.1); background: #fff; }
.header-main .row { display: flex; align-items: center; gap: 30px; }
#logo { flex: 0 0 200px; }
#logo a { display: block; }
#logo h1 {
    font-size: 34px;
    font-weight: 200;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
}

/* Arama */
#header-search { flex: 1; position: relative; }
#search { display: flex; height: 46px; }
#live-search {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border: 1.5px solid var(--border-color);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    outline: none;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s;
}
#live-search:focus { border-color: var(--primary-color); }
#search button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 100%;
    background: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-left: none;
    padding: 0 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-weight: 800;
    font-size: 12px;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    color: #fff;
    transition: background 0.2s, border-color 0.2s;
}
#search button:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
#search button i { font-size: 14px; }

/* Header ikonlar */
.hm-links { display: flex; gap: 28px; }
.hm-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-family: var(--font-main);
    color: var(--text-dark);
    transition: color 0.2s;
    position: relative;
}
.hm-links a:hover { color: var(--primary-color); }
.hm-links a span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.hm-links i { font-size: 21px; line-height: 1; }
.cart-soft-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    border: 2px solid #fff;
}

/* ====================================================
   NAVİGASYON
   ==================================================== */
#main-menu {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
#main-menu > .container { position: relative; display: flex; align-items: center; justify-content: space-between; }
.sticky-logo, .sticky-cart { display: none; opacity: 0; transition: opacity 0.3s; }
#main-menu.is-sticky { box-shadow: 0 4px 20px rgba(0,0,0,0.07); padding: 4px 0; }
#main-menu.is-sticky .sticky-logo,
#main-menu.is-sticky .sticky-cart { display: flex; align-items: center; opacity: 1; }
.sticky-logo img { max-height: 34px; }
.sticky-logo h2 {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    cursor: pointer;
}
.sticky-cart { font-size: 20px; cursor: pointer; color: var(--text-dark); transition: color 0.2s; position: relative; gap: 5px; }
.sticky-cart:hover { color: var(--primary-color); }

.menu-257 { 
    display: flex; 
    align-items: center; 
    list-style: none; 
    flex: 1; 
    overflow-x: auto; 
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;  /* Firefox */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.menu-257::-webkit-scrollbar { 
    display: none; /* Chrome, Safari, Opera */
}
/* Ortalamak ve taşınca soldan kesilmemesi için harika bir CSS hilesi: */
.menu-257::before,
.menu-257::after {
    content: '';
    margin: auto;
}

.menu-257 > li { position: relative; flex-shrink: 0; }
.menu-257 > li > a {
    display: block;
    padding: 18px 14px;
    font-weight: 200;
    font-size: 13px;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.25s;
    white-space: nowrap;
    color: var(--text-dark);
    position: relative;
}
.menu-257 > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}
.menu-257 > li:hover > a { color: var(--primary-color); }
.menu-257 > li:hover > a::after { width: calc(100% - 28px); }

/* ---- MEGA MENÜ ---- */
#main-menu { overflow: visible; }
.menu-257 > li.has-mega { position: static; }
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #fff;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
    z-index: 998;
    padding: 24px 0;
}
.mega-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 4px 16px;
    padding: 0 15px;
}
.mega-inner a {
    font-size: 13px;
    color: var(--text-mid);
    padding: 8px 8px;
    display: block;
    font-family: var(--font-main);
    font-weight: 500;
    border-bottom: 1px solid #f5eeeb;
    transition: color 0.2s, padding-left 0.2s;
}
.mega-inner a:hover { color: var(--primary-color); padding-left: 14px; }
.has-mega:hover > .mega-menu { display: block; }

/* ====================================================
   SAYFA BAŞLIĞI (Hero Banner)
   ==================================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 52px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
    position: relative;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.page-hero p {
    position: relative;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.page-hero .breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb a:hover { color: #fff; }

/* ====================================================
   SLIDER
   ==================================================== */
.slider-section { margin-top: 30px; margin-bottom: 40px; }
.main-slider { border-radius: var(--radius-lg); overflow: hidden; position: relative; width: 100%; }
.main-slider .swiper-slide img { width: 100%; height: 480px; object-fit: cover; display: block; }
@media (max-width: 768px) { .main-slider .swiper-slide img { height: 220px; } }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 14px !important; font-weight: bold; }
.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    color: var(--text-dark);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}
.main-slider .swiper-button-next:hover,
.main-slider .swiper-button-prev:hover { background: var(--primary-color); color: #fff; }

/* ====================================================
   ÜRÜN KARTLARI & IZGARASI
   ==================================================== */
.section-title {
    text-align: center;
    margin: 44px 0 30px;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

/* Ürün Kartı */
.product-item {
    background: #fff;
    padding: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
    border-radius: var(--radius);
}
.product-item:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--border-subtle);
}
.image-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: var(--bg-light);
    border-radius: var(--radius);
}
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.image-wrapper:hover img { transform: scale(1.05); }

/* Hover Action Button */
.image-wrapper .product-hover-action {
    position: absolute;
    bottom: -60px;
    left: 8px;
    right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}
.product-item:hover .image-wrapper .product-hover-action {
    bottom: 8px;
    opacity: 1;
}

/* Kart içi bilgi alanı */
.product-detail-card { padding: 12px 6px 6px; text-align: center; }
.product-title {
    font-size: 15px;
    font-weight: 300;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
    color: #000;
    line-height: 1.4;
}
.product-price { font-size: 16px; font-weight: 400; color: var(--primary-color); }
.product-price-old {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 4px;
}
.read-more-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    border-bottom: 1.5px solid var(--text-dark);
    transition: color 0.2s, border-color 0.2s;
}
.read-more-link:hover { color: var(--primary-color); border-color: var(--primary-color); }

/* Grid & Slider */
.product-slider { padding: 20px 0; margin: 0; overflow: visible; position: relative; }
.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    color: var(--text-dark);
    box-shadow: 0 3px 12px rgba(0,0,0,0.10);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.product-slider .swiper-button-next { right: -15px; }
.product-slider .swiper-button-prev { left: -15px; }
.product-slider .swiper-button-next:hover,
.product-slider .swiper-button-prev:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0 0 30px; }

/* ====================================================
   MARKA BADGE & ETİKETLER
   ==================================================== */
.badge-new { background: #2563eb; color: #fff; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-sale { background: var(--primary-color); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 20px; text-transform: uppercase; }
.badge-out { background: #6b7280; color: #fff; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 20px; text-transform: uppercase; }

/* ====================================================
   BUTONLAR — XIVA STİL
   ==================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 11px 24px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-hover); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    color: var(--primary-color);
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: var(--radius);
    border: 1.5px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}
.btn-secondary:hover { background: var(--primary-color); color: #fff; }

/* ====================================================
   SİDEBAR (Shop / Category sayfaları)
   ==================================================== */
.xiva-sidebar {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius); /* Oval kenar azaltıldı */
    overflow: hidden;
    position: sticky;
    top: 90px;
}
.xiva-sidebar-header {
    background: var(--primary-color);
    padding: 16px 12px; /* Padding azaltıldı */
    display: flex;
    align-items: center;
    gap: 10px;
}
.xiva-sidebar-header h3 {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin: 0;
}
.xiva-sidebar-header i { color: rgba(255,255,255,0.8); font-size: 14px; }
.xiva-sidebar-body { padding: 12px 0; }
.xiva-cat-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px; /* Padding azaltıldı */
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    transition: background 0.18s, color 0.18s;
    border-left: 3px solid transparent;
    font-family: var(--font-main);
}
.xiva-cat-link:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}
.xiva-cat-link.active {
    background: var(--primary-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 800;
}
.xiva-cat-link i { font-size: 13px; width: 16px; text-align: center; }
.xiva-cat-sub { padding-left: 24px; } /* Padding azaltıldı */
.xiva-cat-sub .xiva-cat-link { font-size: 12px; font-weight: 500; padding: 7px 12px 7px 0; border-left: none; }
.xiva-cat-sub .xiva-cat-link::before { content: '—'; color: var(--border-color); margin-right: 6px; font-size: 10px; }
.xiva-cat-sub .xiva-cat-link:hover { color: var(--primary-color); background: transparent; }
.xiva-cat-sub .xiva-cat-link.active { color: var(--primary-color); background: transparent; font-weight: 700; }

/* Filtre kutusu */
.xiva-filter-box { border-top: 1px solid var(--border-subtle); padding: 16px 12px; } /* Padding azaltıldı */
.xiva-filter-title {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.xiva-sort-select {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--text-dark);
    background: #fff;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23888' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px;
    padding-right: 32px;
}
.xiva-sort-select:focus { border-color: var(--primary-color); }

/* Ürün sayısı bilgisi */
.xiva-result-info {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}
.xiva-result-info strong { color: var(--text-dark); font-weight: 800; }

/* ====================================================
   ÜRÜN LİSTESİ (Shop sayfası kart)
   ==================================================== */
.xiva-product-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}
.xiva-product-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--border-color);
    transform: translateY(-3px);
}
.xiva-product-card .card-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--bg-light);
}
.xiva-product-card .card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.xiva-product-card:hover .card-image-wrap img { transform: scale(1.06); }
.xiva-product-card .card-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; z-index: 5; }
.xiva-product-card .card-body { padding: 14px 14px 16px; display: flex; flex-direction: column; flex-grow: 1; }
.xiva-product-card .card-title {
    font-size: 15px;
    font-weight: 300;
    color: #000;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
    transition: color 0.2s;
}
.xiva-product-card:hover .card-title { color: var(--primary-color); }
.xiva-product-card .card-price-row { display: flex; align-items: center; gap: 6px; margin-top: auto; margin-bottom: 10px; }
.xiva-product-card .card-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-main);
}
.xiva-product-card .card-price-old {
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}
.xiva-product-card .card-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-family: var(--font-main);
}
.xiva-product-card .card-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* Sayfalama */
.xiva-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: 40px; }
.xiva-pagination a,
.xiva-pagination span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-mid);
    background: #fff;
    transition: var(--transition);
    font-family: var(--font-main);
}
.xiva-pagination a:hover { border-color: var(--primary-color); color: var(--primary-color); background: var(--primary-light); }
.xiva-pagination a.active,
.xiva-pagination a.current { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.xiva-pagination .nav-btn { width: auto; padding: 0 14px; gap: 5px; }

/* ====================================================
   BLOG
   ==================================================== */
.blog-section { margin-top: 50px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; }
.blog-item { text-align: center; }
.blog-item img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); margin-bottom: 15px; }
.blog-item h4 { font-size: 13px; font-weight: 700; margin-bottom: 8px; }

/* ====================================================
   SEO MAKALE
   ==================================================== */
.seo-article {
    background: var(--bg-cream);
    border: 1px solid var(--border-subtle);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 50px;
}
.article-content {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}
.article-content.expanded { display: block; -webkit-line-clamp: unset; line-clamp: unset; }
.toggle-article { display: block; margin-top: 15px; font-weight: 800; cursor: pointer; color: var(--primary-color); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ====================================================
   FOOTER
   ==================================================== */
.e-bulletin { background: #1a0a08; color: #fff; padding: 56px 0; }
.e-bulletin .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.e-bulletin h3 { font-size: 20px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; line-height: 1.3; }
.e-bulletin h3 span { color: var(--gold); }
.eb-form { width: 60%; }
.eb-input-group { display: flex; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); border-radius: var(--radius); overflow: hidden; }
.eb-input-group input { flex: 1; background: transparent; border: none; color: #fff; padding: 14px 18px; outline: none; font-family: var(--font-main); font-size: 13px; }
.eb-input-group input::placeholder { color: rgba(255,255,255,0.4); }
.eb-input-group button { background: var(--primary-color); color: #fff; border: none; padding: 0 28px; font-weight: 800; cursor: pointer; font-family: var(--font-main); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; transition: background 0.2s; }
.eb-input-group button:hover { background: var(--primary-dark); }
.kvkk-check { margin-top: 12px; font-size: 11px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 8px; }

.footer-social-bar { background: var(--bg-cream); padding: 36px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.footer-social-bar .container { display: flex; justify-content: space-between; align-items: center; }
.f-social-left { display: flex; align-items: center; gap: 20px; }
.f-social-label { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-mid); }
.f-social-icons { display: flex; gap: 12px; }
.f-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-mid);
    transition: var(--transition);
}
.f-social-icons a:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; transform: translateY(-2px); }
.f-social-right { display: flex; align-items: center; gap: 20px; }
.f-customer-title { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); text-align: right; line-height: 1.3; }
.f-phone { font-size: 26px; font-weight: 900; color: var(--text-dark); letter-spacing: 0.5px; }

footer { background: #f5f0ee; color: var(--text-mid); padding: 60px 0 30px; }
footer .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
footer .footer-brand h4 { font-size: 22px; font-weight: 900; color: var(--primary-color); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
footer .footer-brand p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
footer .footer-col h4 { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary-color); display: inline-block; }
footer .footer-col ul li { margin-bottom: 10px; }
footer .footer-col ul li a { color: var(--text-mid); font-size: 13px; transition: color 0.2s, padding-left 0.2s; display: inline-block; }
footer .footer-col ul li a:hover { color: var(--primary-color); padding-left: 4px; }

.contact-line { display: flex; gap: 12px; margin-bottom: 14px; color: var(--text-mid); font-size: 13px; font-weight: 500; line-height: 1.5; }
.contact-line i { font-size: 16px; color: var(--primary-color); margin-top: 2px; flex-shrink: 0; }
.footer-divider { border-top: 1px solid var(--border-subtle); padding-top: 24px; text-align: center; font-size: 12px; color: var(--text-light); }
.footer-divider a { color: var(--text-light); font-weight: 700; transition: color 0.2s; }
.footer-divider a:hover { color: var(--primary-color); }

.signature-bar { background: #0d0504; color: #555; padding: 16px 0; text-align: center; font-size: 11px; }
.signature-bar a { color: #888; text-decoration: none; font-weight: 700; }
.signature-bar a:hover { color: #fff; }

/* ====================================================
   WHATSAPP
   ==================================================== */
.whatsapp-side {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #25d366;
    color: #fff;
    padding: 20px 10px;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1001;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 800;
    font-size: 13px;
    box-shadow: -3px 0 14px rgba(0,0,0,0.12);
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.whatsapp-side:hover { background: #1da851; }

/* ====================================================
   CART DRAWER
   ==================================================== */
#drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,0,0,0.5); z-index: 10001; display: none; opacity: 0; transition: opacity 0.3s; }
#cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 10002;
    box-shadow: -6px 0 30px rgba(0,0,0,0.12);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}
#cart-drawer.active { right: 0; }
.drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.drawer-header h3 {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
}
.drawer-body { flex: 1; padding: 20px; overflow-y: auto; }
.cart-item { display: flex; gap: 14px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px dashed rgba(0,0,0,0.1); }
.cart-item-img { width: 68px; height: 90px; object-fit: cover; border-radius: 0px; border: 1px solid rgba(0,0,0,0.1); }
.drawer-footer { padding: 16px 20px; border-top: 1px solid rgba(0,0,0,0.1); }
.checkout-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius);
    transition: background 0.2s;
    font-family: var(--font-main);
}
.checkout-btn:hover { background: var(--primary-dark); }

/* ====================================================
   YAŞ DOĞRULAMA
   ==================================================== */
#age-mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(26,10,8,0.97); z-index: 10000; display: flex; align-items: center; justify-content: center; }
.age-box { max-width: 420px; padding: 48px 40px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); border-radius: var(--radius-lg); text-align: center; background: #fff; }
.age-box h2 { font-size: 28px; font-weight: 900; letter-spacing: 3px; color: var(--primary-color); text-transform: uppercase; margin-bottom: 16px; }
.age-box p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.age-btn { padding: 12px 32px; border-radius: var(--radius); font-weight: 800; cursor: pointer; display: inline-block; margin: 12px 6px 0; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); font-family: var(--font-main); }
.age-yes { background: var(--primary-color); color: #fff; }
.age-yes:hover { background: var(--primary-dark); }
.age-no { background: #f1f1f1; color: var(--text-dark); }
.age-no:hover { background: #e0e0e0; }

/* ====================================================
   TAILWİND UYUM (text-primary, bg-primary)
   ==================================================== */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.border-primary { border-color: var(--primary-color) !important; }
.hover\:text-primary:hover { color: var(--primary-color) !important; }
.hover\:bg-primary:hover { background-color: var(--primary-color) !important; }
.focus\:ring-primary:focus { --tw-ring-color: var(--primary-color) !important; }
.focus\:border-primary:focus { border-color: var(--primary-color) !important; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    footer .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .header-search { order: 3; flex: 0 0 100% !important; margin-top: 15px; }
    .header-main .row { flex-wrap: wrap; }
    .blog-grid { grid-template-columns: 1fr; }
    .eb-form { width: 100%; }
    .e-bulletin .container { flex-direction: column; text-align: center; gap: 24px; }
    .menu-257 { display: none; }
    .footer-social-bar .container { flex-direction: column; gap: 20px; text-align: center; }
    .f-social-right { flex-direction: column; text-align: center; }
    .f-customer-title { text-align: center; }
}
@media (max-width: 480px) {
    footer .footer-top { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 26px; }
}


/* ====================================================
   MOBİL HEADER & FOOTER — TAM DUYARLI TASARIM
   ==================================================== */

/* ── MOBİL HEADER ── */
#xiva-mobile {
    display: none;
    flex-direction: column;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    font-family: var(--font-main);
}

#xiva-mobile .mh-strip {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 6px 16px !important;
    background: var(--primary-color) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #fff !important;
    white-space: nowrap !important;
}
#xiva-mobile .mh-strip i { font-size: 10px !important; margin-right: 3px !important; }
#xiva-mobile .mh-dot { opacity: 0.4 !important; }

#xiva-mobile .mh-bar {
    display: flex !important;
    align-items: center !important;
    padding: 8px 12px !important;
    border-bottom: 1px solid #eee !important;
}

#xiva-mobile .mh-logo {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #000 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
}
#xiva-mobile .mh-logo img { max-height: 32px !important; display: block !important; }

#xiva-mobile .mh-right { display: flex !important; align-items: center !important; }

#xiva-mobile .mh-btn {
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: none !important;
    border: none !important;
    color: #222 !important;
    font-size: 18px !important;
    cursor: pointer !important;
    border-radius: 50% !important;
    position: relative !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

#xiva-mobile .mh-btn em {
    position: absolute !important;
    top: 2px !important;
    right: 2px !important;
    min-width: 15px !important;
    height: 15px !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    font-style: normal !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 3px !important;
}

/* Hamburger */
#xiva-mobile .mh-hamburger { flex-direction: column !important; gap: 5px !important; }
#xiva-mobile .mh-hamburger span {
    display: block !important;
    width: 20px !important;
    height: 1.5px !important;
    background: #222 !important;
    border-radius: 1px !important;
    transition: transform 0.3s, opacity 0.2s, width 0.2s !important;
}
#xiva-mobile .mh-hamburger span:nth-child(2) { width: 14px !important; }
#xiva-mobile .mh-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg) !important; width: 20px !important; }
#xiva-mobile .mh-hamburger.open span:nth-child(2) { opacity: 0 !important; width: 0 !important; }
#xiva-mobile .mh-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg) !important; width: 20px !important; }

/* Arama */
#xiva-mobile .mh-search {
    padding: 8px 12px !important;
    background: #fff !important;
    border-bottom: 1px solid #eee !important;
}
#xiva-mobile .mh-search form {
    display: flex !important;
    height: 38px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    border: 1.5px solid #ddd !important;
}
#xiva-mobile .mh-search input {
    flex: 1 !important;
    padding: 0 12px !important;
    border: none !important;
    font-size: 13px !important;
    outline: none !important;
    background: #fff !important;
    font-family: var(--font-main) !important;
}
#xiva-mobile .mh-search button {
    width: 42px !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ── MOBİL SİDE MENÜ ── */
#mobile-nav-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998; opacity: 0; transition: opacity 0.3s;
}
#mobile-nav {
    position: fixed; top: 0; left: -310px;
    width: 290px; max-width: 82vw; height: 100%;
    background: #fff; z-index: 9999;
    display: flex; flex-direction: column;
    transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
}
#mobile-nav.open { left: 0; }

.mobile-nav-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; background: var(--primary-color);
}
.mobile-nav-header .nav-brand {
    font-size: 20px; font-weight: 900; color: #fff;
    letter-spacing: 3px; text-transform: uppercase; display: block; line-height: 1;
}
.mobile-nav-header .nav-brand-sub {
    display: block; font-size: 9px; font-weight: 600;
    color: rgba(255,255,255,0.65); letter-spacing: 1px;
    text-transform: uppercase; margin-top: 3px;
}
.mobile-nav-close {
    width: 30px; height: 30px; display: flex;
    align-items: center; justify-content: center;
    background: rgba(255,255,255,0.15);
    border: none; border-radius: 50%;
    color: #fff; font-size: 13px; cursor: pointer;
}

.mobile-nav-search { padding: 12px 16px; border-bottom: 1px solid #eee; }
.mobile-nav-search form {
    display: flex; align-items: center; height: 38px;
    background: #f8f4f1; border: 1px solid #e8e0db;
    border-radius: 6px; padding: 0 10px;
}
.mobile-nav-search i { color: #999; font-size: 13px; margin-right: 8px; }
.mobile-nav-search input {
    flex: 1; border: none; background: transparent;
    font-size: 13px; font-family: var(--font-main); outline: none;
}

.mobile-nav-body { flex: 1; overflow-y: auto; }
.mobile-nav-body a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px; font-size: 13px; font-weight: 700;
    color: #333; border-bottom: 1px solid #f5f5f5;
    font-family: var(--font-main); text-transform: uppercase;
    letter-spacing: 0.5px; text-decoration: none;
}
.mobile-nav-body a i { width: 14px; text-align: center; color: var(--primary-color); font-size: 11px; opacity: 0.5; }
.mobile-nav-body .nav-badge {
    margin-left: auto; background: var(--primary-light, #fdf2f2);
    color: var(--primary-color); font-size: 10px; font-weight: 900;
    padding: 2px 7px; border-radius: 10px;
}
.mobile-nav-section-title {
    font-size: 9px; font-weight: 900; text-transform: uppercase;
    letter-spacing: 2px; color: #999; padding: 16px 20px 6px;
}

.mobile-nav-social {
    display: flex; justify-content: center; gap: 10px;
    padding: 16px 20px; border-top: 1px solid #eee; margin-top: 6px;
}
.mobile-nav-social a {
    width: 34px; height: 34px; display: flex;
    align-items: center; justify-content: center;
    border-radius: 50%; background: #f8f4f1;
    color: #666; font-size: 14px; border: 1px solid #e8e0db;
    padding: 0; text-decoration: none;
}

.mobile-nav-footer {
    padding: 14px 18px; border-top: 1px solid #eee; background: #f8f4f1;
}
.mobile-nav-footer a {
    display: block; text-align: center; padding: 11px;
    border-radius: 6px; font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.8px;
    text-decoration: none; background: var(--primary-color); color: #fff;
}

/* --- MOBİL FOOTER --- */
.mobile-footer-acc { display: none; }
.footer-acc-item { border-bottom: 1px solid var(--border-subtle); }
.footer-acc-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}
.footer-acc-toggle i { font-size: 12px; color: var(--text-light); transition: transform 0.25s; }
.footer-acc-toggle.open i { transform: rotate(180deg); }
.footer-acc-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.footer-acc-content.open { max-height: 400px; }
.footer-acc-content ul { padding: 0 0 16px; }
.footer-acc-content ul li { margin-bottom: 10px; }
.footer-acc-content ul li a { font-size: 13px; color: var(--text-mid); transition: color 0.2s; }
.footer-acc-content ul li a:hover { color: var(--primary-color); }

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 768px) {
    /* Header: desktop gizle, mobil göster */
    .header-top { display: none; }
    .header-main { display: none; }
    #main-menu { display: none; }
    #xiva-mobile { display: flex !important; }

    /* Footer: desktop grid gizle, accordion göster */
    footer .footer-top { display: none; }
    .footer-divider { display: none; }
    .mobile-footer-acc { display: block; padding: 0 16px; }

    /* E-bülten mobil */
    .e-bulletin { padding: 36px 0; }
    .e-bulletin .container { flex-direction: column; text-align: center; gap: 20px; padding: 0 16px; }
    .e-bulletin h3 { font-size: 16px; }
    .eb-form { width: 100%; }
    .eb-input-group { flex-direction: row; }

    /* Sosyal bar mobil */
    .footer-social-bar { padding: 24px 0; }
    .footer-social-bar .container { flex-direction: column; gap: 16px; text-align: center; padding: 0 16px; }
    .f-social-right { flex-direction: column; align-items: center; gap: 6px; }
    .f-customer-title { text-align: center; }
    .f-phone { font-size: 22px; }

    /* Footer bottom */
    footer { padding: 24px 0 20px; }
    .footer-divider { padding: 0 16px; padding-top: 20px; }

    /* Genel sayfa içerik boşlukları */
    .page-hero { padding: 32px 16px; }
    .page-hero h1 { font-size: 24px; letter-spacing: 1.5px; }

    /* Ürün grid */
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* Cart drawer mobil */
    #cart-drawer { width: 100%; right: -100%; }
    #cart-drawer.active { right: 0; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    #xiva-mobile .mh-strip { font-size: 9px !important; gap: 5px !important; padding: 5px 10px !important; }
    #xiva-mobile .mh-bar { padding: 6px 10px !important; }
    #xiva-mobile .mh-logo { font-size: 18px !important; letter-spacing: 3px !important; }
    #xiva-mobile .mh-logo img { max-height: 26px !important; }
    #xiva-mobile .mh-btn { width: 34px !important; height: 34px !important; font-size: 16px !important; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .section-title { font-size: 18px; letter-spacing: 1px; }
    .xiva-product-card .card-body { padding: 10px 10px 12px; }
    .xiva-product-card .card-title { font-size: 12px; }
    .xiva-product-card .card-price { font-size: 14px; }
}

@media (min-width: 769px) {
    #xiva-mobile { display: none !important; }
    .mobile-footer-acc { display: none; }
    footer .footer-top { display: grid; }
    .footer-divider { display: block; }
}

/* ====================================================
   EK: XIVA ÜRÜN DETAY SAYFASI (product.php) UYUM STİLLERİ
   product.php'deki inline Tailwind sınıfları için köprü
   ==================================================== */

/* Varyasyon butonları (product.php) */
.variant-option {
    padding: 8px 16px;
    background: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.variant-option:hover { border-color: var(--primary-color); color: var(--primary-color); }
.variant-option.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.variant-option.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-light);
}

/* Ürün detay tab sistemi */
.tab-button {
    padding: 12px 4px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    color: var(--text-light);
    font-family: var(--font-main);
    transition: color 0.2s, border-color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
}
.tab-button.border-primary,
.tab-button[class*="border-primary"] {
    border-bottom-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}
.tab-button:hover { color: var(--primary-color); }
.tab-content { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.tab-content.hidden { display: none; }

/* Adet seçimi */
.quantity-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-main);
}
.quantity-btn:hover { background: var(--bg-light); }

/* Sepete ekle düğmesi (ürün detay sayfası) */
.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 13px 24px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}
.add-to-cart-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}
.add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Favori butonu */
.add-to-wishlist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 13px 24px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}
.add-to-wishlist-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Stok badge */
.stock-badge-in   { display: inline-flex; align-items: center; gap: 4px; background: #ecfdf5; color: #065f46; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.stock-badge-out  { display: inline-flex; align-items: center; gap: 4px; background: #fef2f2; color: #991b1b; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }

/* Ürün fiyat bloğu */
.product-price-block { margin-bottom: 16px; }
.product-price-main  { font-size: 32px; font-weight: 900; color: var(--primary-color); font-family: var(--font-main); }
.product-price-old-del { font-size: 16px; color: var(--text-light); text-decoration: line-through; }

/* Ürün özellikler tablosu */
.features-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.features-table td { padding: 10px 16px; border-bottom: 1px solid var(--border-subtle); }
.features-table td:first-child { font-weight: 700; color: var(--text-dark); width: 40%; background: var(--bg-cream); }
.features-table td:last-child { color: var(--text-mid); }

/* ====================================================
   SEPET SAYFASI (cart.php) UYUM STİLLERİ
   ==================================================== */
.cart-page-wrapper { padding: 40px 0 60px; }
.cart-items-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.cart-item-row {
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-subtle);
    align-items: flex-start;
}
.cart-item-row:last-child { border-bottom: none; }
.cart-item-img-wrap {
    width: 80px;
    height: 100px;
    flex-shrink: 0;
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
}
.cart-item-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cart-summary-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: 90px;
}
.cart-summary-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-cream);
}
.cart-summary-header h2 {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
}
.cart-qty-control {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}
.cart-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-dark);
    transition: background 0.2s;
}
.cart-qty-btn:hover { background: var(--border-subtle); }
.cart-qty-input {
    width: 48px;
    height: 32px;
    text-align: center;
    border: none;
    border-left: 1.5px solid var(--border-color);
    border-right: 1.5px solid var(--border-color);
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    outline: none;
}
.cart-remove-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
    font-family: var(--font-main);
    padding: 0;
}
.cart-remove-btn:hover { color: var(--primary-color); }
.cart-proceed-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-main);
    text-decoration: none;
}
.cart-proceed-btn:hover { background: var(--primary-dark); }
.free-shipping-bar {
    height: 4px;
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
    margin: 8px 0;
}
.free-shipping-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* ====================================================
   RESPONSIVE EKLEMELERİ
   ==================================================== */
@media (max-width: 768px) {
    .cart-item-row { padding: 12px 16px; }
    .cart-item-img-wrap { width: 64px; height: 80px; }
}

/* KADIN GİYİM İÇİN KESKİN HATLARA SAHİP TASARIM: OVAL KENAR İPTALİ (TAILWIND OVERRIDES) */
.rounded-md, .rounded-lg, .rounded-xl, .rounded-2xl, .rounded-l-lg, .rounded-r-lg {
    border-radius: 0px !important;
}
.rounded-full.px-3.py-1, .rounded-full.px-3.py-1\.5 {
    border-radius: 0px !important;
}
