/* ===================== GENEL AYARLAR ===================== */
:root {
  --bg: #FFFFFF;
  --soft-bg: #F8FAFC;
  --surface: #FFFFFF;
  --text: #172033;
  --muted: #64748B;
  --primary: #2563EB;
  --primary-dark: #1E3A8A;
  --secondary: #06B6D4;
  --accent: #F59E0B;
  --success: #22C55E;
  --danger: #EF4444;
  --border: #E5E7EB;
  --shadow: rgba(15, 23, 42, 0.12);
  --font-main: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.section-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  margin: 55px 0 35px;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 14px auto 0;
  border-radius: 4px;
}

/* ===================== HEADER ===================== */
.header {
  background-color: var(--surface);
  color: var(--text);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px var(--shadow);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 25px;
}

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-dark);
}

.logo span {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.85rem;
  display: block;
  letter-spacing: 3px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

.navbar {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.nav-list > li {
  position: relative;
}

.nav-link {
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: 0.25s;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Alt menü (Çocuk Giyim) */
.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--surface);
  min-width: 180px;
  list-style: none;
  box-shadow: 0 8px 24px var(--shadow);
  z-index: 1001;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu-title {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 18px 4px;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
}

.submenu li:first-child.submenu-title {
  border-top: none;
}

.submenu .nav-link {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.submenu .nav-link::after {
  display: none;
}

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(135deg, var(--soft-bg) 0%, #EFF6FF 60%, #E0F2FE 100%);
  color: var(--text);
  text-align: center;
  padding: 110px 20px;
}

.hero h1 {
  font-size: 3.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 35px;
}

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

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  background: var(--surface);
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
}

/* ===================== KATEGORİ KARTLARI ===================== */
.categories {
  background-color: var(--bg);
  padding: 30px 20px 60px;
}

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

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  padding: 0 0 20px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 14px var(--shadow);
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px var(--shadow);
}

.category-img {
  width: 100%;
  height: 110px;
  margin-bottom: 15px;
  border-radius: 0;
}

/* Kategori renk blokları */
.category-card[data-filter="kadin"] .category-img {
  background: linear-gradient(135deg, #f9a8d4, #c084fc);
}
.category-card[data-filter="erkek"] .category-img {
  background: linear-gradient(135deg, #1E3A8A, #2563EB);
}
.category-card[data-filter="cocuk"] .category-img {
  background: linear-gradient(135deg, #22d3ee, #fde047);
}
.category-card[data-filter="ayakkabi"] .category-img {
  background: linear-gradient(135deg, #818cf8, #a78bfa);
}
.category-card[data-filter="aksesuar"] .category-img {
  background: linear-gradient(135deg, #f59e0b, #fb923c);
}
.category-card[data-filter="kampanya"] .category-img {
  background: linear-gradient(135deg, var(--danger), var(--accent));
}

.category-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  padding: 0 12px;
}

/* ===================== FİLTRE BUTONLARI ===================== */
.filter-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 45px;
}

.filter-btn {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: 0.25s;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ===================== ÜRÜN GRID & KART ===================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  box-shadow: 0 4px 16px var(--shadow);
  position: relative;
}

.product-card:hover {
  box-shadow: 0 18px 36px var(--shadow);
  transform: translateY(-6px);
}

.product-img {
  width: 100%;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

/* Kategoriye göre renkli görsel placeholder */
.product-card[data-category="kadin"] .product-img,
.product-card:has(.product-category:contains("Kadın")) .product-img {
  background: linear-gradient(135deg, #f9a8d4, #c084fc);
}

/* Fallback - JS kategori metnine göre class atanmadığından genel görsel rengini
   .product-card sıralarına göre döngüsel verelim */
.product-grid .product-card:nth-child(6n+1) .product-img,
.campaign-section .product-card:nth-child(6n+1) .product-img,
.new-section .product-card:nth-child(6n+1) .product-img {
  background: linear-gradient(135deg, #f9a8d4, #c084fc);
}
.product-grid .product-card:nth-child(6n+2) .product-img,
.campaign-section .product-card:nth-child(6n+2) .product-img,
.new-section .product-card:nth-child(6n+2) .product-img {
  background: linear-gradient(135deg, #1E3A8A, #2563EB);
}
.product-grid .product-card:nth-child(6n+3) .product-img,
.campaign-section .product-card:nth-child(6n+3) .product-img,
.new-section .product-card:nth-child(6n+3) .product-img {
  background: linear-gradient(135deg, #22d3ee, #4ade80);
}
.product-grid .product-card:nth-child(6n+4) .product-img,
.campaign-section .product-card:nth-child(6n+4) .product-img,
.new-section .product-card:nth-child(6n+4) .product-img {
  background: linear-gradient(135deg, #818cf8, #a78bfa);
}
.product-grid .product-card:nth-child(6n+5) .product-img,
.campaign-section .product-card:nth-child(6n+5) .product-img,
.new-section .product-card:nth-child(6n+5) .product-img {
  background: linear-gradient(135deg, #f59e0b, #fb923c);
}
.product-grid .product-card:nth-child(6n+6) .product-img,
.campaign-section .product-card:nth-child(6n+6) .product-img,
.new-section .product-card:nth-child(6n+6) .product-img {
  background: linear-gradient(135deg, #34d399, #2563EB);
}

.product-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.product-category {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.product-name {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text);
}

.product-desc {
  font-size: 0.88rem;
  color: var(--muted);
  flex-grow: 1;
}

.product-size {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.product-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.old-price {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  margin-right: 8px;
}

.new-price {
  color: var(--danger);
  font-weight: 800;
}

.whatsapp-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--success);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.whatsapp-btn:hover {
  background-color: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

/* ===================== KAMPANYA / YENİ SECTION ===================== */
.campaign-section,
.new-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.campaign-section {
  background: var(--soft-bg);
  padding: 45px 20px 65px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.campaign-section .product-card::before {
  content: "İNDİRİM";
  position: absolute;
  top: 14px;
  right: -34px;
  background: var(--danger);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 40px;
  transform: rotate(40deg);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  z-index: 2;
}

/* ===================== HAKKIMIZDA ===================== */
.about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 60px;
  text-align: center;
}

.about-content p {
  color: var(--muted);
  font-size: 1rem;
}

/* ===================== İLETİŞİM ===================== */
.contact-section {
  background: var(--primary-dark);
  color: #fff;
  padding: 0 20px 60px;
}

.contact-section .section-title {
  color: #fff;
}

.contact-section .section-title::after {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.contact-info a {
  color: var(--secondary);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.map-placeholder {
  background-color: rgba(255,255,255,0.08);
  border: 1px dashed var(--secondary);
  border-radius: 12px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #cbd5e1;
  font-size: 0.9rem;
  padding: 20px;
}

/* ===================== FOOTER ===================== */
.footer {
  background-color: var(--text);
  color: #94a3b8;
  text-align: center;
  padding: 22px;
  font-size: 0.85rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    display: none;
  }

  .navbar.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-link {
    padding: 12px 20px;
  }

  .nav-link::after {
    display: none;
  }

  .has-submenu:hover .submenu {
    display: none;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .submenu {
    position: static;
    box-shadow: none;
    border-radius: 0;
  }

  .hero {
    padding: 80px 16px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .campaign-section .product-card::before {
    right: -38px;
    font-size: 0.65rem;
  }
}
/* ================= MEGA MENÜ ================= */

.navbar,
.header,
.nav-list {
    overflow: visible;
}

.has-megamenu {
    position: static;
}

.navbar {
    position: relative;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    padding: 28px 34px;
    gap: 34px;
    width: min(94vw, 980px);
    box-sizing: border-box;
    z-index: 999;
    border: 1px solid #e5e7eb;
}

.has-megamenu:hover .mega-menu {
    display: flex;
}

.mega-col {
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.mega-col h4 {
    font-size: 15px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 8px;
    white-space: nowrap;
}

.mega-link {
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 8px;
    border-radius: 8px;
    transition: 0.2s ease;
    white-space: nowrap;
}

.mega-link:hover {
    background: #eff6ff;
    color: #2563eb;
    transform: translateX(3px);
}
/* ===================== AVANTAJ KARTLARI ===================== */
.advantages {
  background: #f8f8f8;
  padding: 40px 20px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.advantage-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s;
}

.advantage-card:hover {
  transform: translateY(-4px);
}

.advantage-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.advantage-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.advantage-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== NEDEN KARAGÖZ GİYİM ===================== */
.why-section {
  background: #fff;
  padding: 56px 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.why-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== FOOTER ===================== */
.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 48px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.footer-logo span {
  color: #c0392b; /* mevcut primary renge göre ayarla */
}

.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.6;
  color: #aaa;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li {
  font-size: 0.83rem;
  color: #aaa;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 16px 0;
  font-size: 0.78rem;
  color: #666;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ===================== ÜRÜN KARTLARI — DURUM ETİKETLERİ ===================== */
.product-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.badge-new {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-campaign {
  background: #fff3e0;
  color: #e65100;
}

.badge-stock {
  background: #f5f5f5;
  color: #757575;
}
/* Erkek Giyim mega menüsünü biraz sağa kaydır */
.nav-list > li:nth-child(3) .mega-menu {
    left: 50%;
    transform: translateX(-40%) !important;
}
/* ================= ÜRÜN KARTI DURUM ETİKETLERİ ================= */

.product-img {
    position: relative;
    overflow: hidden;
}

.product-img span:not(.product-badge) {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(6px);
}

.badge-new {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.badge-campaign {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.badge-stock {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.product-card:hover .product-badge {
    transform: translateY(-2px);
    transition: 0.2s ease;
}
/* ================= KATEGORİ DEMO GÖRSEL ALANLARI ================= */

.product-img.category-visual {
    position: relative !important;
    min-height: 210px !important;
    height: 210px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    color: #ffffff !important;
}

.category-demo-visual {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    color: #ffffff !important;
    text-align: center !important;
    z-index: 2 !important;
    position: relative !important;
}

.category-demo-icon {
    font-size: 48px !important;
    line-height: 1 !important;
    filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.25));
}

.category-demo-label {
    font-size: 17px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(15, 23, 42, 0.28);
}

.product-img.category-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.28), transparent 38%);
    z-index: 1;
}

.product-img.cat-kadin {
    background: linear-gradient(135deg, #ec4899, #a855f7) !important;
}

.product-img.cat-erkek {
    background: linear-gradient(135deg, #2563eb, #1e3a8a) !important;
}

.product-img.cat-cocuk {
    background: linear-gradient(135deg, #06b6d4, #facc15) !important;
}

.product-img.cat-ayakkabi {
    background: linear-gradient(135deg, #7c3aed, #2563eb) !important;
}

.product-img.cat-aksesuar {
    background: linear-gradient(135deg, #f59e0b, #f97316) !important;
}

.product-img.cat-default {
    background: linear-gradient(135deg, #64748b, #334155) !important;
}
/* ================= ANA KATEGORİ KARTI İKONLARI ================= */

.category-card {
    position: relative;
    overflow: hidden;
}

.category-card::after {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 44px;
    z-index: 3;
    filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.22));
}

.category-card[data-filter="kadin"]::after {
    content: "👗";
}

.category-card[data-filter="erkek"]::after {
    content: "👕";
}

.category-card[data-filter="cocuk"]::after {
    content: "🧸";
}

.category-card[data-filter="ayakkabi"]::after {
    content: "👟";
}

.category-card[data-filter="aksesuar"]::after {
    content: "👜";
}

.category-card[data-filter="kampanya"]::after {
    content: "🏷️";
}

.category-card h3 {
    position: relative;
    z-index: 4;
}
/* ================= ANA KATEGORİ KARTI İKONLARI - BÜYÜK VİTRİN ================= */

.category-card {
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(4px);
    z-index: 2;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.category-card::after {
    position: absolute;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 58px !important;
    z-index: 3;
    line-height: 1;
    filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.28));
}

.category-card:hover::after {
    transform: translateX(-50%) scale(1.12);
    transition: 0.25s ease;
}

.category-card:hover::before {
    transform: translateX(-50%) scale(1.08);
    transition: 0.25s ease;
}

.category-card[data-filter="kadin"]::after {
    content: "👗";
}

.category-card[data-filter="erkek"]::after {
    content: "👕";
}

.category-card[data-filter="cocuk"]::after {
    content: "🧸";
}

.category-card[data-filter="ayakkabi"]::after {
    content: "👟";
}

.category-card[data-filter="aksesuar"]::after {
    content: "👜";
}

.category-card[data-filter="kampanya"]::after {
    content: "🏷️";
}

.category-card h3 {
    position: relative;
    z-index: 4;
    margin-top: 8px;
}
/* ================= BOŞ KATEGORİ MESAJI ================= */

.empty-category {
    grid-column: 1 / -1;
    background: #ffffff;
    border-radius: 22px;
    padding: 45px 25px;
    text-align: center;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
}

.empty-icon {
    font-size: 54px;
    margin-bottom: 14px;
}

.empty-title {
    font-size: 22px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.empty-desc {
    font-size: 15px;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto 22px;
    line-height: 1.6;
}

.empty-whatsapp {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.28);
    transition: 0.25s ease;
}

.empty-whatsapp:hover {
    transform: translateY(-3px);
}
/* ================= AKTİF KATEGORİ BİLGİ YAZISI ================= */

.active-category-text {
    text-align: center;
    max-width: 560px;
    margin: -8px auto 24px;
    padding: 13px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1e3a8a;
    font-size: 15px;
    font-weight: 800;
    border: 1px solid #bfdbfe;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.10);
}
/* ================= GERÇEK ÜRÜN FOTOĞRAFI ================= */

.product-img.has-real-image {
    height: 230px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.product-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ================= ÜRÜN FOTOĞRAFINI TAM GÖSTER ================= */

.product-img.has-real-image {
    height: 300px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-real-img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    padding: 12px;
    background: #f8fafc;
}
/* ================= ÜRÜN DETAY MODALI ================= */

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-modal.active {
    display: flex;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(6px);
}

.product-modal-content {
    position: relative;
    z-index: 2;
    width: min(1100px, 96vw);
    max-height: 90vh;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.product-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
    transition: 0.2s ease;
}

.product-modal-close:hover {
    transform: rotate(90deg) scale(1.05);
    background: #fee2e2;
    color: #b91c1c;
}

.product-modal-image-area {
    position: relative;
    min-height: 560px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: grab;
}

.product-modal-image-area:active {
    cursor: grabbing;
}

.product-modal-image-area img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: transform 0.18s ease;
    user-select: none;
    pointer-events: none;
}

.modal-zoom-controls {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.86);
    padding: 9px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(8px);
}

.modal-zoom-controls button {
    border: none;
    background: #eff6ff;
    color: #1e3a8a;
    min-width: 42px;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

.modal-zoom-controls button:hover {
    background: #2563eb;
    color: #ffffff;
}

.product-modal-info {
    padding: 48px 38px;
    overflow-y: auto;
}

.modal-category {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 16px;
}

.product-modal-info h2 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 14px;
}

.modal-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 22px;
}

.modal-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #334155;
    font-size: 15px;
}

.modal-detail-row strong {
    color: #0f172a;
}

.modal-price-area {
    margin: 28px 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.modal-old-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 18px;
    font-weight: 700;
}

.modal-price {
    color: #1e3a8a;
    font-size: 30px;
    font-weight: 950;
}

.modal-whatsapp-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    padding: 15px 22px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(34, 197, 94, 0.32);
    transition: 0.25s ease;
}

.modal-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(34, 197, 94, 0.42);
}

/* Mobil uyum */
@media (max-width: 850px) {
    .product-modal {
        padding: 12px;
    }

    .product-modal-content {
        grid-template-columns: 1fr;
        max-height: 94vh;
        overflow-y: auto;
    }

    .product-modal-image-area {
        min-height: 360px;
    }

    .product-modal-info {
        padding: 30px 22px;
    }

    .product-modal-info h2 {
        font-size: 24px;
    }

    .modal-price {
        font-size: 25px;
    }
}
/* ================= MODAL SİPARİŞ SEÇİM ALANI ================= */

.modal-order-box {
    margin: 22px 0 10px;
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.modal-order-box h3 {
    font-size: 17px;
    color: #1e3a8a;
    margin-bottom: 14px;
}

.modal-order-row {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 14px;
    align-items: end;
}

.modal-order-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.modal-order-group label {
    font-size: 13px;
    font-weight: 800;
    color: #334155;
}

.modal-order-group select,
.modal-order-group input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 12px 13px;
    font-size: 14px;
    outline: none;
    background: #ffffff;
}

.modal-order-group select:focus,
.modal-order-group input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.quantity-control {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    gap: 6px;
    align-items: center;
}

.quantity-control button {
    height: 42px;
    border: none;
    border-radius: 13px;
    background: #dbeafe;
    color: #1e3a8a;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

.quantity-control button:hover {
    background: #2563eb;
    color: #ffffff;
}

.quantity-control input {
    text-align: center;
    height: 42px;
    padding: 0;
    font-weight: 800;
}

/* Mobilde alt alta gelsin */
@media (max-width: 850px) {
    .modal-order-row {
        grid-template-columns: 1fr;
    }
}
/* ================= ANA SAYFA VİTRİN ÜRÜNLERİ ================= */

.home-featured-products {
    padding: 70px 6%;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.home-featured-desc {
    text-align: center;
    max-width: 560px;
    margin: -8px auto 34px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.home-product-grid {
    max-width: 1180px;
    margin: 0 auto;
}

.home-featured-products .product-card {
    cursor: pointer;
}

.home-featured-products .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13);
}

.home-featured-empty {
    grid-column: 1 / -1;
    background: #ffffff;
    border-radius: 22px;
    padding: 38px 24px;
    text-align: center;
    border: 1px dashed #cbd5e1;
    color: #64748b;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.home-featured-empty strong {
    display: block;
    color: #1e3a8a;
    font-size: 20px;
    margin-bottom: 8px;
}
/* ================= ANA SAYFA KATEGORİ VİTRİNİ ================= */

.home-category-showcase-section {
    padding: 70px 6%;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.home-category-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.showcase-category-block {
    background: #ffffff;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
}

.showcase-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.showcase-category-title {
    font-size: 24px;
    color: #1e3a8a;
    font-weight: 900;
}

.showcase-category-count {
    background: #eff6ff;
    color: #1d4ed8;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.showcase-products-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.showcase-products-row .product-card {
    cursor: pointer;
}

.showcase-products-row .product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13);
}

.showcase-empty {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    color: #64748b;
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    font-weight: 800;
}

.showcase-empty span {
    display: block;
    font-size: 34px;
    margin-bottom: 8px;
}

.showcase-view-all {
    text-decoration: none;
    color: #2563eb;
    font-weight: 900;
    font-size: 14px;
    background: #eff6ff;
    padding: 9px 14px;
    border-radius: 999px;
    transition: 0.2s ease;
}

.showcase-view-all:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Mobil uyum */
@media (max-width: 1000px) {
    .showcase-products-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home-category-showcase-section {
        padding: 50px 4%;
    }

    .showcase-category-block {
        padding: 20px;
    }

    .showcase-category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .showcase-products-row {
        grid-template-columns: 1fr;
    }
}
/* ================= VİTRİN BÖLÜMÜ GÖRÜNÜRLÜK GARANTİSİ ================= */

.home-category-showcase-section {
    display: block !important;
    width: 100% !important;
    padding: 80px 6% !important;
    background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
    position: relative !important;
    z-index: 1 !important;
}

.home-category-showcase-section .section-title {
    display: block !important;
    text-align: center !important;
    font-size: 38px !important;
    color: #1e3a8a !important;
    margin-bottom: 18px !important;
}

.home-category-showcase {
    display: flex !important;
    flex-direction: column !important;
    gap: 42px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}
/* ================= VİTRİN ÜRÜNLERİNİ KOMPAKT GÖSTER ================= */

.home-category-showcase-section {
    padding: 45px 6% !important;
}

.showcase-category-block {
    padding: 20px !important;
    border-radius: 22px !important;
}

.showcase-category-header {
    margin-bottom: 16px !important;
}

.showcase-category-title {
    font-size: 22px !important;
}

.showcase-products-row {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
    gap: 14px !important;
}

.showcase-products-row .product-card {
    border-radius: 18px !important;
    overflow: hidden !important;
}

.showcase-products-row .product-img.has-real-image {
    height: 155px !important;
    min-height: 155px !important;
    padding: 0 !important;
}

.showcase-products-row .product-real-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 8px !important;
}

.showcase-products-row .product-info {
    padding: 13px !important;
}

.showcase-products-row .product-category {
    font-size: 10px !important;
    padding: 4px 8px !important;
    margin-bottom: 7px !important;
}

.showcase-products-row .product-name {
    font-size: 15px !important;
    margin-bottom: 6px !important;
}

.showcase-products-row .product-desc,
.showcase-products-row .product-meta-row,
.showcase-products-row .whatsapp-btn {
    display: none !important;
}

.showcase-products-row .product-price {
    margin-top: 8px !important;
    font-size: 16px !important;
}

.showcase-products-row .old-price {
    font-size: 12px !important;
}

.showcase-empty {
    min-height: 140px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}
/* ================= SİTE ÜRÜN ARAMA KUTUSU ================= */

.site-search-box {
    max-width: 820px;
    margin: 22px auto 28px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    background: #ffffff;
    padding: 10px;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
}

.site-search-box input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 18px;
    font-size: 15px;
    color: #0f172a;
}

.site-search-box input::placeholder {
    color: #94a3b8;
}

.site-search-box button {
    border: none;
    background: #eff6ff;
    color: #1d4ed8;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

.site-search-box button:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-1px);
}

.search-result-info {
    max-width: 820px;
    margin: -10px auto 24px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 650px) {
    .site-search-box {
        grid-template-columns: 1fr;
        border-radius: 22px;
        padding: 12px;
    }

    .site-search-box button {
        width: 100%;
    }
}
/* ================= HERO ARAMA KUTUSU ================= */

.hero-search-box {
    margin: 30px auto 0 !important;
    max-width: 760px !important;
}
/* ================= HERO ARAMA SONUÇLARI ================= */

.site-search-results {
    max-width: 900px;
    margin: 18px auto 0;
    display: none;
    background: #ffffff;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
    position: relative;
    z-index: 20;
}

.site-search-results.active {
    display: block;
}

.search-results-title {
    font-size: 15px;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 14px;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 14px;
}

.search-result-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.22s ease;
}

.search-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.search-result-img {
    height: 130px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.search-result-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.search-result-info {
    padding: 12px;
    text-align: left;
    margin: 0;
}

.search-result-category {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 999px;
    margin-bottom: 7px;
}

.search-result-name {
    font-size: 14px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 5px;
}

.search-result-sub {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 7px;
}

.search-result-price {
    font-size: 15px;
    font-weight: 950;
    color: #1e3a8a;
}

.search-result-empty {
    text-align: center;
    padding: 24px;
    color: #64748b;
    font-weight: 800;
}

.search-result-empty span {
    display: block;
    font-size: 30px;
    margin-bottom: 8px;
}

@media (max-width: 650px) {
    .site-search-results {
        margin-top: 14px;
        padding: 14px;
        border-radius: 20px;
    }

    .search-results-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= ÜRÜN DETAY BEDEN STOK DURUMU ================= */

.modal-size-stock-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 15px;
    margin: 14px 0;
}

.modal-size-stock-box h3 {
    font-size: 16px;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.modal-size-stock-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
    gap: 10px;
}

.modal-size-stock-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 10px;
    text-align: center;
}

.modal-size-stock-item strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 5px;
}

.modal-size-stock-item span {
    font-size: 13px;
    font-weight: 800;
}

.modal-size-stock-item.in-stock span {
    color: #16a34a;
}

.modal-size-stock-item.low-stock span {
    color: #d97706;
}

.modal-size-stock-item.out-of-stock {
    background: #f1f5f9;
    opacity: 0.65;
}

.modal-size-stock-item.out-of-stock span {
    color: #dc2626;
}

.modal-size-stock-empty {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    padding: 13px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}
/* ================= ÜRÜN KARTI STOK ETİKETİ ================= */

.product-card {
    position: relative;
}

.product-img {
    position: relative;
}

.product-stock-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.2px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(8px);
}

.product-stock-badge.stock-ok {
    background: rgba(22, 163, 74, 0.92);
    color: #ffffff;
}

.product-stock-badge.stock-low {
    background: rgba(217, 119, 6, 0.94);
    color: #ffffff;
}

.product-stock-badge.stock-out {
    background: rgba(220, 38, 38, 0.94);
    color: #ffffff;
}

.product-card.product-out-of-stock {
    opacity: 0.82;
}

.product-card.product-out-of-stock .product-real-img,
.product-card.product-out-of-stock .product-img {
    filter: grayscale(0.35);
}
/* ================= STOK ETİKETİ KÜÇÜLTME DÜZELTMESİ ================= */

.product-img .product-stock-badge {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    right: auto !important;
    bottom: auto !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: auto !important;
    max-width: 80px !important;
    height: auto !important;
    min-height: auto !important;

    padding: 5px 8px !important;
    border-radius: 999px !important;

    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    white-space: nowrap !important;

    z-index: 10 !important;
    pointer-events: none !important;
    transform: none !important;
}

.showcase-products-row .product-img .product-stock-badge {
    top: 7px !important;
    left: 7px !important;
    font-size: 9px !important;
    padding: 4px 7px !important;
}
/* ================= MARKA SLOGAN ALANI ================= */

.brand-slogan-section {
    padding: 85px 6%;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 35%),
        linear-gradient(135deg, #f8fafc, #ffffff);
    text-align: center;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.brand-slogan-inner {
    max-width: 900px;
    margin: 0 auto;
}

.brand-slogan-small {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.brand-slogan-inner h2 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(38px, 6vw, 82px);
    line-height: 1.05;
    color: #0f172a;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.brand-slogan-inner p {
    font-size: clamp(18px, 2.5vw, 30px);
    color: #1e3a8a;
    font-weight: 900;
    letter-spacing: 5px;
}

/* Eski Ürünler / filtre butonları bölümünü gizle */
.filter-bar {
    display: none !important;
}

@media (max-width: 650px) {
    .brand-slogan-section {
        padding: 55px 5%;
    }

    .brand-slogan-small {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .brand-slogan-inner p {
        letter-spacing: 3px;
    }
}
/* ================= MARKA SLOGAN CAFCAFLI / BUTİK DÜZEN ================= */

.brand-slogan-section {
    padding: 55px 6% !important;
    background:
        radial-gradient(circle at center, rgba(37, 99, 235, 0.08), transparent 42%),
        linear-gradient(135deg, #ffffff, #f8fafc) !important;
    text-align: center !important;
    border-top: 1px solid #e5e7eb !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.brand-slogan-inner {
    max-width: 780px !important;
    margin: 0 auto !important;
    position: relative !important;
    padding: 22px 18px !important;
}

.brand-slogan-inner::before,
.brand-slogan-inner::after {
    content: "";
    display: block;
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1e3a8a, transparent);
    margin: 0 auto 18px;
    opacity: 0.65;
}

.brand-slogan-inner::after {
    margin: 18px auto 0;
}

.brand-slogan-small {
    display: inline-block !important;
    margin-bottom: 12px !important;
    padding: 6px 16px !important;
    border-radius: 999px !important;
    background: rgba(239, 246, 255, 0.95) !important;
    color: #1d4ed8 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 2.5px !important;
}

.brand-slogan-inner h2 {
    font-family: "Georgia", "Times New Roman", serif !important;
    font-style: italic !important;
    font-size: clamp(28px, 4vw, 52px) !important;
    line-height: 1.1 !important;
    color: #0f172a !important;
    letter-spacing: 1px !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    text-shadow: 0 10px 28px rgba(15, 23, 42, 0.12) !important;
}

.brand-slogan-inner p {
    font-family: "Georgia", "Times New Roman", serif !important;
    font-style: italic !important;
    font-size: clamp(15px, 2vw, 23px) !important;
    color: #1e3a8a !important;
    font-weight: 700 !important;
    letter-spacing: 4px !important;
    margin-top: 4px !important;
}

@media (max-width: 650px) {
    .brand-slogan-section {
        padding: 42px 5% !important;
    }

    .brand-slogan-inner h2 {
        font-size: 30px !important;
    }

    .brand-slogan-inner p {
        font-size: 16px !important;
        letter-spacing: 2.5px !important;
    }

    .brand-slogan-small {
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
    }
}
/* ================= MEGA MENÜ ALT KATEGORİ SONUÇLARI ================= */

.mega-result-section.hidden {
    display: none !important;
}

.mega-result-section {
    padding: 55px 6%;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.mega-result-header {
    max-width: 1200px;
    margin: 0 auto 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.mega-result-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mega-result-header h2 {
    font-size: clamp(28px, 4vw, 46px);
    color: #0f172a;
    margin-bottom: 6px;
}

.mega-result-header p {
    color: #64748b;
    font-size: 15px;
}

#megaResultClose {
    border: none;
    background: #f1f5f9;
    color: #0f172a;
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

#megaResultClose:hover {
    background: #1e3a8a;
    color: #ffffff;
}

.mega-result-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 22px;
}

.mega-result-empty {
    grid-column: 1 / -1;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 22px;
    padding: 34px;
    text-align: center;
    color: #64748b;
    font-weight: 800;
}

@media (max-width: 700px) {
    .mega-result-header {
        flex-direction: column;
        align-items: flex-start;
    }

    #megaResultClose {
        width: 100%;
    }
}
/* ================= MEGA SONUÇ ALANI DAHA GÖRÜNÜR DÜZELTME ================= */

.mega-result-section {
    padding: 42px 6% !important;
    background: linear-gradient(135deg, #ffffff, #f8fafc) !important;
    border-top: 2px solid #dbeafe !important;
    border-bottom: 2px solid #dbeafe !important;
    scroll-margin-top: 130px !important;
}

.mega-result-empty {
    grid-column: 1 / -1 !important;
    background: linear-gradient(135deg, #fff7ed, #ffffff) !important;
    border: 2px dashed #f59e0b !important;
    border-radius: 24px !important;
    padding: 42px 24px !important;
    text-align: center !important;
    color: #92400e !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.12) !important;
}

.mega-result-empty::before {
    content: "🔎";
    display: block;
    font-size: 38px;
    margin-bottom: 12px;
}

.mega-result-header h2 {
    color: #1e3a8a !important;
}

.mega-result-header p {
    font-size: 16px !important;
    font-weight: 700 !important;
}
/* ================= KATEGORİ KARTI KAYDIRMA DÜZELTMESİ ================= */

.showcase-category-block,
.campaign-section,
#campaign {
    scroll-margin-top: 120px;
}
/* ================= HAKKIMIZDA YENİ TASARIM ================= */

.about-section {
    padding: 80px 6%;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 32%),
        linear-gradient(135deg, #ffffff, #f8fafc);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}

.about-text {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 34px 38px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    width: 100%;
}

.about-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #1e3a8a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.about-text h2 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    color: #0f172a;
    margin-bottom: 18px;
}

.about-text p {
    color: #475569;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 14px;
    max-width: 760px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.about-highlights div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 16px;
    text-align: center;
}

.about-highlights strong {
    display: block;
    color: #1e3a8a;
    font-size: 26px;
    margin-bottom: 5px;
}

.about-highlights span {
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.about-card {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    border-radius: 28px;
    padding: 28px 32px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);
    width: 100%;
    max-width: 920px;
}

.about-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.about-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #e0e7ff;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 700;
}

.about-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #93c5fd;
    font-weight: 900;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-card {
        order: -1;
    }
}

@media (max-width: 650px) {
    .about-section {
        padding: 55px 5%;
    }

    .about-text,
    .about-card {
        padding: 24px;
        border-radius: 22px;
    }

    .about-text h2 {
        font-size: 40px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}
/* ================= İLETİŞİM BÖLÜMÜ YENİ TASARIM ================= */

.contact-section {
    padding: 80px 6%;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 32%),
        linear-gradient(135deg, #ffffff, #f8fafc);
    border-top: 1px solid #e5e7eb;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
}

.contact-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-header h2 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 58px);
    color: #0f172a;
    margin-bottom: 12px;
}

.contact-header p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    transition: 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 18px 42px rgba(30, 58, 138, 0.12);
}

.contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: #eff6ff;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-card strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.45;
    word-break: break-word;
}

.working-hours-box {
    margin: 26px auto 0;
    max-width: 620px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.20);
}

.working-hours-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.working-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.working-hours-row span {
    color: #dbeafe;
}

.working-hours-row strong {
    color: #ffffff;
}

@media (max-width: 1050px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .contact-section {
        padding: 55px 5%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .working-hours-row {
        flex-direction: column;
        gap: 4px;
    }
}
/* ================= İLETİŞİM KARTLARI SIĞMA DÜZELTMESİ ================= */

.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 920px !important;
    margin: 0 auto !important;
}

.contact-card {
    min-height: 105px !important;
}

.contact-card p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
}

@media (max-width: 650px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}
/* ================= FOOTER İLETİŞİM LİNKLERİ ================= */

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer a:hover {
    color: #93c5fd;
}
/* ================= FOOTER YENİ 4 SÜTUN DÜZENİ ================= */

.footer {
    background: #020617 !important;
    color: #ffffff !important;
    padding: 58px 6% 24px !important;
}

.footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1.4fr 1fr 1.35fr 1.15fr !important;
    gap: 34px !important;
    align-items: start !important;
}

.footer-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 10px !important;
}

.footer-column h3 {
    color: #ffffff !important;
    font-size: 18px !important;
    margin-bottom: 10px !important;
}

.footer-column a,
.footer-column p,
.footer-hour-row span {
    color: #cbd5e1 !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    text-decoration: none !important;
}

.footer-column a:hover {
    color: #93c5fd !important;
}

.footer-brand h2 {
    color: #ffffff !important;
    font-size: 28px !important;
    letter-spacing: 3px !important;
    margin-bottom: 4px !important;
}

.footer-brand span {
    color: #93c5fd !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 3px !important;
    margin-bottom: 12px !important;
}

.footer-brand p {
    max-width: 280px !important;
}

.footer-hour-row {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.footer-hour-row strong {
    color: #ffffff !important;
    font-size: 15px !important;
}

.footer-admin-link {
    margin-top: 14px !important;
    display: inline-flex !important;
    padding: 9px 14px !important;
    border-radius: 999px !important;
    background: rgba(147, 197, 253, 0.12) !important;
    color: #bfdbfe !important;
    font-weight: 800 !important;
}

.footer-bottom {
    max-width: 1200px !important;
    margin: 34px auto 0 !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #94a3b8 !important;
    font-size: 13px !important;
    text-align: center !important;
}

@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 650px) {
    .footer {
        padding: 44px 5% 22px !important;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
    }
}
/* ================= MOBİL UYUMLULUK SON RÖTUŞLAR ================= */

@media (max-width: 768px) {

    body {
        overflow-x: hidden !important;
    }

    .header {
        position: sticky !important;
        top: 0 !important;
        z-index: 999 !important;
    }

    .header-top {
        padding: 16px 5% !important;
    }

    .logo {
        font-size: 22px !important;
        line-height: 1.1 !important;
    }

    .logo span {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }

    .navbar {
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding: 10px 5% !important;
    }

    .nav-list {
        display: flex !important;
        gap: 18px !important;
        min-width: max-content !important;
    }

    .nav-link {
        font-size: 14px !important;
    }

    .mega-menu {
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: auto !important;
        padding: 18px !important;
        border-radius: 0 0 22px 22px !important;
    }

    .mega-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 18px !important;
        min-width: 560px !important;
    }

    .hero {
        padding: 45px 5% 35px !important;
        text-align: center !important;
    }

    .hero h1 {
        font-size: 34px !important;
        line-height: 1.15 !important;
    }

    .hero p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .hero-buttons a,
    .hero-buttons button {
        width: 100% !important;
        text-align: center !important;
    }

    .hero-search-box,
    .site-search-box {
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .site-search-box input {
        width: 100% !important;
        font-size: 14px !important;
    }

    .site-search-box button {
        width: 100% !important;
    }

    .category-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
        padding: 0 5% !important;
    }

    .category-card {
        min-height: 145px !important;
        border-radius: 18px !important;
    }

    .category-img {
        height: 85px !important;
    }

    .category-card h3 {
        font-size: 15px !important;
    }

    .home-category-showcase-section {
        padding: 45px 5% !important;
    }

    .section-title {
        font-size: 30px !important;
    }

    .home-featured-desc {
        font-size: 14px !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .showcase-category-block {
        padding: 18px !important;
        border-radius: 20px !important;
    }

    .showcase-category-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .showcase-products-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .showcase-products-row .product-img.has-real-image {
        height: 135px !important;
        min-height: 135px !important;
    }

    .showcase-products-row .product-name {
        font-size: 14px !important;
    }

    .showcase-products-row .product-price {
        font-size: 15px !important;
    }

    .brand-slogan-section {
        padding: 42px 5% !important;
    }

    .brand-slogan-inner h2 {
        font-size: 31px !important;
    }

    .brand-slogan-inner p {
        font-size: 16px !important;
        letter-spacing: 2px !important;
    }

    .about-section {
        padding: 50px 5% !important;
    }

    .about-content {
        max-width: 100% !important;
    }

    .about-text,
    .about-card {
        padding: 22px !important;
        border-radius: 22px !important;
    }

    .about-text h2 {
        font-size: 32px !important;
    }

    .about-text p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .about-highlights {
        grid-template-columns: 1fr !important;
    }

    .contact-section {
        padding: 50px 5% !important;
    }

    .contact-header h2 {
        font-size: 34px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    .contact-card {
        min-height: auto !important;
        padding: 18px !important;
    }

    .working-hours-box {
        max-width: 100% !important;
        padding: 22px !important;
    }

    .working-hours-row {
        flex-direction: column !important;
        gap: 5px !important;
    }

    .footer {
        padding: 42px 5% 22px !important;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }

    .footer-column {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .footer-brand p {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {

    .category-grid {
        grid-template-columns: 1fr !important;
    }

    .showcase-products-row {
        grid-template-columns: 1fr !important;
    }

    .product-modal-content {
        width: 94vw !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
        border-radius: 22px !important;
    }

    .product-modal-image-area {
        min-height: 260px !important;
    }

    .product-modal-info {
        padding: 20px !important;
    }

    .modal-order-row {
        grid-template-columns: 1fr !important;
    }

    .modal-whatsapp-btn {
        width: 100% !important;
        text-align: center !important;
    }

    .modal-size-stock-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .mega-result-section {
        padding: 34px 5% !important;
    }

    .mega-result-grid {
        grid-template-columns: 1fr !important;
    }

    .mega-result-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    #megaResultClose {
        width: 100% !important;
    }
}
/* ================================
   MOBILDE VITRIN ALANI DÜZENİ
================================ */
@media (max-width: 768px) {
  .home-category-showcase-section {
    padding: 20px 12px;
  }

  .home-category-showcase-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .home-featured-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .home-category-showcase {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .showcase-category-block {
    padding: 14px;
    border-radius: 18px;
    margin-bottom: 0;
  }

  .showcase-category-header {
    margin-bottom: 10px;
    align-items: center;
  }

  .showcase-category-title {
    font-size: 1.2rem;
    margin: 0;
  }

  .showcase-category-count {
    font-size: 0.82rem;
    padding: 4px 10px;
    border-radius: 999px;
  }

  /* Ürünler yatay aksın */
  .showcase-products-row {
    display: flex !important;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .showcase-products-row::-webkit-scrollbar {
    display: none;
  }

  /* Mobilde küçük vitrin kartı */
  .showcase-products-row .product-card {
    flex: 0 0 150px;
    min-width: 150px;
    max-width: 150px;
    border-radius: 16px;
    padding: 8px;
    scroll-snap-align: start;
  }

  .showcase-products-row .product-img {
    height: 120px;
    padding: 8px;
    border-radius: 12px;
    margin-bottom: 8px;
  }

  .showcase-products-row .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .showcase-products-row .product-badge,
  .showcase-products-row .stock-badge {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  .showcase-products-row .product-category {
    font-size: 0.68rem;
    margin-bottom: 4px;
  }

  .showcase-products-row .product-name {
    font-size: 0.92rem;
    line-height: 1.3;
    min-height: 38px;
    margin-bottom: 6px;
  }

  .showcase-products-row .product-price {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .showcase-products-row .product-old-price {
    font-size: 0.8rem;
  }

  /* Vitrinde kart çok uzamasın diye detayları gizliyoruz */
  .showcase-products-row .product-description,
  .showcase-products-row .product-sizes,
  .showcase-products-row .product-stock,
  .showcase-products-row .product-stock-list,
  .showcase-products-row .product-whatsapp-btn,
  .showcase-products-row .product-actions,
  .showcase-products-row .product-bottom {
    display: none !important;
  }

  /* Kategoride ürün yok kartı */
  .showcase-products-row .showcase-empty,
  .showcase-empty {
    padding: 18px 14px;
    font-size: 0.9rem;
    border-radius: 14px;
  }
}
/* ================= MOBİL VİTRİN KOMPAKT SON DÜZELTME ================= */

@media (max-width: 768px) {

    .home-category-showcase-section {
        padding: 18px 12px !important;
    }

    .home-category-showcase {
        gap: 10px !important;
    }

    .showcase-category-block {
        padding: 12px !important;
        border-radius: 18px !important;
        margin-bottom: 8px !important;
    }

    .showcase-category-header {
        margin-bottom: 8px !important;
    }

    .showcase-category-title {
        font-size: 19px !important;
        line-height: 1.2 !important;
    }

    .showcase-category-count {
        font-size: 11px !important;
        padding: 4px 9px !important;
    }

    .showcase-products-row {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 9px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding-bottom: 4px !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .showcase-products-row::-webkit-scrollbar {
        display: none !important;
    }

    .showcase-products-row .product-card {
        flex: 0 0 132px !important;
        width: 132px !important;
        min-width: 132px !important;
        max-width: 132px !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        scroll-snap-align: start !important;
    }

    .showcase-products-row .product-img,
    .showcase-products-row .product-img.has-real-image {
        height: 105px !important;
        min-height: 105px !important;
        padding: 6px !important;
    }

    .showcase-products-row .product-real-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        padding: 4px !important;
    }

    .showcase-products-row .product-info {
        padding: 9px !important;
    }

    .showcase-products-row .product-category {
        font-size: 9px !important;
        padding: 4px 7px !important;
        margin-bottom: 5px !important;
    }

    .showcase-products-row .product-name {
        font-size: 13px !important;
        line-height: 1.25 !important;
        margin-bottom: 5px !important;
        min-height: 32px !important;
    }

    .showcase-products-row .product-price {
        font-size: 14px !important;
        margin-top: 4px !important;
    }

    .showcase-products-row .old-price {
        font-size: 11px !important;
    }

    .showcase-products-row .product-desc,
    .showcase-products-row .product-meta-row,
    .showcase-products-row .whatsapp-btn,
    .showcase-products-row .product-actions,
    .showcase-products-row .product-bottom {
        display: none !important;
    }

    .showcase-empty {
        min-height: 92px !important;
        padding: 14px !important;
        border-radius: 15px !important;
        font-size: 13px !important;
    }

    .showcase-empty span,
    .showcase-empty div:first-child {
        font-size: 24px !important;
        margin-bottom: 6px !important;
    }
}
.discount-rate-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 8px 0 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #dc2626;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 14px rgba(220, 38, 38, 0.18);
}

.discount-corner-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #dc2626;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(220, 38, 38, 0.25);
}

.product-image {
    position: relative;
}

.old-price {
    display: inline-block;
    margin-right: 8px;
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 14px;
}

.current-price {
    color: #1f2a44;
    font-weight: 800;
}
/* Kampanyalı ürün kartlarını vitrin kartı boyutuna çek */
#campaignGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 240px));
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

#campaignGrid .product-card {
    width: 100%;
    max-width: 240px;
    min-height: auto;
    cursor: pointer;
}

#campaignGrid .product-image {
    position: relative;
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
    background: #f8f5ef;
}

#campaignGrid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

#campaignGrid .product-info {
    text-align: center;
    padding: 14px 12px 16px;
}

#campaignGrid .product-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

#campaignGrid .product-info p {
    font-size: 13px;
    margin-bottom: 8px;
}

#campaignGrid .product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
#newGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 240px));
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

#newGrid .product-card {
    width: 100%;
    max-width: 240px;
    min-height: auto;
    cursor: pointer;
}

#newGrid .product-image {
    position: relative;
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
    background: #f8f5ef;
}

#newGrid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

#newGrid .product-info {
    text-align: center;
    padding: 14px 12px 16px;
}

