/* ═══════════════════════════════════════════════════════════════════════════
   BlancaButik — Ana Stil Dosyası
   Tasarım: Soft, Elegant, Mobile-First Boutique
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ────────────────────────────────────────────────────────── */
:root {
  --primary:   #1c1c1c;
  --accent:    #c9a96e;
  --accent-light: #e8d5b7;
  --pink:      #e8c4be;
  --soft:      #f8f5f2;
  --white:     #ffffff;
  --gray:      #6b7280;
  --gray-light:#e5e7eb;
  --danger:    #e55353;
  --success:   #2dbe60;
  --info:      #3b82f6;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 20px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --transition:0.28s ease;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --header-h:  64px;
  --bar-h:     40px;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-h);
}
body.has-bar { padding-top: calc(var(--header-h) + var(--bar-h)); }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; }

/* ─── Announcement Bar ──────────────────────────────────────────────────────── */
.announcement-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: var(--bar-h);
  background: var(--primary);
  display: flex; align-items: center; overflow: hidden;
}
.marquee-track {
  display: flex; align-items: center; gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  padding: 0 30px;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: #fff; flex-shrink: 0; }
.ann-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.7); font-size: 20px; line-height: 1; padding: 4px 8px;
  transition: color var(--transition);
}
.ann-close:hover { color: #fff; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Header ────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow var(--transition), top var(--transition);
}
.site-header.has-bar { top: var(--bar-h); }
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  height: 100%; display: flex; align-items: center; gap: 16px;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img  { height: 44px; object-fit: contain; }
.logo-text {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary);
}
.main-nav { flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px; }
.main-nav .nav-link {
  font-size: 13px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  color: var(--primary); padding: 8px 14px; border-radius: 6px;
  transition: all var(--transition);
}
.main-nav .nav-link:hover { color: var(--accent); }
.nav-sale { color: var(--danger) !important; font-weight: 600 !important; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.action-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 18px; color: var(--primary);
  transition: all var(--transition); position: relative;
}
.action-btn:hover { color: var(--accent); background: var(--soft); }
.cart-badge {
  position: absolute; top: 2px; right: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: flex; flex-direction: column; gap: 5px; padding: 8px;
  border-radius: 6px; transition: background var(--transition);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger:hover { background: var(--soft); }
@media (min-width: 992px) { .hamburger { display: none; } }

/* Search */
.search-overlay {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--gray-light);
  padding: 16px 24px; box-shadow: var(--shadow-lg);
  display: none; z-index: 999;
}
.search-overlay.active { display: block; animation: slideDown .25s ease; }
.search-form { display: flex; align-items: center; gap: 8px; max-width: 600px; margin: 0 auto; }
.search-input {
  flex: 1; padding: 12px 16px; border: 1.5px solid var(--gray-light);
  border-radius: 50px; font-size: 15px; outline: none;
  transition: border-color var(--transition);
}
.search-input:focus { border-color: var(--accent); }
.search-submit, .search-close {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all var(--transition);
}
.search-submit { background: var(--primary); color: var(--white); }
.search-submit:hover { background: var(--accent); }
.search-close { color: var(--gray); }
.search-close:hover { color: var(--primary); }

/* ─── Mobile Menu ───────────────────────────────────────────────────────────── */
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1099;
}
.mobile-overlay.active { display: block; animation: fadeIn .3s ease; }
.mobile-menu {
  position: fixed; top: 0; left: -100%; width: min(320px, 85vw); height: 100%;
  background: var(--white); z-index: 1100;
  overflow-y: auto; transition: left .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.mobile-menu.open { left: 0; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid var(--gray-light);
}
.mobile-close { font-size: 22px; color: var(--primary); padding: 4px; }
.mobile-nav { padding: 12px 0; flex: 1; }
.mobile-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 24px; font-size: 15px; font-weight: 500;
  color: var(--primary); border-bottom: 1px solid #f5f5f5;
  transition: all var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:active { background: var(--soft); color: var(--accent); }
.mobile-nav a i { width: 20px; color: var(--accent); }
.mobile-nav a.nav-sale { color: var(--danger); }
.mobile-cat-header { padding: 16px 24px 6px; font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--gray); text-transform: uppercase; }
.mobile-divider { height: 8px; background: var(--soft); margin: 8px 0; }

