/* ==========================================================================
   Süsler Çiçek - Premium E-Ticaret Stilleri
   ========================================================================== */

/* Sayfa Geçiş Animasyonları - Performans Optimize */
.page-content {
  animation: pageEnter 0.4s ease-out both;
  will-change: opacity;
}
@keyframes pageEnter {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.page-content.leaving {
  animation: pageLeave 0.22s ease-in forwards;
}
@keyframes pageLeave {
  to { opacity: 0; }
}

/* Basit loading bar — overlay yerine */
.page-loading-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #8B2942, #C9A961);
  z-index: 9999;
  transition: width 0.2s ease-out, opacity 0.3s;
  opacity: 0;
  will-change: width, opacity;
}
.page-loading-bar.loading {
  opacity: 1;
  animation: pageLoadBar 1.8s ease-out forwards;
}
@keyframes pageLoadBar {
  0% { width: 0; }
  50% { width: 70%; }
  100% { width: 90%; }
}

/* Düşük hareket tercihi */
@media (prefers-reduced-motion: reduce) {
  .page-content, .page-content.leaving { animation: none !important; }
  .page-loading-bar { display: none; }
}

:root {
  --color-primary: #8B2942;
  --color-primary-dark: #6a1f33;
  --color-primary-light: #c76a85;
  --color-secondary: #D4A574;
  --color-gold: #C9A961;
  --color-rose: #E8C5C5;
  --color-cream: #FAF7F2;
  --color-ivory: #FFF8F0;
  --color-dark: #2C1810;
  --color-text: #3D2817;
  --color-muted: #7D6B5D;
  --color-border: #EADFD0;
  --color-success: #4a7c59;
  --color-danger: #c73e3a;
  --color-warning: #d4a017;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(60, 32, 20, 0.06);
  --shadow-md: 0 10px 30px rgba(60, 32, 20, 0.08);
  --shadow-lg: 0 20px 60px rgba(60, 32, 20, 0.12);
  --shadow-xl: 0 30px 80px rgba(139, 41, 66, 0.18);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s var(--transition);
}
a:hover { color: var(--color-primary-dark); }

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
  width: 400px;
  height: 400px;
}
.btn span { position: relative; z-index: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(139, 41, 66, 0.3);
}
.btn-primary:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 41, 66, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, #b0903d 100%);
  color: white;
}
.btn-gold:hover { color: white; transform: translateY(-3px); }

.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-lg { padding: 18px 42px; font-size: 15px; }

/* ==========================================================================
   Top Bar
   ========================================================================== */
.topbar {
  background: var(--color-dark);
  color: var(--color-cream);
  padding: 10px 0;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 25px;
  align-items: center;
}
.topbar a {
  color: var(--color-cream);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover { color: var(--color-gold); }
.topbar i { color: var(--color-gold); }

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.header {
  background: rgba(255, 248, 240, 0.98);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s;
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}

.logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-rose));
  color: white;
  font-size: 22px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease;
}
.logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.08);
}
.logo-text { font-family: var(--font-display); }
.logo-text small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--color-muted);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 5px;
}
.nav-menu > li > a {
  color: var(--color-text);
  padding: 10px 16px;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  display: block;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after {
  width: calc(100% - 32px);
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--color-primary);
}

