@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #DE2B59;
  --primary-hover: #C6214B;
  --primary-light: #FFF0F4;
  --primary-gradient: linear-gradient(135deg, #FF7B9D 0%, #DE2B59 100%);
  --banner-gradient: linear-gradient(135deg, #FFE8F0 0%, #FFD3E1 100%);
  
  --bg-app: #FAF7F8;
  --bg-card: #FFFFFF;
  --bg-chip: #FFFFFF;
  
  --text-main: #1C191A;
  --text-muted: #8A8588;
  --text-secondary: #5E585B;
  
  --border-light: #F0E6E9;
  --border-focus: #DE2B59;
  
  --success: #10B981;
  --success-bg: #ECFDF5;
  
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.06);
  --shadow-float: 0 10px 30px rgba(222, 43, 89, 0.15);
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-app);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.5;
  padding-bottom: 74px; /* Default for mobile bottom nav */
}

/* Core Utility Classes */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.text-center {
  text-align: center !important;
}

/* Full Width App Container */
.app-container {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-app);
  display: flex;
  flex-direction: column;
}

/* Responsive Grid / Content Wrapper */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ==================== TOP RUNNING CAMPAIGN MARQUEE BAR ==================== */
.top-marquee-bar {
  background: #A81438;
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 6px 0;
  overflow: hidden;
  position: relative;
  z-index: 101;
  width: 100%;
  user-select: none;
}

.top-marquee-bar .marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marqueeScroll 20s linear infinite;
}

.top-marquee-bar:hover .marquee-track {
  animation-play-state: paused;
}

.top-marquee-bar .marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.top-marquee-bar .marquee-group span {
  display: inline-block;
  padding: 0 16px;
  white-space: nowrap;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==================== TOP NOTIFICATION BADGE ==================== */
.top-notification-badge {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) translateY(-25px);
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-notification-badge.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.top-notification-badge.badge-campaign {
  background: #FFF0F4;
  border: 1px solid #FECDD3;
  color: #BE123C;
  box-shadow: 0 4px 16px rgba(222, 43, 89, 0.2);
}

/* ==================== HEADER ==================== */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  text-decoration: none;
}

.icon-btn:hover, .icon-btn:active {
  background-color: var(--primary-light);
  color: var(--primary);
}

.brand-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

.brand-title span {
  color: var(--text-main);
  font-weight: 600;
}

/* Desktop Navigation Menu */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
}

.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--primary);
}

.desktop-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
}

/* Header Center Search on Desktop */
.header-search-desktop {
  display: none;
  flex: 1;
  max-width: 420px;
  margin: 0 16px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}

.desktop-cart-btn {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  border: 1px solid rgba(222, 43, 89, 0.15);
  transition: all 0.2s;
}

.desktop-cart-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
}

/* ==================== SEARCH BAR (MOBILE) ==================== */
.search-wrapper-mobile {
  padding: 12px 0 6px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-box svg {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 46px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0 16px 0 44px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.search-input:focus {
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(222, 43, 89, 0.12);
}

.search-input::placeholder {
  color: var(--text-muted);
}

/* ==================== HERO CAMPAIGN BANNER ==================== */
.hero-banner-wrap {
  padding: 12px 0 8px;
}

.hero-image-banner-link {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-image-banner-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.hero-image-banner {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 560;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.hero-banner {
  background: var(--banner-gradient);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 175px;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.hero-sub {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 14px rgba(222, 43, 89, 0.35);
  transition: all 0.2s;
}

.hero-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.hero-images {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: -10px;
}

.hero-bottle {
  width: 62px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.12));
  transition: transform 0.3s;
}

.hero-bottle:nth-child(1) {
  transform: rotate(-8deg) scale(0.95);
  margin-right: -18px;
}

.hero-bottle:nth-child(2) {
  transform: scale(1.05);
  z-index: 2;
}

.hero-bottle:nth-child(3) {
  transform: rotate(8deg) scale(0.95);
  margin-left: -18px;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: #E5D5DA;
  transition: all 0.2s ease;
}

.dot.active {
  width: 20px;
  background: var(--primary);
}

/* ==================== KOKU AILELERI (CHIPS) ==================== */
.section-wrap {
  padding: 16px 0 10px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.4px;
}

.section-more {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.section-more:hover {
  color: var(--primary);
}

.chips-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.chips-scroll::-webkit-scrollbar {
  display: none;
}

.chip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.chip-item:hover, .chip-item.active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(222, 43, 89, 0.12);
}

.chip-emoji {
  font-size: 16px;
}

/* ==================== PRODUCTS GRID ==================== */
.products-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-bottom: 32px;
}

.product-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(222, 43, 89, 0.2);
}

.fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.fav-btn.active {
  color: var(--primary);
  background: var(--primary-light);
  border-color: var(--primary);
}

.fav-btn svg {
  width: 17px;
  height: 17px;
}

/* In-Cart Status Badge on Product Card (Symmetrical to Favorite Button) */
.cart-check-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: #ECFDF5;
  color: #10B981;
  border: 1.5px solid #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.4);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease, visibility 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.cart-check-badge.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.cart-check-badge:hover {
  background: #10B981;
  color: #FFFFFF;
  border-color: #10B981;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.cart-check-badge svg {
  width: 17px;
  height: 17px;
}

.product-img-wrap {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #FCFAFB;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  text-decoration: none;
}

.product-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
  transition: color 0.2s;
}

.product-name:hover {
  color: var(--primary);
}

.product-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
}

.add-cart-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  border: 1.5px solid var(--primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(222, 43, 89, 0.15);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.add-cart-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: scale(1.08);
}

.add-cart-btn:active {
  transform: scale(0.9);
}

.add-cart-btn svg {
  width: 15px;
  height: 15px;
}

/* Plus icon is ALWAYS visible so customers can add more quantity freely */
.add-cart-btn .icon-plus {
  display: block !important;
}

.add-cart-btn .icon-check {
  display: none !important;
}

.add-cart-btn.in-cart {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary-light);
}

.add-cart-btn.in-cart:hover {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: scale(1.08);
}

/* ==================== FOOTER (RESPONSIVE) ==================== */
.desktop-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
  padding: 48px 0 24px;
  width: 100%;
  overflow-x: hidden;
}

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

.footer-col-brand .brand-title {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-col-brand p {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

/* Tablet Responsive Breakpoint */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 32px;
  }
}