/* ─── Flash Message ─────────────────────────────────────────────────────────── */
.flash-message {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2000; min-width: 280px; max-width: 90vw;
  padding: 14px 20px; border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); font-size: 14px; font-weight: 500;
  animation: slideUp .3s ease;
}
.flash-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.flash-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.flash-info    { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.flash-message button { margin-left: auto; font-size: 18px; opacity: .6; }
.flash-message button:hover { opacity: 1; }

/* ─── Hero Slider ───────────────────────────────────────────────────────────── */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide {
  position: relative; overflow: hidden;
  height: min(90vh, 700px);
}
@media (max-width: 767px) { .hero-slide { height: min(75vh, 500px); } }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.slide-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f8f5f2 0%, #e8d5b7 50%, #d4c4b0 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.hero-text {
  padding: 0 20px; max-width: 700px;
  animation: heroIn .8s ease forwards;
}
.hero-text h2 {
  margin-bottom: 12px; line-height: 1.2;
}
.hero-text p {
  margin-bottom: 24px; line-height: 1.6; font-weight: 300;
}
.hero-badge {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: #fff; margin-bottom: 12px;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-btns a {
  display: inline-block; font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; transition: opacity .2s;
}
.hero-btns a:hover { opacity: .85; }
.hero-btn {
  display: inline-block;
  padding: 14px 36px; background: var(--white); color: var(--primary);
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 50px; transition: all var(--transition);
}
.hero-btn:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }

/* Swiper arrows */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--primary);
  transition: all var(--transition);
}
.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover { background: var(--white); transform: scale(1.05); }
.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after { font-size: 16px; font-weight: 700; }
.hero-slider .swiper-pagination-bullet { width: 8px; height: 8px; background: var(--white); opacity: .6; }
.hero-slider .swiper-pagination-bullet-active { opacity: 1; background: var(--white); width: 24px; border-radius: 4px; }

/* ─── Section Styles ────────────────────────────────────────────────────────── */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
@media (max-width: 767px) { .section { padding: 44px 0; } }
.section-header { text-align: center; margin-bottom: 40px; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px; display: block;
}
.section-title { font-size: clamp(24px, 4vw, 38px); margin-bottom: 12px; }
.section-sub { color: var(--gray); font-size: 15px; max-width: 480px; margin: 0 auto; }
.view-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--primary); border-bottom: 1.5px solid var(--primary);
  padding-bottom: 2px; transition: all var(--transition);
}
.view-all:hover { color: var(--accent); border-color: var(--accent); gap: 10px; }

/* ─── Category Grid ─────────────────────────────────────────────────────────── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
@media (min-width: 768px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .category-grid { grid-template-columns: repeat(6, 1fr); } }
.cat-card {
  aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer; background: var(--soft);
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px;
}
.cat-card-name {
  color: var(--white); font-family: var(--font-head);
  font-size: 16px; font-weight: 600; text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.cat-card-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; }
.cat-card-placeholder-icon { font-size: 48px; opacity: .2; }

/* ─── Product Card ──────────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 576px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 768px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px)  { .products-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .products-grid.cols-5 { grid-template-columns: repeat(5, 1fr); } }

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: var(--soft);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .4s ease, transform .6s ease;
  position: absolute; inset: 0;
}
.product-img-wrap .img-hover {
  opacity: 0; transform: scale(1.04);
}
.product-card:hover .img-main  { opacity: 0; }
.product-card:hover .img-hover { opacity: 1; transform: scale(1); }

.product-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px; z-index: 2;
}
.badge-new  { background: var(--primary); color: var(--white); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; letter-spacing: .06em; }
.badge-sale { background: var(--danger);  color: var(--white); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }

.product-actions {
  position: absolute; bottom: 12px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  opacity: 0; transform: translateY(12px);
  transition: all .3s ease;
}
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }
.prod-action-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: 0 2px 12px rgba(0,0,0,.15);
  transition: all var(--transition);
}
.prod-action-btn:hover { background: var(--accent); color: var(--white); }
.prod-action-btn.wishlisted { color: var(--danger); }
.prod-add-cart {
  height: 40px; padding: 0 20px; border-radius: 50px;
  background: var(--primary); color: var(--white);
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  transition: all var(--transition);
}
.prod-add-cart:hover { background: var(--accent); }

.product-info { padding: 14px 12px 16px; }
.product-brand { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.product-name {
  font-size: 14px; font-weight: 500; color: var(--primary);
  margin-bottom: 8px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-current { font-size: 15px; font-weight: 700; color: var(--primary); }
.price-sale    { font-size: 15px; font-weight: 700; color: var(--danger); }
.price-old     { font-size: 13px; color: var(--gray); text-decoration: line-through; }

/* ─── Promo Banner ──────────────────────────────────────────────────────────── */
.promo-banner {
  background: var(--soft); border-radius: var(--radius-lg);
  padding: 48px 40px; text-align: center;
  background-image: linear-gradient(135deg, #f8f5f2 0%, #e8d5b7 100%);
}
.promo-banner h3 { font-size: clamp(22px, 4vw, 38px); margin-bottom: 10px; }
.promo-banner p  { color: var(--gray); margin-bottom: 24px; font-size: 15px; }

/* ─── Features Strip ────────────────────────────────────────────────────────── */
.features-strip { background: var(--soft); padding: 32px 0; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-item { display: flex; align-items: center; gap: 14px; }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--accent); flex-shrink: 0; box-shadow: var(--shadow); }
.feature-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.feature-sub   { font-size: 12px; color: var(--gray); }