#newGrid .product-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

#newGrid .product-info p {
    font-size: 13px;
    margin-bottom: 8px;
}

#newGrid .product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
/* Kargo Bilgilendirme Alanı */
.shipping-info-section {
    padding: 34px 20px;
    background: #fbf8f2;
    border-top: 1px solid rgba(31, 42, 68, 0.08);
    border-bottom: 1px solid rgba(31, 42, 68, 0.08);
}

.shipping-info-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.shipping-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(31, 42, 68, 0.08);
    box-shadow: 0 10px 24px rgba(31, 42, 68, 0.06);
}

.shipping-info-card.featured {
    border-color: rgba(220, 38, 38, 0.22);
    background: linear-gradient(135deg, #fff7f7, #ffffff);
}

.shipping-icon {
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1efe8;
    font-size: 20px;
}

.shipping-info-card h3 {
    margin: 0 0 6px;
    color: #1f2a44;
    font-size: 15px;
    font-weight: 800;
}

.shipping-info-card p {
    margin: 0;
    color: #5f6678;
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .shipping-info-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .shipping-info-section {
        padding: 24px 14px;
    }

    .shipping-info-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .shipping-info-card {
        padding: 15px 14px;
    }
}
/* ================= TELEFONDA TABLET / iPAD GÖRÜNÜMÜ ================= */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .section,
    section {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Ürün gridlerini telefonda 2 sütun yap */
    .product-grid,
    #campaignGrid,
    #newGrid,
    .showcase-grid,
    .category-showcase-grid,
    .home-category-showcase-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
        justify-content: center !important;
        align-items: stretch !important;
    }

    /* Ürün kartlarını küçült */
    .product-card,
    #campaignGrid .product-card,
    #newGrid .product-card {
        width: 100% !important;
        max-width: none !important;
        border-radius: 18px !important;
        overflow: hidden;
    }

    .product-image,
    #campaignGrid .product-image,
    #newGrid .product-image {
        height: 165px !important;
        border-radius: 16px !important;
    }

    .product-image img,
    #campaignGrid .product-image img,
    #newGrid .product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        padding: 10px !important;
    }

    .product-info,
    #campaignGrid .product-info,
    #newGrid .product-info {
        padding: 10px 8px 12px !important;
        text-align: center !important;
    }

    .product-info h3,
    #campaignGrid .product-info h3,
    #newGrid .product-info h3 {
        font-size: 13px !important;
        line-height: 1.25 !important;
        margin-bottom: 5px !important;
    }

    .product-info p,
    #campaignGrid .product-info p,
    #newGrid .product-info p {
        font-size: 11px !important;
        margin-bottom: 5px !important;
    }

    .product-price {
        justify-content: center !important;
        gap: 5px !important;
        flex-wrap: wrap !important;
    }

    .current-price {
        font-size: 14px !important;
        font-weight: 800 !important;
    }

    .old-price {
        font-size: 11px !important;
    }

    .discount-rate-badge {
        font-size: 10px !important;
        padding: 4px 8px !important;
        margin: 5px auto 5px !important;
    }

    .discount-corner-badge {
        top: 8px !important;
        left: 8px !important;
        font-size: 10px !important;
        padding: 4px 8px !important;
    }

    /* Kargo bilgilendirmeyi telefonda 2'li yap */
    .shipping-info-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .shipping-info-card {
        padding: 12px 10px !important;
        gap: 8px !important;
        border-radius: 16px !important;
    }

    .shipping-icon {
        min-width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
    }

    .shipping-info-card h3 {
        font-size: 12px !important;
        margin-bottom: 4px !important;
    }

    .shipping-info-card p {
        font-size: 10.5px !important;
        line-height: 1.35 !important;
    }

    /* Kategori kartlarını da daha kompakt yap */
    .category-grid,
    .categories-grid,
    .category-cards {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .category-card {
        min-height: auto !important;
        padding: 14px 10px !important;
        border-radius: 18px !important;
    }

    .category-card h3 {
        font-size: 14px !important;
    }

    .category-card p {
        font-size: 11px !important;
    }

    /* Başlıkları telefonda daha derli toplu yap */
    .section-title,
    .section-header h2 {
        font-size: 22px !important;
        line-height: 1.2 !important;
    }

    .section-subtitle,
    .section-header p {
        font-size: 13px !important;
    }
}