/* Mobile Responsive Breakpoint */
@media (max-width: 640px) {
  .desktop-footer {
    padding: 32px 0 calc(90px + env(safe-area-inset-bottom, 16px));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 16px;
  }
}

/* ==================== FIXED BOTTOM NAVIGATION (MOBILE ONLY) ==================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: center;
}

.bottom-nav-inner {
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 64px;
  padding: 0 10px;
}

.nav-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.nav-tab svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s;
}

.nav-tab.active {
  color: var(--primary);
}

/* ==================== 3-STAGE STICKY BOTTOM CART BAR ==================== */
.sticky-bottom-cart-bar {
  position: fixed;
  bottom: 64px; /* On mobile: sits right above .bottom-nav */
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.06);
  z-index: 99;
  display: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-bottom-cart-bar.is-visible {
  display: block;
}

.sticky-cart-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.cart-stage-content {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 12px;
}

.cart-stage-content.active {
  display: flex;
}

/* Stage 1 */
.cart-stage-content.stage-1 .stage-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-stage-content.stage-1 .stage-icon {
  font-size: 20px;
  line-height: 1;
}

.cart-stage-content.stage-1 .stage-title {
  font-size: 13.5px;
  color: var(--text-main);
  font-weight: 600;
}

.cart-stage-content.stage-1 .stage-title strong {
  font-weight: 800;
}

/* Stage 2 */
.cart-stage-content.stage-2 .stage-left {
  display: flex;
  flex-direction: column;
}

.cart-stage-content.stage-2 .stage-headline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.cart-stage-content.stage-2 .stage-sub {
  font-size: 11.5px;
  color: var(--primary);
  font-weight: 700;
  margin-top: 2px;
}

.stage-progress-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  width: 150px;
}

.stage-progress-track {
  flex: 1;
  height: 4px;
  background: #F0E6E9;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.stage-progress-bar {
  height: 100%;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.stage-progress-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
}

.sticky-gift-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid #FECDD3;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sticky-gift-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
}

/* Stage 3 */
.cart-stage-content.stage-3 .stage-left {
  display: flex;
  flex-direction: column;
}

.cart-stage-content.stage-3 .stage-headline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 800;
  color: #047857;
  line-height: 1.2;
}

.badge-free-sticky {
  background: #DCFCE7;
  color: #15803D;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
  border: 1px solid #86EFAC;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.2px;
}

.cart-stage-content.stage-3 .stage-sub {
  font-size: 13px;
  color: var(--text-main);
  font-weight: 600;
  margin-top: 2px;
}

.cart-stage-content.stage-3 .stage-sub strong {
  font-weight: 800;
  color: var(--text-main);
}

/* Common Sticky Cart Buttons */
.sticky-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.4px;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(222, 43, 89, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.sticky-cart-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* Desktop Responsive Viewport for Sticky Cart Bar */
@media (min-width: 769px) {
  .sticky-bottom-cart-bar {
    bottom: 24px;
    right: 24px;
    left: auto;
    width: 390px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  .cart-stage-content {
    padding: 12px 18px;
  }
}

.nav-tab.active svg {
  transform: scale(1.08);
}

/* ==================== TOAST NOTIFICATION ==================== */
.toast-notice {
  position: fixed;
  top: 76px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(28, 25, 26, 0.95);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-float);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notice.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ================================================================
   RESPONSIVE BREAKPOINTS (TABLET & DESKTOP)
   ================================================================ */

/* Tablet (min-width: 640px) */
@media (min-width: 640px) {
  .products-grid, .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .product-img-wrap {
    height: 190px;
  }
}

/* Desktop & Laptop (min-width: 768px) */
@media (min-width: 768px) {
  body {
    padding-bottom: 0 !important; /* Hide padding since bottom nav is gone */
  }

  .header-inner {
    height: 70px;
  }

  .icon-btn.mobile-only {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  .header-search-desktop {
    display: block;
  }

  .desktop-cart-btn {
    display: inline-flex;
  }

  .search-wrapper-mobile {
    display: none; /* Merged into desktop header */
  }

  .hero-banner {
    padding: 36px 40px;
    min-height: 240px;
  }

  .hero-tag {
    font-size: 42px;
  }

  .hero-sub {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .hero-btn {
    font-size: 14px;
    padding: 12px 28px;
  }

  .hero-bottle {
    width: 90px;
    height: 190px;
  }

  .hero-bottle:nth-child(1) {
    margin-right: -24px;
  }

  .hero-bottle:nth-child(3) {
    margin-left: -24px;
  }

  .chips-scroll {
    overflow-x: visible;
    flex-wrap: wrap;
  }

  .bottom-nav {
    display: none !important; /* Completely hidden on desktop */
  }
}

/* Wide Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
  .products-grid, .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .product-img-wrap {
    height: 220px;
  }
  
  .hero-banner {
    min-height: 280px;
    padding: 44px 50px;
  }
  
  .hero-tag {
    font-size: 48px;
  }
  
  .hero-bottle {
    width: 110px;
    height: 230px;
  }
}


/* ==================== TRUST & SERVICE BAR (RESPONSIVE) ==================== */
.trust-bar-mobile {
  display: none;
}

@media (max-width: 768px) {
  .trust-bar-mobile {
    display: block;
    margin: 8px 0 16px;
  }
  
  .trust-bar.desktop-only {
    display: none !important;
  }
  
  .trust-single-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FFF5F7;
    border: 1px solid #FFE4EA;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 2px 8px rgba(222, 43, 89, 0.04);
  }

  .trust-single-icon {
    font-size: 16px;
    line-height: 1;
  }
}

@media (min-width: 769px) {
  .trust-bar-mobile {
    display: none !important;
  }
  .trust-bar.desktop-only {
    display: grid !important;
  }
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 10px 0 24px;
}

@media (min-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 16px 0 32px;
  }
}

.trust-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.trust-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.trust-info p {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==================== PROMO DUAL BANNERS ==================== */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 16px 0 28px;
}

@media (min-width: 640px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* ==================== PROMO IMAGE BANNERS ==================== */
.promo-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 28px;
}

@media (max-width: 640px) {
  .promo-images-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 16px 0 20px;
  }
}

.promo-image-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-image-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.promo-image-img {
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 360;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.promo-card {
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 140px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.promo-card.card-pink {
  background: linear-gradient(135deg, #FFF0F4 0%, #FFDFE8 100%);
  border: 1px solid #FFD6E2;
}

.promo-card.card-purple {
  background: linear-gradient(135deg, #F8F0FF 0%, #EBDCFB 100%);
  border: 1px solid #E2CCF8;
}

.promo-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.card-pink .promo-badge {
  background: rgba(222, 43, 89, 0.12);
  color: var(--primary);
}

.card-purple .promo-badge {
  background: rgba(139, 92, 246, 0.15);
  color: #7C3AED;
}

.promo-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 12px;
}

.promo-link-text {
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-pink .promo-link-text {
  color: var(--primary);
}

.card-purple .promo-link-text {
  color: #7C3AED;
}

.promo-img {
  width: 75px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.1));
  margin-right: -4px;
  transition: transform 0.3s;
}

.promo-card:hover .promo-img {
  transform: scale(1.08) rotate(3deg);
}

/* ==================== FULL WIDTH WIDE BANNER ==================== */
.wide-banner-wrap {
  margin: 10px 0 32px;
}

.wide-banner {
  background: linear-gradient(135deg, #1A1718 0%, #3D232C 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .wide-banner {
    padding: 38px 48px;
  }
}

.wide-banner-content {
  max-width: 480px;
  z-index: 2;
}

.wide-banner-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #FFB3C7;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wide-banner-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .wide-banner-title {
    font-size: 32px;
  }
}

.wide-banner-desc {
  font-size: 13.5px;
  color: #D1C5C9;
  margin-bottom: 18px;
}

.wide-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(222, 43, 89, 0.4);
  transition: transform 0.2s, background-color 0.2s;
}