/* ─── Shop Page ─────────────────────────────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 992px) { .shop-layout { grid-template-columns: 260px 1fr; } }

.filters-sidebar { background: var(--white); border-radius: var(--radius); }
.filter-section { padding: 20px; border-bottom: 1px solid var(--gray-light); }
.filter-title { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; font-size: 14px; color: var(--primary); transition: color var(--transition); }
.filter-option:hover { color: var(--accent); }
.filter-option input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--accent); }
.price-range-inputs { display: flex; gap: 8px; align-items: center; }
.price-range-inputs input { width: 0; flex: 1; padding: 8px 10px; border: 1.5px solid var(--gray-light); border-radius: 8px; font-size: 13px; }
.price-range-inputs input:focus { outline: none; border-color: var(--accent); }

.shop-toolbar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-light);
}
.shop-count { color: var(--gray); font-size: 14px; flex: 1; }
.shop-sort { padding: 9px 12px; border: 1.5px solid var(--gray-light); border-radius: 8px; font-size: 14px; background: var(--white); cursor: pointer; }
.shop-sort:focus { outline: none; border-color: var(--accent); }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gray); transition: all var(--transition); }
.view-btn.active, .view-btn:hover { background: var(--primary); color: var(--white); }

/* Mobile filter toggle */
.filter-toggle-btn {
  display: none; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1.5px solid var(--gray-light); border-radius: 50px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  transition: all var(--transition);
}
.filter-toggle-btn:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 991px) { .filter-toggle-btn { display: flex; } .filters-sidebar { display: none; } .filters-sidebar.open { display: block; } }

/* Pagination */
.pagination-wrap { margin-top: 48px; display: flex; justify-content: center; }
.pagination { gap: 6px; }
.page-link { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px !important; border: 1.5px solid var(--gray-light) !important; color: var(--primary) !important; font-size: 14px; font-weight: 500; transition: all var(--transition); }
.page-link:hover, .page-item.active .page-link { background: var(--primary) !important; border-color: var(--primary) !important; color: var(--white) !important; }

/* ─── Product Detail ────────────────────────────────────────────────────────── */
.product-gallery { display: grid; grid-template-columns: 80px 1fr; gap: 12px; }
@media (max-width: 576px) { .product-gallery { grid-template-columns: 1fr; } }
.gallery-thumbs { display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 576px) { .gallery-thumbs { flex-direction: row; order: 2; } }
.gallery-thumb { width: 80px; height: 100px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); flex-shrink: 0; }
.gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main { aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; background: var(--soft); cursor: zoom-in; position: relative; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info { padding-left: 32px; }
@media (max-width: 991px) { .product-detail-info { padding-left: 0; margin-top: 24px; } }
.product-detail-cat { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.product-detail-name { font-size: clamp(22px, 3.5vw, 34px); margin-bottom: 16px; }
.product-detail-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.detail-price-sale { font-size: 28px; font-weight: 700; color: var(--danger); }
.detail-price-old  { font-size: 18px; color: var(--gray); text-decoration: line-through; }
.detail-price-main { font-size: 28px; font-weight: 700; }
.discount-badge    { background: var(--danger); color: var(--white); font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: 6px; }

.product-short-desc { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }

/* Variants */
.variant-section { margin-bottom: 20px; }
.variant-label { font-size: 13px; font-weight: 600; margin-bottom: 10px; display: flex; gap: 6px; align-items: center; }
.variant-label span { color: var(--gray); font-weight: 400; }
.size-guide-trigger {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,110,.35);
  background: linear-gradient(135deg, rgba(201,169,110,.12), rgba(201,169,110,.02));
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all var(--transition);
}
.size-guide-trigger:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.color-options { display: flex; flex-wrap: wrap; gap: 8px; }
.color-option {
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition);
  position: relative;
}
.color-option.active { border-color: var(--primary); transform: scale(1.15); }
.color-option::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 1.5px solid transparent; }
.color-option.active::after { border-color: var(--primary); }