.nav-menu li { position: relative; }
.nav-menu .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  list-style: none;
}
.nav-menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .dropdown li a {
  padding: 10px 16px;
  display: block;
  color: var(--color-text);
  border-radius: 8px;
  font-size: 14px;
}
.nav-menu .dropdown li a:hover {
  background: var(--color-rose);
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-primary);
  transition: all 0.3s;
  font-size: 16px;
}
.header-icon:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 41, 66, 0.3);
}
.header-icon .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  background: var(--color-gold);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-primary);
  cursor: pointer;
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
}
.hero-slide {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-slide.hero-slide-nobg::before { display: none; }
.hero-slide.hero-slide-nobg .hero-title em { color: #ffd780; }
.hero-decor {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-decor .hero-petal {
  position: absolute;
  color: white;
  opacity: 0.08;
  font-size: 280px;
  animation: heroFloat 20s ease-in-out infinite;
}
.hero-decor .p1 { top: -30px; right: 5%; animation-delay: 0s; }
.hero-decor .p2 { bottom: -50px; left: 5%; font-size: 220px; animation-delay: 4s; }
.hero-decor .p3 { top: 40%; right: 35%; font-size: 140px; animation-delay: 8s; opacity: 0.06; }
.hero-decor .p4 { top: 15%; left: 40%; font-size: 100px; animation-delay: 12s; opacity: 0.07; }
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(20px, -20px) rotate(15deg); }
}
.hero-decor .hero-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,0.3), transparent 70%);
}
.hero-decor .c1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-decor .c2 { width: 400px; height: 400px; bottom: -150px; left: -100px; background: radial-gradient(circle, rgba(232,197,197,0.25), transparent 70%); }

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(44,24,16,0.6) 0%, rgba(44,24,16,0.2) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
}
.hero-subtitle {
  display: inline-block;
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  color: white;
  margin-bottom: 25px;
}
.hero-title em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: 400;
}
.hero-description {
  font-size: 17px;
  opacity: 0.92;
  margin-bottom: 35px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.swiper-button-next, .swiper-button-prev {
  color: white !important;
  width: 55px !important;
  height: 55px !important;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--color-primary);
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: 700;
}
.swiper-pagination-bullet {
  background: white !important;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  background: var(--color-gold) !important;
  opacity: 1;
  width: 30px;
  border-radius: 5px;
}

/* ==========================================================================
   Section Base
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-subtitle {
  display: block;
  text-align: center;
  color: var(--color-primary);
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}
.section-title {
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 15px;
  text-align: center;
  display: block;
}
.section-title::after {
  content: '❦';
  display: block;
  color: var(--color-gold);
  font-size: 24px;
  margin-top: 10px;
  text-align: center;
}
.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 16px;
}

/* ==========================================================================
   Features Strip
   ========================================================================== */
.features {
  background: white;
  padding: 50px 0;
  border-bottom: 1px solid var(--color-border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.feature-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: all 0.3s;
}
.feature-item:hover {
  background: var(--color-cream);
  transform: translateY(-3px);
}
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rose), var(--color-primary-light));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  flex-shrink: 0;
}
.feature-text h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-dark);
}
.feature-text p {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0;
}