.wide-banner-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.wide-banner-img {
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .wide-banner-img {
    height: 200px;
  }
}

/* ==================== REVIEWS / SOCIAL PROOF ==================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 10px;
}

.review-author {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-verified {
  color: var(--success);
  font-size: 11px;
  font-weight: 600;
}


/* ==================== CART PAGE & UPSELL MODAL ==================== */
.cart-page-wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 16px 0 40px;
}

@media (min-width: 768px) {
  .cart-page-wrap {
    max-width: 780px;
    padding: 32px 0 60px;
  }
}

.cart-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-top-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.4px;
}

/* Campaign Banner */
.campaign-applied-box {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.campaign-box-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.campaign-check-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: #10B981;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.campaign-box-title {
  font-size: 14px;
  font-weight: 800;
  color: #065F46;
  line-height: 1.2;
}

.campaign-box-sub {
  font-size: 12px;
  font-weight: 600;
  color: #047857;
  margin-top: 2px;
}

.campaign-gift-icon {
  font-size: 30px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}

/* Cart Items List */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.cart-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.cart-item-thumb {
  width: 68px;
  height: 84px;
  border-radius: var(--radius-sm);
  background: #FAF7F8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}

.cart-item-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 3px;
  text-decoration: none;
}

.cart-item-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
}

.price-free {
  color: var(--success);
  font-weight: 800;
  font-size: 15px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trash-btn {
  background: none;
  border: none;
  color: #9CA3AF;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.trash-btn:hover {
  color: #EF4444;
}

.qty-counter {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  background: #FFFFFF;
  padding: 2px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  border: none;
  background: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s;
}

.qty-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.qty-val {
  min-width: 24px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
}

/* Shipping Progress Bar */
.shipping-progress-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 20px;
}

.shipping-progress-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.progress-track {
  width: 100%;
  height: 6px;
  background: #F0E6E9;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

/* Price Breakdown Summary */
.cart-summary-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.summary-row.bold-row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0;
}

.discount-text {
  color: var(--primary);
  font-weight: 700;
}

.free-text {
  color: var(--success);
  font-weight: 700;
}

/* Checkout CTA Button */
.checkout-btn {
  width: 100%;
  height: 52px;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(222, 43, 89, 0.35);
  transition: all 0.2s ease;
  text-decoration: none;
}

.checkout-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(222, 43, 89, 0.4);
}

.checkout-btn:active {
  transform: scale(0.98);
}

/* ==================== UPSELL MODAL (BOTTOM SHEET) ==================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.upsell-sheet {
  width: 100%;
  max-width: 500px;
  background: #FFFFFF;
  border-radius: 24px 24px 0 0;
  padding: 28px 24px 34px;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  text-align: center;
}

@media (min-width: 768px) {
  .modal-backdrop {
    align-items: center;
  }
  .upsell-sheet {
    border-radius: 24px;
    padding: 36px 32px;
  }
}

.modal-backdrop.active .upsell-sheet {
  transform: translateY(0);
}

.sheet-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
}

.sheet-gift-img {
  font-size: 42px;
  margin-bottom: 12px;
  display: inline-block;
}

.sheet-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 8px;
}

.sheet-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Comparison Box */
.sheet-comparison {
  background: #FFFDFD;
  border: 1px solid #FFE3EB;
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  text-align: left;
  margin-bottom: 16px;
}

.comp-col h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.comp-col p {
  font-size: 12.5px;
  color: var(--text-main);
  line-height: 1.4;
}

.comp-col.adv h5 {
  color: var(--primary);
}

.comp-col.adv p {
  font-weight: 600;
  color: var(--primary);
}

