/* ============================================
   SUNAYMODA.COM - VARO BANK INSPIRED THEME
   Modern, High-Contrast, Fintech-Style Aesthetic
   ============================================ */

/* ============================================
   CSS VARIABLES - RENK PALETİ
   ============================================ */
:root {
  /* Brand Colors - Purple & Pink Theme */
  --primary-purple: #9D00FF;
  /* Vivid Purple */
  --primary-pink: #FF00CC;
  /* Hot Pink */
  --primary-dark: #240036;
  /* Deep Purple/Black */
  --primary-light: #F8E6FF;
  /* Very light pink/purple tint */
  --primary-white: #FFFFFF;

  /* Mappings */
  --primary-lime: #FF00CC;
  /* Replaced Lime with Pink for accents */

  /* Backgrounds */
  --bg-body: #FDF5FF;
  /* Slight pinkish white */
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;

  /* Text Colors */
  --text-main: #240036;
  /* Dark Purple Text */
  --text-muted: #6A4C75;
  /* Muted Purple */
  --text-light: #FFFFFF;

  /* Accent Renkler */
  --accent-red: #FF3366;
  --accent-green: #00E676;

  /* Shadows (Purple tinted) */
  --shadow-sm: 0 2px 4px rgba(157, 0, 255, 0.1);
  --shadow-md: 0 8px 16px rgba(157, 0, 255, 0.15);
  --shadow-lg: 0 16px 32px rgba(157, 0, 255, 0.2);
  --shadow-card: 0 12px 24px rgba(157, 0, 255, 0.1);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-pill: 9999px;

  /* Typography */
  --font-display: 'Inter', -apple-system, sans-serif;
  /* Modern Sans-serif */
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Transitions */
  --transition-base: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
  /* Tighter letter spacing for modern look */
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
  /* Slightly larger body text */
}

a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-dark);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--spacing-2xl) 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-body);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  /* Use serif font for luxury feel */
  font-size: 1.75rem;
  /* Slightly larger */
  font-weight: 700;
  color: var(--primary-purple);
  letter-spacing: -0.01em;
  /* text-transform: lowercase; Removed to allow CamelCase "SunayModa.com" */
}

/* Navigation Styles */
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-main);
  font-weight: 600;
  font-size: 1rem;
  text-transform: none;
  transition: color var(--transition-base);
}

.nav-link:hover {
  color: var(--primary-purple);
}

.nav-icons {
  display: flex;
  gap: 1rem;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  /* Pill shape buttons */
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
  border: none;
  text-transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
  color: var(--primary-white);
  box-shadow: 0 4px 10px rgba(157, 0, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(157, 0, 255, 0.4);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #ff69b4;
  border: 2px solid #ff69b4;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #db7093 0%, #ff69b4 100%);
  color: var(--primary-white);
  border-color: transparent;
}

/* ============================================
   CARDS & PRODUCTS
   ============================================ */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.03);

  /* Layout Fixes for Equal Height Buttons */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-surface);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  /* Focus on top to show heads */
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* ... badge styles ... */

.product-info {
  padding: 1.5rem;
  /* Flexbox to push button to bottom */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  color: var(--primary-purple);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-top: auto;
  /* Push price and button to bottom */
}

.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.price-old {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-surface);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  background: var(--bg-body);
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(76, 64, 229, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============================================
   GRID
   ============================================ */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.product-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.product-image-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Show full image without cropping */
}

.size-selector {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.size-option {
  width: 50px;
  height: 50px;
  border: 1px solid var(--bg-surface);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-base);
  font-weight: 600;
  font-family: var(--font-body);
}

.size-option:hover {
  background: var(--bg-body);
  border-color: var(--primary-purple);
  color: var(--primary-purple);
}

.size-option.active {
  background: var(--primary-purple);
  color: var(--primary-white);
  border-color: var(--primary-purple);
}

.quantity-control {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-surface);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  cursor: pointer;
  font-size: 1.25rem;
  transition: all var(--transition-base);
}

.quantity-btn:hover {
  background: var(--primary-purple);
  color: var(--primary-white);
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.cart-item {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.cart-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-summary {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-card);
  height: fit-content;
}

.btn-remove {
  background: transparent;
  border: none;
  color: var(--accent-red);
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.btn-remove:hover {
  transform: scale(1.1);
  color: #ff0000;
}

.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .cart-grid {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }

  .cart-item>div:nth-child(3),
  /* Price */
  .quantity-control,
  .btn-remove {
    grid-column: 2;
  }

  .cart-item .quantity-control {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================
   CATEGORIES (Product Filter)
   ============================================ */
.categories {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}

.category-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(157, 0, 255, 0.3);
  transition: all var(--transition-base);
}

.category-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(157, 0, 255, 0.4);
}

.toggle-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.category-btn {
  padding: 0.6rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-base);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  flex-shrink: 0;
  white-space: nowrap;
}

