@charset "UTF-8";

/* ==========================================================================
   GLOBAL GRUP ENERJİ / HDA POWER THEME - ATIX
   Crafted with Apple Human Interface Guidelines (HIG) Design Principles:
   - Clarity: Legible typography, precise iconography, distinct visual hierarchy
   - Deference: Fluid motion, clean surfaces, subtle glassmorphism & depth
   - Depth: Smooth cubic-bezier transitions, layered surfaces, micro-interactions
   ========================================================================== */

:root {
  /* Brand Accents (Global Batarya Green Theme) */
  --primary-orange: #69bd5c;
  --primary-orange-hover: #58a34c;
  --primary-orange-active: #46873a;
  --primary-orange-light: #f0fdf4;
  --primary-orange-glow: rgba(105, 189, 92, 0.28);

  /* Kurumsal Koyu Tema (Sizin #2b3d3f Renginizden Üretildi) */
  --dark-bg: #223133; /* Arka plan için bir tık daha koyusu */
  --dark-card-bg: #2b3d3f; /* Ana kurumsal siyah/yeşilimsi renginiz */
  --dark-card-hover: #364d4f; /* Kartların üzerine gelince */
  --dark-surface: #2b3d3f;
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-border-hover: rgba(105, 189, 92, 0.35); /* Yeşil hover çizgisi */

  /* Light Neutrals */
  --light-bg: #f8fafc;
  --light-card-bg: #ffffff;
  --light-surface: #f1f5f9;
  --light-border: rgba(0, 0, 0, 0.06);
  --light-border-hover: rgba(105, 189, 92, 0.35); /* Turuncu RGB'si yeşile çevrildi */

  /* Typography Colors */
  --text-dark: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-white: #ffffff;
  --text-white-sub: #cbd5e1;

  /* Typography Stack */
  --font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  --font-mono: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  /* Apple-standard Easing & Shadows */
  --apple-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --apple-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 32px -6px rgba(0, 0, 0, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(105, 189, 92, 0.35); /* Turuncu parlama yeşile çevrildi */

  /* Legacy variables for ShopPHP core support */
  --orange: #69bd5c; /* Sistemin hata vermemesi için değişken adı orange kaldı, ama rengi yeşil yaptık */
  --gray: #475569;
  --white: #ffffff;
}

/* ==========================================================================
   GLOBAL RESET & TYPOGRAPHY
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--light-bg);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.022em;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0;
}

p {
  line-height: 1.6;
  letter-spacing: -0.006em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s var(--apple-ease);
}

a:hover {
  color: var(--primary-orange);
}

img {
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

/* Helpers */
.text-orange { color: var(--primary-orange) !important; }
.bg-orange { background-color: var(--primary-orange) !important; }
.apple-blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ==========================================================================
   1. TOPBAR / ANNOUNCEMENT BAR (Apple Refined Contrast)
   ========================================================================== */

.atix-topbar {
  background: linear-gradient(90deg, #58a34c 0%, #69bd5c 100%);
  color: var(--text-white);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.006em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.atix-topbar .topbar-item {
  display: inline-flex;
  align-items: center;
  color: var(--text-white);
  gap: 6px;
  transition: opacity 0.2s ease;
}

.atix-topbar .topbar-link {
  color: var(--text-white);
}

.atix-topbar .topbar-link:hover {
  opacity: 0.85;
  color: var(--text-white);
}

.atix-topbar i {
  font-size: 13px;
  opacity: 0.95;
}

/* ==========================================================================
   2. MAIN HEADER & SEARCH (Referans Ekran Görüntüsü Birebir Tasarımı)
   ========================================================================== */

.atix-main-header {
  background-color: var(--white);
  border-bottom: 1px solid #f1f5f9;
  padding: 16px 0;
  position: relative;
  z-index: 100;
  width: 100%;
}

.atix-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

/* 1. Logo */
.atix-logo-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.atix-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

img.atix-main-logo-img {
  width: 250px;
  max-width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s var(--apple-ease);
}

.atix-brand-link:hover .atix-main-logo-img {
  transform: scale(1.02);
}

/* 2. Tüm Kategoriler Butonu (Kenarlıksız, 3 Turuncu Çizgi) */
.atix-cats-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.atix-all-cats-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  color: #1e293b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.atix-hamburger {
  display: flex;
  flex-direction: column;
  gap: 3.5px;
  width: 18px;
}

.atix-hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-orange);
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.atix-all-cats-btn:hover {
  color: var(--primary-orange);
}

.atix-all-cats-btn:hover .atix-hamburger span {
  background-color: var(--primary-orange-hover);
}

/* 3. Arama Çubuğu (Oval Pill + Turuncu Bitişik Buton) */
.atix-search-col {
  flex: 1 1 auto;
  max-width: 580px;
  margin: 0;
}

.atix-search-form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  border: 1.5px solid #e2e8f0;
  border-radius: 26px;
  background-color: #ffffff;

  transition: all 0.2s var(--apple-ease);
}

.atix-search-form:focus-within {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(217, 101, 0, 0.12);
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  height: 100%;
}

.atix-search-input {
  flex: 1;
  height: 100%;
  padding: 0 20px;
  border: none;
  background: transparent;
  font-size: 13px;
  color: #1e293b;
  outline: none;
  width: 100%;
}

.atix-search-input::placeholder {
  color: #94a3b8;
  font-size: 12.5px;
}

.atix-search-btn {
  width: 54px;
  height: 100%;
  background-color: var(--primary-orange);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  border-radius: 0 22px 22px 0;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.atix-search-btn:hover {
  background-color: var(--primary-orange-hover);
}

/* 4. Sağ Aksiyonlar: Hesabım | Favorilerim | Sepetim (İnce çizgi ikonlar + altta etiket) */
.atix-header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.atix-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #475569;
  transition: color 0.2s ease;
}

.atix-action-btn .action-icon-wrap {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  transition: color 0.2s ease, transform 0.2s ease;
}

.atix-action-btn .action-title {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.atix-action-btn:hover .action-icon-wrap {
  color: var(--primary-orange);
  transform: translateY(-1px);
}

.atix-action-btn:hover .action-title {
  color: var(--primary-orange);
}

.atix-cart-btn .action-icon-wrap {
  position: relative;
}

.atix-cart-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: var(--primary-orange);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  border: 1.5px solid #ffffff;
  box-shadow: 0 2px 4px rgba(217, 101, 0, 0.3);
}

/* ==========================================================================
   3. HORIZONTAL NAVBAR MENU (Kompakt ve Net)
   ========================================================================== */

.atix-navbar-menu {
  background-color: var(--white);
  border-bottom: 1px solid #eef2f5;
}

.atix-nav-list {
  list-style: none;
  gap: 32px;
}

.atix-nav-link {
  display: inline-block;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.2s var(--apple-ease);
}

.atix-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background-color: var(--primary-orange);
  border-radius: 2px 2px 0 0;
  transition: width 0.2s var(--apple-ease);
}

.atix-nav-link:hover,
.atix-nav-link.active {
  color: var(--primary-orange);
}

.atix-nav-link:hover::after,
.atix-nav-link.active::after {
  width: 100%;
}

/* ==========================================================================
   4. HERO SLIDER & PROMO SECTION (Apple-style Modern Surface)
   ========================================================================== */

.atix-hero-section {
  padding: 20px 0;
}

.atix-hero-wrapper {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.atix-hero-slider-container {
  flex: 1;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background-color: #f8fafc;
}

.atix-hero-owl-slider {
  width: 100%;
  height: 100%;
}

.atix-hero-slide-item {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.atix-slider-img-link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  text-decoration: none;
}

.atix-slider-main-img {
  width: 100%;
  height: auto;
  max-height: 480px;

  border-radius: 18px;
  display: block;
}

/* Owl Carousel Custom Dots */
.atix-hero-owl-slider .owl-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  z-index: 5;
}