/* ==========================================================================
   Categories Grid
   ========================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}
.category-card {
  position: relative;
  text-align: center;
  padding: 45px 20px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all 0.4s var(--transition);
  overflow: hidden;
  cursor: pointer;
}
.category-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
  opacity: 0;
  transition: all 0.5s;
  z-index: 0;
}
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.category-card:hover::before {
  opacity: 1;
}
.category-card:hover .category-icon,
.category-card:hover .category-name,
.category-card:hover .category-desc {
  color: white;
  position: relative;
  z-index: 1;
}
.category-card:hover .category-icon {
  background: rgba(255,255,255,0.2);
  transform: rotate(360deg);
}
.category-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
  transition: all 0.6s;
  position: relative;
  z-index: 1;
}
.category-name {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.category-desc {
  font-size: 13px;
  color: var(--color-muted);
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

/* ==========================================================================
   Product Cards
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.4s var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-cream);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.product-badge {
  padding: 6px 14px;
  background: var(--color-primary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
}
.product-badge.sale { background: var(--color-danger); }
.product-badge.new { background: var(--color-success); }
.product-badge.bestseller { background: var(--color-gold); }

.product-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s;
  z-index: 2;
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  color: var(--color-primary);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}
.product-action-btn:hover {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

.product-quick-add {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s;
  z-index: 2;
}
.product-card:hover .product-quick-add {
  transform: translateY(0);
  opacity: 1;
}

.product-info {
  padding: 20px;
  text-align: center;
}
.product-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 8px;
  display: block;
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-name a { color: var(--color-dark); }
.product-name a:hover { color: var(--color-primary); }
.product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}
.product-price .current {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
}
.product-price .old {
  font-size: 15px;
  color: var(--color-muted);
  text-decoration: line-through;
}
.product-rating {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 10px;
  color: var(--color-gold);
  font-size: 13px;
}

/* ==========================================================================
   Banner / CTA
   ========================================================================== */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 100px 0;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
  opacity: 0.3;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-rose) 0%, transparent 70%);
  opacity: 0.2;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  color: white;
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
}
.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter {
  background: var(--color-cream);
  padding: 80px 0;
}
.newsletter-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h3 {
  font-size: 36px;
  margin-bottom: 12px;
}
.newsletter p {
  color: var(--color-muted);
  margin-bottom: 30px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 8px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
}
.newsletter-form input {
  flex: 1;
  padding: 14px 25px;
  border: none;
  background: transparent;
  font-size: 14px;
  outline: none;
}
.newsletter-form button {
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  background: var(--color-primary);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.newsletter-form button:hover { background: var(--color-primary-dark); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--color-dark);
  color: #c8b8a8;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer h5 {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
}
.footer p { font-size: 14px; line-height: 1.7; margin-bottom: 15px; }
.footer a { color: #c8b8a8; font-size: 14px; transition: all 0.3s; }
.footer a:hover { color: var(--color-gold); padding-left: 6px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  list-style: none;
}
.footer-contact i {
  color: var(--color-gold);
  margin-top: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  padding-left: 0;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
}
.payment-methods {
  display: flex;
  gap: 10px;
  align-items: center;
}
.payment-methods img { height: 24px; filter: brightness(0) invert(1) opacity(0.7); }

/* ==========================================================================
   Page Banner
   ========================================================================== */
.page-banner {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-cream) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '❀';
  position: absolute;
  top: 20px;
  left: 10%;
  font-size: 200px;
  color: white;
  opacity: 0.3;
}
.page-banner::after {
  content: '✿';
  position: absolute;
  bottom: 20px;
  right: 10%;
  font-size: 150px;
  color: white;
  opacity: 0.3;
}
.page-banner h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  position: relative;
  z-index: 1;
  font-size: 14px;
  flex-wrap: wrap;
  overflow: hidden;
}
.breadcrumb li + li::before {
  content: '/';
  margin-right: 10px;
  color: var(--color-muted);
}

/* ==========================================================================
   Product Detail
   ========================================================================== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.product-gallery {
  position: sticky;
  top: 100px;
}
.product-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 1 / 1;
  background: var(--color-cream);
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.product-thumb.active, .product-thumb:hover {
  border-color: var(--color-primary);
}

.product-detail-info h1 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 15px;
}
.product-detail-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-border);
}
.product-detail-price .current {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
}
.product-detail-price .old {
  font-size: 22px;
  color: var(--color-muted);
  text-decoration: line-through;
}
.product-detail-price .badge-sale {
  background: var(--color-danger);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.product-short-desc {
  margin: 25px 0;
  font-size: 15px;
  color: var(--color-text);
}

.quantity-row {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 25px 0;
}
.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  overflow: hidden;
}
.quantity button {
  width: 45px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
}
.quantity button:hover { background: var(--color-cream); }
.quantity input {
  width: 60px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 16px;
}

.product-meta {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-muted);
  display: grid;
  gap: 10px;
}
.product-meta strong { color: var(--color-dark); }

.product-tabs {
  margin-top: 60px;
}
.tab-buttons {
  display: flex;
  gap: 5px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 30px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tab-buttons::-webkit-scrollbar { display: none; }
.tab-buttons button {
  padding: 15px 25px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-muted);
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-buttons button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s;
}
.tab-buttons button.active {
  color: var(--color-primary);
}
.tab-buttons button.active::after { width: 100%; }
.tab-content { display: none; padding: 20px 0; }
.tab-content.active { display: block; }

/* ==========================================================================
   Cart
   ========================================================================== */
