/* ----------------------------------------------------
   NIKRA HOME - DESIGN SYSTEM & STYLESHEET
   ---------------------------------------------------- */

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

:root {
  /* Color Palette - Vibrant Pillowcenter Inspired Earthy Tones */
  --primary: #e65c00; /* Vibrant Terracotta / Bright Burnt Orange */
  --primary-hover: #cc5200;
  --primary-light: #fff2eb; /* Bright Warm Cream */
  --primary-glow: rgba(230, 92, 0, 0.25);
  
  --secondary: #75341c; /* Rich Vibrant Brown */
  --secondary-hover: #592512;
  
  --bg-body: #fdfbf7; /* Very Bright Cream */
  --bg-card: #ffffff;
  --bg-card-hover: #fcf6ef;
  --bg-surface: #f9f1e6;
  
  --text-main: #2b1d15; /* Deeper Charcoal/Brown for contrast */
  --text-muted: #5e6b52; /* Slightly richer sage */
  --text-dark: #140d09;
  
  --border-color: rgba(117, 52, 28, 0.18);
  --border-active: rgba(230, 92, 0, 0.5);
  
  --accent-trendyol: #f27a1a;
  --accent-whatsapp: #25d366;
  --accent-success: #10b981;
  --accent-danger: #ef4444;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 10px 30px -5px rgba(230, 92, 0, 0.35);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme Variables */
body.dark-theme {
  --bg-body: #17110d;
  --bg-card: #241a14;
  --bg-card-hover: #33261e;
  --bg-surface: #261d17;
  --text-main: #fcf6ef;
  --text-muted: #a3b097;
  --border-color: rgba(252, 246, 239, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding-bottom: 70px; /* Space for mobile nav */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

.text-gold {
  color: var(--primary);
  background: linear-gradient(135deg, #ff7b00, #c24000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-glow);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

/* Container */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Top Notification Bar */
.top-bar {
  background: linear-gradient(90deg, #421e0f, #75341c);
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  padding: 8px 0;
  color: #fff2eb;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-btn, .theme-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-btn:hover, .theme-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Navigation Header */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

body.dark-theme .navbar {
  background: rgba(44, 36, 25, 0.9);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e65c00, #a83210);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--shadow-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

.badge-nav {
  background: var(--primary);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  margin-left: 4px;
  vertical-align: super;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.action-btn:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
}

.action-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: #0f172a;
  font-weight: 700;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #0f172a;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -5px rgba(198, 160, 82, 0.5);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

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

.btn-trendyol {
  background: linear-gradient(135deg, #f27a1a, #d45f06);
  color: #fff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-trendyol:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(242, 122, 26, 0.4);
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
}

@media (min-width: 992px) {
  .mobile-bottom-nav {
    display: none;
  }
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.mobile-nav-item i {
  font-size: 1.25rem;
}

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

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0 100px 0;
  background: radial-gradient(circle at 70% 30%, rgba(230, 92, 0, 0.1) 0%, transparent 60%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .hero-cta {
    justify-content: center;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-badge-float {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-active);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.trendyol-badge-sync {
  position: absolute;
  top: 30px;
  right: -10px;
  background: linear-gradient(135deg, #f27a1a, #b85400);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

/* Trendyol Live Sync Ribbon */
.trendyol-sync-banner {
  background: linear-gradient(90deg, rgba(242, 122, 26, 0.15), rgba(15, 23, 42, 0.8), rgba(242, 122, 26, 0.15));
  border-top: 1px solid rgba(242, 122, 26, 0.3);
  border-bottom: 1px solid rgba(242, 122, 26, 0.3);
  padding: 18px 0;
  margin: 30px 0 60px 0;
}

.sync-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.sync-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-trendyol);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-trendyol);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(242, 122, 26, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(242, 122, 26, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(242, 122, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 122, 26, 0); }
}

/* Section Common */
.section {
  padding: 90px 0;
}

.bg-surface {
  background: var(--bg-card);
}

/* Categories & Filter Bar */
.category-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #0f172a;
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-md);
}

.product-image-box {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #0f172a;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge {
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-campaign {
  background: #ef4444;
  color: #fff;
}

.badge-season {
  background: #3b82f6;
  color: #fff;
}

.badge-trendyol {
  background: #f27a1a;
  color: #fff;
}

.product-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #f59e0b;
  margin-bottom: 14px;
}

.rating-count {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.price-box {
  display: flex;
  flex-direction: column;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.current-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-heading);
}

.card-actions {
  display: flex;
  gap: 8px;
}

/* Tailor & Custom Order Section ("Terzi Kısmı") */
.tailor-section {
  position: relative;
  background: linear-gradient(135deg, #fcebdf 0%, #fff6ef 100%);
  border-top: 1px solid var(--border-active);
  border-bottom: 1px solid var(--border-active);
}

.tailor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

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

.tailor-card-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.calc-result-box {
  background: var(--primary-glow);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin: 25px 0;
}

.calc-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}

/* Cargo Tracking Section */
.cargo-box {
  max-width: 750px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.search-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .search-input-group {
    flex-direction: column;
  }
}

.cargo-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
}

.cargo-timeline::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--border-color);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 20%;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: var(--transition);
}

.timeline-step.active .step-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #0f172a;
  box-shadow: var(--shadow-gold);
}

.step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.timeline-step.active .step-label {
  color: var(--text-main);
}

/* Trendyol Customer Reviews Slider / Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--border-active);
}

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

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-glow);
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-active);
}

.verified-tag {
  font-size: 0.72rem;
  color: var(--accent-success);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Modals & Drawers */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--accent-danger);
  color: #fff;
}

/* Payment Tabs (POS / Havale) */
.payment-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.pay-tab {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.pay-tab.active {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
}

.credit-card-visual {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 25px;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.card-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #e4c478, #b88f38);
  border-radius: 6px;
  margin-bottom: 20px;
}

.card-num-preview {
  font-family: monospace;
  font-size: 1.25rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

/* E-Invoice Printable Style */
.invoice-paper {
  background: #ffffff;
  color: #0f172a;
  padding: 40px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}

.invoice-table th, .invoice-table td {
  padding: 12px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.invoice-table th {
  background: #f8fafc;
  font-weight: 700;
}

/* Footer */
.footer {
  background: #090e18;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px 0;
}

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

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

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

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  color: #000;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 85px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: var(--transition);
}

@media (min-width: 992px) {
  .whatsapp-float {
    bottom: 30px;
    right: 30px;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}


/* ==========================================================
   NISANUR HOME — MODERN EDITORIAL REFRESH
   Preserves existing markup and JavaScript behavior.
   ========================================================== */

:root {
  --primary: #c96b4b;
  --primary-hover: #a95539;
  --primary-light: #fff1ea;
  --primary-glow: rgba(201, 107, 75, 0.22);
  --secondary: #25322f;
  --secondary-hover: #18221f;
  --bg-body: #f7f5f0;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #fffaf6;
  --bg-surface: #eeebe4;
  --text-main: #25322f;
  --text-muted: #6d7770;
  --text-dark: #18221f;
  --border-color: rgba(37, 50, 47, 0.12);
  --border-active: rgba(201, 107, 75, 0.42);
  --accent-trendyol: #f27a1a;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow-sm: 0 8px 24px rgba(37, 50, 47, 0.06);
  --shadow-md: 0 18px 45px rgba(37, 50, 47, 0.10);
  --shadow-lg: 0 28px 70px rgba(37, 50, 47, 0.15);
  --shadow-gold: 0 14px 32px rgba(201, 107, 75, 0.22);
  --transition: 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--bg-body);
}

body {
  color: var(--text-main);
  background:
    radial-gradient(circle at 8% 4%, rgba(201, 107, 75, 0.08), transparent 27rem),
    radial-gradient(circle at 95% 18%, rgba(111, 129, 112, 0.09), transparent 23rem),
    var(--bg-body);
  letter-spacing: -0.01em;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

::selection {
  color: #fff;
  background: var(--primary);
}

:focus-visible {
  outline: 3px solid rgba(201, 107, 75, 0.42);
  outline-offset: 4px;
}

.container {
  width: min(1180px, calc(100% - 40px));
}

.top-bar {
  min-height: 34px;
  color: rgba(255,255,255,0.78);
  background: var(--secondary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-bar-content {
  min-height: 34px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.84);
  border-bottom: 1px solid rgba(37, 50, 47, 0.08);
  box-shadow: 0 8px 24px rgba(37, 50, 47, 0.04);
  backdrop-filter: blur(18px) saturate(130%);
}

body.dark-theme .navbar {
  background: rgba(24, 34, 31, 0.86);
  border-bottom-color: rgba(255,255,255,0.08);
}

.nav-container {
  min-height: 76px;
}

.logo {
  gap: 11px;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

body.dark-theme .logo {
  color: #fff;
}

.logo-icon {
  width: 40px;
  height: 40px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #e3a078);
  border-radius: 13px;
  box-shadow: var(--shadow-gold);
}

.nav-links {
  gap: 28px;
}

.nav-link {
  position: relative;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-link::after {
  height: 2px;
  bottom: -9px;
  border-radius: 99px;
  background: var(--primary);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

body.dark-theme .nav-link:hover,
body.dark-theme .nav-link.active {
  color: #fff;
}

.action-btn,
.lang-btn,
.theme-btn {
  border: 1px solid var(--border-color);
  background: rgba(255,255,255,0.72);
  color: var(--text-main);
  box-shadow: none;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.action-btn:hover,
.lang-btn:hover,
.theme-btn:hover {
  color: #fff;
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 680px;
  padding: 92px 0 100px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(247,245,240,0.98) 0%, rgba(247,245,240,0.88) 47%, rgba(247,245,240,0.28) 100%),
    radial-gradient(circle at 76% 36%, rgba(201,107,75,0.16), transparent 26rem);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

.hero::before {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 70px;
  border: 1px solid rgba(201,107,75,0.2);
}

.hero::after {
  width: 230px;
  height: 230px;
  right: 70px;
  top: 160px;
  border: 1px solid rgba(37,50,47,0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  gap: 76px;
  align-items: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  color: var(--primary);
  background: rgba(201,107,75,0.09);
  border: 1px solid rgba(201,107,75,0.18);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 700px;
  margin-top: 22px;
  color: var(--secondary);
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

body.dark-theme .hero-title {
  color: #fff;
}

.text-gold {
  color: var(--primary);
  background: linear-gradient(120deg, var(--primary), #df9870);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 540px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.hero-cta {
  gap: 12px;
  margin-top: 30px;
}

.btn-primary,
.btn-outline,
.btn-trendyol {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 13px;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn-primary {
  color: #fff;
  background: var(--secondary);
  box-shadow: 0 12px 24px rgba(37,50,47,0.16);
}

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

.btn-outline {
  color: var(--secondary);
  background: rgba(255,255,255,0.55);
  border-color: rgba(37,50,47,0.18);
}

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

.btn-trendyol {
  color: #fff;
  background: var(--accent-trendyol);
  box-shadow: 0 12px 24px rgba(242,122,26,0.18);
}

.btn-trendyol:hover {
  color: #fff;
  background: #d9660a;
  transform: translateY(-3px);
}

.hero-stats {
  gap: 28px;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid var(--border-color);
}

.stat-num {
  color: var(--secondary);
  font-size: 1.55rem;
  letter-spacing: -0.06em;
}

body.dark-theme .stat-num {
  color: #fff;
}

.stat-label {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.hero-visual {
  min-height: 500px;
}

.hero-image-wrapper {
  border: 9px solid rgba(255,255,255,0.72);
  border-radius: 42px 42px 42px 8px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2.5deg);
}

.hero-image-wrapper img {
  filter: saturate(0.9) contrast(1.03);
}

.hero-badge-float {
  right: -28px;
  bottom: 35px;
  padding: 18px 20px;
  color: #fff;
  background: var(--secondary);
  border: 5px solid rgba(255,255,255,0.85);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.section {
  padding: 110px 0;
}

.section.bg-surface {
  background: rgba(238,235,228,0.65);
  border-top: 1px solid rgba(37,50,47,0.06);
  border-bottom: 1px solid rgba(37,50,47,0.06);
}

.section-title {
  color: var(--secondary);
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  letter-spacing: -0.07em;
}

body.dark-theme .section-title {
  color: #fff;
}

.section-subtitle {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.category-filter-bar {
  gap: 9px;
  margin: 36px auto 44px;
  padding: 7px;
  width: fit-content;
  max-width: 100%;
  background: rgba(255,255,255,0.64);
  border: 1px solid var(--border-color);
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.filter-btn {
  padding: 10px 17px;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 800;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 8px 18px rgba(37,50,47,0.14);
}

.products-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  border: 1px solid rgba(37,50,47,0.09);
  border-radius: 22px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  border-color: rgba(201,107,75,0.32);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.product-image-box {
  height: 278px;
  background: #e9e4dc;
}

.product-image-box img {
  mix-blend-mode: normal;
  transition: transform 500ms cubic-bezier(0.23,1,0.32,1), filter 500ms ease;
}

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

.badge {
  border-radius: 99px;
  letter-spacing: 0.04em;
}

.product-info {
  padding: 19px 19px 21px;
}

.product-title {
  color: var(--secondary);
  font-size: 0.95rem;
  line-height: 1.35;
}

body.dark-theme .product-title {
  color: #fff;
}

.product-price {
  color: var(--primary);
  font-size: 1.24rem;
}

.feature-box,
.cargo-box,
.tailor-card-box {
  border: 1px solid rgba(37,50,47,0.10);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.feature-box {
  background: rgba(255,255,255,0.68);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.feature-icon {
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 15px;
}

.trendyol-sync-banner {
  border: 1px solid rgba(242,122,26,0.18);
  border-radius: 18px;
  background: linear-gradient(110deg, rgba(242,122,26,0.11), rgba(255,255,255,0.72));
  box-shadow: var(--shadow-sm);
}

.tailor-section {
  background:
    linear-gradient(120deg, rgba(253,244,237,0.94), rgba(240,234,224,0.82)),
    var(--bg-surface);
}

.tailor-card-box {
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(18px);
}

.form-input,
.form-select,
.form-textarea {
  color: var(--text-main);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(37,50,47,0.14);
  border-radius: 13px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.calc-result-box {
  border: 1px solid rgba(201,107,75,0.25);
  border-radius: 18px;
  background: var(--primary-light);
}

.calc-price {
  color: var(--primary);
}

.review-card {
  border: 1px solid rgba(37,50,47,0.09);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.footer {
  color: rgba(255,255,255,0.72);
  background: var(--secondary);
}

.footer a:hover {
  color: #fff;
}

.whatsapp-float {
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  box-shadow: 0 14px 28px rgba(37,211,102,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  box-shadow: 0 18px 34px rgba(37,211,102,0.35);
  transform: translateY(-4px) scale(1.04);
}

.mobile-bottom-nav {
  background: rgba(255,255,255,0.88);
  border-top: 1px solid rgba(37,50,47,0.10);
  box-shadow: 0 -10px 30px rgba(37,50,47,0.08);
  backdrop-filter: blur(18px);
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: var(--primary);
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 68px 0 80px;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-title {
    font-size: clamp(2.9rem, 10vw, 5rem);
  }

  .hero-visual {
    min-height: 420px;
    width: min(560px, 92%);
    margin: 0 auto;
  }

  .section {
    padding: 82px 0;
  }
}

@media (max-width: 576px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  body {
    padding-bottom: 76px;
  }

  .top-bar {
    display: none;
  }

  .nav-container {
    min-height: 68px;
  }

  .logo {
    font-size: 1rem;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .hero {
    padding: 52px 0 64px;
  }

  .hero-title {
    font-size: clamp(2.7rem, 15vw, 4.25rem);
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline,
  .hero-cta .btn-trendyol {
    width: 100%;
  }

  .hero-stats {
    gap: 14px;
    justify-content: space-between;
  }

  .hero-visual {
    min-height: 340px;
    width: 94%;
  }

  .hero-image-wrapper {
    border-width: 6px;
    border-radius: 30px 30px 30px 6px;
  }

  .hero-badge-float {
    right: -14px;
    bottom: 18px;
    padding: 13px;
    font-size: 0.72rem;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .category-filter-bar {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 17px;
    scrollbar-width: none;
  }

  .category-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }

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

  .product-image-box {
    height: 190px;
  }

  .product-info {
    padding: 14px;
  }

  .product-title {
    font-size: 0.78rem;
  }

  .product-price {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile quick access and cart count */
.mobile-nav-cart .mobile-cart-icon-wrap {
  position: relative;
  display: inline-flex;
}

.mobile-cart-count {
  position: absolute;
  top: -10px;
  right: -13px;
  display: grid;
  place-items: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  color: #fff;
  background: var(--primary);
  border: 2px solid #fff;
  border-radius: 99px;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
}

.mobile-nav-item {
  min-width: 56px;
}

@media (max-width: 576px) {
  .mobile-nav-item {
    font-size: 0.62rem;
  }
}