.comp-arrow {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.sheet-badge {
  display: inline-block;
  background: var(--primary-light);
  border: 1px dashed var(--primary);
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.sheet-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sheet-btn-primary {
  width: 100%;
  height: 48px;
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(222, 43, 89, 0.3);
}

.sheet-btn-secondary {
  width: 100%;
  height: 44px;
  background: none;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==================== THEME1 SEPETİM & CHECKOUT DETAYLI STİLLERİ ==================== */
.cart-page-wrapper, .checkout-page-wrapper {
  background: #FAF8F9;
  min-height: calc(100vh - 120px);
  padding-bottom: 80px;
  overflow-x: hidden;
  max-width: 100vw;
  box-sizing: border-box;
}

.cart-header-nav, .checkout-header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cart-header-nav .back-link, .checkout-header-nav .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.cart-header-nav .back-link:hover, .checkout-header-nav .back-link:hover {
  color: var(--primary);
}

.cart-main-title, .checkout-main-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
  margin: 0;
}

.cart-count-badge {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

/* Kampanya Bildirimi Alert */
.cart-campaign-alert {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.cart-campaign-alert.success {
  background: #F2FBF6;
  border-color: #B9ECCE;
  color: #1B5E20;
}

.cart-campaign-alert.info {
  background: #FFF5F7;
  border-color: #F8B4C4;
  color: #9C1B42;
}

.alert-icon-wrap {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.alert-content {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  min-width: 0;
}

.alert-cta-btn {
  background: var(--primary);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.alert-cta-btn:hover {
  opacity: 0.9;
}

/* Kargo İlerleme Çubuğu Kartı */
.cart-shipping-progress-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.shipping-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  margin-bottom: 10px;
}

.shipping-rate {
  font-weight: 800;
  font-size: 12.5px;
  color: var(--primary);
}

.progress-track {
  width: 100%;
  height: 8px;
  background: #F0E6E9;
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, #388E3C 100%);
  border-radius: 99px;
  transition: width 0.4s ease;
}

/* Sepet Grid & Kart Düzeni */
.cart-layout-grid, .checkout-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 28px;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .cart-layout-grid, .checkout-layout-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
  }
}

.cart-items-column {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.cart-summary-column {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item-row {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-item-row:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.item-img-box {
  width: 85px;
  height: 95px;
  flex-shrink: 0;
  background: #FCFAFB;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
}

.item-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.item-info-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.item-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.item-brand-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
}

.btn-delete-item {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  transition: color 0.2s;
}

.btn-delete-item:hover {
  color: var(--primary);
}

.item-title {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.item-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s;
}

.item-title a:hover {
  color: var(--primary);
}

.item-spec {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.item-price-and-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 640px) {
  .cart-item-row {
    padding: 12px 10px;
    gap: 12px;
    border-radius: var(--radius-sm);
  }

  .item-img-box {
    width: 68px;
    height: 78px;
    flex-shrink: 0;
  }

  .item-meta-top {
    margin-bottom: 2px;
  }

  .item-title {
    font-size: 13px;
    line-height: 1.25;
    margin-bottom: 2px;
  }

  .item-spec {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .item-price-and-stepper {
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .item-pricing .price-val {
    font-size: 14.5px;
    font-weight: 800;
  }

  .item-pricing .unit-price {
    display: none;
  }

  .stepper-wrap {
    padding: 1px;
  }

  .btn-step {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .input-step-qty {
    width: 24px;
    font-size: 12px;
  }

  .summary-card {
    padding: 16px 14px;
  }
}

.item-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-pricing .price-val {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
}

.item-pricing .unit-price {
  font-size: 12px;
  color: var(--text-muted);
}

.item-pricing .old-price {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.badge-free {
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
}

/* Miktar Kontrol Stepper */
.stepper-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  background: #FCFAFB;
  padding: 2px;
}

.btn-step {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: none;
  background: #FFFFFF;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.btn-step:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.input-step-qty {
  width: 32px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

/* Hızlı Kampanya Çipleri */
.cart-upsell-inline {
  background: #FFF9FA;
  border: 1px dashed var(--primary);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.upsell-inline-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.4;
}

.badge-accent {
  background: var(--primary);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
}

.upsell-inline-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 4px 2px 8px 2px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #f8bbd0 transparent;
}

.upsell-inline-slider::-webkit-scrollbar {
  height: 4px;
}

.upsell-inline-slider::-webkit-scrollbar-track {
  background: #F5EAEF;
  border-radius: 4px;
}

.upsell-inline-slider::-webkit-scrollbar-thumb {
  background: #f8bbd0;
  border-radius: 4px;
}

.upsell-chip-card {
  flex: 0 0 230px;
  max-width: 240px;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  box-sizing: border-box;
}

.upsell-chip-card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.upsell-chip-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.chip-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chip-price {
  font-size: 11px;
  color: var(--primary);
  font-weight: 800;
}

.btn-chip-add {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-chip-add:hover {
  background: var(--primary);
  color: #FFFFFF;
}

/* Sipariş Özeti Kartı */
.summary-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 90px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .summary-card {
    position: static;
    margin-top: 8px;
    padding: 20px 16px;
    width: 100%;
    box-sizing: border-box;
  }
}

.summary-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
}

.summary-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-secondary);
}

.summary-row .val {
  font-weight: 700;
  color: var(--text-main);
}

.summary-divider {
  height: 1px;
  background: var(--border-light);
  margin: 14px 0;
}

.summary-row.total-row {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}

.val-grand {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
}

/* Kupon Accordion */
.coupon-accordion {
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  background: #FCFAFB;
}

.coupon-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  user-select: none;
}

.coupon-toggle-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.coupon-tag-icon {
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.coupon-toggle:hover .coupon-tag-icon {
  transform: scale(1.1);
}

.inline-truck-icon {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 4px;
  flex-shrink: 0;
}

.coupon-body {
  margin-top: 10px;
  display: none;
}

.coupon-body.active {
  display: block;
}

.coupon-input-group {
  display: flex;
  gap: 8px;
}

.coupon-input-group input {
  flex: 1;
  height: 38px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: 13px;
  outline: none;
}

.coupon-input-group input:focus {
  border-color: var(--primary);
}

.coupon-input-group button {
  background: var(--text-main);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.coupon-feedback {
  font-size: 12px;
  font-weight: 600;
}

/* Checkout Butonu */
.btn-proceed-checkout, .btn-submit-order {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 52px;
  background: linear-gradient(135deg, #DE2B59 0%, #C2185B 100%);
  border: none;
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(222, 43, 89, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-proceed-checkout:hover, .btn-submit-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(222, 43, 89, 0.45);
}

.btn-proceed-checkout:active, .btn-submit-order:active {
  transform: scale(0.98);
}

/* Güven Rozetleri */
.summary-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.trust-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-secondary);
}

/* ==================== UPSELL BOTTOM SHEET MODAL ==================== */
.upsell-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.upsell-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.upsell-modal-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 520px;
  background: #FFFFFF;
  border-radius: 28px 28px 0 0;
  padding: 24px 24px 34px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .upsell-modal-sheet {
    bottom: auto;
    top: 50%;
    transform: translateY(calc(-50% + 40px)) scale(0.95);
    border-radius: 28px;
    padding: 36px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .upsell-modal-sheet.active {
    transform: translateY(-50%) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
}

.upsell-modal-sheet.active {
  transform: translateY(0);
}

.sheet-drag-handle {
  width: 44px;
  height: 5px;
  background: #E0E0E0;
  border-radius: 99px;
  margin: 0 auto 16px;
}

@media (min-width: 768px) {
  .sheet-drag-handle {
    display: none;
  }
}

.btn-sheet-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 99px;
  border: 1px solid var(--border-light);
  background: #FCFAFB;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-sheet-close:hover {
  background: #EEEEEE;
  color: var(--text-main);
}

.upsell-badge-pill {
  display: inline-block;
  background: #FFF0F3;
  border: 1px solid #FFCCD5;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 99px;
}

.upsell-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
}

.upsell-subtitle {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 6px;
}

.upsell-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.upsell-card {
  border-radius: var(--radius-md);
  padding: 16px 12px;
  position: relative;
  text-align: center;
}

.upsell-card.card-current {
  background: #F9F9F9;
  border: 1px solid var(--border-light);
}

.upsell-card.card-advantage {
  background: #FFF7F9;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 16px rgba(222, 43, 89, 0.15);
}

.advantage-ribbon {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.card-plan-header {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.card-math-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.math-line {
  font-size: 11.5px;
  color: var(--text-muted);
}

.math-total {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
}

.math-total.highlight {
  color: var(--primary);
  font-size: 18px;
}

.card-tag {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

.upsell-diff-banner {
  background: #E8F5E9;
  border: 1px solid #C8E6C9;
  color: #2E7D32;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.upsell-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-upsell-accept {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #DE2B59 0%, #E91E63 100%);
  border: none;
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(222, 43, 89, 0.4);
  transition: all 0.2s;
}

.btn-upsell-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(222, 43, 89, 0.5);
}

.btn-upsell-reject {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  padding: 6px;
}

.btn-upsell-reject:hover {
  color: var(--text-main);
}

/* ==================== CHECKOUT SAYFASI DETAYLARI ==================== */
.ssl-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
}

.checkout-section-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.section-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 99px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-card-header h2 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 576px) {
  .form-row-2col {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.form-group .req {
  color: var(--primary);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--text-main);
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(222, 43, 89, 0.12);
}

/* Ödeme Yöntemi Seçenekleri */
.payment-methods-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-method-option {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-method-option.active {
  border-color: var(--primary);
  background: #FFFBFD;
}

.payment-method-option .option-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-method-option input[type="radio"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}

.option-label-text {
  display: flex;
  flex-direction: column;
}

.option-label-text strong {
  font-size: 14px;
  color: var(--text-main);
}

.option-label-text span {
  font-size: 12px;
  color: var(--text-muted);
}

.card-logos-row {
  display: flex;
  gap: 8px;
  margin-left: 30px;
}

.card-logo-pill {
  font-size: 11px;
  font-weight: 800;
  background: #F0F0F0;
  color: #333;
  padding: 3px 8px;
  border-radius: 4px;
}

.card-logo-pill.ssl {
  background: #E8F5E9;
  color: #2E7D32;
}

.kapida-note-badge {
  margin-left: 30px;
  font-size: 11.5px;
  color: #666;
  background: #F5F5F5;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  width: fit-content;
}

.contract-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  cursor: pointer;
}

.contract-checkbox-label input {
  accent-color: var(--primary);
  margin-top: 3px;
  width: 16px;
  height: 16px;
}

.contract-checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.checkout-mini-products {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 240px;
  overflow-y: auto;
}

.mini-product-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-img-wrap {
  width: 44px;
  height: 48px;
  background: #FCFAFB;
  border-radius: var(--radius-xs);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mini-qty-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--text-main);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-info {
  flex: 1;
  min-width: 0;
}

.mini-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.mini-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.checkout-footer-guarantee {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==================== SİPARİŞ BAŞARILI SAYFASI ==================== */
.order-success-page {
  background: #FAF8F9;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.success-card-box {
  max-width: 540px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.success-icon-badge {
  width: 80px;
  height: 80px;
  border-radius: 99px;
  background: #E8F5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.badge-success-pill {
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}

.success-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
}

.success-subtitle {
  font-size: 14.5px;
  color: var(--text-secondary);
}

.order-no-box {
  background: #F8F9FA;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 14px;
}

.order-no-box strong {
  font-size: 16px;
  color: var(--primary);
  margin-left: 6px;
}

.success-info-list .info-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Distraction-Free Checkout: Hide bottom nav on checkout page */
body:has(.checkout-page-wrapper) .bottom-nav,
.checkout-page-wrapper ~ .bottom-nav {
  display: none !important;
}

/* ==================== MOBİL DRAWER (MENÜ) ==================== */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 82%;
  max-width: 320px;
  background: #FFFFFF;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.btn-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: #F8F9FA;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.drawer-promo-pill {
  background: #FFF0F3;
  border: 1px solid #FFCCD5;
  color: var(--primary);
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 99px;
  text-align: center;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-link {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.drawer-link:hover {
  background: #FFF5F7;
  color: var(--primary);
}

.drawer-section-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin: 16px 0 8px;
}

.drawer-categories {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-cat-link {
  padding: 8px 12px;
  font-size: 13.5px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-xs);
  transition: all 0.2s;
}

.drawer-cat-link:hover {
  color: var(--primary);
  background: #FDF4F6;
  padding-left: 16px;
}

.drawer-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

/* ==================== ÜRÜN DETAY SAYFASI ==================== */
.product-detail-wrapper {
  background: #FAF8F9;
  min-height: 80vh;
}

.breadcrumb-nav .breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12.5px;
  color: var(--text-muted);
}

.breadcrumb-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-list a:hover {
  color: var(--primary);
}

.breadcrumb-list .sep {
  color: #CCC;
}

.breadcrumb-list .active {
  color: var(--text-main);
  font-weight: 700;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

@media (min-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 480px 1fr;
    padding: 36px;
    gap: 48px;
  }
}

.product-gallery-box {
  display: flex;
  flex-direction: column;
}

.main-image-viewport {
  width: 100%;
  height: 380px;
  background: #FCFAFB;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  
}

.main-image-viewport img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.main-image-viewport:hover img {
  transform: scale(1.05);
}

.fav-btn-large {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 99px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.fav-btn-large svg {
  width: 20px;
  height: 20px;
}

.badge-campaign-float {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}

.thumbnail-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-top: 8px;
}

.thumb-item {
  width: 64px;
  height: 64px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xs);
  padding: 4px;
  cursor: pointer;
  background: #FFFFFF;
}

.thumb-item.active, .thumb-item:hover {
  border-color: var(--primary);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info-box {
  display: flex;
  flex-direction: column;
}

.brand-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.brand-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.rating-stars {
  font-size: 13px;
  color: #FFA000;
}

.rating-stars span {
  color: var(--text-muted);
  font-size: 11.5px;
  margin-left: 4px;
}

.detail-product-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 12px;
}

.detail-spec-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.spec-pill {
  background: #F5F5F5;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
}

.spec-pill.stock-in {
  background: #E8F5E9;
  color: #2E7D32;
}

.spec-sku {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
}

.detail-price-card {
  background: #FFF9FA;
  border: 1px solid #FFE4EB;
  border-radius: var(--radius-md);
  padding: 16px;
}

.price-big-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.current-big-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-main);
}

.tax-info {
  font-size: 12px;
  color: var(--text-muted);
}

.campaign-benefit-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px dashed var(--primary);
  border-radius: var(--radius-xs);
  padding: 8px 12px;
}

.benefit-badge {
  background: var(--primary);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.benefit-text {
  font-size: 12.5px;
  color: var(--text-main);
}

.detail-short-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.quantity-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.detail-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  background: #FFFFFF;
  padding: 4px;
  height: 52px;
}

.btn-det-step {
  width: 40px;
  height: 40px;
  border-radius: 99px;
  border: none;
  background: #F8F9FA;
  color: var(--text-main);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-det-step:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.detail-stepper input {
  width: 48px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
}

.btn-detail-add-cart {
  flex: 1;
  height: 52px;
  background: linear-gradient(135deg, #DE2B59 0%, #C2185B 100%);
  border: none;
  border-radius: var(--radius-full);
  color: #FFFFFF;
  font-size: 15.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(222, 43, 89, 0.35);
  transition: all 0.2s;
}

.btn-detail-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(222, 43, 89, 0.45);
}

.detail-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}

.detail-trust-list .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.detail-accordion-card {
  background: #FCFAFB;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
}

.accordion-head {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.accordion-content {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== MAĞAZA & KATEGORİ LİSTELEME ==================== */
.shop-page-wrapper {
  background: #FAF8F9;
  min-height: 80vh;
}

/* Utility classes */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* Luxury Hero Banner */
.shop-header-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: radial-gradient(120% 120% at 50% 0%, #FFF3F6 0%, #FFFFFF 65%, #FFF8FA 100%);
  border: 1px solid rgba(222, 43, 89, 0.15);
  border-radius: 24px;
  padding: 34px 24px 28px;
  box-shadow: 0 10px 30px -5px rgba(222, 43, 89, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.shop-header-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 107, 139, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.shop-header-banner::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(222, 43, 89, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.badge-hero-pill-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.badge-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(222, 43, 89, 0.08) 0%, rgba(255, 123, 157, 0.18) 100%);
  border: 1px solid rgba(222, 43, 89, 0.3);
  color: var(--primary);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(222, 43, 89, 0.08);
}

.badge-sparkle-icon {
  animation: badgeSparkle 2s ease-in-out infinite;
}

@keyframes badgeSparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.18) rotate(15deg); opacity: 1; }
}

.shop-main-title {
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -0.6px;
  color: var(--text-main);
  margin: 12px 0 8px;
  line-height: 1.25;
  text-align: center;
  width: 100%;
}

.shop-subtitle {
  font-size: 14.5px;
  color: #665F63;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.shop-perks-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-perk-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #554E52;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(222, 43, 89, 0.14);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.shop-perk-sep {
  color: rgba(222, 43, 89, 0.35);
  font-size: 12px;
}

/* Koku Aileleri Chip Filtreleri */
.categories-chip-filter {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.categories-chip-filter::-webkit-scrollbar {
  display: none;
}

.chip-filter-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  color: var(--text-main);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.chip-filter-pill .chip-emoji {
  font-size: 15px;
  line-height: 1;
}

.chip-filter-pill .chip-count {
  font-size: 11px;
  font-weight: 800;
  background: rgba(222, 43, 89, 0.1);
  color: var(--primary);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
}

.chip-filter-pill:hover {
  border-color: rgba(222, 43, 89, 0.4);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(222, 43, 89, 0.12);
}

.chip-filter-pill.active {
  background: linear-gradient(135deg, #FF6B8B 0%, #DE2B59 100%);
  border-color: transparent;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(222, 43, 89, 0.32);
}

.chip-filter-pill.active .chip-count {
  background: rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
}

/* Ürün Sayısı & Filtreleme Barı */
.shop-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text-secondary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.count-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  display: inline-block;
}

/* Ultra-Lüks Boş Sonuç & Boş Sepet Kartı */
.empty-products-card {
  background: #FFFFFF;
  border: 1.5px dashed rgba(222, 43, 89, 0.25);
  border-radius: 24px;
  padding: 46px 24px;
  max-width: 560px;
  margin: 20px auto 44px;
  box-shadow: 0 10px 30px rgba(222, 43, 89, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
}

.empty-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF0F4 0%, #FFE2EA 100%);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(222, 43, 89, 0.15);
}

.empty-title {
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.4px;
  color: var(--text-main);
  margin-bottom: 10px;
}

.empty-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #665F63;
  max-width: 440px;
  margin: 0 auto 24px;
}

.empty-action-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.empty-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #FF6B8B 0%, #DE2B59 100%);
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(222, 43, 89, 0.3);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.empty-btn-primary:hover, .btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(222, 43, 89, 0.42);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6B8B 0%, #DE2B59 100%);
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(222, 43, 89, 0.3);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.empty-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #FAF7F8;
  border: 1px solid var(--border-light);
  color: var(--text-main) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.empty-btn-secondary:hover {
  background: #F0E8EC;
  border-color: #E2D7DC;
}

.empty-suggestions-box {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.suggestions-label {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.suggestion-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.empty-suggest-pill {
  background: #FAF7F8;
  border: 1px solid var(--border-light);
  color: var(--text-main) !important;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.empty-suggest-pill:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: #FFF0F4;
  transform: translateY(-1px);
}

@media (max-width: 576px) {
  .shop-header-banner {
    padding: 24px 16px 20px;
    border-radius: 18px;
  }
  .shop-main-title {
    font-size: 22px;
  }
  .shop-subtitle {
    font-size: 13px;
  }
  .shop-perks-row {
    gap: 6px;
  }
  .shop-perk-sep {
    display: none;
  }
  .empty-products-card {
    padding: 34px 16px;
    border-radius: 18px;
  }
  .empty-title {
    font-size: 18px;
  }
}

/* ==================== İLETİŞİM SAYFASI ==================== */
.contact-page-wrapper {
  background: #FAF8F9;
  min-height: 80vh;
}

.contact-main-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-main);
}

.contact-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 992px) {
  .contact-layout-grid {
    grid-template-columns: 1fr 380px;
  }
}

.contact-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.form-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-info-cards-column {
  display: flex;
  flex-direction: column;
}

.contact-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.contact-icon {
  font-size: 24px;
  line-height: 1;
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-card-content strong {
  font-size: 14px;
  color: var(--text-main);
}

.contact-card-content span {
  font-size: 13px;
  color: var(--text-secondary);
}

.contact-action-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: 4px;
}

.contact-action-link:hover {
  text-decoration: underline;
}

/* ==================== ULTRA-LUXURY EDITORIAL HEADERS ==================== */
.shop-editorial-header,
.page-editorial-header {
  position: relative;
  text-align: center;
  padding: 36px 20px 28px;
  background: radial-gradient(100% 120% at 50% 0%, #FFF5F7 0%, #FFFFFF 70%, #FFF9FA 100%);
  border: 1px solid rgba(222, 43, 89, 0.12);
  border-radius: 24px;
  box-shadow: 0 10px 30px -10px rgba(222, 43, 89, 0.08), 0 2px 8px rgba(0, 0, 0, 0.02);
  margin-bottom: 28px;
  overflow: hidden;
}

.shop-editorial-header::before,
.page-editorial-header::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(255, 107, 139, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.shop-editorial-header::after,
.page-editorial-header::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(222, 43, 89, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.luxury-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(222, 43, 89, 0.07);
  border: 1px solid rgba(222, 43, 89, 0.22);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(222, 43, 89, 0.06);
}

.shop-main-title,
.page-hero-title {
  font-size: 26px;
  font-weight: 850;
  letter-spacing: -0.6px;
  color: var(--text-main);
  margin: 0 0 10px;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .shop-main-title,
  .page-hero-title {
    font-size: 34px;
    letter-spacing: -0.8px;
  }
}

.shop-subtitle,
.page-hero-subtitle {
  font-size: 14px;
  color: #635A5E;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 16px;
}

@media (min-width: 768px) {
  .shop-subtitle,
  .page-hero-subtitle {
    font-size: 15px;
  }
}

.shop-trust-strip,
.page-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.trust-pill,
.trust-strip-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid rgba(222, 43, 89, 0.18);
  color: #4A4246;
  font-size: 12px;
  font-weight: 650;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.trust-pill:hover,
.trust-strip-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.strip-sep {
  color: rgba(222, 43, 89, 0.35);
  font-size: 12px;
}

/* Shop Meta & Filter Bar */
.shop-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.meta-count {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-badge {
  font-size: 11.5px;
  font-weight: 800;
  background: #F4F1F2;
  color: var(--text-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ==================== FAVORITES SYSTEM & BADGES ==================== */
.fav-nav-btn {
  position: relative;
}

.fav-count-badge,
.bottom-nav-fav-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: var(--radius-full);
  background: #C4B9BE;
  color: #FFFFFF;
  font-size: 10.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.25s, transform 0.2s;
}

.fav-count-badge.has-items,
.bottom-nav-fav-badge.has-items {
  background: #DE2B59 !important;
  box-shadow: 0 2px 6px rgba(222, 43, 89, 0.4);
  transform: scale(1.05);
}

.empty-fav-card {
  text-align: center;
  background: #FFFFFF;
  border: 1.5px dashed rgba(222, 43, 89, 0.25);
  border-radius: 24px;
  padding: 56px 24px;
  max-width: 580px;
  margin: 24px auto 48px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
}

.fav-heart-bubble {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF0F4 0%, #FFE2EA 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(222, 43, 89, 0.15);
  animation: heartPulse 2.4s ease-in-out infinite;
}

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

.empty-fav-title {
  font-size: 22px;
  font-weight: 850;
  color: var(--text-main);
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.empty-fav-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto 24px;
}

.btn-luxury-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6B8B 0%, #DE2B59 100%);
  color: #FFFFFF !important;
  font-size: 13.5px;
  font-weight: 750;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(222, 43, 89, 0.32);
  transition: all 0.22s ease;
}

.btn-luxury-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(222, 43, 89, 0.42);
}

/* ==================== CONTACT PAGE LUXURY STYLING ==================== */
.contact-page-wrapper {
  background: #FAF8F9;
  min-height: 85vh;
}

.alert-box-success {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.08);
}

.alert-box-success .alert-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #10B981;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.alert-box-success .alert-body strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.alert-box-success .alert-body p {
  margin: 0;
  font-size: 13.5px;
  color: #047857;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .contact-layout-grid {
    grid-template-columns: 380px 1fr;
    gap: 32px;
    align-items: start;
  }
}