.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.cart-items { display: flex; flex-direction: column; gap: 15px; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-cream);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: var(--font-display); font-size: 18px; margin-bottom: 6px; }
.cart-item-price { color: var(--color-primary); font-weight: 600; }
.cart-item-remove {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-cream); border: none; cursor: pointer;
  color: var(--color-danger); transition: all 0.3s;
}
.cart-item-remove:hover { background: var(--color-danger); color: white; }

.cart-summary {
  background: white;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  height: fit-content;
  position: sticky;
  top: 100px;
}
.cart-summary h3 { margin-bottom: 20px; font-size: 24px; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--color-border);
}
.cart-summary-row:last-of-type { border: none; }
.cart-summary-total {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-primary);
  font-weight: 700;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  background: white;
  transition: all 0.3s;
  outline: none;
}
.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(139, 41, 66, 0.08);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.auth-container {
  max-width: 500px;
  margin: 60px auto;
  padding: 50px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.auth-container h2 { text-align: center; margin-bottom: 10px; }
.auth-container p.lead { text-align: center; color: var(--color-muted); margin-bottom: 30px; }

/* ==========================================================================
   Alerts
   ========================================================================== */
.alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid;
  font-size: 14px;
}
.alert-success { background: #e8f5ed; border-color: var(--color-success); color: #1c5a36; }
.alert-danger { background: #fce8e7; border-color: var(--color-danger); color: #8b2521; }
.alert-warning { background: #fdf5de; border-color: var(--color-warning); color: #7a5a0a; }
.alert-info { background: #e8f0f5; border-color: #3a7ba8; color: #1c4a6a; }

/* ==========================================================================
   Empty State
   ========================================================================== */
.empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-state i {
  font-size: 80px;
  color: var(--color-rose);
  margin-bottom: 25px;
}
.empty-state h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
.empty-state p {
  color: var(--color-muted);
  margin-bottom: 25px;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in {
  animation: fadeIn 0.8s var(--transition);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.petal {
  position: fixed;
  top: -50px;
  color: var(--color-rose);
  font-size: 20px;
  pointer-events: none;
  z-index: 9999;
  animation: fall linear infinite;
}
@keyframes fall {
  to {
    transform: translateY(110vh) rotate(720deg);
  }
}

/* WhatsApp Float — Profesyonel */
.wa-float-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9997;
}
@media (max-width: 767px) {
  .wa-float-wrap {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float {
    width: 56px !important;
    height: 56px !important;
    font-size: 26px !important;
  }
  .wa-popup {
    width: calc(100vw - 30px) !important;
    right: -5px !important;
    bottom: 75px !important;
  }
}
.whatsapp-float {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: visible;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  color: white;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.6);
}
.wa-float-ping {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: waPing 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wa-float-notif {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 24px;
  height: 24px;
  background: #ff3b30;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 3px solid white;
  animation: waNotifBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both;
}
@keyframes waNotifBounce {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* WhatsApp Popup Chat */
.wa-popup {
  position: absolute;
  bottom: 85px;
  right: 0;
  width: 340px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 65px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.wa-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.wa-popup-header {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: white;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.wa-popup-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  color: #8B2942;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
}
.wa-popup-avatar::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 12px; height: 12px;
  background: #4a7c59;
  border: 2px solid white;
  border-radius: 50%;
}
.wa-popup-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.wa-popup-info strong { font-size: 15px; color: white; }
.wa-popup-info span { font-size: 12px; opacity: 0.85; display: inline-flex; align-items: center; gap: 6px; }
.wa-popup-info span i { color: #4cff4c; font-size: 7px; animation: waOnline 2s infinite; }
@keyframes waOnline {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.wa-popup-close {
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s;
}
.wa-popup-close:hover { background: rgba(255,255,255,0.35); }

.wa-popup-body {
  padding: 20px;
  background: #ECE5DD url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath fill='%23d9d2c6' fill-opacity='0.2' d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/svg%3E");
  min-height: 120px;
}
.wa-msg-bubble {
  background: white;
  padding: 12px 14px;
  border-radius: 0 12px 12px 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  position: relative;
  max-width: 85%;
  animation: waBubbleIn 0.4s ease-out;
}
@keyframes waBubbleIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.wa-msg-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -10px;
  width: 0; height: 0;
  border-top: 0 solid transparent;
  border-right: 10px solid white;
  border-bottom: 10px solid transparent;
}
.wa-msg-bubble p {
  margin: 0 0 4px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
.wa-msg-bubble p:last-of-type { margin-bottom: 6px; }
.wa-msg-time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: #999;
}

.wa-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}
.wa-popup-cta:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: white;
  padding-right: 25px;
}
.wa-popup-cta i { font-size: 22px; }

@media (max-width: 480px) {
  .wa-popup { width: calc(100vw - 40px); right: -10px; }
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: none;
  z-index: 9996;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  border: none;
  transition: all 0.3s;
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--color-primary-dark); transform: translateY(-3px); }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Mobile menu-only öğeler desktop'ta gizli */
.nm-mobile-header,
.nm-mobile-search,
.nm-mobile-account,
.nm-mobile-footer,
.nm-m-icon,
.nm-backdrop { display: none; }

@media (max-width: 991px) {
  .product-detail-grid, .cart-grid, .footer-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .product-main-image { max-height: 75vw; }
  .product-detail-grid { gap: 25px; }

  /* Backdrop */
  .nm-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 6, 0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: opacity 0.35s, visibility 0.35s;
  }
  .nm-backdrop.active { opacity: 1; visibility: visible; }

  /* Drawer */
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    width: 340px;
    max-width: 88vw;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #fffbf5 100%);
    flex-direction: column;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateX(100%);
    box-shadow: -20px 0 60px rgba(44, 24, 16, 0.15);
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 0;
    list-style: none;
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-menu::-webkit-scrollbar { width: 4px; }
  .nav-menu::-webkit-scrollbar-thumb { background: var(--color-primary-light); border-radius: 2px; }

  /* Drawer Header */
  .nm-mobile-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    position: sticky;
    top: 0;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(139, 41, 66, 0.25);
  }
  .nm-mh-logo { display: flex; align-items: center; gap: 12px; }
  .nm-mh-logo .logo-icon {
    width: 42px; height: 42px;
    font-size: 18px;
    background: rgba(255,255,255,0.15);
    color: white;
    animation: none;
    flex-shrink: 0;
  }
  .nm-mh-logo strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    color: white;
    line-height: 1;
  }
  .nm-mh-logo small {
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
  }
  .nm-close {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nm-close:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }

  /* Drawer Search */
  .nm-mobile-search {
    display: block !important;
    padding: 18px 22px 10px;
  }
  .nm-mobile-search form {
    display: flex;
    align-items: center;
    background: var(--color-cream);
    border-radius: 50px;
    padding: 4px 4px 4px 18px;
    border: 1px solid var(--color-border);
  }
  .nm-mobile-search i.fa-magnifying-glass {
    color: var(--color-primary);
    font-size: 14px;
    margin-right: 10px;
  }
  .nm-mobile-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    padding: 10px 0;
    outline: none;
    color: var(--color-text);
  }
  .nm-search-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s;
  }
  .nm-search-btn:hover { background: var(--color-primary-dark); transform: translateX(2px); }

  /* Menu Links - Core */
  .nav-menu > li:not(.nm-mobile-header):not(.nm-mobile-search):not(.nm-mobile-account):not(.nm-mobile-footer) {
    padding: 0 14px;
  }
  .nav-menu > li > a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 14px 16px !important;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.3s;
    position: relative;
  }
  .nav-menu > li > a::after { display: none; }
  .nav-menu > li > a:hover {
    background: var(--color-cream);
    color: var(--color-primary);
    padding-left: 22px !important;
  }
  .nav-menu > li.active > a {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    box-shadow: 0 8px 20px rgba(139, 41, 66, 0.25);
  }
  .nav-menu > li.active > a::after { display: none; }

  .nm-m-icon {
    display: inline-flex !important;
    width: 22px;
    color: var(--color-gold);
    font-size: 15px;
    text-align: center;
  }
  .nav-menu > li.active > a .nm-m-icon,
  .nav-menu > li > a:hover .nm-m-icon { color: inherit; }

  /* Dropdown (Kategoriler) - Toggle */
  .nav-menu .has-dropdown > .dropdown-toggle .dd-arrow {
    margin-left: auto;
    transition: transform 0.3s;
  }
  .nav-menu .has-dropdown.open > .dropdown-toggle .dd-arrow {
    transform: rotate(180deg);
  }
  .nav-menu .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: 5px 0 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin 0.3s;
    border-left: 2px solid var(--color-rose);
    list-style: none;
  }
  .nav-menu .has-dropdown.open .dropdown {
    max-height: 600px;
    margin-bottom: 8px;
  }
  .nav-menu .dropdown li { padding: 0; }
  .nav-menu .dropdown li a {
    padding: 10px 15px;
    font-size: 13.5px;
    color: var(--color-text);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
  }
  .nav-menu .dropdown li a:hover {
    background: var(--color-cream);
    color: var(--color-primary);
    padding-left: 20px;
  }
  .nav-menu .dropdown li a i {
    color: var(--color-primary);
    font-size: 12px;
    width: 18px;
    text-align: center;
  }

  /* Account Block */
  .nm-mobile-account {
    display: block !important;
    padding: 18px 22px 0;
    margin-top: 10px;
    border-top: 1px solid var(--color-border);
  }
  .nm-acc-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: linear-gradient(135deg, var(--color-cream), white);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    color: var(--color-text);
    margin-bottom: 10px;
  }
  .nm-acc-avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .nm-acc-user > div { flex: 1; }
  .nm-acc-user small { font-size: 11px; color: var(--color-muted); display: block; }
  .nm-acc-user strong { font-size: 14px; color: var(--color-dark); display: block; }
  .nm-acc-user > i { color: var(--color-muted); }

  .nm-acc-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
  }
  .nm-acc-actions a {
    text-align: center;
    padding: 10px 5px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.3s;
  }
  .nm-acc-actions a i {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--color-primary);
  }
  .nm-acc-actions a:hover {
    background: var(--color-cream);
    transform: translateY(-2px);
  }

  .nm-acc-guest {
    display: flex;
    gap: 10px;
  }
  .nm-acc-guest .btn { padding: 12px 18px; font-size: 12px; }

  /* Footer Block */
  .nm-mobile-footer {
    display: block !important;
    padding: 20px 22px 30px;
    margin-top: auto;
  }
  .nm-mf-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
  }
  .nm-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--color-cream);
    border-radius: 12px;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    transition: all 0.3s;
  }
  .nm-contact-btn i {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  .nm-contact-btn.nm-wa i { background: #25D366; }
  .nm-contact-btn > div { flex: 1; min-width: 0; }
  .nm-contact-btn small { font-size: 10px; color: var(--color-muted); display: block; }
  .nm-contact-btn strong {
    font-size: 12px;
    color: var(--color-dark);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nm-contact-btn:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
  }

  .nm-mf-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
  }
  .nm-mf-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: 1px solid var(--color-border);
    transition: all 0.3s;
  }
  .nm-mf-social a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    border-color: var(--color-primary);
  }

  .nm-mf-copy {
    text-align: center;
    font-size: 11px;
    color: var(--color-muted);
    letter-spacing: 1px;
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
  }

  .mobile-toggle { display: block; }
  /* Mobil Header Düzeltmeleri */
  .header .container { padding: 12px 16px; gap: 10px; }
  .logo { font-size: 22px; gap: 8px; flex-shrink: 1; min-width: 0; }
  .logo-img { height: 70px; }
  .logo img { max-height: 44px !important; }
  .logo-icon { width: 40px; height: 40px; font-size: 17px; flex-shrink: 0; }
  .logo-text { white-space: nowrap; min-width: 0; }
  .logo-text small { font-size: 9px; letter-spacing: 2px; }
  .header-actions { gap: 8px; flex-shrink: 0; }
  .header-icon { width: 38px; height: 38px; font-size: 14px; }
  .header-icon .badge { min-width: 18px; height: 18px; font-size: 10px; top: -2px; right: -2px; }
  .mobile-toggle { font-size: 22px; padding: 4px 6px; }

  .hero-slide { height: auto; min-height: 85vh; padding: 80px 0 60px; }
  .hero-title { font-size: clamp(34px, 8vw, 56px) !important; }
  .hero-description { font-size: 15px !important; }
  .hero-buttons { flex-direction: column; gap: 10px !important; }
  .hero-buttons .btn { width: 100%; justify-content: center; padding: 14px 25px !important; font-size: 13px !important; }
  .hero-btn-outline { color: white !important; border-color: rgba(255,255,255,0.8) !important; background: rgba(255,255,255,0.08) !important; }
  .hero-btn-outline:hover { background: white !important; color: var(--color-primary) !important; }
  .swiper-button-next, .swiper-button-prev { display: none !important; }

  /* Body scroll lock when menu open */
  body.menu-open { overflow: hidden; }
}