.size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.size-option {
  min-width: 44px; height: 44px; padding: 0 12px;
  border: 1.5px solid var(--gray-light); border-radius: 8px;
  font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.size-option:hover   { border-color: var(--primary); }
.size-option.active  { background: var(--primary); color: var(--white); border-color: var(--primary); }
.size-option.out-of-stock { opacity: .4; cursor: not-allowed; position: relative; }
.size-option.out-of-stock::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg,transparent,transparent 4px,rgba(0,0,0,.1) 4px,rgba(0,0,0,.1) 5px); border-radius: 8px; }

/* Qty + Add to Cart */
.qty-cart-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--gray-light); border-radius: 10px; overflow: hidden; }
.qty-btn { width: 44px; height: 52px; font-size: 20px; font-weight: 300; color: var(--primary); transition: background var(--transition); display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--soft); }
.qty-input { width: 54px; height: 52px; text-align: center; border: none; font-size: 16px; font-weight: 600; color: var(--primary); outline: none; background: transparent; }
.btn-add-cart {
  flex: 1; min-width: 200px; height: 52px; border-radius: 10px;
  background: var(--primary); color: var(--white);
  font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all var(--transition);
}
.btn-add-cart:hover { background: var(--accent); transform: translateY(-1px); }
.btn-wishlist-detail {
  width: 52px; height: 52px; border-radius: 10px;
  border: 1.5px solid var(--gray-light); display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary); transition: all var(--transition);
}
.btn-wishlist-detail:hover, .btn-wishlist-detail.active { border-color: var(--danger); color: var(--danger); }

.product-meta { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--gray-light); }
.product-meta-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); margin-bottom: 6px; }
.product-meta-row i { color: var(--accent); }
.product-meta-row strong { color: var(--primary); }

/* Tabs */
.product-tabs { margin-top: 48px; }
.product-tabs .nav-tabs { border-bottom: 1px solid var(--gray-light); gap: 4px; }
.product-tabs .nav-link { color: var(--gray); font-size: 14px; font-weight: 600; padding: 10px 20px; border: none !important; border-bottom: 2px solid transparent !important; border-radius: 0 !important; transition: all var(--transition); }
.product-tabs .nav-link.active { color: var(--primary); border-bottom-color: var(--accent) !important; background: none !important; }
.product-tabs .tab-content { padding: 24px 0; color: var(--gray); font-size: 14px; line-height: 1.8; }