/* Sol Kolon: Kanallar */
.contact-channels-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.channel-card {
  background: #FFFFFF;
  border: 1px solid #EFE8EC;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  display: flex;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.channel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(222, 43, 89, 0.06);
}

.channel-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-icon-bg {
  background: #DCFCE7;
  color: #16A34A;
}

.email-icon-bg {
  background: #EFF6FF;
  color: #2563EB;
}

.insta-icon-bg {
  background: #FDF2F8;
  color: #DB2777;
}

.log-icon-bg {
  background: #FFF7ED;
  color: #EA580C;
}

.channel-details {
  flex: 1;
}

.channel-live-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 750;
  color: #16A34A;
  background: rgba(34, 197, 94, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

.live-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
  animation: liveDotPulse 1.8s infinite;
}

@keyframes liveDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.channel-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 4px;
}

.channel-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 8px;
}

.channel-value {
  font-size: 14px;
  font-weight: 750;
  color: var(--text-main);
  margin-bottom: 8px;
}

.btn-channel-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 750;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-wa-action {
  background: #25D366;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-wa-action:hover {
  background: #20BA5A;
  transform: translateY(-1px);
}

.channel-text-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.channel-text-link:hover {
  text-decoration: underline;
}

.delivery-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: #EA580C;
  background: rgba(234, 88, 12, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}