/* Çok dar telefonlarda yine 2 sütun kalsın ama biraz daha sıkışsın */
@media (max-width: 390px) {
    .product-grid,
    #campaignGrid,
    #newGrid,
    .showcase-grid,
    .category-showcase-grid,
    .home-category-showcase-grid {
        gap: 10px !important;
    }

    .product-image,
    #campaignGrid .product-image,
    #newGrid .product-image {
        height: 150px !important;
    }

    .product-info h3,
    #campaignGrid .product-info h3,
    #newGrid .product-info h3 {
        font-size: 12px !important;
    }

    .current-price {
        font-size: 13px !important;
    }

    .shipping-info-card p {
        display: none;
    }
}
/* ================= MOBIL ILETISIM HIZALAMA ================= */
@media (max-width: 768px) {
    .contact-card,
    .contact-item,
    .contact-box {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 14px !important;
        text-align: left !important;
        padding: 18px 16px !important;
    }

    .contact-card .icon,
    .contact-item .icon,
    .contact-box .icon,
    .contact-icon {
        flex: 0 0 48px !important;
        width: 48px !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
    }

    .contact-card .text,
    .contact-item .text,
    .contact-box .text,
    .contact-content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .contact-card h3,
    .contact-item h3,
    .contact-box h3,
    .contact-content h3 {
        margin: 0 0 6px 0 !important;
        font-size: 16px !important;
    }

    .contact-card p,
    .contact-item p,
    .contact-box p,
    .contact-content p,
    .contact-card a,
    .contact-item a,
    .contact-box a,
    .contact-content a {
        margin: 0 !important;
        font-size: 14px !important;
        line-height: 1.45 !important;
        word-break: break-word !important;
    }
}
/* ================= MOBIL ILETISIM KARTLARI TAM ORTALAMA ================= */
@media (max-width: 768px) {

    #contact .contact-container,
    #contact .contact-grid,
    #contact .contact-list,
    .contact-container,
    .contact-grid,
    .contact-list {
        width: 100% !important;
        max-width: 520px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        justify-items: center !important;
    }

    #contact .contact-card,
    #contact .contact-item,
    #contact .contact-box,
    .contact-card,
    .contact-item,
    .contact-box {
        width: 100% !important;
        max-width: 430px !important;
        min-height: 108px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 10px !important;
        padding: 18px 16px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #contact .contact-icon,
    #contact .icon,
    .contact-icon,
    .contact-card .icon,
    .contact-item .icon,
    .contact-box .icon {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #contact .contact-content,
    #contact .contact-text,
    .contact-content,
    .contact-text {
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #contact h3,
    .contact-card h3,
    .contact-item h3,
    .contact-box h3 {
        width: 100% !important;
        text-align: center !important;
        margin: 0 0 4px 0 !important;
    }

    #contact p,
    #contact a,
    .contact-card p,
    .contact-card a,
    .contact-item p,
    .contact-item a,
    .contact-box p,
    .contact-box a {
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
        display: block !important;
        word-break: break-word !important;
    }
}
/* ================= MOBILDE VITRIN 3'LU KAYDIRMALI ================= */
@media (max-width: 768px) {

    /* vitrin içindeki ürün satırları */
    .showcase-products,
    .category-products,
    .vitrin-products,
    .mini-product-list,
    .showcase-grid {
        display: grid !important;
        grid-auto-flow: column !important;
        grid-auto-columns: calc((100% - 24px) / 3) !important;
        gap: 12px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding-bottom: 8px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .showcase-products::-webkit-scrollbar,
    .category-products::-webkit-scrollbar,
    .vitrin-products::-webkit-scrollbar,
    .mini-product-list::-webkit-scrollbar,
    .showcase-grid::-webkit-scrollbar {
        height: 6px;
    }

    .showcase-products > *,
    .category-products > *,
    .vitrin-products > *,
    .mini-product-list > *,
    .showcase-grid > * {
        min-width: 0 !important;
        scroll-snap-align: start;
    }

    /* vitrin içindeki küçük ürün kartları */
    .showcase-product-card,
    .mini-product-card,
    .category-product-card,
    .product-mini-card {
        width: 100% !important;
        min-width: 0 !important;
        padding: 8px !important;
        border-radius: 14px !important;
    }

    .showcase-product-card img,
    .mini-product-card img,
    .category-product-card img,
    .product-mini-card img {
        width: 100% !important;
        height: 90px !important;
        object-fit: contain !important;
        border-radius: 10px !important;
    }

    .showcase-product-card h4,
    .mini-product-card h4,
    .category-product-card h4,
    .product-mini-card h4 {
        font-size: 12px !important;
        line-height: 1.3 !important;
        margin: 8px 0 4px !important;
        text-align: center !important;
    }

    .showcase-product-card p,
    .mini-product-card p,
    .category-product-card p,
    .product-mini-card p {
        font-size: 11px !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .showcase-product-card .price,
    .mini-product-card .price,
    .category-product-card .price,
    .product-mini-card .price {
        font-size: 12px !important;
        font-weight: 700 !important;
        text-align: center !important;
        margin-top: 4px !important;
    }
}
/* ================= MOBIL MENU DUZELTME ================= */

@media (max-width: 768px) {
    .nav-list,
    #navList {
        position: fixed !important;
        top: 88px !important;
        left: 16px !important;
        right: 16px !important;
        z-index: 99999 !important;
        display: none !important;
        flex-direction: column !important;
        gap: 8px !important;
        padding: 18px !important;
        max-height: calc(100vh - 115px) !important;
        overflow-y: auto !important;
        background: #ffffff !important;
        border: 1px solid rgba(31, 42, 68, 0.10) !important;
        border-radius: 22px !important;
        box-shadow: 0 18px 45px rgba(31, 42, 68, 0.18) !important;
    }

    .nav-list.mobile-nav-open,
    #navList.mobile-nav-open {
        display: flex !important;
    }

    .nav-list li,
    #navList li {
        width: 100% !important;
        list-style: none !important;
    }

    .nav-list a,
    #navList a {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 13px 14px !important;
        border-radius: 14px !important;
        color: #1f2a44 !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        background: #f8fafc !important;
    }

    .nav-list a:hover,
    #navList a:hover {
        background: #eef4ff !important;
        color: #123f91 !important;
    }

    .mobile-menu-btn,
    .hamburger,
    .menu-toggle,
    .nav-toggle,
    .menu-btn,
    #mobileMenuBtn {
        cursor: pointer !important;
        z-index: 100000 !important;
    }

    body.mobile-menu-active {
        overflow: hidden !important;
    }
}
/* ================= GARANTİ MOBİL MENÜ ================= */