/* ─── Cart ──────────────────────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 992px) { .cart-layout { grid-template-columns: 1fr 380px; } }
.cart-table-wrap { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-light); }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; padding: 20px; border-bottom: 1px solid var(--gray-light); align-items: center; }
@media (max-width: 576px) { .cart-item { grid-template-columns: 70px 1fr; } }
.cart-item-img { width: 90px; height: 120px; border-radius: 8px; overflow: hidden; background: var(--soft); flex-shrink: 0; }
@media (max-width: 576px) { .cart-item-img { width: 70px; height: 90px; } }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-variant { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.cart-item-price { font-size: 15px; font-weight: 700; }
.cart-item-remove { color: var(--gray); font-size: 18px; padding: 4px; transition: color var(--transition); }
.cart-item-remove:hover { color: var(--danger); }
.cart-item-qty { display: flex; align-items: center; border: 1px solid var(--gray-light); border-radius: 8px; overflow: hidden; width: fit-content; }
.cart-qty-btn { width: 32px; height: 32px; font-size: 18px; color: var(--primary); transition: background var(--transition); display: flex; align-items: center; justify-content: center; }
.cart-qty-btn:hover { background: var(--soft); }
.cart-qty-num { width: 40px; text-align: center; font-size: 14px; font-weight: 600; }

.cart-summary { background: var(--white); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--gray-light); height: fit-content; position: sticky; top: calc(var(--header-h) + 20px); }
.cart-summary-title { font-size: 18px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-light); }
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; margin-bottom: 12px; color: var(--gray); }
.summary-row.total { font-size: 18px; font-weight: 700; color: var(--primary); padding-top: 12px; border-top: 1px solid var(--gray-light); margin-top: 4px; }
.coupon-form { display: flex; gap: 8px; margin-bottom: 20px; }
.coupon-input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--gray-light); border-radius: 8px; font-size: 14px; outline: none; }
.coupon-input:focus { border-color: var(--accent); }
.coupon-btn { padding: 10px 16px; background: var(--primary); color: var(--white); border-radius: 8px; font-size: 13px; font-weight: 600; transition: background var(--transition); }
.coupon-btn:hover { background: var(--accent); }
.btn-checkout {
  width: 100%; padding: 16px; background: var(--primary); color: var(--white);
  border-radius: 12px; font-size: 15px; font-weight: 700; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all var(--transition); margin-top: 16px;
}
.btn-checkout:hover { background: var(--accent); transform: translateY(-1px); }
.security-badges { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; color: var(--gray); font-size: 12px; }
.security-badges i { color: var(--success); }

/* ─── Checkout ──────────────────────────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 992px) { .checkout-layout { grid-template-columns: 1fr 380px; } }
.checkout-section { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--gray-light); margin-bottom: 16px; }
.checkout-section-title { font-size: 16px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.checkout-section-title i { color: var(--accent); }
.form-group { margin-bottom: 16px; }
.form-label { font-size: 13px; font-weight: 600; margin-bottom: 6px; display: block; color: #444; }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-light); border-radius: 9px;
  font-size: 14px; font-family: inherit; outline: none;
  transition: border-color var(--transition); color: var(--primary);
}
.form-control:focus { border-color: var(--accent); }
select.form-control { cursor: pointer; }
.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.payment-option {
  display: flex; align-items: center; gap: 14px; padding: 16px;
  border: 1.5px solid var(--gray-light); border-radius: 12px;
  cursor: pointer; transition: all var(--transition);
}
.payment-option:hover, .payment-option.active { border-color: var(--accent); background: #fdf9f5; }
.payment-option input[type=radio] { accent-color: var(--accent); width: 18px; height: 18px; }
.payment-option-icon { font-size: 24px; color: var(--accent); }
.payment-option-text .label { font-size: 14px; font-weight: 600; }
.payment-option-text .sub   { font-size: 12px; color: var(--gray); }

/* ─── Auth Pages ────────────────────────────────────────────────────────────── */
.auth-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px 16px; background: var(--soft); }
.auth-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 48px); width: 100%; max-width: 460px; box-shadow: var(--shadow-lg); }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo a { font-family: var(--font-head); font-size: 26px; font-weight: 700; letter-spacing: 2px; }
.auth-title { font-size: 22px; margin-bottom: 6px; text-align: center; }
.auth-sub { color: var(--gray); font-size: 14px; text-align: center; margin-bottom: 28px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--gray); font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-light); }
.auth-link { color: var(--accent); font-weight: 600; }
.auth-link:hover { text-decoration: underline; }

/* ─── Account ───────────────────────────────────────────────────────────────── */
.account-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .account-layout { grid-template-columns: 240px 1fr; } }
.account-sidebar { background: var(--white); border-radius: var(--radius-lg); padding: 24px; height: fit-content; border: 1px solid var(--gray-light); }
.account-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--white); font-family: var(--font-head); margin-bottom: 12px; }
.account-name { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.account-email { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.account-nav { display: flex; flex-direction: column; gap: 2px; }
.account-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--primary);
  transition: all var(--transition);
}
.account-nav-link:hover, .account-nav-link.active { background: var(--soft); color: var(--accent); }
.account-nav-link i { width: 18px; color: var(--accent); }
.account-content { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--gray-light); }
.order-status-tab { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.order-tab-btn { padding: 7px 16px; border: 1.5px solid var(--gray-light); border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--gray); transition: all var(--transition); }
.order-tab-btn.active, .order-tab-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.order-card { border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 16px; margin-bottom: 12px; }
.order-card-header { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.order-number { font-size: 13px; font-weight: 700; }
.order-date   { font-size: 12px; color: var(--gray); }
.order-items-preview { display: flex; gap: 8px; }
.order-item-thumb { width: 56px; height: 72px; border-radius: 6px; overflow: hidden; background: var(--soft); flex-shrink: 0; }
.order-item-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Wishlist ──────────────────────────────────────────────────────────────── */
.wishlist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 576px)  { .wishlist-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px)  { .wishlist-grid { grid-template-columns: repeat(4, 1fr); } }