@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .topbar-left { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cart-item {
    grid-template-columns: 80px 1fr auto;
    grid-template-rows: auto auto;
    gap: 12px 15px;
    padding: 15px;
  }
  .cart-item-image { width: 80px; height: 80px; }
  .cart-item-image { grid-row: 1 / 3; }
  .cart-item > div:nth-child(2) {
    grid-column: 2 / 4;
    min-width: 0;
  }
  .cart-item-name { font-size: 15px; line-height: 1.3; }
  .cart-item .quantity {
    grid-column: 2 / 3;
    grid-row: 2;
    justify-self: start;
  }
  .cart-item .quantity button { width: 36px; height: 40px; font-size: 16px; }
  .cart-item .quantity input { width: 45px; }
  .cart-item > div:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2;
    text-align: right;
    font-size: 17px !important;
    white-space: nowrap;
  }
  .cart-item-remove {
    position: absolute;
    top: 10px; right: 10px;
    width: 32px; height: 32px;
    font-size: 12px;
  }
  .cart-item { position: relative; }
  .auth-container { padding: 30px 25px; }
  .product-detail-info h1 { font-size: 24px; }
  .product-detail-price { flex-wrap: wrap; gap: 8px; }
  .product-detail-price .current { font-size: 28px; }
  .product-detail-price .old { font-size: 16px; }
  .product-detail-price .badge-sale { font-size: 11px; padding: 4px 8px; flex-shrink: 0; }
  .product-short-desc { word-break: break-word; overflow-wrap: break-word; }
  .quantity-row { flex-wrap: wrap; gap: 10px; }
  .quantity-row .btn { flex: 1; min-width: 0; justify-content: center; }
  .whatsapp-order-btn { overflow: hidden; }
  .whatsapp-order-btn .wa-text strong { font-size: 14px; }
  .wa-arrow { display: none; }
  .breadcrumb { flex-wrap: wrap; overflow: hidden; }
  .breadcrumb li { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .newsletter-form { flex-direction: column; background: transparent; padding: 0; box-shadow: none; }
  .newsletter-form input, .newsletter-form button { width: 100%; border-radius: 50px; background: white; }
}