#kgMobileMenuButton {
    display: none;
}

#kgMobileMenuOverlay {
    display: none;
}

#kgMobileMenuDrawer {
    display: none;
}

@media (max-width: 768px) {
    #kgMobileMenuButton {
        position: fixed;
        top: 31px;
        right: 28px;
        z-index: 1000001;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background: #ffffff;
        color: #1f2a44;
        font-size: 27px;
        font-weight: 800;
        border-radius: 14px;
        box-shadow: 0 10px 24px rgba(31, 42, 68, 0.08);
        cursor: pointer;
    }

    #kgMobileMenuOverlay {
        position: fixed;
        inset: 0;
        z-index: 1000000;
        background: rgba(15, 23, 42, 0.42);
        backdrop-filter: blur(3px);
    }

    #kgMobileMenuDrawer {
        position: fixed;
        top: 0;
        right: 0;
        width: min(82vw, 340px);
        height: 100vh;
        z-index: 1000002;
        background: #ffffff;
        box-shadow: -18px 0 45px rgba(31, 42, 68, 0.24);
        padding: 28px 18px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        display: block;
    }

    body.kg-mobile-menu-open #kgMobileMenuOverlay {
        display: block;
    }

    body.kg-mobile-menu-open #kgMobileMenuDrawer {
        transform: translateX(0);
    }

    body.kg-mobile-menu-open {
        overflow: hidden;
    }

    #kgMobileMenuClose {
        position: absolute;
        top: 14px;
        right: 16px;
        width: 38px;
        height: 38px;
        border: none;
        border-radius: 999px;
        background: #f1f5f9;
        color: #1f2a44;
        font-size: 26px;
        font-weight: 700;
        cursor: pointer;
    }

    .kg-mobile-menu-logo {
        margin: 34px 0 22px;
        color: #123f91;
        font-size: 24px;
        font-weight: 900;
        letter-spacing: 5px;
    }

    .kg-mobile-menu-logo span {
        display: block;
        margin-top: 6px;
        font-size: 11px;
        letter-spacing: 3px;
        font-weight: 700;
    }

    .kg-mobile-menu-link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
        padding: 14px 15px;
        border: 1px solid rgba(31, 42, 68, 0.08);
        border-radius: 16px;
        background: #f8fafc;
        color: #1f2a44;
        font-size: 15px;
        font-weight: 800;
        text-align: left;
        cursor: pointer;
    }

    .kg-mobile-menu-link::after {
        content: "›";
        font-size: 22px;
        color: #123f91;
    }

    .kg-mobile-menu-link:hover {
        background: #eef4ff;
        color: #123f91;
    }
}
/* ================= ESKI MOBIL MENU BUTONUNU GIZLE ================= */