.atix-hero-owl-slider .owl-dots .owl-dot {
  outline: none;
}

.atix-hero-owl-slider .owl-dots .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 4px !important;
  transition: all 0.25s var(--apple-ease) !important;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.atix-hero-owl-slider .owl-dots .owl-dot.active span {
  width: 26px !important;
  background: var(--primary-orange) !important;
}

/* Yan Banner (Sağ Alan) */
.atix-hero-side-banner {
  width: 270px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.side-banner-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  line-height: 0;
}

.side-banner-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.side-banner-img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  display: block;
  transition: transform 0.25s var(--apple-ease);
}

.side-banner-link:hover .side-banner-img {
  transform: scale(1.02);
}

.side-banner-fallback {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(180deg, #d32f2f 0%, #a81c1c 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.side-banner-badge {
  color: var(--text-white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  word-break: break-word;
}

/* ==========================================================================
   HERO SLIDER & YAN BANNER TABLET & MOBİL UYUMLULUK (ALT ALTA YERLEŞİM)
   ========================================================================== */

@media (max-width: 991.98px) {
  .atix-hero-section {
    padding: 14px 0;
  }

  .atix-hero-wrapper {
    flex-direction: column !important;
    gap: 14px !important;
  }

  .atix-hero-slider-container {
    width: 100% !important;
    flex: none !important;
    border-radius: 14px !important;
  }

  .atix-hero-slide-item,
  .atix-slider-main-img {
    border-radius: 14px !important;
    max-height: 320px !important;
  }

  .atix-hero-side-banner {
    width: 100% !important;
    height: auto !important;
    /* max-height: 180px !important; */
    border-radius: 14px !important;
  }

  .side-banner-img {
    width: 100% !important;
    height: 100% !important;
    /* max-height: 180px !important; */
    object-fit: cover !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 575.98px) {
  .atix-hero-slide-item,
  .atix-slider-main-img {
    max-height: 220px !important;
  }

  .atix-hero-side-banner,
  .side-banner-img {
    /* max-height: 140px !important; */
  }
}

/* ==========================================================================
   5. KATEGORİLER GRID (Apple Clean Grid Cards)
   ========================================================================== */

.atix-categories-section {
  padding: 36px 0;
}

@media (min-width: 1200px) {
  .col-atix-5 {
    flex: 0 0 20% !important;
    max-width: 20% !important;
    width: 20% !important;
  }
}

.atix-section-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.atix-category-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 14px;
  padding: 16px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s var(--apple-ease);
}

.atix-category-card:hover {
  border-color: var(--light-border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.atix-category-card:active {
  transform: scale(0.98);
}

.atix-category-img-box {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: #f8fafc;
  border-radius: 10px;
  padding: 0 !important;
  overflow: hidden !important;
  position: relative;
}

.atix-category-img-box img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 10px !important;
  transition: transform 0.35s var(--apple-ease) !important;
}

.atix-category-card:hover .atix-category-img-box img {
  transform: scale(1.06) !important;
}

.atix-category-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}

.atix-category-name {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.atix-category-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: all 0.25s var(--apple-ease);
}

.atix-category-card:hover .atix-category-arrow {
  background-color: var(--primary-orange);
  color: var(--white);
  transform: translateX(2px);
}

/* ==========================================================================
   6. PROMO BANNERS SECTION
   ========================================================================== */

.atix-promo-banner-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s var(--apple-ease), box-shadow 0.25s var(--apple-ease);
}

.atix-promo-banner-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.atix-promo-banner-link {
  display: block;
  width: 100%;
  text-decoration: none;
  overflow: hidden;
  border-radius: 16px;
}

.atix-promo-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;

  transition: transform 0.35s var(--apple-ease);
}

.atix-promo-banner-wrap:hover .atix-promo-banner-img {
  transform: scale(1.02);
}

/* ==========================================================================
   7. VIDEO ALANI (Apple Keynote Style Dark Theater)
   ========================================================================== */

.atix-video-box {
  background-color: #0c1017 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 20px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-lg) !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.atix-video-box .ratio,
.atix-video-box .ratio-16x9 {
  width: 100% !important;
  height: auto !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

.atix-video-box iframe,
.atix-video-box video {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  border-radius: 20px !important;
  display: block !important;
  object-fit: cover !important;
}

@media (max-width: 767.98px) {
  .atix-video-section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .atix-video-box,
  .atix-video-box .ratio,
  .atix-video-box .ratio-16x9,
  .atix-video-box iframe,
  .atix-video-box video {
    border-radius: 14px !important;
  }
}

/* ==========================================================================
   8. BLOG & BİLGİ MERKEZİ
   ========================================================================== */

.atix-section-subtitle {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ==========================================================================
   BLOG CARD & MAKALE LİSTESİ STİLLERİ (APPLE HIG DESIGN)
   ========================================================================== */

.blog-card,
.atix-blog-card {
  background-color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  text-decoration: none !important;
}

.blog-card:hover,
.atix-blog-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 14px 30px -4px rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(255, 103, 0, 0.3) !important;
}

.blog-card > a:first-child,
.atix-blog-img-box {
  position: relative !important;
  height: 210px !important;
  overflow: hidden !important;
  background-color: #f1f5f9 !important;
  display: block !important;
}

.blog-card img,
.atix-blog-img-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: block !important;
}

.blog-card:hover img,
.atix-blog-card:hover img {
  transform: scale(1.06) !important;
}

.blog-date-tag,
.atix-blog-badge {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(8px) !important;
  color: #1d1d1f !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.blog-date-tag:empty {
  display: none !important;
}

.blog-content,
.atix-blog-body {
  padding: 20px 20px 22px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  position: relative !important;
}

.blog-title,
.atix-blog-title {
  font-size: 15.5px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  color: #1d1d1f !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  padding-right: 36px !important;
}

.blog-title a,
.atix-blog-title a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.blog-card:hover .blog-title a,
.blog-card:hover .blog-title,
.atix-blog-card:hover .atix-blog-title a,
.atix-blog-card:hover .atix-blog-title {
  color: var(--primary-orange, #ff6700) !important;
}

.atix-blog-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: 8px;
  margin-bottom: 16px;
}

.atix-blog-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-arrow-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #64748b !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  flex-shrink: 0 !important;
}

.blog-arrow-icon::before {
  content: "\f061" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-size: 11px !important;
}