/* ─── Newsletter Strip ──────────────────────────────────────────────────────── */
.newsletter-strip { background: var(--primary); padding: 48px 0; }
.newsletter-title { font-family: var(--font-head); font-size: clamp(18px, 3vw, 26px); color: var(--white); margin-bottom: 4px; }
.newsletter-sub   { color: rgba(255,255,255,.6); font-size: 14px; }
.newsletter-form  { display: flex; gap: 8px; max-width: 480px; }
.newsletter-input { flex: 1; padding: 13px 18px; border: none; border-radius: 10px; font-size: 14px; outline: none; }
.newsletter-btn   { padding: 13px 24px; background: var(--accent); color: var(--white); border-radius: 10px; font-size: 13px; font-weight: 700; white-space: nowrap; transition: all var(--transition); }
.newsletter-btn:hover { background: #b8904a; }
@media (max-width: 576px) { .newsletter-form { flex-direction: column; } }

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.footer-main { background: #1a1714; padding: 60px 0 40px; }
.footer-logo { font-family: var(--font-head); font-size: 22px; font-weight: 700; letter-spacing: 2px; color: var(--white); display: block; margin-bottom: 6px; }
.footer-tagline { font-size: 11px; color: var(--accent); letter-spacing: .5px; margin-bottom: 10px; text-transform: uppercase; font-weight: 500; }
.footer-desc { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.7; margin-bottom: 10px; max-width: 300px; }
.footer-founded { font-size: 10px; color: rgba(255,255,255,.25); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 16px; transition: all var(--transition); }
.social-link:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.footer-heading { color: rgba(255,255,255,.9); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: 13px; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: 13px; margin-bottom: 10px; }
.footer-contact li i { color: var(--accent); width: 16px; }
.footer-contact a { color: inherit; transition: color var(--transition); }
.footer-contact a:hover { color: var(--accent); }
.footer-badges { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer-badge { display: flex; align-items: center; gap: 10px; }
.footer-badge i { color: var(--accent); font-size: 16px; }
.footer-badge span { color: rgba(255,255,255,.55); font-size: 12px; }
.footer-carriers { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-carrier-badge { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; border: 1.5px solid; background: rgba(255,255,255,.06); transition: all .2s; font-size: 14px; }
.footer-carrier-badge:hover { background: rgba(255,255,255,.12); transform: translateY(-1px); }
.footer-bottom { background: #111; padding: 16px 0; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 12px; margin: 0; }
.payment-icons { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.payment-icons img { height: 28px; filter: brightness(0.6); transition: filter var(--transition); }
.payment-icons img:hover { filter: brightness(0.9); }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary-custom {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; background: var(--primary); color: var(--white);
  border-radius: 10px; font-size: 14px; font-weight: 600;
  transition: all var(--transition); border: none; cursor: pointer;
}
.btn-primary-custom:hover { background: var(--accent); color: var(--white); }
.btn-outline-custom {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary); border-radius: 10px; font-size: 14px; font-weight: 600;
  transition: all var(--transition); cursor: pointer;
}
.btn-outline-custom:hover { background: var(--primary); color: var(--white); }

/* ─── Form Styles ───────────────────────────────────────────────────────────── */
.form-control.invalid { border-color: var(--danger); }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }
.form-success { font-size: 12px; color: var(--success); margin-top: 4px; }
.password-wrap { position: relative; }
.password-toggle { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--gray); cursor: pointer; font-size: 16px; }
.password-toggle:hover { color: var(--primary); }

/* ─── Admin Preview Button ──────────────────────────────────────────────────── */
.admin-preview-bar { background: var(--accent); color: var(--white); padding: 8px 16px; font-size: 13px; font-weight: 600; text-align: center; position: sticky; top: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; gap: 12px; }
.admin-preview-bar a { color: var(--white); text-decoration: underline; }

/* ─── Floating elements ─────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 80px; right: 24px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  box-shadow: var(--shadow-lg); z-index: 999;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); }
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px;
  border-radius: 50%; background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 998;
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

/* ─── Çerez Onay Çubuğu ─────────────────────────────────────────────────────── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--primary); color: var(--white);
  padding: 14px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  border-top: 2px solid var(--accent);
  animation: slideUp .4s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.cookie-text { margin: 0; font-size: 13px; color: rgba(255,255,255,.85); }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { padding: 8px 20px; border-radius: 6px; border: none; cursor: pointer; font-size: 13px; font-weight: 500; transition: all var(--transition); }
.cookie-accept { background: var(--accent); color: var(--white); }
.cookie-accept:hover { background: var(--accent-dark, #b8935a); }
.cookie-decline { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.3); }
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,.6); }

/* ─── Alert / Notification ──────────────────────────────────────────────────── */
.alert { border-radius: 10px; border: none; padding: 14px 18px; font-size: 14px; }
.alert-success-custom { background: #ecfdf5; color: #065f46; border-left: 3px solid var(--success); }
.alert-danger-custom  { background: #fef2f2; color: #991b1b; border-left: 3px solid var(--danger); }
.alert-info-custom    { background: #eff6ff; color: #1e3a8a; border-left: 3px solid var(--info); }
.alert-warning-custom { background: #fffbeb; color: #92400e; border-left: 3px solid #f59e0b; }

/* ─── Quick View ────────────────────────────────────────────────────────────── */
#quickViewModal .modal-content { border: none; border-radius: var(--radius-lg); overflow: hidden; }
#quickViewModal .modal-dialog  { max-width: 860px; }
.quick-view-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  box-shadow: var(--shadow); color: var(--primary);
}

/* ─── Empty State ───────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state-icon { font-size: 64px; margin-bottom: 20px; opacity: .3; }
.empty-state h4 { font-size: 20px; margin-bottom: 10px; }
.empty-state p  { color: var(--gray); font-size: 14px; margin-bottom: 24px; }

/* ─── Loading Spinner ───────────────────────────────────────────────────────── */
.spinner-overlay { position: fixed; inset: 0; background: rgba(255,255,255,.8); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.spinner { width: 48px; height: 48px; border: 3px solid var(--gray-light); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }

/* ─── Breadcrumb ────────────────────────────────────────────────────────────── */
.page-breadcrumb { padding: 16px 0; border-bottom: 1px solid var(--gray-light); margin-bottom: 32px; }
.breadcrumb { margin: 0; padding: 0; }
.breadcrumb-item { font-size: 13px; color: var(--gray); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--gray-light); }
.breadcrumb-item a { color: var(--gray); transition: color var(--transition); }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item.active { color: var(--primary); font-weight: 500; }

/* ─── Rating Stars ──────────────────────────────────────────────────────────── */
.stars { display: inline-flex; gap: 2px; color: #fbbf24; font-size: 14px; }
.stars-empty { color: var(--gray-light); }

/* ─── Zoom overlay ──────────────────────────────────────────────────────────── */
.zoom-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 2000; display: flex; align-items: center; justify-content: center; cursor: zoom-out; }
.zoom-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.zoom-close { position: fixed; top: 24px; right: 24px; color: var(--white); font-size: 30px; }

/* Size Guide */
body.size-guide-open {
  overflow: hidden;
}
.size-guide-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, .42);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s ease;
  z-index: 1200;
}
.size-guide-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.size-guide-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(560px, 100vw);
  height: 100vh;
  padding: 16px;
  z-index: 1201;
  pointer-events: none;
  visibility: hidden;
}
.size-guide-shell {
  height: 100%;
  background: linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
  border-radius: 28px 0 0 28px;
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(106%);
  opacity: .98;
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.size-guide-drawer.active {
  pointer-events: auto;
  visibility: visible;
}
.size-guide-drawer.active .size-guide-shell {
  transform: translateX(0);
}
.size-guide-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 26px 18px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.size-guide-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}
.size-guide-header h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0;
}
.size-guide-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--transition);
}
.size-guide-close:hover {
  background: var(--primary);
  color: var(--white);
}
.size-guide-body {
  padding: 0 26px 26px;
  overflow-y: auto;
}
.size-guide-intro {
  padding: 18px 0 22px;
}
.size-guide-intro p {
  color: var(--gray);
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}
.size-guide-table-wrap {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.size-guide-table {
  width: 100%;
  border-collapse: collapse;
}
.size-guide-table thead {
  background: #faf4ea;
}
.size-guide-table th,
.size-guide-table td {
  padding: 15px 16px;
  text-align: left;
  font-size: 14px;
}
.size-guide-table th {
  color: var(--primary);
  font-weight: 700;
}
.size-guide-table td {
  color: var(--gray);
  border-top: 1px solid rgba(0,0,0,.05);
}
.size-guide-table tbody tr:hover {
  background: rgba(201,169,110,.06);
}
.size-guide-tips {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.size-guide-tip {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fbf8f3;
}
.size-guide-tip i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,.16);
  color: var(--accent);
}
.size-guide-tip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}
.size-guide-tip p {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.7;
}