@media (max-width: 768px) {
    .mobile-menu-btn,
    .hamburger,
    .menu-toggle,
    .nav-toggle,
    .menu-btn,
    #mobileMenuBtn {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    #kgMobileMenuButton {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}
/* ================= MOBIL MENU ALT KATEGORI ================= */

@media (max-width: 768px) {
    .kg-mobile-parent-box {
        width: 100%;
        margin-bottom: 10px;
    }

    .kg-mobile-parent {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 15px;
        border: 1px solid rgba(31, 42, 68, 0.08);
        border-radius: 16px;
        background: #f8fafc;
        color: #1f2a44;
        font-size: 15px;
        font-weight: 800;
        text-align: left;
        cursor: pointer;
    }

    .kg-mobile-parent span {
        font-size: 22px;
        color: #123f91;
        transition: transform 0.2s ease;
    }

    .kg-mobile-parent-box.open .kg-mobile-parent span {
        transform: rotate(90deg);
    }

    .kg-mobile-submenu {
        display: none;
        margin-top: 8px;
        padding: 8px;
        border-radius: 16px;
        background: #f1f5f9;
    }

    .kg-mobile-parent-box.open .kg-mobile-submenu {
        display: grid;
        gap: 7px;
    }

    .kg-mobile-submenu button {
        width: 100%;
        padding: 11px 12px;
        border: none;
        border-radius: 12px;
        background: #ffffff;
        color: #1f2a44;
        font-size: 14px;
        font-weight: 700;
        text-align: left;
        cursor: pointer;
    }

    .kg-mobile-submenu button:hover {
        background: #eef4ff;
        color: #123f91;
    }
}