.blog-card:hover .blog-arrow-icon {
  background: var(--primary-orange, #ff6700) !important;
  border-color: var(--primary-orange, #ff6700) !important;
  color: #ffffff !important;
  transform: translateX(3px) !important;
  box-shadow: 0 4px 10px rgba(255, 103, 0, 0.3) !important;
}

.blog-card-footer {
  border-top: 1px solid #f1f5f9;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-orange, #ff6700);
  transition: all 0.2s ease;
}

.blog-card:hover .blog-read-more {
  color: #ea580c;
}

.atix-blog-page-header h1 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Article Reading View (Apple Editorial Magazine Layout - Full Width Container) */
.atix-article-detail-card {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 24px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 24px -2px rgba(0, 0, 0, 0.04) !important;
}

.atix-article-single {
  width: 100% !important;
  max-width: 100% !important;
}

.atix-article-category-badge {
  background: #fff7ed !important;
  color: var(--primary-orange, #ff6700) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 5px 16px !important;
  border-radius: 20px !important;
  border: 1px solid #fed7aa !important;
  letter-spacing: 0.02em !important;
  transition: all 0.2s ease !important;
}

.atix-article-category-badge:hover {
  background: var(--primary-orange, #ff6700) !important;
  color: #ffffff !important;
}

.atix-article-main-title {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #1d1d1f !important;
  line-height: 1.28 !important;
  letter-spacing: -0.025em !important;
}

.atix-article-hero-img img {
  border-radius: 20px !important;
  max-height: 460px !important;
  width: 100% !important;
  object-fit: cover !important;
  box-shadow: 0 8px 30px -4px rgba(0, 0, 0, 0.08) !important;
}

.atix-article-prose {
  font-size: 16.5px !important;
  line-height: 1.85 !important;
  color: #334155 !important;
  text-align: left !important;
}

.atix-article-prose p {
  margin-bottom: 1.4em !important;
  text-align: left !important;
}

.atix-article-prose center,
.atix-article-prose div[align="center"],
.atix-article-prose p[align="center"] {
  text-align: left !important;
}

.atix-article-prose h2,
.atix-article-prose h3 {
  font-weight: 800 !important;
  color: #1d1d1f !important;
  margin-top: 1.8em !important;
  margin-bottom: 0.6em !important;
  letter-spacing: -0.02em !important;
}

.atix-article-prose img {
  border-radius: 16px !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 20px 0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
}

.atix-social-share-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 13px !important;
  text-decoration: none !important;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12) !important;
}

.atix-social-share-btn.fb { background: #1877f2 !important; }
.atix-social-share-btn.tw { background: #000000 !important; }
.atix-social-share-btn.wa { background: #25d366 !important; }
.atix-social-share-btn.in { background: #0a66c2 !important; }

/* Hide obsolete default block titles */
.anasBaslik,
.tableBoxTitle,
.sayfaIcleri > .anasBaslik,
.icerikListele > .anasBaslik,
.formListele > .anasBaslik,
.sepetGostersene > .anasBaslik {
  display: none !important;
}

.atix-social-share-btn.fb { background: #1877f2 !important; }
.atix-social-share-btn.tw { background: #000000 !important; }
.atix-social-share-btn.wa { background: #25d366 !important; }
.atix-social-share-btn.in { background: #0a66c2 !important; }

/* ==========================================================================
   9. CONTAINER İÇİNDE REFERANS FOOTER KARTLARI
   ========================================================================== */

.atix-footer-container {
  margin-top: 40px;
  /* margin-bottom: 40px; */
}

/* 1. Güven Rozetleri Kartı */
.atix-trust-card {
  background-color: #182526;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 36px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.atix-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.atix-trust-icon {
  font-size: 28px;
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.atix-trust-text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.atix-trust-text p {
  font-size: 11.5px;
  color: #94a3b8;
  margin-bottom: 0;
  line-height: 1.4;
}

/* 2. Ana Footer Kartı */
.atix-footer-card {
  background-color: #182526;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Üst Bölüm: E-Bülten Barı */
.atix-newsletter-bar {
  padding: 24px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.atix-nl-icon-box {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--primary-orange);
  border-radius: 10px;
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.atix-nl-heading {
  color: var(--text-white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.atix-nl-desc {
  color: #94a3b8;
  font-size: 12px;
}

.atix-nl-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.atix-nl-input {
  height: 44px !important;
  background: #ffffff !important;
  border: none !important;
  padding: 0 18px !important;
  font-size: 13px !important;
  color: #1e293b !important;
  border-radius: 6px 0 0 6px !important;
  flex: 1;
  outline: none !important;
}

.atix-btn-orange-nl {
  height: 44px;
  background-color: var(--primary-orange);
  color: #ffffff;
  font-weight: 700;
  font-size: 13.5px;
  border: none;
  padding: 0 28px;
  border-radius: 0 6px 6px 0 !important;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.atix-btn-orange-nl:hover {
  background-color: var(--primary-orange-hover);
}

.atix-social-group a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s var(--apple-ease);
}

.atix-social-group a:hover {
  background-color: var(--primary-orange);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Orta Bölüm: 5 Kolon Bilgi Alanı */
.atix-footer-body {
  padding: 38px 36px;
}

.atix-brand-title {
  color: var(--text-white);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.atix-brand-desc {
  color: #94a3b8;
  font-size: 12.5px;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 320px;
}

.atix-contact-list {
  list-style: none;
  font-size: 12.5px;
  color: #94a3b8;
}

.atix-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.atix-contact-list li i {
  color: var(--primary-orange);
  width: 16px;
  font-size: 13px;
}

.atix-contact-list li a {
  color: #94a3b8;
}

.atix-contact-list li a:hover {
  color: var(--primary-orange);
}

.atix-col-heading {
  color: var(--text-white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.atix-col-links {
  list-style: none;
  font-size: 12.5px;
}

.atix-col-links li {
  margin-bottom: 9px;
}

.atix-col-links li a {
  color: #94a3b8;
  transition: all 0.2s ease;
  display: inline-block;
}

.atix-col-links li a:hover {
  color: var(--primary-orange);
  transform: translateX(3px);
}

.atix-social-text-list {
  list-style: none;
  font-size: 12.5px;
}

.atix-social-text-list li {
  margin-bottom: 10px;
}

.atix-social-text-list li a {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.atix-social-text-list li a:hover {
  color: var(--primary-orange);
  transform: translateX(3px);
}

/* Alt Bölüm: Telif ve Politika Linkleri */
.atix-footer-bottom-bar {
  padding: 16px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.atix-copy-text {
  color: #64748b;
  font-size: 12px;
}

.atix-legal-nav a {
  color: #64748b;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.atix-legal-nav a:hover {
  color: var(--primary-orange);
}

/* ==========================================================================
   12. FLOATING WHATSAPP BUTTON (Apple Glass Bounce)
   ========================================================================== */

.atix-floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: var(--text-white);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.3s var(--apple-bounce);
}

.atix-floating-whatsapp:hover {
  transform: scale(1.12);
  color: var(--text-white);
}

.atix-floating-whatsapp:active {
  transform: scale(0.92);
}

/* ==========================================================================
   13. MOBILE FIXED BOTTOM BAR (Apple iOS Glass Surface & HIG Design)
   ========================================================================== */

.atix-mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 62px;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  z-index: 1040;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.atix-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #64748b;
  height: 60px;
  padding: 4px 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.atix-bottom-nav-icon {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 3px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.atix-bottom-nav-label {
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.atix-bottom-nav-item:hover,
.atix-bottom-nav-item:focus {
  color: var(--primary-orange, #ff6700);
}

.atix-bottom-nav-item.active {
  color: var(--primary-orange, #ff6700) !important;
}

.atix-bottom-nav-item.active .atix-bottom-nav-icon {
  transform: translateY(-2px);
  color: var(--primary-orange, #ff6700);
}

.atix-bottom-cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background-color: var(--primary-orange, #ff6700);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  line-height: 17px;
  padding: 0 4px;
  border-radius: 9px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(255, 103, 0, 0.4);
  border: 1.5px solid #ffffff;
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 66px !important;
  }

  .atix-floating-whatsapp {
    bottom: 76px !important;
    right: 18px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 26px !important;
  }
}

/* ==========================================================================
   14. TÜM KATEGORİLER DRAWER / OFFCANVAS (Apple-Grade Premium Redesign)
   ========================================================================== */

.atix-menu-drawer {
  width: 390px !important;
  max-width: 92vw !important;
  border-right: 1px solid #e2e8f0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  background-color: #ffffff;
  overflow: visible !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* 1. Header */
.atix-drawer-header {
  padding: 18px 20px;
  border-bottom: 1px solid #f1f5f9;
  background-color: #ffffff;
}

.atix-drawer-header-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  /* Yeşil renk geçişi (Ana yeşilinizden, bir tık daha açık yeşile) */
  background: linear-gradient(135deg, var(--primary-orange) 0%, #7bce6d 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  /* Turuncu gölgeyi, yeşil gölge RGB'si ile değiştirdik */
  box-shadow: 0 4px 12px rgba(105, 189, 92, 0.28);
  flex-shrink: 0;
}

.atix-drawer-menu-title {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.atix-drawer-menu-subtitle {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 500;
  display: block;
}

.atix-drawer-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.atix-drawer-close-btn:hover {
  background-color: #fee2e2;
  color: #ef4444;
  border-color: #fca5a5;
  transform: rotate(90deg);
}

/* 2. Quick Search & Filter */
.atix-drawer-search-wrap {
  padding: 12px 18px;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.atix-drawer-search-box {
  position: relative;
  width: 100%;
}

.atix-drawer-search-input {
  width: 100%;
  height: 40px;
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 36px 0 36px;
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
  transition: all 0.2s ease;
}

.atix-drawer-search-input:focus {
  background-color: #ffffff;
  border-color: var(--primary-orange, #ff6700);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 103, 0, 0.12);
}

.atix-drawer-search-box .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #94a3b8;
  pointer-events: none;
}

.atix-drawer-search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 15px;
  color: #94a3b8;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atix-drawer-search-clear:hover {
  color: #ef4444;
}

.atix-drawer-body {
  overflow-y: auto;
  overflow-x: visible;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f8fafc;
}

.atix-drawer-body::-webkit-scrollbar {
  width: 5px;
}

.atix-drawer-body::-webkit-scrollbar-track {
  background: #f8fafc;
}

.atix-drawer-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.atix-drawer-section-label {
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 20px 8px;
}

/* 3. Top Featured Categories Cards */
.atix-drawer-featured-wrap {
  background-color: #f8fafc;
  border-bottom: 1px solid #eef2f6;
  padding-bottom: 14px;
}

.atix-drawer-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 18px;
}

.atix-drawer-feat-card {
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 6px 10px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.atix-drawer-feat-card:hover {
  border-color: var(--primary-orange, #ff6700);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(255, 103, 0, 0.16);
}

.feat-card-img {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.feat-card-img img {
  max-height: 50px;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.feat-card-name {
  font-size: 10px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s ease;
}

.atix-drawer-feat-card:hover .feat-card-name {
  color: var(--primary-orange, #ff6700);
}

/* 4. Main Category List */
.atix-drawer-cat-wrap {
  padding-top: 4px;
}

.atix-drawer-cat-list {
  padding: 0;
}

.atix-drawer-cat-item {
  position: relative;
  border-bottom: 1px solid #f8fafc;
}

.atix-drawer-cat-link {
  padding: 11px 18px;
  color: #334155;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.cat-item-icon-box {
  width: 75px;
  height: 75px;
  border-radius: 0px;
  background-color: #fff7ed;
  color: var(--primary-orange, #ff6700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  overflow: hidden;
}

.cat-item-icon-box img.cat-menu-icon-img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  display: block;
}

.cat-item-name {
  color: #1e293b;
  font-size: 13.5px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.cat-sub-count {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  background-color: #f1f5f9;
  padding: 2px 7px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.cat-item-arrow {
  font-size: 11px;
  color: #cbd5e1;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Category Hover States */
.atix-drawer-cat-item:hover > .atix-drawer-cat-link,
.atix-drawer-cat-item.is-highlighted > .atix-drawer-cat-link {
  background-color: #fff7ed;
  border-left-color: var(--primary-orange, #ff6700);
}

.atix-drawer-cat-item:hover .cat-item-name,
.atix-drawer-cat-item.is-highlighted .cat-item-name {
  color: var(--primary-orange, #ff6700);
  font-weight: 700;
}

.atix-drawer-cat-item:hover .cat-item-icon-box,
.atix-drawer-cat-item.is-highlighted .cat-item-icon-box {
  background-color: var(--primary-orange, #ff6700);
  color: #ffffff;
  transform: scale(1.05);
}

.atix-drawer-cat-item:hover .cat-sub-count,
.atix-drawer-cat-item.is-highlighted .cat-sub-count {
  background-color: #fed7aa;
  color: #c2410c;
}

.atix-drawer-cat-item:hover .cat-item-arrow,
.atix-drawer-cat-item.is-highlighted .cat-item-arrow {
  color: var(--primary-orange, #ff6700);
  transform: translateX(3px);
}

/* 5. Desktop Flyout Menu */
.atix-drawer-flyout-menu {
  position: absolute;
  left: 100%;
  top: -8px;
  width: 290px;
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  padding: 18px 20px;
  z-index: 1060;
  display: none;
}

@keyframes flyoutFadeIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (min-width: 992px) {
  .atix-drawer-cat-item:hover .atix-drawer-flyout-menu {
    display: block;
    animation: flyoutFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

.flyout-header {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.flyout-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.flyout-all-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-orange, #ff6700);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.15s ease;
}

.flyout-all-link:hover {
  transform: translateX(2px);
  color: #ea580c;
}

.flyout-sub-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flyout-sub-link {
  padding: 8px 12px;
  border-radius: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
}

.flyout-sub-link:hover {
  background-color: #fff7ed;
  color: var(--primary-orange, #ff6700);
  font-weight: 600;
  padding-left: 15px;
}

.sub-link-arrow {
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.flyout-sub-link:hover .sub-link-arrow {
  opacity: 1;
  color: var(--primary-orange, #ff6700);
}

/* 6. Spotlight Promotional Card */
.atix-drawer-promo-wrap {
  padding: 14px 18px;
}

.atix-drawer-promo-box {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border-radius: 16px;
  padding: 14px 16px;
  border: 1.5px solid #fed7aa;
  box-shadow: 0 6px 18px rgba(255, 103, 0, 0.08);
  transition: transform 0.2s var(--apple-ease), box-shadow 0.2s var(--apple-ease);
}

.atix-drawer-promo-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 103, 0, 0.22);
  border-color: var(--primary-orange, #ff6700);
}

.promo-box-img {
  width: 68px;
  height: 64px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.promo-box-img img {
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
}

.promo-box-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  background-color: var(--primary-orange, #ff6700);
  color: #ffffff;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.promo-box-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.promo-box-price {
  font-size: 16px;
  font-weight: 900;
  color: var(--primary-orange, #ff6700);
}

.promo-box-btn {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--primary-orange, #ff6700);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.15s ease;
}

.atix-drawer-promo-box:hover .promo-box-btn {
  transform: translateX(3px);
}

/* 7. Footer Customer Support Actions */
.atix-drawer-footer-actions {
  background-color: #fafbfc;
  border-top: 1px solid #f1f5f9;
  padding: 14px 18px;
}

.atix-drawer-support-btn {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.atix-drawer-support-btn:hover {
  border-color: var(--primary-orange, #ff6700);
  background-color: #fff7ed;
}

.support-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff7ed;
  color: var(--primary-orange, #ff6700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.support-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  display: block;
}

.support-number {
  font-size: 13.5px;
  color: #0f172a;
  font-weight: 800;
}

/* ==========================================================================
   15. RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 991.98px) {
  .atix-menu-drawer {
    width: 320px !important;
  }

  .atix-drawer-flyout-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 6px;
    display: none;
  }

  .atix-drawer-cat-item.is-highlighted .atix-drawer-flyout-menu {
    display: block;
  }

  body {
    padding-bottom: 64px;
  }
}

/* ==========================================================================
   16. KATEGORİ GÖSTER & ÜRÜN LİSTELEME SAYFASI (APPLE HIG DESIGN PRINCIPLES)
   ========================================================================== */

/* Global Smooth Font Rendering */
body, .kategori-urunler, .category-sidebar {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", system-ui, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* 1. Apple-Style Full-Width Breadcrumb Strip (Edge-to-Edge) */
.atix-breadcrumb-fullwidth {
  width: 100% !important;
  background: #f5f5f7 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  padding: 12px 0 !important;
  margin-bottom: 24px !important;
}

.atix-breadcrumb-fullwidth .container {
  display: flex !important;
  align-items: center !important;
}

.atix-breadcrumb-fullwidth .breadcrumb,
.atix-breadcrumb-wrap .breadcrumb {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 0 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #86868b !important;
}

.atix-breadcrumb-fullwidth .breadcrumb-item,
.atix-breadcrumb-wrap .breadcrumb-item {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #86868b !important;
  display: inline-flex !important;
  align-items: center !important;
}

.atix-breadcrumb-fullwidth .breadcrumb-item a,
.atix-breadcrumb-wrap .breadcrumb-item a {
  color: #86868b !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
}

.atix-breadcrumb-fullwidth .breadcrumb-item a:hover,
.atix-breadcrumb-wrap .breadcrumb-item a:hover {
  color: var(--primary-orange, #ff6700) !important;
}

.atix-breadcrumb-fullwidth .breadcrumb-item.active,
.atix-breadcrumb-wrap .breadcrumb-item.active,
.atix-breadcrumb-fullwidth .breadcrumb-item:last-child {
  color: var(--primary-orange, #ff6700) !important;
  font-weight: 700 !important;
}

.atix-breadcrumb-fullwidth .breadcrumb-item + .breadcrumb-item::before,
.atix-breadcrumb-wrap .breadcrumb-item + .breadcrumb-item::before {
  content: "›" !important;
  color: #d2d2d7 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding-right: 6px !important;
}

/* 2. Apple-Style Sidebar & Filters */
.category-sidebar {
  background: transparent;
}

.atix-sidebar-accordion .accordion-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  margin-bottom: 16px;
}

.atix-sidebar-accordion .accordion-button {
  background: #ffffff;
  color: #1d1d1f;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 16px 20px;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
}

.atix-sidebar-accordion .accordion-button i {
  color: var(--primary-orange, #ff6700);
  font-size: 15px;
}

.atix-sidebar-accordion .accordion-button:not(.collapsed) {
  background: #fff7ed;
  color: var(--primary-orange, #ff6700);
  border-bottom: 1px solid #fed7aa !important;
}

.atix-sidebar-accordion .accordion-button::after {
  background-size: 13px;
  filter: grayscale(1);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.atix-sidebar-accordion .accordion-button:not(.collapsed)::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6700'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* Subcategories List */
.atix-sidebar-cat-list {
  list-style: none;
  padding: 6px 8px;
}

.atix-sidebar-cat-list li {
  margin: 0;
  padding: 0;
}

.atix-sidebar-cat-list li a,
.category-sidebar .kategoriler li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 10px;
  color: #334155;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.atix-sidebar-cat-list li a:hover,
.category-sidebar .kategoriler li a:hover {
  background: #fff7ed;
  color: var(--primary-orange, #ff6700);
  font-weight: 700;
  padding-left: 16px;
}

.atix-sidebar-cat-list li.active a,
.category-sidebar .kategoriler li.active a {
  background: #fff7ed;
  color: var(--primary-orange, #ff6700);
  font-weight: 800;
  border-left: 3px solid var(--primary-orange, #ff6700);
}

/* Filters Section Inside Sidebar */
.atix-filter-container,
.category-sidebar .kategoriler {
  padding: 10px 14px 16px 14px;
}

.atix-filter-container .tableBoxTitle,
.category-sidebar .tableBoxTitle,
.category-sidebar .sidebar-title {
  font-size: 12px;
  font-weight: 700;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 0 6px 0;
  margin-top: 10px;
  border-bottom: 1px solid #f2f2f7;
  display: block;
}

.atix-filter-container .tableBoxTitle:first-child,
.category-sidebar .tableBoxTitle:first-child {
  margin-top: 0;
}

.atix-filter-container form,
.atix-filter-container ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.atix-filter-container label,
.category-sidebar .form-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1f;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.15s ease;
}

.atix-filter-container label:hover,
.category-sidebar .form-check-label:hover {
  color: var(--primary-orange, #ff6700);
}

.atix-filter-container input[type="checkbox"],
.atix-filter-container input[type="radio"],
.category-sidebar input[type="checkbox"] {
  accent-color: var(--primary-orange, #ff6700);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  cursor: pointer;
}

/* 3. Category Header */
.kategori-urunler {
  background: transparent;
}

.kategori-urunler h1,
.page-header h1,
.kategori-title-bar h1 {
  font-size: 24px;
  font-weight: 800;
  color: #1d1d1f;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kategori-urunler h2 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-orange, #ff6700);
  margin-bottom: 18px;
}

.kategori-urunler h1 + h2 {
  margin-top: -8px;
  margin-bottom: 20px;
}

/* ==========================================================================
   4. APPLE-GRADE PRODUCT CARDS
   ========================================================================== */

.product-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 16px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  border-color: rgba(255, 103, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(255, 103, 0, 0.1);
}

/* Image Box (Apple Soft Surface) */
.product-card .image-box {
  width: 100%;
  /* height: 220px; */
  background: #f5f5f7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0px;
}

.product-card .image-box a.product-img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* height: 100%; */
}

.product-card .image-box img.product-main-img,
.product-card .image-box img {
  max-width: 100%;
  /* max-height: 100%; */
  /* object-fit: contain; */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .image-box img {
  transform: scale(1.05);
}

/* Apple Refined Translucent Badges */
.product-card .product-badges,
.product-badges {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 3.5px !important;
  z-index: 10 !important;
  pointer-events: none !important;
  max-width: 82% !important;
}

/* Universal Badge Styling */
.product-card .product-badges > *,
.product-card .product-badges span,
.product-card .product-badges div,
.product-card .product-badges p,
.product-card .product-badges a,
.product-card .badge-tag,
.product-card .product-badge,
.product-card .badge,
.product-badges > * {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  padding: 3.5px 8px !important;
  border-radius: 6px !important;
  letter-spacing: -0.01em !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  color: #1d1d1f !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  width: fit-content !important;
  margin: 0 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.product-card .product-badges > *:empty {
  display: none !important;
}

/* Color Presets */
.product-card .product-badges .badge-shipping,
.product-card .badge-shipping,
.product-badges .badge-shipping,
.product-badges [class*="ucretsiz"],
.product-badges [class*="kargo"] {
  background: rgba(236, 253, 245, 0.92) !important;
  color: #047857 !important;
  border-color: rgba(167, 243, 208, 0.8) !important;
}

.product-card .product-badges .badge-domestic,
.product-card .badge-domestic,
.product-badges .badge-domestic,
.product-badges [class*="yerli"] {
  background: rgba(239, 246, 255, 0.92) !important;
  color: #1d4ed8 !important;
  border-color: rgba(191, 219, 254, 0.8) !important;
}

.product-card .product-badges .badge-instant,
.product-card .badge-instant,
.product-badges .badge-instant,
.product-badges [class*="aninda"],
.product-badges [class*="hizli"] {
  background: rgba(255, 247, 237, 0.92) !important;
  color: #c2410c !important;
  border-color: rgba(254, 215, 170, 0.8) !important;
}

.product-card .product-badges .badge-same-day,
.product-card .badge-same-day,
.product-badges .badge-same-day,
.product-badges [class*="ayni"] {
  background: rgba(250, 245, 255, 0.92) !important;
  color: #7e22ce !important;
  border-color: rgba(233, 213, 255, 0.8) !important;
}

.product-card .product-badges .badge-discount,
.product-card .badge-discount,
.product-badges .badge-discount,
.product-badges [class*="indirim"] {
  background: rgba(254, 242, 242, 0.92) !important;
  color: #b91c1c !important;
  border-color: rgba(254, 202, 202, 0.8) !important;
}

.product-card .product-badges .badge-new,
.product-card .badge-new,
.product-badges .badge-new,
.product-badges [class*="yeni"] {
  background: rgba(255, 241, 242, 0.92) !important;
  color: #be123c !important;
  border-color: rgba(254, 205, 211, 0.8) !important;
}

/* Glassmorphism Favorite Button */
.product-card .favorilereekle {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #86868b;
  font-size: 15px;
  cursor: pointer;
  z-index: 10;
  opacity: 1 !important;
  visibility: visible !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 !important;
}

.product-card .favorilereekle:hover {
  background: #ffffff !important;
  color: #ef4444 !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Product Card Information */
.product-card .product-card-body {
  padding-top: 6px;
}

.product-card .category {
  font-size: 10.5px;
  font-weight: 700;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.product-card .name {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.36;
  letter-spacing: -0.015em;
  height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.15s ease;
}

.product-card .name:hover {
  color: var(--primary-orange, #ff6700);
}

/* Price Section */
.product-card .fiyatlar {
  margin-top: 10px;
}

.product-card .price-discount {
  font-size: 12px;
  font-weight: 500;
  color: #86868b;
  text-decoration: line-through;
}

.product-card .indirim-oran {
  font-size: 10.5px;
  font-weight: 800;
  background: #fee2e2;
  color: #dc2626;
  padding: 1px 6px;
  border-radius: 4px;
}

.product-card .price {
  font-size: 20px;
  font-weight: 800;
  color: #1d1d1f;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* Apple-Grade Action Button */
.product-card .sepet-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  background: linear-gradient(180deg, #2ecc71 0%, #27ae60 100%) !important;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.25);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card .sepet-button i {
  font-size: 14px;
}

.product-card .sepet-button:hover {
  background: #ea580c !important;
  box-shadow: 0 6px 18px rgba(255, 103, 0, 0.38);
  transform: translateY(-1px);
}

.product-card .sepet-button:active {
  transform: scale(0.98);
}

/* Delivery / Shipping Note (Compact Apple-Style) */
.product-card .product-shipping-wrap,
.product-card .product-shipping-note,
.product-card .product-free-shipping {
  font-size: 10.5px !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
  color: #64748b !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 8px !important;
}

.product-card .product-shipping-wrap *,
.product-card .product-shipping-note *,
.product-card .product-free-shipping * {
  font-size: 10.5px !important;
  line-height: 1.3 !important;
  color: inherit !important;
}

.product-card .product-shipping-wrap strong,
.product-card .product-shipping-note strong {
  font-weight: 700 !important;
  color: #1d1d1f !important;
}

.product-card .product-shipping-wrap svg,
.product-card .product-shipping-note svg,
.product-card .product-free-shipping svg,
.product-card .product-shipping-wrap img {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  max-width: 14px !important;
  object-fit: contain;
  flex-shrink: 0;
}

.product-card .product-shipping-wrap i,
.product-card .product-shipping-note i,
.product-card .product-free-shipping i {
  font-size: 12px !important;
  color: var(--primary-orange, #ff6700) !important;
  flex-shrink: 0;
}

/* Pager / Pagination */
.pager,
.urun-pager,
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 30px 0;
}

.pager a,
.pagination a,
.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: #1d1d1f;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pager a:hover,
.pagination a:hover,
.pagination .page-link:hover {
  background: #fff7ed;
  border-color: #fed7aa;
  color: var(--primary-orange, #ff6700);
}

.pager .active,
.pagination .active .page-link {
  background: var(--primary-orange, #ff6700) !important;
  border-color: var(--primary-orange, #ff6700) !important;
  color: #ffffff !important;
  font-weight: 800;
}

/* ==========================================================================
   17. ÜRÜN DETAY SAYFASI (APPLE HIG PRODUCT DETAIL REDESIGN)
   ========================================================================== */

/* Main Product Card Container */
.product-detail-page {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
}

/* --- Left Column: Product Gallery --- */
.product-detail-page .left {
  padding: 0;
  display: flex !important;
  flex-direction: row-reverse !important;
  gap: 16px !important;
  align-items: flex-start !important;
  position: relative !important;
}

.product-detail-page #pgallery,
.product-detail-page .slider-ust {
  flex: 1 1 auto !important;
  width: calc(100% - 96px) !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  overflow: hidden !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.product-detail-page #pgallery .slider-container {
  display: flex !important;
  flex-direction: row !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.product-detail-page #pgallery .slider-container::-webkit-scrollbar {
  display: none !important;
}

.product-detail-page #pgallery .slider-container > li {
  flex: 0 0 100% !important;
  width: 100% !important;
  scroll-snap-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

.product-detail-page #pgallery .atix-gallery-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  text-decoration: none !important;
  cursor: zoom-in !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
}

.product-detail-page #pgallery .slider-container img {
  max-width: 100% !important;
  max-height: 100% !important;
  /* width: 100% !important; */
  height: 100% !important;
  margin: 0 auto !important;
  display: block !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-detail-page #pgallery:hover .slider-container img {
  transform: scale(1.03) !important;
}

/* Nav Arrows Positioning & Clean atix-nav-btn Styling */
.product-detail-page #pgallery .slider-nav,
.swiffy-slider .slider-nav {
  background-image: none !important;
  background-repeat: no-repeat !important;
}

.product-detail-page #pgallery .slider-nav::before,
.product-detail-page #pgallery .slider-nav::after,
.swiffy-slider .slider-nav::before,
.swiffy-slider .slider-nav::after {
  display: none !important;
  content: none !important;
}

.product-detail-page #pgallery .slider-nav {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  left: 12px !important;
  right: auto !important;
  z-index: 10 !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: 0 !important;
  margin: 0 !important;
}

.product-detail-page #pgallery .slider-nav.slider-nav-next {
  left: auto !important;
  right: 12px !important;
}

.product-detail-page #pgallery .slider-nav:hover {
  background: var(--primary-orange, #ff6700) !important;
  border-color: var(--primary-orange, #ff6700) !important;
  color: #ffffff !important;
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 4px 14px rgba(255, 103, 0, 0.3) !important;
}

.product-detail-page #pgallery .slider-nav i {
  font-size: 14px !important;
  color: inherit !important;
  line-height: 1 !important;
  display: inline-block !important;
  margin: 0 !important;
}

/* THUMBNAILS VERTICAL SCROLLER (Dikey Alt Alta) */
.product-detail-page .atix-pdetail-thumbs,
.product-detail-page #pgallerythumbs-wrap {
  flex: 0 0 80px !important;
  width: 80px !important;
  min-width: 80px !important;
  max-width: 80px !important;
  height: auto !important;
  max-height: 520px !important;
  overflow: hidden !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
}

.product-detail-page #pgallerythumbs {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  gap: 10px !important;
  width: 100% !important;
  height: 100% !important;
  max-height: 520px !important;
  padding: 2px !important;
  margin: 0 !important;
  list-style: none !important;
  scrollbar-width: thin !important;
  scroll-behavior: smooth !important;
}

.product-detail-page #pgallerythumbs::-webkit-scrollbar {
  width: 4px;
  height: auto;
}

.product-detail-page #pgallerythumbs::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.product-detail-page #pgallerythumbs > li {
  flex: 0 0 76px !important;
  width: 76px !important;
  height: 76px !important;
  min-width: 76px !important;
  max-width: 76px !important;
  min-height: 76px !important;
  max-height: 76px !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-detail-page #pgallerythumbs > li:hover,
.product-detail-page #pgallerythumbs > li.active {
  border-color: var(--primary-orange, #ff6700) !important;
  box-shadow: 0 0 0 2px rgba(255, 103, 0, 0.2) !important;
  background: #ffffff !important;
  transform: scale(1.04) !important;
}

.product-detail-page #pgallerythumbs img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: 100% !important;
  height: 100% !important;

}

.product-detail-page .atix-thumb-nav {
  display: none !important;
}

/* --- Middle Column: Product Info & Actions --- */
.product-detail-page .orta {
  padding: 0 8px;
  border: none !important;
}

.product-detail-page .product-name {
  font-size: 22px;
  font-weight: 800;
  color: #1d1d1f;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  margin-top: 6px;
}

.product-detail-page .urun-marka a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-orange, #ff6700);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
}

.product-detail-page .urun-marka a:hover {
  background: var(--primary-orange, #ff6700);
  color: #ffffff;
}

.product-detail-page .stok-kodu {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 0;
}

/* Price Box */
.product-detail-page .section-two {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 16px 20px;
  margin: 16px 0;
}

.product-detail-page .product-discount {
  font-size: 14px;
  font-weight: 500;
  color: #86868b;
  text-decoration: line-through;
}

.product-detail-page .indirim-orani {
  font-size: 11.5px;
  font-weight: 800;
  background: #fee2e2;
  color: #dc2626;
  padding: 2px 7px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
}

.product-detail-page .price-product {
  font-size: 30px;
  font-weight: 900;
  color: #1d1d1f;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 4px 0 2px 0;
}

.product-detail-page .indirim-text {
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Variants & Badges */
.product-detail-page .product-variant select,
.product-detail-page .product-variant input[type="text"] {
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1d1d1f;
  background-color: #f8fafc;
  transition: all 0.2s;
  width: 100%;
}

.product-detail-page .product-variant select:focus {
  border-color: var(--primary-orange, #ff6700);
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 103, 0, 0.15);
}

.product-detail-page .product-variant img {
  max-width: 130px;
  border-radius: 8px;
  margin: 4px 0 10px 0;
}

/* Quantity & Add to Cart Action Row */
.product-detail-page .product-action-row,
.product-detail-page .section-three > .d-flex:has(.sepete-ekle-button) {
  margin-bottom: 22px !important;
}

.product-detail-page .adet-input .adet-button {
  background: #f1f5f9;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 4px 8px;
  height: 48px;
  min-width: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-detail-page .adet-sayi,
.product-detail-page .urunSepeteEkleAdet {
  width: 36px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  border: none;
  background: transparent;
}

.product-detail-page .adet-arrow button {
  width: 22px;
  height: 20px;
  border-radius: 6px;
  border: none;
  background: #ffffff;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.product-detail-page .adet-arrow button:hover {
  background: var(--primary-orange, #ff6700);
  color: #ffffff;
}

.product-detail-page .sepete-ekle-button {
  height: 48px;
  padding: 0 16px;
  background: linear-gradient(180deg, #ff7417 0%, #ff6700 100%) !important;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 12px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap !important;
  box-shadow: 0 4px 14px rgba(255, 103, 0, 0.32);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.product-detail-page .sepete-ekle-button svg,
.product-detail-page .sepete-ekle-button i {
  font-size: 15px;
}

.product-detail-page .sepete-ekle-button:hover {
  background: #ea580c !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 103, 0, 0.42);
}

.product-detail-page .sepete-ekle-button:active {
  transform: scale(0.98);
}

.product-detail-page .hemen-al-button {
  height: 48px;
  padding: 0 16px;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%) !important;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 12px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap !important;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.32);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.product-detail-page .hemen-al-button svg,
.product-detail-page .hemen-al-button i {
  font-size: 15px;
}

.product-detail-page .hemen-al-button:hover {
  background: #15803d !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.42);
}

.product-detail-page .hemen-al-button:active {
  transform: scale(0.98);
}

/* Contact Box (Phone & WhatsApp Side-by-Side Compact) */
.atix-detail-contact-box {
  display: flex !important;
  flex-direction: row !important;
  gap: 8px !important;
  margin-top: 14px !important;
  width: 100% !important;
}

.atix-detail-tel-btn,
.atix-detail-wa-btn {
  flex: 1 1 50% !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 9px 12px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.atix-detail-tel-btn {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #1d1d1f !important;
}

.atix-detail-tel-btn i {
  font-size: 16px !important;
  color: var(--primary-orange, #ff6700) !important;
}

.atix-detail-tel-btn:hover {
  background: #fff7ed !important;
  border-color: #fed7aa !important;
  color: var(--primary-orange, #ff6700) !important;
}

.atix-detail-wa-btn {
  background: #ecfdf5 !important;
  border: 1px solid #a7f3d0 !important;
  color: #047857 !important;
}

.atix-detail-wa-btn i {
  font-size: 18px !important;
  color: #10b981 !important;
}

.atix-detail-wa-btn:hover {
  background: #d1fae5 !important;
  border-color: #6ee7b7 !important;
  color: #047857 !important;
}

.atix-detail-contact-box .btn-sub {
  font-size: 10px !important;
  font-weight: 600 !important;
  color: #64748b !important;
  line-height: 1.1 !important;
}

.atix-detail-contact-box .btn-main {
  font-size: 12.5px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

/* Estimated Delivery Tag */
.product-detail-page .tahmini-teslimat:empty {
  display: none !important;
}

.product-detail-page .tahmini-teslimat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 9px 14px;
  margin-top: 12px;
  width: 100%;
}

/* --- Right Column: Trust, Share & Actions Sidebar --- */
.product-detail-page .right {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 18px !important;
  padding: 16px 12px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.product-detail-page .right .rating {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  color: #1d1d1f !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.product-detail-page .right .title {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: #86868b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.product-detail-page .icons-social-media.detail {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.product-detail-page .icons-social-media.detail:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.product-detail-page .icons-social-media.detail:has(.fa-facebook-f):hover {
  background: #1877f2;
  border-color: #1877f2;
}

.product-detail-page .icons-social-media.detail:has(.fa-x-twitter):hover {
  background: #000000;
  border-color: #000000;
}

.product-detail-page .icons-social-media.detail:has(.fa-whatsapp):hover {
  background: #25d366;
  border-color: #25d366;
}

.product-detail-page .fiyat-alarm-text {
  font-size: 11.5px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
}

.product-detail-page .fiyat-alarm-text:hover {
  color: var(--primary-orange, #ff6700) !important;
}

.product-detail-page .section-five {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 10px 10px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  font-size: 11px !important;
}

/* ==========================================================================
   18. ÜRÜN DETAY SEKMELERİ (APPLE PRODUCT TABS & DESCRIPTION)
   ========================================================================== */

.kacirilmayacak {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
  margin-top: 28px !important;
}

.urundetay-tabs {
  background: #f5f5f7 !important;
  border-bottom: 1px solid #e2e8f0 !important;
  padding: 8px 12px !important;
  display: flex !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
}

.urundetay-tabs .nav-item {
  margin: 0 !important;
  border: none !important;
}

.urundetay-tabs .tabs-items {
  border-radius: 12px !important;
  padding: 10px 20px !important;
  border: none !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #86868b !important;
  background: transparent !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
}

.urundetay-tabs .tabs-items:hover {
  color: #1d1d1f !important;
  background: rgba(255, 255, 255, 0.6) !important;
}

.urundetay-tabs .tabs-items.active {
  background: #ffffff !important;
  color: var(--primary-orange, #ff6700) !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

/* Product Description Content Area */
.tab-content.urundetay {
  padding: 28px !important;
  font-size: 14.5px !important;
  line-height: 1.8 !important;
  color: #334155 !important;
}

.tab-content.urundetay .product-disc {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* Ensure ALL Description images stay responsive and gorgeous */
.tab-content.urundetay .product-disc img,
.tab-content.urundetay img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
  margin: 20px auto !important;
  display: block !important;
}

/* Description Tables */
.tab-content.urundetay table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  margin: 20px 0 !important;
  font-size: 13.5px !important;
}

.tab-content.urundetay table th {
  background: #f8fafc !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  padding: 11px 16px !important;
  border-bottom: 1px solid #e2e8f0 !important;
  text-align: left !important;
}

.tab-content.urundetay table td {
  padding: 11px 16px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  color: #475569 !important;
}

.tab-content.urundetay table tr:last-child td {
  border-bottom: none !important;
}

.tab-content.urundetay .etikets {
  margin-top: 24px !important;
  padding-top: 16px !important;
  border-top: 1px solid #f1f5f9 !important;
}

.tab-content.urundetay .etikets h6 {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #86868b !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

/* ==========================================================================
   19. BENZER ÜRÜNLER (FULL-WIDTH SIMILAR PRODUCTS SECTION)
   ========================================================================== */

.atix-benzer-urunler-fullwidth {
  width: 100% !important;
  background: #f8fafc !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  padding: 48px 0 !important;
  margin-top: 40px !important;
  margin-bottom: 0 !important;
}

.atix-benzer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.atix-benzer-title {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #1d1d1f !important;
  letter-spacing: -0.02em !important;
}

.atix-carousel-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.atix-nav-btn,
.kacirilmayacak-button.customPrevBtn2,
.kacirilmayacak-button.customNextBtn2 {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.atix-nav-btn:hover,
.kacirilmayacak-button.customPrevBtn2:hover,
.kacirilmayacak-button.customNextBtn2:hover {
  background: var(--primary-orange, #ff6700) !important;
  border-color: var(--primary-orange, #ff6700) !important;
  color: #ffffff !important;
  transform: scale(1.08) !important;
  box-shadow: 0 4px 12px rgba(255, 103, 0, 0.3) !important;
}

.atix-benzer-carousel .owl-stage-outer,
.owl-carousel.owl-theme .owl-stage-outer {
  padding: 10px 4px 18px 4px !important;
  margin: -10px -4px -18px -4px !important;
}

.atix-benzer-carousel .owl-item,
#kadin-giyim .owl-item,
#kacirilmayacak-firsatlar .owl-item,
#erkek-giyim .owl-item {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.atix-benzer-carousel .product-card,
#kadin-giyim .product-card,
#kacirilmayacak-firsatlar .product-card,
#erkek-giyim .product-card {
  height: 100% !important;
  width: 100% !important;
}

.atix-benzer-carousel .owl-nav {
  display: none !important;
}

/* ==========================================================================
   20. ÜRÜN DETAY MOBİL UYUMLULUK (FULL-WIDTH MOBILE GALLERY & LAYOUT)
   ========================================================================== */

@media (max-width: 991.98px) {
  .atix-urundetay-wrapper,
  .atix-urundetay-wrapper .container,
  .atix-urundetay-wrapper .container-fluid,
  .atix-urundetay-wrapper .tableBox,
  .atix-urundetay-wrapper .table-box {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .product-detail-page {
    border-radius: 0 !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 0 16px 0 !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Full-bleed edge-to-edge mobile product gallery (GlobalBatarya Style) */
  .atix-urundetay-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .atix-urundetay-wrapper > .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    margin: 0 !important;
  }

  .atix-urundetay-wrapper .product-detail-page > .row {
    --bs-gutter-x: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .atix-urundetay-wrapper .product-detail-page > .row > .col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .product-detail-page .left {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .product-detail-page #pgallery,
  .product-detail-page .slider-ust {
    width: 100vw !important;
    max-width: 100vw !important;
    /* height: 100vw !important; */
    /* max-height: 100vw !important; */
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    background: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .product-detail-page #pgallery .slider-container {
    height: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .product-detail-page #pgallery .slider-container > li {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    flex: 0 0 100vw !important;
  }

  .product-detail-page #pgallery .slider-container img {
    max-height: 100% !important;
    max-width: 100% !important;
    /* width: 100% !important; */
    /* height: 100% !important; */
    border-radius: 0 !important;
  }

  /* Mobile Content Padding */
  .product-detail-page .orta {
    padding: 20px 16px !important;
  }

  .product-detail-page .right {
    margin: 0 16px 20px 16px !important;
    border-radius: 16px !important;
  }

  /* Full width tabs on mobile */
  .kacirilmayacak {
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    margin-top: 16px !important;
  }

  .tab-content.urundetay {
    padding: 20px 16px !important;
  }

  .product-detail-page .product-action-row {
    gap: 8px !important;
  }

  .product-detail-page .sepete-ekle-button,
  .product-detail-page .hemen-al-button {
    font-size: 13.5px !important;
    padding: 0 14px !important;
    height: 48px !important;
  }
}

/* ==========================================================================
   21. İÇ SAYFALAR & HESABIM KART STİLLERİ (INNER PAGES & ACCOUNT LAYOUT)
   ========================================================================== */

.atix-inner-page-card {
  background: #ffffff !important;
  border-radius: 20px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04) !important;
  min-height: 450px;
  clear: both !important;
  overflow: visible !important;
}

.atix-inner-page-card::after {
  content: "";
  display: table;
  clear: both;
}

.atix-inner-page-card h1,
.atix-inner-page-card .page-title {
  font-size: 22px;
  font-weight: 800;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

.atix-inner-page-card .form-control,
.atix-inner-page-card .form-select,
.atix-inner-page-card input[type="text"],
.atix-inner-page-card input[type="password"],
.atix-inner-page-card input[type="email"],
.atix-inner-page-card select,
.atix-inner-page-card textarea {
  border-radius: 12px !important;
  border: 1px solid #d2d2d7 !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
}

.atix-inner-page-card .form-control:focus,
.atix-inner-page-card .form-select:focus,
.atix-inner-page-card input:focus,
.atix-inner-page-card select:focus,
.atix-inner-page-card textarea:focus {
  border-color: var(--primary-orange, #ff6700) !important;
  box-shadow: 0 0 0 4px rgba(255, 103, 0, 0.12) !important;
  outline: none !important;
}

.atix-inner-page-card .btn-primary,
.atix-inner-page-card input[type="submit"],
.atix-inner-page-card button[type="submit"] {
  background: var(--primary-orange, #ff6700) !important;
  border-color: var(--primary-orange, #ff6700) !important;
  border-radius: 12px !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  box-shadow: 0 4px 12px rgba(255, 103, 0, 0.25) !important;
  transition: all 0.2s ease !important;
}

.atix-inner-page-card .btn-primary:hover,
.atix-inner-page-card input[type="submit"]:hover,
.atix-inner-page-card button[type="submit"]:hover {
  background: #ea580c !important;
  border-color: #ea580c !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(255, 103, 0, 0.35) !important;
}

/* ==========================================================================
   22. CHECKOUT / SATIN AL / SİPARİŞ FORMLARI DÜZENİ (GRID & CLEARING FIX)
   ========================================================================== */

.shopphp-payment-body,
#shopphp-payment-body-step1,
#shopphp-payment-body-step2,
#shopphp-payment-body-step3,
.satinal-adres,
.basket-wrap,
.sepet-table,
.adres-secim,
.siparis-notu {
  /* clear: both; */
}

.shopphp-payment-body::after,
.satinal-adres::after,
.basket-wrap::after,
.siparis-notu::after {
  content: "";
  display: table;
  clear: both;
}

.atix-footer-container {
  clear: both !important;
  width: 100% !important;
  display: block !important;
  margin-top: 40px !important;
  position: relative !important;
}

.atix-trust-card,
.atix-footer-card {
  clear: both !important;
  width: 100% !important;
}




#search-container .pw-product-suggestion {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 25%;
  padding: 10px 10px;
}

#search-container .pw-product-suggestion-image {
  max-width: 100%;
  padding-bottom: 0;
  width: 100%;
  height: 100%;
}