/* Sağ Kolon: Form Kartı */
.contact-form-card {
  background: #FFFFFF;
  border: 1px solid #EFE8EC;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.contact-form-card .form-title {
  font-size: 22px;
  font-weight: 850;
  color: var(--text-main);
  margin: 0 0 6px;
  letter-spacing: -0.4px;
}

.contact-form-card .form-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 24px;
  line-height: 1.6;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr 1fr;
  }
}

.luxury-form-group {
  margin-bottom: 16px;
}

.luxury-label {
  display: block;
  font-size: 13px;
  font-weight: 750;
  color: #373033;
  margin-bottom: 6px;
}

.luxury-label .req {
  color: var(--primary);
}

.luxury-input,
.luxury-select,
.luxury-textarea {
  width: 100%;
  background: #FCFAFB;
  border: 1.5px solid #EADFE3;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.luxury-input:focus,
.luxury-select:focus,
.luxury-textarea:focus {
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(222, 43, 89, 0.12);
}

.luxury-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit-row {
  margin-top: 20px;
}

.btn-luxury-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF6B8B 0%, #DE2B59 100%);
  color: #FFFFFF;
  border: none;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(222, 43, 89, 0.35);
  transition: all 0.22s ease;
}

.btn-luxury-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(222, 43, 89, 0.45);
}