/* ─── Utilities ─────────────────────────────────────────────────────────────── */
.text-accent  { color: var(--accent) !important; }
.bg-soft      { background: var(--soft); }
.rounded-xl   { border-radius: var(--radius-lg); }
.shadow-soft  { box-shadow: var(--shadow); }
.gap-section  { margin-top: 80px; }
.fw-head      { font-family: var(--font-head); }
.text-ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 576px) { .d-mobile-none { display: none !important; } }
@media (min-width: 577px)  { .d-mobile-only { display: none !important; } }

/* ─── Animations ────────────────────────────────────────────────────────────── */
@keyframes slideDown  { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:translateY(0); } }
@keyframes slideUp    { from { opacity:0; transform:translateY(12px);  } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn     { from { opacity:0; } to { opacity:1; } }
@keyframes spin       { to { transform:rotate(360deg); } }
@keyframes heroIn     { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* AOS-like scroll reveal (custom) */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* Mobile hardening */
iframe,
table {
  max-width: 100%;
}

@media (max-width: 767px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-inner {
    gap: 10px;
  }

  .logo-img {
    height: 36px;
  }

  .logo-text {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .action-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .search-overlay {
    padding: 12px 16px;
  }

  .search-form {
    max-width: none;
    flex-wrap: wrap;
  }

  .search-input {
    min-width: 0;
  }

  .hero-text {
    padding: 0 16px;
  }

  .hero-text p {
    margin-bottom: 18px;
  }

  .hero-btn,
  .btn-primary-custom,
  .btn-outline-custom,
  .btn-checkout {
    width: 100%;
    max-width: 100%;
  }

  .products-grid,
  .wishlist-grid,
  .category-grid {
    gap: 12px;
  }

  .product-actions {
    opacity: 1;
    transform: none;
    bottom: 8px;
    left: 8px;
    right: 8px;
  }

  .product-info {
    padding: 12px 8px 14px;
  }

  .product-detail-price,
  .order-card-header {
    flex-wrap: wrap;
  }

  .variant-label {
    flex-wrap: wrap;
  }

  .size-guide-trigger {
    margin-left: 0;
  }

  .checkout-section,
  .account-content {
    padding: 18px;
  }

  .cart-item {
    gap: 12px;
    padding: 16px 0;
  }

  .cart-item-qty {
    margin-top: 8px;
  }

  .footer-main {
    padding: 44px 0 28px;
  }

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

  .page-breadcrumb {
    margin-bottom: 20px;
  }

  .back-to-top {
    right: 16px;
    bottom: 76px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .size-guide-drawer {
    width: 100vw;
    padding: 0;
  }

  .size-guide-shell {
    border-radius: 22px 22px 0 0;
    height: auto;
    max-height: min(86vh, 760px);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(106%);
  }

  .size-guide-drawer.active .size-guide-shell {
    transform: translateY(0);
  }

  .size-guide-header,
  .size-guide-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .size-guide-table th,
  .size-guide-table td {
    padding: 12px 10px;
    font-size: 13px;
  }
}

/* ─── Ürün Etiketleri ────────────────────────────────────────────────────── */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 14px 0;
  padding: 12px 14px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
}
.product-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  background: #f5f5f5;
  color: #666;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  transition: all .18s;
  white-space: nowrap;
}
.product-tag:hover {
  background: var(--soft-bg, #f0ede8);
  color: var(--accent, #c9a96e);
  border-color: var(--accent, #c9a96e);
  text-decoration: none;
}