.category-btn:hover {
  background: var(--bg-body);
  color: var(--primary-purple);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.category-btn.active {
  background: var(--primary-purple);
  color: var(--primary-white);
  box-shadow: var(--shadow-md);
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-bottom: 1rem;
  transition: all var(--transition-base);
}

.payment-method:hover {
  background: var(--bg-body);
  box-shadow: var(--shadow-sm);
}

.payment-method input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-purple);
}

.payment-method span {
  font-weight: 600;
  color: var(--text-main);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-surface);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--primary-dark);
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-purple);
}

/* ============================================
   UTILITIES
   ============================================ */
.bg-purple {
  background-color: var(--primary-purple);
  color: white;
}

.text-purple {
  color: var(--primary-purple);
}

.bg-lime {
  background-color: var(--primary-lime);
  color: var(--primary-dark);
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 40px;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 450px;
  width: 100%;
  box-shadow: var(--shadow-card);
}

.auth-card h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--primary-dark);
}

.auth-card p {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ============================================
   CONTENT PAGES (KVKK, Contracts etc.)
   ============================================ */
.content-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}

.content-wrapper h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.content-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  color: var(--primary-purple);
}

.content-wrapper ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.content-wrapper li {
  margin-bottom: 0.5rem;
}

/* ============================================
   RESPONSIVE OVERRIDES (Inline for simplicity)
   ============================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  /* Needs JS toggle implementation if mobile menu is strictly required, keeping simple for now */
  .header {
    padding: 1rem 0;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fade {
  opacity: 0;
  /* Start hidden */
  animation: fadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.d1 {
  animation-delay: 0.1s;
}

.d2 {
  animation-delay: 0.2s;
}

.d3 {
  animation-delay: 0.3s;
}

.d4 {
  animation-delay: 0.4s;
}

/* ============================================
   EN ÇOK SATANLAR - BEST SELLERS
   ============================================ */
.best-sellers-section {
  background: linear-gradient(135deg, #FDF5FF 0%, #F0E0FF 50%, #FFE6F5 100%);
  position: relative;
  overflow: hidden;
  padding-top: 1.5rem;
}

.best-sellers-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.best-sellers-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 0, 204, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.best-sellers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.best-sellers-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.best-sellers-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.best-seller-card {
  cursor: pointer;
  position: relative;
}

.best-seller-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.2), rgba(255, 0, 204, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.best-seller-card:hover::before {
  opacity: 1;
}

/* Rank Badges */
.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
  z-index: 3;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.rank-badge.rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  box-shadow: 0 3px 12px rgba(255, 165, 0, 0.5);
}

.rank-badge.rank-2 {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
  box-shadow: 0 3px 12px rgba(160, 160, 160, 0.5);
}

.rank-badge.rank-3 {
  background: linear-gradient(135deg, #CD7F32, #B87333);
  box-shadow: 0 3px 12px rgba(205, 127, 50, 0.5);
}

/* Skeleton Loading */
.skeleton-card {
  pointer-events: none;
}

.skeleton-image {
  aspect-ratio: 3/4;
  background: linear-gradient(90deg, #f0e0ff 25%, #f8e6ff 50%, #f0e0ff 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite ease-in-out;
}

.skeleton-info {
  padding: 1.5rem;
}

.skeleton-line {
  height: 14px;
  background: linear-gradient(90deg, #f0e0ff 25%, #f8e6ff 50%, #f0e0ff 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite ease-in-out;
  border-radius: 7px;
  margin-bottom: 0.75rem;
}

.skeleton-line.short {
  width: 60%;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Best Sellers Responsive */
@media (max-width: 1024px) {
  .best-sellers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .best-sellers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .best-sellers-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .best-sellers-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .best-sellers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .best-sellers-grid .product-image {
    aspect-ratio: 3/4;
  }

  .best-sellers-grid .product-info {
    padding: 0.75rem;
  }

  .best-sellers-grid .product-title {
    font-size: 0.9rem;
  }

  .best-sellers-grid .price-current {
    font-size: 1rem;
  }

  .best-sellers-grid .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* ============================================
   YENİ GELENLER - NEW ARRIVALS
   ============================================ */
.new-arrivals-section {
  background: linear-gradient(135deg, #FFF5F9 0%, #FFE6F5 50%, #F5E6FF 100%);
  position: relative;
  overflow: hidden;
}

.new-arrivals-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 0, 204, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.new-arrivals-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.new-arrivals-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.new-arrivals-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.new-arrivals-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.new-arrival-card {
  cursor: pointer;
  position: relative;
}

.new-arrival-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 0, 204, 0.2), rgba(157, 0, 255, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.new-arrival-card:hover::before {
  opacity: 1;
}

/* Yeni Badge */
.new-badge {
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 100%) !important;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(255, 0, 204, 0.3);
}

/* New Arrivals Responsive */
@media (max-width: 1024px) {
  .new-arrivals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .new-arrivals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .new-arrivals-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .new-arrivals-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .new-arrivals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .new-arrivals-grid .product-info {
    padding: 0.75rem;
  }

  .new-arrivals-grid .product-title {
    font-size: 0.9rem;
  }

  .new-arrivals-grid .price-current {
    font-size: 1rem;
  }

  .new-arrivals-grid .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
}