.kvkk-reassurance-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8C8286;
  margin-top: 18px;
  line-height: 1.5;
}

.kvkk-reassurance-note svg {
  flex-shrink: 0;
  color: #10B981;
}

/* ==================== POLICY & LEGAL CONTRACTS LUXURY STYLING ==================== */
.static-page-wrapper {
  background: #FAF8F9;
  min-height: 85vh;
}

.policy-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .policy-layout-grid {
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
  }
}

.policy-sidebar {
  position: relative;
}

.policy-nav-card {
  background: #FFFFFF;
  border: 1px solid #EFE8EC;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 90px;
}

.policy-nav-heading {
  font-size: 16px;
  font-weight: 850;
  color: var(--text-main);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F0E8EC;
  letter-spacing: -0.3px;
}

.policy-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.policy-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #554D51;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 650;
  transition: all 0.2s ease;
}

.policy-nav-item .nav-icon {
  font-size: 15px;
  line-height: 1;
}

.policy-nav-item .nav-text {
  flex: 1;
}

.policy-nav-item .nav-bullet {
  color: var(--primary);
  font-size: 10px;
}

.policy-nav-item:hover {
  background: #FFF0F4;
  color: var(--primary);
  transform: translateX(3px);
}

.policy-nav-item.active {
  background: linear-gradient(135deg, rgba(222, 43, 89, 0.08) 0%, rgba(255, 107, 139, 0.14) 100%);
  color: var(--primary);
  border: 1px solid rgba(222, 43, 89, 0.25);
  font-weight: 800;
}

.policy-sidebar-help {
  background: #FCFAFB;
  border: 1px dashed rgba(222, 43, 89, 0.25);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 12px;
}

.policy-sidebar-help .help-icon {
  font-size: 24px;
  line-height: 1;
}

.policy-sidebar-help .help-content strong {
  display: block;
  font-size: 13.5px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.policy-sidebar-help .help-content p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 10px;
}

.btn-sidebar-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 750;
  color: #16A34A;
  background: #DCFCE7;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-sidebar-wa:hover {
  background: #22C55E;
  color: #FFFFFF;
}

/* Sağ Doküman Kartı */
.policy-document-card {
  background: #FFFFFF;
  border: 1px solid #EFE8EC;
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
  .policy-document-card {
    padding: 44px 40px;
  }
}

.doc-header-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F0E8EC;
  margin-bottom: 24px;
}

.doc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 750;
  color: var(--primary);
  background: rgba(222, 43, 89, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.doc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.doc-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.doc-date {
  font-size: 12.5px;
  color: #8C8286;
  font-weight: 600;
}

.btn-print-doc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #F4F0F2;
  border: none;
  font-size: 12px;
  font-weight: 700;
  color: #4A4246;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-print-doc:hover {
  background: var(--text-main);
  color: #FFFFFF;
}

.doc-main-title {
  font-size: 24px;
  font-weight: 850;
  color: var(--text-main);
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  line-height: 1.3;
}

.doc-body-text {
  font-size: 15px;
  color: #3D3539;
  line-height: 1.85;
}

.doc-body-text p {
  margin-bottom: 16px;
}

.doc-body-text h2,
.doc-body-text h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin: 28px 0 12px;
  line-height: 1.4;
}

.doc-body-text ul,
.doc-body-text ol {
  margin: 12px 0 20px 24px;
  padding: 0;
}

.doc-body-text li {
  margin-bottom: 8px;
}

.doc-footer-notice {
  background: #FCFAFB;
  border: 1px solid #EFE8EC;
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.notice-icon {
  font-size: 28px;
  line-height: 1;
}

.notice-text {
  flex: 1;
  min-width: 220px;
}

.notice-text strong {
  display: block;
  font-size: 14.5px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.notice-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.notice-link {
  font-size: 13px;
  font-weight: 750;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

.notice-link:hover {
  text-decoration: underline;
}

/* ==================== GLOBAL FLOATING BUTTONS & DRAWER ==================== */
.floating-wa-btn {
  position: fixed;
  bottom: 78px;
  left: 18px;
  right: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform var(--transition-bounce), box-shadow 0.2s ease;
  text-decoration: none;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

/* On mobile: When sticky bottom cart bar is visible, smoothly elevate WhatsApp above it */
body:has(.sticky-bottom-cart-bar.is-visible) .floating-wa-btn,
body.has-sticky-cart .floating-wa-btn {
  bottom: 142px;
}

/* Distraction-Free: on checkout and cart pages without bottom nav, WA sits neatly at bottom */
body:has(.checkout-page-wrapper) .floating-wa-btn,
body:has(.cart-page-wrapper) .floating-wa-btn {
  bottom: 24px !important;
}

@media (min-width: 769px) {
  .floating-wa-btn {
    bottom: 24px;
    left: 24px;
    right: auto;
    width: 56px;
    height: 56px;
  }

  /* On desktop, sticky cart is on the bottom-right, so WhatsApp on bottom-left stays fixed */
  body:has(.sticky-bottom-cart-bar.is-visible) .floating-wa-btn,
  body.has-sticky-cart .floating-wa-btn {
    bottom: 24px;
  }
}

.drawer-search-form {
  display: flex;
  align-items: center;
  background: #F9F5F6;
  border: 1px solid #EADFE3;
  border-radius: var(--radius-full);
  padding: 4px 12px;
  margin-bottom: 16px;
}

.drawer-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 6px;
  font-size: 13.5px;
  outline: none;
  color: var(--text-main);
}

.drawer-search-submit {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
}


