/* Notify me button & label */
.notify-me-btn {
  display: block;
  width: 100%;
  text-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-top: 8px;
  border-radius: 8px;
  background: #0d6efd;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all .2s ease;
}
.notify-me-btn svg { color: #fff; }
.notify-me-btn:hover { background: #0b5ed7; transform: translateY(-1px); }
.notify-me-btn.loading { opacity: .7; cursor: default; }
.notify-me-btn.success { background: #198754; }

.notify-me-label {
  display: block;
  width: 100%;
  text-align: center;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-top: 8px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 600;
  font-size: 13px;
}
.notify-me-label svg { color: #0f172a; }

/* Cart Success Dialog */
.cart-success-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-success-dialog.show {
  opacity: 1;
  visibility: visible;
}

.cart-success-dialog-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(30px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cart-success-dialog.show .cart-success-dialog-content {
  transform: scale(1) translateY(0);
}

.cart-success-dialog-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc3545, #ef4444, #dc3545);
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.cart-success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc3545, #ef4444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.cart-success-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.cart-success-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
  z-index: 1;
  position: relative;
}

.cart-success-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cart-success-message {
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cart-success-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cart-success-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 140px;
  justify-content: center;
}

.cart-success-btn.primary {
  background: linear-gradient(135deg, #dc3545, #ef4444);
  color: #fff;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.cart-success-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.cart-success-btn.secondary {
  background: #f8f9fa;
  color: #6c757d;
  border: 2px solid #e9ecef;
}

.cart-success-btn.secondary:hover {
  background: #e9ecef;
  color: #495057;
  transform: translateY(-1px);
}

.cart-success-btn svg {
  width: 16px;
  height: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cart-success-dialog-content {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .cart-success-title {
    font-size: 20px;
  }
  
  .cart-success-message {
    font-size: 14px;
  }
  
  .cart-success-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .cart-success-btn {
    width: 100%;
    min-width: auto;
  }
}
/* Favorites grid only */
#favorites .products-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  padding: 0 !important;
}

/* Stock alerts grid same as favorites */
#stockAlerts .products-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  padding: 0 !important;
}

#stockAlerts .product-card {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: relative;
}

#stockAlerts .product-image-wrapper { height: 200px; }
#stockAlerts .product-img { max-width: 85%; max-height: 85%; }
#stockAlerts .product-info { padding: 14px; }
#stockAlerts .product-title a { font-size: 14px; }
#stockAlerts .price-current { font-size: 16px; }
#stockAlerts .price-old { font-size: 13px; }

#favorites .product-card {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: relative;
}

#favorites .product-image-wrapper { height: 200px; }
#favorites .product-img { max-width: 85%; max-height: 85%; }
#favorites .product-info { padding: 14px; }
#favorites .product-title a { font-size: 14px; }
#favorites .price-current { font-size: 16px; }
#favorites .price-old { font-size: 13px; }

/* Inline removed badge */
.removed-badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(239,68,68,0.35);
  transition: all 0.4s ease;
  z-index: 5;
}
:root {
  --primary: #333;
  --secondary: #666;
  --accent: #dc3545;
  --accent-hover: #c82333;
  --red: #e74c3c;
  --dark: #2c3e50;
  --light: #ecf0f1;
  --border: #ddd;
  --white: #fff;
  --shadow: 0 2px 10px rgba(0,0,0,.1);
  --shadow-hover: 0 5px 20px rgba(0,0,0,.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  color: var(--primary);
  line-height: 1.6;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* HEADER STYLES - Chromium benzeri */
.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 130;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
  margin: 0 5px;
}

.topbar a:hover {
  color: var(--accent);
}

.site-header {
  position: relative;
  z-index: 120;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 50px;
}

/* Mobile menu toggle - hidden by default */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.mobile-menu-toggle:hover {
  background: rgba(0,0,0,0.1);
}

.search {
  display: flex;
  max-width: 600px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
}

.category-dd {
  position: relative;
}

.dd-toggle {
  background: #f8f9fa;
  border: none;
  padding: 12px 15px;
  border-right: 1px solid var(--border);
  font-size: 14px;
  min-width: 140px;
  cursor: pointer;
}

.dd-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  box-shadow: var(--shadow);
  display: none;
  min-width: 200px;
  z-index: 10;
}

.dd-menu.open {
  display: block;
}

.dd-menu ul {
  list-style: none;
  padding: 10px 0;
}

.dd-menu li a {
  display: block;
  padding: 10px 15px;
  color: var(--primary);
  text-decoration: none;
}

.dd-menu li a:hover {
  background: #f8f9fa;
  color: var(--accent);
}

.search input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 14px;
}

.search input:focus {
  outline: none;
}

.search button {
  background: var(--accent);
  border: none;
  padding: 12px 20px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s;
}

.search button:hover {
  background: var(--accent-hover);
}

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

.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.cart-link:hover {
  background: #c0392b;
  color: var(--white);
}

.badge {
  background: var(--white);
  color: var(--red);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: -5px;
  right: -5px;
}

/* NAVIGATION - Chromium benzeri mega menu */
.navbar {
  background: rgba(52, 73, 94, 0.95);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 110;
}

.navbar-inner {
  display: flex;
  align-items: center;
}

.departments {
  position: relative;
}

.dep-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: bold;
}

.dep-btn:hover {
  background: var(--accent-hover);
}

.main-nav {
  display: flex;
  list-style: none;
  margin-left: 30px;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  transition: all 0.3s;
}

.main-nav a:hover {
  background: rgba(255,255,255,0.1);
}

/* MEGA MENU */
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  width: 400px;
  max-width: 90vw;
  background: var(--white);
  box-shadow: var(--shadow-hover);
  display: none;
  z-index: 99;
  border-radius: 8px;
  overflow: hidden;
}

.mega.open {
  display: block;
  animation: slideDown 0.3s ease;
}

.mega-inner {
  display: block;
}

.mega-left {
  background: #f8f9fa;
  border-right: 1px solid var(--border);
}

.mega-left ul {
  list-style: none;
  padding: 10px 0;
}

.mega-left li a {
  display: block;
  padding: 15px 20px;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.mega-left li a:hover,
.mega-left li a.active {
  background: var(--white);
  color: var(--accent);
  border-left: 3px solid var(--accent);
}

.mega-right {
  padding: 20px;
}

.mega-panel {
  display: none;
}

.mega-panel.active {
  display: block;
}

.columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.col h4 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 16px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 5px;
}

.col ul {
  list-style: none;
}

.col ul li {
  margin-bottom: 8px;
}

.col ul li a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

/* HERO SECTION */
.hero {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slider {
  position: relative;
  height: 50vh;
  width: 100%;
  min-height: 400px;
}

/* Ana sayfa için özel hero yüksekliği */
.home-hero .hero-slider {
  height: 70vh;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  opacity: 0 !important;
  display: none !important;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1 !important;
  display: flex !important;
  z-index: 0;
  justify-content: flex-start;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 70vh;
  padding-left: 15px;
  margin-left: 0;
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
}

/* Ana sayfa için özel hero content */
.home-hero .hero-content {
  padding-left: 0;
}

.hero-text {
  max-width: 600px;
  margin-left: 0 !important;
  text-align: left !important;
  padding-left: clamp(20px, 8vw, 220px) !important;
  padding-top: clamp(24px, 12vh, 220px) !important;
  padding-right: clamp(16px, 4vw, 140px);
}

/* Daha spesifik kural - hero text'i sola yaslamak için */
.home-hero .hero-text,
.hero .hero-text,
section.hero .hero-text,
.hero-slide .hero-text,
.hero-content .hero-text,
.home-hero .hero-slide .hero-content .hero-text {
  text-align: left !important;
  margin-left: 0 !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

/* Hero text içindeki tüm elementler için */
.hero-text h1,
.hero-text p,
.hero-text .cta {
  text-align: left !important;
}

.hero-text h1 {
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  line-height: 1.1;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  line-height: 1.6;
}

.cta {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.cta .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  min-height: 60px;
}

.btn {
  padding: 18px 35px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: bold;
  transition: all 0.3s;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  line-height: 1 !important;
  height: auto;
  min-height: 60px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

.hero-nav {
  display: none;
}

.hero-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 50;
}

.hero-dots button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.hero-dots button.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.2);
}

.hero-dots button:hover {
  background: rgba(255,255,255,0.8);
  border-color: var(--white);
  transform: scale(1.1);
}

/* Hero Brands Overlay */
.hero-brands-overlay {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  max-width: 90%;
  width: 100%;
}

.hero-brands-container {
  text-align: center;
}

.hero-brands-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.hero-brand-link {
  display: inline-block;
  padding: 8px 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-brand-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: width 0.3s ease;
}

.hero-brand-link:hover {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-brand-link:hover::after {
  width: 100%;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-brands-overlay {
    top: 15px;
  }
  
  .hero-brands-title {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .hero-brands-list {
    gap: 6px;
  }
  
  .hero-brand-link {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-brands-list {
    gap: 4px;
  }
  
  .hero-brand-link {
    padding: 4px 8px;
    font-size: 11px;
  }
}

/* SECTIONS */
.section {
  margin: 40px 0;
}

/* BLOG STYLES */
.blog-page {
  margin-top: 0;
  padding: 40px 0;
}

.blog-grid {
  margin-top: 20px;
}

.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.blog-card:hover {
  color: inherit;
  text-decoration: none;
}

.blog-card .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

.blog-card:hover .title {
  color: var(--accent);
}

/* Blog Post Styles */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post article {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.blog-post h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
  line-height: 1.2;
}

.blog-post .cover {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.blog-post .content {
  color: var(--primary);
  line-height: 1.8;
  font-size: 16px;
}

.blog-post .content p {
  margin-bottom: 20px;
}

.blog-post .content h2,
.blog-post .content h3,
.blog-post .content h4 {
  color: var(--dark);
  margin: 30px 0 15px 0;
  font-weight: 600;
}

.blog-post .content h2 {
  font-size: 28px;
}

.blog-post .content h3 {
  font-size: 24px;
}

.blog-post .content h4 {
  font-size: 20px;
}

.blog-post .content ul,
.blog-post .content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.blog-post .content li {
  margin-bottom: 8px;
}

.blog-post .content blockquote {
  border-left: 4px solid var(--accent);
  padding: 20px;
  margin: 30px 0;
  background: #f8f9fa;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--secondary);
}

.section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  color: var(--dark);
}

/* PRODUCT GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  position: relative;
}

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

.product-card .image {
  position: relative;
  overflow: hidden;
  display: block;
}

.product-card .image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Wishlist button on product cards */
.wishlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.wishlist-btn:hover {
  background: #fff5f6;
  border-color: #ffcdd2;
  color: var(--accent);
}

.wishlist-btn.active {
  background: #ffe6e9;
  border-color: #ffccd2;
  color: var(--accent);
}

.wishlist-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}



.content {
  padding: 20px;
}

.title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--dark);
  text-decoration: none;
  display: block;
}

.title:hover {
  color: var(--accent);
}

.price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.current {
  font-size: 18px;
  font-weight: bold;
  color: var(--red);
}

.old {
  font-size: 14px;
  color: var(--secondary);
  text-decoration: line-through;
}

.add-to-cart {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.add-to-cart:hover {
  background: var(--accent-hover);
}

/* CATEGORIES */
.category-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--primary);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  color: var(--accent);
}

.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
}

/* FOOTER */
.site-footer {
  background: #000;
  color: var(--white);
  padding: 40px 0 20px;
  margin-top: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.site-footer .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.site-footer ul {
  list-style: none;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}

.site-footer ul li a:hover {
  color: var(--white);
  text-decoration: underline;
}

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

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

.site-footer .footer-links li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 14px;
}

.site-footer .footer-links li a:hover {
  color: var(--white);
  text-decoration: underline;
}

.site-footer p {
  color: #cfd8dc;
  font-size: 14.5px;
  line-height: 1.8;
}

.site-footer .payments {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px;
  margin-top: 6px;
  display: flex;
  justify-content: center;
}

.site-footer .payment-strip {
  max-width: 100%;
  height: auto;
  max-height: 24px;
  opacity: 0.95;
  display: block;
  margin: 0 auto;
}

.site-footer .newsletter input::placeholder {
  color: #9ca3af;
}

.site-footer .newsletter input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

.site-footer .newsletter .btn {
  font-weight: 700;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.65);
}

.copyright-logo {
  height: 16px;
  width: auto;
  margin-left: 6px;
  vertical-align: middle;
}

/* AUTH STYLES */
.auth {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  margin-top: 0;
}

.auth h1 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--dark);
  font-size: 28px;
}

.auth-form {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-hover);
  width: 100%;
  max-width: 400px;
}

.auth-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 600;
}

.auth-form input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border);
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 20px;
  transition: all 0.3s;
  box-sizing: border-box;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.auth-form .error {
  color: #dc3545 !important;
  font-size: 14px !important;
  margin-top: 5px !important;
  margin-bottom: 15px !important;
  padding: 10px 15px !important;
  background: rgba(220, 53, 69, 0.1) !important;
  border-radius: 6px !important;
  border-left: 4px solid #dc3545 !important;
  font-weight: 500 !important;
  display: block !important;
  width: 100% !important;
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.1) !important;
}

.auth-form .error:empty {
  display: none !important;
}

.auth-form .btn {
  width: 100%;
  margin-bottom: 20px;
  font-size: 16px;
  padding: 15px;
}

.auth-form .hint {
  text-align: center;
  color: var(--secondary);
  font-size: 14px;
  margin: 0;
}

.auth-form .hint a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.auth-form .hint a:hover {
  text-decoration: underline;
}

.auth-form .success {
  color: #27ae60;
  font-size: 14px;
  margin-bottom: 15px;
  padding: 8px 12px;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 4px;
  border-left: 3px solid #27ae60;
}

/* PROFILE STYLES */
.profile {
  margin-top: 0;
  padding: 40px 0;
}

.profile-header {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  text-align: center;
}

.profile-header h1 {
  color: var(--dark);
  margin-bottom: 10px;
}

.profile-header .user-info {
  color: var(--secondary);
  font-size: 16px;
}

.profile-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.profile-sidebar {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: fit-content;
}

.profile-nav {
  list-style: none;
}

.profile-nav li {
  margin-bottom: 10px;
}

.profile-nav a {
  display: block;
  padding: 12px 15px;
  color: var(--secondary);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
}

.profile-nav a:hover,
.profile-nav a.active {
  background: var(--accent);
  color: var(--white);
}

.profile-main {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.profile-form {
  max-width: 600px;
}

.profile-form .form-group {
  margin-bottom: 25px;
}

.profile-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 600;
}

.profile-form input,
.profile-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border);
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s;
  box-sizing: border-box;
  font-family: inherit;
}

.profile-form input:focus,
.profile-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.profile-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* MODERN CART STYLES */
.cart {
  margin-top: 0;
  padding: 40px 0;
}

.cart h1 {
  color: var(--dark);
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 40px 0;
  text-align: center;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 80px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.empty-cart h3 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.empty-cart p {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 30px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Cart Content Layout */
.cart-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

/* Cart Items */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.cart-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.item-count {
  background: var(--accent);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
}

.cart-item {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cart-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

/* Item Image */
.item-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.cart-item:hover .item-image img {
  transform: scale(1.05);
}

.no-image {
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Item Details */
.item-details {
  flex: 1;
}

.item-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.item-price {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
}

/* Item Quantity */
.item-quantity {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--white);
  color: var(--dark);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--accent);
  color: var(--white);
}

.qty {
  width: 60px;
  height: 36px;
  border: none;
  background: #f8f9fa;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

/* Item Total */
.item-total {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.line-total {
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
}

.remove-btn {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: var(--red);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.remove-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: scale(1.05);
}

/* Cart Sidebar */
.cart-sidebar {
  position: sticky;
  top: 220px;
  height: fit-content;
}

.cart-summary {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #f0f0f0;
}

.cart-summary h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 25px 0;
  text-align: center;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 16px;
}

.summary-row span:first-child {
  color: var(--secondary);
}

.summary-row span:last-child {
  font-weight: 600;
  color: var(--dark);
}

.summary-row .free {
  color: #27ae60;
  font-weight: 600;
}

.summary-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 20px 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  border-top: 2px solid #f0f0f0;
  margin-top: 15px;
}

.summary-total span:last-child {
  color: var(--red);
  font-size: 24px;
}

.checkout-btn {
  width: 100%;
  margin: 25px 0 20px 0;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--secondary);
  text-align: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.security-info svg {
  color: #27ae60;
  flex-shrink: 0;
}

/* RESPONSIVE CART STYLES */
@media (max-width: 768px) {
  .cart {
    margin-top: 0;
    padding: 20px 0;
  }
  
  .cart h1 {
    font-size: 24px;
  }
  
  .cart-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
  }
  
  .item-image {
    width: 80px;
    height: 80px;
  }
  
  .item-quantity {
    grid-column: 1 /-1;
    justify-self: center;
    margin-top: 15px;
  }
  
  .item-total {
    grid-column: 1 /-1;
    text-align: center;
    margin-top: 10px;
  }
  
  .cart-sidebar {
    position: static;
    order: -1;
  }
  
  .cart-summary {
    padding: 20px;
  }
  
  .cart-summary h3 {
    font-size: 18px;
  }
  
  .summary-total span:last-child {
    font-size: 20px;
  }
  
  .empty-cart {
    padding: 60px 20px;
  }
  
  .empty-icon {
    font-size: 48px;
  }
  
  .empty-cart h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Mobile header layout */
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    align-items: center;
  }
  
  /* Hide departments button on mobile */
  .departments {
    display: none;
  }
  
  /* Hide main nav on mobile */
  .main-nav {
    display: none;
  }
  
  /* Hide search bar on mobile */
  .search {
    display: none;
  }
  
  /* Compact cart button */
  .cart-link .cart-text {
    display: none;
  }
  
  .cart-link {
    gap: 5px;
    padding: 8px 12px;
    min-width: auto;
  }
  
  .cart-link .badge {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin-left: 4px;
  }
  
  .hero {
    margin-top: 0;
  }
  
  .hero-slider {
    height: 50vh;
    min-height: 300px;
  }
  
  .hero-content {
    padding-left: 15px;
  }
  
  /* Ana sayfa mobile için özel yükseklik ve padding */
  .home-hero .hero-slider {
    height: 70vh;
  }
  
  .home-hero .hero-content {
    padding-left: clamp(12px, 5vw, 28px);
  }
  
  .hero-text {
    padding-left: clamp(16px, 7vw, 60px) !important;
    padding-top: clamp(16px, 6vh, 80px) !important;
    padding-right: clamp(12px, 6vw, 60px);
  }
  
  .hero-text h1 {
    font-size: 36px;
  }
  
  .hero-text p {
    font-size: 16px;
  }
  
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn {
    padding: 15px 25px;
    font-size: 14px;
  }
  
  .hero-dots {
    bottom: 30px;
    gap: 15px;
  }
  
  .hero-dots button {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }
  
  .mega-inner {
    grid-template-columns: 1fr;
  }
  
  .main-nav {
    display: none;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .auth {
    margin-top: 0;
    padding: 20px 0;
  }
  
  .auth-form {
    padding: 30px 20px;
    margin: 0 15px;
  }
  
  .profile {
    margin-top: 0;
  }
  
  .blog-page {
    margin-top: 0;
    padding: 20px 0;
  }
  
  .blog-post article {
    padding: 20px;
  }
  
  .blog-post h1 {
    font-size: 28px;
  }
  
  .blog-post .cover {
    height: 200px;
  }
  
  .profile-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .profile-header,
  .profile-sidebar,
  .profile-main {
    padding: 20px;
  }
}

/* Adres yönetimi stilleri */
.addresses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.address-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.address-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.address-card.default {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(220,53,69,0.02) 0%, rgba(255,255,255,1) 100%);
}

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.address-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.default-badge {
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.address-actions .btn {
  padding: 6px 8px;
  min-width: auto;
}

.address-content {
  space-y: 12px;
}

.address-recipient {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 12px;
}

.address-recipient strong {
  font-weight: 600;
  color: #333;
}

.address-recipient .phone {
  color: #666;
  font-size: 14px;
}

.address-location p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.address-location small {
  color: #888;
  font-size: 12px;
}

.address-footer {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.empty-state {
  grid-column: 1 /-1;
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px dashed #dee2e6;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.empty-state h3 {
  margin: 0 0 10px 0;
  color: #495057;
  font-weight: 600;
}

.empty-state p {
  color: #6c757d;
  margin-bottom: 25px;
}

/* Adres formu stilleri */
.address-form {
  max-width: 700px;
}

.form-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section h3 {
  margin: 0 0 20px 0;
  color: #495057;
  font-size: 18px;
  font-weight: 600;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-grid .form-group,
.form-row .form-group {
  margin-bottom: 0;
}

.form-group.checkbox-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 30px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.checkbox-label span {
  font-size: 14px;
  color: #495057;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.form-actions-left {
  display: flex;
  gap: 15px;
}

.form-actions-right {
  display: flex;
  gap: 15px;
}

/* Form elemanları için genel stiller */
.address-form input[type="text"],
.address-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.address-form input[type="text"]:focus,
.address-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.address-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.address-form textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

/* SVG İkonları için genel stiller */
.btn svg {
  flex-shrink: 0;
}

/* Buton stilleri */
.address-actions .btn {
  position: relative;
  padding: 8px 10px;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* Edit butonu */
.btn-edit {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #6c757d;
  transition: all 0.2s ease;
}

.btn-edit:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
  color: #495057;
  transform: translateY(-1px);
}

/* Delete butonu */
.btn-delete {
  background-color: #fff5f5;
  border: 1px solid #fed7d7;
  color: #dc3545;
  transition: all 0.2s ease;
}

.btn-delete:hover {
  background-color: #fee;
  border-color: #feb2b2;
  color: #c82333;
  transform: translateY(-1px);
}



/* Modal stilleri */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.modal-content h3 {
  margin: 0 0 15px 0;
  color: #495057;
}

.modal-content p {
  color: #6c757d;
  margin-bottom: 25px;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .addresses-grid {
    grid-template-columns: 1fr;
  }
  
  .address-header {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  
  .address-actions {
    justify-content: flex-end;
  }
  
  .form-row,
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.checkbox-group {
    padding-top: 15px;
  }
  
  .form-actions {
    flex-direction: column-reverse;
  }
  
  .modal-actions {
    flex-direction: column;
  }
}

/* ANIMATIONS */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CHROMIUM STYLE - COMPLETE HOMEPAGE */

/* Hero Section - Restored */
.hero {
  position: relative;
  margin: 0;
  overflow: hidden;
  z-index: 0;
}

.banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.banner-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 300px;
}

.banner-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
}

.banner-category {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.banner-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-subtitle {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.banner-subtitle .highlight {
  color: #f39c12;
  font-weight: 700;
}

.banner-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 30px;
}

.banner-price .from {
  font-size: 14px;
  opacity: 0.8;
}

.banner-price .price {
  font-size: 36px;
  font-weight: 700;
  color: #f39c12;
}

.banner-btn {
  background: #f39c12;
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.banner-btn:hover {
  background: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

/* Popular Categories */
.popular-categories {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 25px 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.section-header h2:hover {
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #e74c3c, #c0392b);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
  animation: expandUnderline 1.5s ease-out 0.4s forwards;
}

@keyframes expandUnderline {
  0% {
    width: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 120px;
    opacity: 1;
  }
}

.section-header .highlight {
  color: #e74c3c;
  font-weight: 800;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(231, 76, 60, 0.3));
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.category-image {
  height: 180px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.category-item:hover .category-image img {
  transform: scale(1.05);
}

.category-content {
  padding: 25px;
}

.category-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.category-list li {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.category-list li:before {
  content: "•";
  color: #f39c12;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.category-link {
  color: #f39c12;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.category-link:hover {
  color: #e67e22;
}

/* Blog Cards in Categories */
.blog-excerpt {
  margin-bottom: 15px;
}

.blog-excerpt p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
  border-top: 1px solid #eee;
  font-size: 12px;
}

.blog-date {
  color: #f39c12;
  font-weight: 600;
}

.read-time {
  color: #999;
}

/* Special Offer with Countdown */
.special-offer {
  padding: 40px 0;
  background: #2c3e50;
}

/* Special Discount Slider - Yeni Tasarım */
.special-discount-slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.special-offer-banner {
  display: none;
  position: relative;
  min-height: 500px;
  /* Ana tema kırmızısına uyumlu, biraz daha açık gradient */
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
  overflow: hidden;
  border-radius: 20px;
}

.special-offer-banner.active {
  display: block;
}

.special-offer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Arka plan görsel katmanı (araç temizlik temalı) */
/* Arka planda yalnızca gradient kullanılacak; görsel katman kaldırıldı */

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.02) 50%, transparent 70%);
  z-index: 1;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Nötr siyah overlay: içerik okunabilirliği için */
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.60) 0%,
    rgba(0, 0, 0, 0.35) 100%);
  z-index: 2;
}

.special-offer-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 500px;
  padding: 40px;
  gap: 60px;
}

.offer-info {
  flex: 1 1 0;
  color: white;
  min-width: 0;
  max-width: 55%;
}



.product-title {
  font-size: 1.8rem;
  font-weight: 800; /* daha vurgulu */
  margin-bottom: 15px;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45), 0 0 10px rgba(255,255,255,0.15);
}

.price-display {
  margin-bottom: 20px;
  text-shadow: none !important;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  text-shadow: none !important;
}

.old-price {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  text-decoration: line-through;
  margin-right: 10px;
  text-shadow: none !important;
}

.discount-badge {
  background: #dc3545;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.8rem;
  display: inline-block;
  margin-top: 5px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

.countdown-section {
  margin-bottom: 30px;
}

.countdown-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}

.countdown-timer {
  display: flex;
  gap: 15px;
  align-items: center;
}

.timer-unit {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
  min-width: 80px;
  border: 1px solid rgba(255,255,255,0.2);
}

.timer-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.timer-label {
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.timer-separator {
  font-size: 2rem;
  font-weight: 800;
  opacity: 0.7;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 0.7; }
  51%, 100% { opacity: 0.3; }
}

.action-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-add-cart {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, #c82333, #a71e2a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-add-cart.expired {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-view-details {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 24px;
  border-radius: 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-view-details:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.product-showcase {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-image-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

.product-image {
  width: 250px;
  height: 250px;
  object-fit: contain;
  border-radius: 0;
  position: relative;
  z-index: 2;
  filter: none;
  transition: transform 0.5s ease;
}

/* Özel indirimler bölümündeki ürün resimleri için border-radius */
.product-image-container .product-image {
  border-radius: 20px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.product-image:hover {
  transform: scale(1.05) rotate(2deg);
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.shine-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}



.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.slider-btn {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.expired-message {
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 15px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

/* View All Section */
.view-all-section {
  margin-top: 40px;
  padding: 30px;
}

.view-all-container {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.view-all-content {
  position: relative;
  z-index: 2;
}

.view-all-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.view-all-text p {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn-view-all {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-view-all:hover {
  background: linear-gradient(135deg, #c82333, #a71e2a);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
  color: white;
  text-decoration: none;
}

.view-all-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  opacity: 0.1;
}

.decoration-circle {
  width: 150px;
  height: 150px;
  border: 3px solid #dc3545;
  border-radius: 50%;
  position: absolute;
  top: -75px;
  right: -75px;
}

.decoration-dots {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background: 
    radial-gradient(circle at 20% 20%, #dc3545 2px, transparent 2px),
    radial-gradient(circle at 60% 20%, #dc3545 2px, transparent 2px),
    radial-gradient(circle at 20% 60%, #dc3545 2px, transparent 2px),
    radial-gradient(circle at 60% 60%, #dc3545 2px, transparent 2px);
  background-size: 20px 20px;
}

/* Mobile: Only show the button, hide the heading/paragraph and decorations */
@media (max-width: 768px) {
  .view-all-section .view-all-text { display: none !important; }
  .view-all-section .view-all-decoration { display: none !important; }
  .view-all-section .view-all-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .special-offer-content {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
    text-align: center;
  }
  .special-offer .offer-info { max-width: 100%; }
  .special-offer .product-showcase { flex: 0 0 auto; }
  
  .product-title {
    font-size: 1.5rem;
    margin-top: 12px;  /* mobilde üst boşluk */
    margin-bottom: 12px;
  }
  
  .current-price {
    font-size: 1.8rem;
  }
  
  .old-price {
    font-size: 1rem;
  }
  
  .discount-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
  
  .countdown-timer {
    gap: 10px;
  }
  
  .timer-unit {
    min-width: 60px;
    padding: 10px 8px;
  }
  
  .timer-number {
    font-size: 1.5rem;
  }
  
  .action-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-add-cart,
  .btn-view-details {
    width: 100%;
    justify-content: center;
  }
  
  .product-image-container {
    width: 250px;
    height: 250px;
  }
  
  .product-image {
    width: 200px;
    height: 200px;
  }
  

}

.offer-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
}

.offer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.offer-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  height: 100%;
}

.offer-text {
  flex: 1;
  color: white;
}

.offer-badge {
  background: #3498db;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}

.offer-badge .from {
  opacity: 0.8;
}

.offer-badge .price {
  font-size: 20px;
  font-weight: 700;
}

.offer-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.1;
}

.offer-title .highlight {
  color: #f39c12;
}

.offer-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.timer-item {
  text-align: center;
}

.timer-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #f39c12;
  line-height: 1;
}

.timer-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 5px;
  opacity: 0.8;
}

.timer-separator {
  font-size: 36px;
  font-weight: 700;
  color: #f39c12;
}

.offer-btn {
  background: #f39c12;
  color: white;
  padding: 15px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.offer-btn:hover {
  background: #e67e22;
  transform: translateY(-2px);
}

.offer-image {
  flex: 0 0 300px;
  text-align: right;
}

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

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
}

/* What We Offer */
.what-we-offer {
  padding: 80px 0;
  background: white;
}

/* Tab styles removed - sections are now stacked */

.tab-arrows {
  display: flex;
  gap: 10px;
}

/* Hide tab arrows only in What We Offer section */
.what-we-offer .tab-arrows {
  display: none !important;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: white;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.arrow-btn:hover {
  background: #f39c12;
  color: white;
  border-color: #f39c12;
}

.offer-content-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}

.products-carousel {
  flex: 1;
  display: block;
}

.products-carousel.active {
  display: block;
}

.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* large ekranlarda 4 sütun */
  gap: 30px;
  margin: 0 100px; /* Ürün listelerine 50px margin eklendi */
}

.offer-product-item {
  background: transparent;
  border: none;
  border-radius: 8px;
  overflow: visible;
  transition: all 0.3s ease;
}

.offer-product-item:hover {
  transform: translateY(-3px);
}

.offer-product-item .product-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f39c12;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}

.offer-product-item .product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.offer-product-item:hover .product-image img {
  transform: scale(1.05);
}

.product-details {
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-top: -10px;
  position: relative;
  z-index: 1;
}

.offer-product-item:hover .product-details {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Home > What We Offer: card inside border, no elevation (scoped override) */
.what-we-offer .offer-product-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
}

.what-we-offer .offer-product-item:hover {
  transform: none; /* keep it flat */
}

.what-we-offer .offer-product-item .product-details {
  box-shadow: none !important; /* elevation 0 */
  border-radius: 0; /* unify with outer card */
  margin-top: 0; /* align content within the bordered card */
  flex: 1;
  display: flex;
  flex-direction: column;
}

.what-we-offer .offer-product-item .product-image {
  height: 240px; /* a bit more space for image within bordered card */
}

/* What We Offer > Price styles (scoped to prevent global overrides) */
.what-we-offer .product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  text-shadow: none !important;
}
.what-we-offer .current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  text-shadow: none !important;
}
.what-we-offer .old-price {
  font-size: 14px;
  color: var(--secondary);
  text-decoration: line-through;
  line-height: 1;
  text-shadow: none !important;
}

.product-category {
  font-size: 12px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Link stiline benzemesin diye adı normal metin gibi bırakıyoruz;
   tıklanabilirlik kart seviyesinde JS ile sağlanıyor */
.product-name a { color: inherit; text-decoration: none; }
.product-name a:hover { color: inherit; text-decoration: none; }

/* Başlık yüksekliklerini eşitle - maksimum 2 satır göster */
.what-we-offer .product-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px; /* 2 satır için yaklaşık */
}

/* Aksiyonları kartın tabanına it */
.what-we-offer .product-actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
  opacity: 1;
  position: static;
  transform: none;
}

/* Home ürün kartlarında butonun net görünmesi için masaüstünde geniş ve tam satır */
.what-we-offer .product-actions .add-to-cart-btn {
  width: 100%;
  height: 44px;
  font-weight: 700;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.stars span {
  color: #ffc107;
  font-size: 14px;
}

.reviews-count {
  font-size: 12px;
  color: #666;
}

.product-price {
  margin-bottom: 15px;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
  margin-right: 8px;
}

.current-price {
  color: #e74c3c;
  font-weight: 700;
  font-size: 18px;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.add-to-cart-btn,
.quick-view-btn {
  min-width: 120px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.add-to-cart-btn:hover {
  background: #f39c12;
  border-color: #f39c12;
  color: white;
}

.quick-view-btn:hover {
  background: #3498db;
  border-color: #3498db;
  color: white;
}

/* Mobil: ürün görselini ortala ve taşmayı engelle */
@media (max-width: 768px) {
  .what-we-offer .offer-product-item .product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: #fff;
  }
  .what-we-offer .offer-product-item .product-image img {
    width: auto !important;
    height: 100% !important;
    object-fit: contain !important;
  }
}

.sidebar-banners {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-banner {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
}

.sidebar-banner .banner-bg {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}

.sidebar-banner .banner-content {
  position: relative;
  z-index: 2;
  color: white;
}

.sidebar-banner h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
}

.sidebar-banner p {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.sidebar-banner .banner-btn {
  background: rgba(0,0,0,0.3);
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sidebar-banner .banner-btn:hover {
  background: rgba(0,0,0,0.5);
}

.discount-badge {
  font-size: 12px;
  margin-bottom: 5px;
  opacity: 0.8;
}

.discount-percent {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
}

.sidebar-banner .banner-image {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.sidebar-banner .banner-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

/* Latest Updates */
.latest-updates {
  padding: 80px 0;
  background: #f8f9fa;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.update-item {
  display: flex;
  gap: 20px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.update-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.update-image {
  flex: 0 0 200px;
  height: 180px;
}

.update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.update-content {
  flex: 1;
  padding: 25px;
}

.update-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.update-date,
.update-category {
  font-size: 12px;
  color: #f39c12;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.update-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.3;
}

.update-excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.update-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-more-btn {
  background: #2c3e50;
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #34495e;
}

.view-count {
  font-size: 12px;
  color: #999;
}

/* Features Section */
.features-section {
  padding: 40px 0 20px 0;
  background: white;
  border-top: 1px solid #eee;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature-icon {
  flex: 0 0 60px;
  color: #dc3545;
}

.feature-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 5px 0;
}

.feature-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-row {
    grid-template-columns: repeat(3, 1fr); /* orta ekranlarda 3 sütun */
  }
}

@media (max-width: 768px) {
  .hero-banners {
    margin-top: 0;
  }
  
  .banners-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .banner-content {
    left: 20px;
  }
  
  .banner-title {
    font-size: 32px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .offer-content {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }
  
  .offer-title {
    font-size: 36px;
  }
  
  .offer-content-wrapper {
    flex-direction: column;
  }
  
  .sidebar-banners {
    flex: none;
    flex-direction: row;
  }
  
  .products-row {
    grid-template-columns: repeat(2, 1fr); /* tablet */
    gap: 20px;
    margin: 0 20px; /* Tablet için margin azaltıldı */
  }
  
  .updates-grid {
    grid-template-columns: 1fr;
  }
  
  .update-item {
    flex-direction: column;
  }
  
  .update-image {
    flex: none;
    height: 200px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .offer-tabs {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .products-row {
    grid-template-columns: 1fr; /* Mobilde tek sütun */
    margin: 0 15px; /* Mobil için daha az margin */
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .sidebar-banners {
    flex-direction: column;
  }
  
  .banner-title {
    font-size: 24px;
  }
  
  .offer-title {
    font-size: 28px;
  }
  
  .countdown-timer {
    justify-content: center;
  }
}

/* ---- Special Offer: Title & Price color overrides ---- */
.special-offer .offer-info .product-title {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45), 0 0 10px rgba(255,255,255,0.15);
  margin-top: 16px; /* üstte ek boşluk */
  /* Uzun başlıklar: tek satır ve sonuna üç nokta */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.special-offer .price-display .current-price,
.special-offer .price-display .old-price {
  color: #ffffff !important;
  text-shadow: none !important;
}

/* Üstü çizili fiyatı daha koyu ve belirgin yap */
.special-offer .price-display .old-price {
  opacity: 0.95;
  font-weight: 700;
}

/* Special Offer: ok butonlarını gizle, sadece dots kalsın */
.special-discount-slider .slider-nav,
.special-discount-slider .slider-btn {
  display: none !important;
}

/* MODERN PRODUCT CARDS - Chromium Style */
.campaign-products {
  margin: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px 0;
  border-radius: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: var(--secondary);
  margin: 0;
  font-weight: 400;
}

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

.product-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border-color: var(--accent);
}

.discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}



/* Genel product-image stili kaldırıldı - sadece products-grid içindeki spesifik stiller kullanılacak */



.product-info {
  padding: 24px;
}

.product-category {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.product-title {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: none !important;
}

.product-title a {
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-title a:hover {
  color: var(--accent);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #ddd;
  font-size: 14px;
  transition: all 0.2s ease;
}

.star.active {
  color: #ffc107;
}

.rating-count {
  font-size: 12px;
  color: var(--secondary);
}

.product-pricing {
  margin-bottom: 16px;
}

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

.current-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--red);
}

.old-price {
  font-size: 16px;
  color: var(--secondary);
  text-decoration: line-through;
  font-weight: 400;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #27ae60;
}

.feature-item svg {
  flex-shrink: 0;
}

.add-to-cart-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--red) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.add-to-cart-btn svg {
  flex-shrink: 0;
}

/* RESPONSIVE IMPROVEMENTS */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .campaign-products {
    margin: 40px 0;
    padding: 30px 0;
    border-radius: 15px;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0 6px;
  }
  
  .product-item {
    border-radius: 12px;
  }
  
  .product-image {
    height: 240px;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-actions {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    opacity: 1;
    transform: none;
    margin-bottom: 12px;
  }
  
  .current-price {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .product-image {
    height: 200px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
}

/* LOADING ANIMATION */
.product-item.loading {
  animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

/* Eski stiller için uyumluluk */
.subnav {
  background: rgba(236, 240, 241, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  position: fixed;
  top: 180px;
  left: 0;
  right: 0;
  z-index: 110;
}

.category-nav {
  display: flex;
  gap: 15px;
  list-style: none;
  overflow-x: auto;
}

.category-nav a {
  padding: 8px 15px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  color: var(--primary);
  white-space: nowrap;
  transition: all 0.3s;
}

.category-nav a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ==================== NEW MEGA MENU STYLES ==================== */
.mega .categories-list {
  padding: 10px;
}

.mega .category-item {
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}

.mega .category-item:last-child {
  border-bottom: none;
}

.mega .category-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: var(--white);
  border: none;
  border-radius: 0;
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
  box-shadow: none;
}

.mega .category-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: none;
  box-shadow: none;
}

.mega .category-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 0;
  margin-right: 12px;
  color: var(--accent);
  transition: all 0.3s ease;
}

.mega .category-link:hover .category-icon {
  background: none;
  color: var(--white);
}

.mega .category-info {
  flex: 1;
}

.mega .category-info h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.mega .category-info span {
  display: none;
}

.mega .category-arrow {
  color: var(--accent);
  transition: all 0.3s ease;
  width: 16px;
  height: 16px;
}

.mega .category-link:hover .category-arrow {
  color: var(--white);
  transform: none;
}

.mega .category-item.all-products .category-link {
  background: #f8f9fa;
  border-top: 1px solid var(--border);
}

.mega .category-item.all-products .category-link:hover {
  background: var(--primary);
  color: var(--white);
}

.mega .category-item.all-products .category-icon {
  background: none;
  color: var(--primary);
}

.mega .category-item.all-products .category-link:hover .category-icon {
  background: none;
  color: var(--white);
}

/* Mobile responsive for mega menu */
@media (max-width: 768px) {
  .mega {
    display: none !important;
  }
}

/* ==================== MOBILE SLIDE MENU ==================== */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-slide-menu.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--white);
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-slide-menu.open .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--primary);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.mobile-menu-close:hover {
  background: rgba(255,255,255,0.1);
}

.mobile-menu-search {
  padding: 20px;
  background: #f8f9fa;
  border-bottom: 1px solid var(--border);
}

.mobile-search-input {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-search-input input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  background: transparent;
  outline: none;
}

.mobile-search-input input::placeholder {
  color: #999;
}

.mobile-search-input button {
  background: var(--accent);
  border: none;
  color: var(--white);
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-input button:hover {
  background: var(--accent-hover);
}

.mobile-menu-section-title {
  padding: 15px 20px 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 1px;
  background: #f8f9fa;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu-categories {
  border-bottom: 1px solid var(--border);
}

.mobile-menu-section {
  position: relative;
}

.mobile-section-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.3s;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-section-toggle:hover {
  background: #f8f9fa;
}

.mobile-section-toggle.active {
  background: rgba(220, 53, 69, 0.05);
}

.mobile-section-toggle .mobile-menu-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-section-toggle.active .mobile-menu-section-title {
  color: var(--accent);
}

.section-toggle-arrow {
  color: #ccc;
  transition: all 0.3s ease;
}

.mobile-section-toggle:hover .section-toggle-arrow {
  color: var(--accent);
}

.mobile-section-toggle.active .section-toggle-arrow {
  color: var(--accent);
  transform: rotate(180deg);
}

.mobile-categories-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
}

.mobile-categories-list.show {
  max-height: 500px; /* Yeterince büyük bir değer */
}

.mobile-category-link {
  display: flex;
  align-items: center;
  padding: 12px 30px; /* Daha fazla içe girinti */
  text-decoration: none;
  color: var(--secondary);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s;
  font-size: 14px;
}

.mobile-category-link:hover {
  background: rgba(220, 53, 69, 0.05);
  color: var(--accent);
  padding-left: 35px;
}

.mobile-category-link.all-products {
  background: rgba(220, 53, 69, 0.1);
  color: var(--accent);
  font-weight: 600;
  border-top: 1px solid rgba(220, 53, 69, 0.2);
}

.mobile-category-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  color: var(--accent);
}

.mobile-category-link span {
  flex: 1;
  font-size: 14px;
}

.mobile-category-arrow {
  color: #ccc;
  transition: transform 0.3s;
}

.mobile-category-link:hover .mobile-category-arrow {
  transform: translateX(3px);
  color: var(--accent);
}

.mobile-menu-nav {
  padding: 0;
}

.mobile-menu-nav a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.mobile-menu-nav a:hover {
  background: var(--accent);
  color: var(--white);
  padding-left: 30px;
}

/* ==================== PRODUCTS PAGE STYLES ==================== */

/* Mobile Filter Toggle */
.mobile-filter-toggle {
  display: none;
  margin-bottom: 20px;
}

.filter-toggle-btn {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.filter-toggle-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-toggle-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.filter-toggle-btn .toggle-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.filter-toggle-btn.active .toggle-arrow {
  transform: rotate(180deg);
}

/* Breadcrumb */
.breadcrumb-section {
  background: #f8f9fa;
  padding: 15px 0;
  margin-top: 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb .separator {
  color: var(--border);
  font-weight: bold;
}

.breadcrumb .current {
  color: var(--primary);
  font-weight: 600;
}

/* Products Section */
.products-section {
  padding: 30px 0 60px;
  background: #f8f9fa;
  margin-bottom: 40px;
  /* Gri arka planın ekranı tam kaplaması için width ve margin eklendi */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.products-section:last-child {
  margin-bottom: 0;
}

/* Container'ı products-section içinde yeniden tanımlayalım */
.products-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.products-sidebar {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  position: sticky;
  top: 160px;
}

.sidebar-widget {
  padding: 25px;
  border-bottom: 1px solid #f1f3f4;
}

.sidebar-widget:last-child {
  border-bottom: none;
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.widget-title svg {
  color: var(--accent);
}

/* Category Filters */
.category-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

.category-filter:hover {
  background: rgba(220, 53, 69, 0.05);
  border-color: var(--accent);
  color: var(--accent);
}

.category-filter.active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-color: var(--accent);
  color: var(--white);
}

.filter-name {
  font-weight: 500;
}

.filter-count {
  background: rgba(0,0,0,0.1);
  color: inherit;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.category-filter.active .filter-count {
  background: rgba(255,255,255,0.2);
}

/* Brand Filters */
.brand-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

.brand-filter:hover {
  background: rgba(220, 53, 69, 0.05);
  border-color: var(--accent);
  color: var(--accent);
}

.brand-filter.active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-color: var(--accent);
  color: var(--white);
}

.brand-filter.active .filter-count {
  background: rgba(255,255,255,0.2);
}

/* Price Filter */
.price-filter {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.price-input:focus {
  border-color: var(--accent);
}

.price-separator {
  color: var(--secondary);
  font-weight: bold;
}

.filter-apply-btn {
  padding: 10px 20px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.filter-apply-btn:hover {
  background: var(--accent-hover);
}

/* Main Content */
.products-main {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Products Header */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #e9ecef;
}

.products-info h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.products-count {
  color: var(--secondary);
  font-size: 14px;
}

.products-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* View Toggle */
.view-toggle {
  display: flex;
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.view-btn {
  padding: 10px 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.view-btn.active {
  background: var(--accent);
  color: var(--white);
}

.view-btn:hover:not(.active) {
  background: #f8f9fa;
  color: var(--primary);
}

/* Sort Select */
.sort-select {
  padding: 10px 15px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  background: var(--white);
  color: var(--primary);
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.sort-select:focus {
  border-color: var(--accent);
}

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

/* List View */
.products-grid.list-view {
  grid-template-columns: 1fr;
  gap: 20px;
}

.products-grid.list-view .product-item {
  display: flex;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  padding: 0;
  align-items: stretch;
}

.products-grid.list-view .product-image {
  width: 250px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 0;
}

.products-grid.list-view .product-info {
  flex: 1;
  margin-top: 0;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.products-grid.list-view .product-actions {
  position: static;
  opacity: 1;
  transform: none;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: flex-end;
}

.products-grid.list-view .product-footer {
  margin-top: auto;
}

.product-item {
  background: transparent;
  border-radius: 15px;
  overflow: visible;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
}

.product-item:hover {
  transform: translateY(-5px);
}

/* Product Image */
.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: transparent;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-image img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  transition: transform 0.3s ease;
}



.image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Product Badges */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.discount {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: var(--white);
}

.product-badge.limited {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: var(--white);
}

.product-badge.out-of-stock {
  background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
  color: var(--white);
}

/* Product Actions */
.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  z-index: 2;
}

.product-item:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--secondary);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.action-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
}

/* Product Info */
.product-info {
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-top: -10px;
  position: relative;
  z-index: 1;
}

.product-item:hover .product-info {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-category {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-title {
  margin-bottom: 12px;
}

.product-title a {
  color: var(--primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
  text-shadow: none !important;
}

.product-title a:hover {
  color: var(--accent);
}

/* Product Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.stars {
  position: relative;
  font-size: 14px;
  line-height: 1;
}

.stars-empty {
  color: #e9ecef;
}

.stars-filled {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffc107;
  overflow: hidden;
  white-space: nowrap;
}

.rating-count {
  font-size: 12px;
  color: var(--secondary);
}

/* Product Price */
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.price-current {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.price-old {
  font-size: 16px;
  color: var(--secondary);
  text-decoration: line-through;
}

/* Product Footer */
.product-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.add-to-cart-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--red) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.add-to-cart-btn.disabled {
  background: #95a5a6;
  cursor: not-allowed;
}

.add-to-cart-btn.disabled:hover {
  transform: none;
  box-shadow: none;
}

/* No Products */
.no-products {
  text-align: center;
  padding: 80px 30px;
  color: var(--secondary);
}

.no-products-icon {
  margin-bottom: 20px;
  opacity: 0.5;
}

.no-products h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary);
}

.no-products p {
  margin-bottom: 30px;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .products-layout {
    grid-template-columns: 250px 1fr;
    gap: 30px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 968px) {
  .products-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mobile-filter-toggle {
    display: block;
    order: -2;
  }
  
  .products-sidebar {
    position: static;
    order: -1;
    margin-bottom: 20px;
    display: none; /* Başlangıçta gizli */
  }
  
  .products-sidebar.show {
    display: block;
  }
}

/* Desktop'ta sidebar her zaman görünür */
@media (min-width: 769px) {
  .products-sidebar {
    display: block !important;
  }
  
  .products-main {
    order: 1;
  }
  
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .products-controls {
    width: 100%;
    justify-content: space-between;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .breadcrumb-section {
    margin-top: 0;
    padding: 10px 0;
  }
  
  .products-section {
    padding: 20px 0 40px;
  }
  
  .products-header {
    padding: 20px;
  }
  
  .products-info h1 {
    font-size: 24px;
  }
  
  .products-grid {
    padding: 20px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .products-grid.list-view .product-item {
    flex-direction: column;
  }
  
  .products-grid.list-view .product-image {
    width: 100%;
    height: 200px;
  }
  
  .product-image {
    height: 200px;
  }
  
  .product-actions {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    opacity: 1;
    transform: none;
    margin-bottom: 15px;
  }
  
  .sidebar-widget {
    padding: 20px;
  }
  
  .mega .categories-list {
    padding: 15px;
  }
  
  .mega .category-link {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .product-image {
    height: 180px;
  }
  
  .products-controls {
    flex-direction: column;
    gap: 15px;
  }
  
  .view-toggle {
    order: 2;
  }
  
  .sort-select {
    order: 1;
    width: 100%;
  }
}

/* ==================== PRODUCT DETAIL PAGE STYLES ==================== */

/* Product Detail Section */
.product-detail-section {
  padding: 30px 0 60px;
  background: #f8f9fa;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

/* Product Gallery */
.product-gallery {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.main-image-container {
  position: relative;
  margin-bottom: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

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

.image-zoom-hint {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-image-container:hover .image-zoom-hint {
  opacity: 1;
}

.thumbnail-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
}

.thumbnail-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.thumbnail-item.active {
  border-color: var(--accent);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info Section */
.product-info-section {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.product-category-tag {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
}

.product-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.rating-text {
  color: var(--secondary);
  font-size: 14px;
}

.reviews-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

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

/* Product Price Section */
.product-price-section {
  margin-bottom: 30px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.current-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.old-price {
  font-size: 24px;
  color: var(--secondary);
  text-decoration: line-through;
}

.discount-badge {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.savings {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #27ae60;
  font-weight: 600;
  font-size: 14px;
}

.savings svg {
  color: #f39c12;
}

/* Product Features */
.product-features {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e9ecef;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #27ae60;
  font-size: 14px;
}

.feature-item svg {
  flex-shrink: 0;
}

/* Add to Cart Form */
.add-to-cart-form {
  margin-bottom: 30px;
}

.quantity-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.quantity-label {
  font-weight: 600;
  color: var(--primary);
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.qty-btn {
  width: 45px;
  height: 45px;
  border: none;
  background: #f8f9fa;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background: var(--accent);
  color: white;
}

.quantity-input {
  width: 80px;
  height: 45px;
  border: none;
  text-align: center;
  font-weight: 600;
  background: white;
  outline: none;
}

.action-buttons {
  display: flex;
  gap: 15px;
}

.add-to-cart-btn.primary {
  flex: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
  height: 54px;
  box-sizing: border-box;
}

.add-to-cart-btn.primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--red));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.wishlist-btn {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--secondary);
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  height: 48px;
  box-sizing: border-box;
}

.wishlist-btn:hover {
  background: #fff5f6;
  color: var(--accent);
  border-color: #ffd6da;
}

.wishlist-btn.active {
  background: #ffe6ea;
  color: var(--accent);
  border-color: #ffccd2;
}

.wishlist-btn.active svg { fill: currentColor; }

.wishlist-btn svg {
  transition: all 0.3s ease;
}

.wishlist-btn:hover svg { transform: scale(1.05); }

.wishlist-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.wishlist-btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.wishlist-btn .btn-text {
  transition: opacity 0.3s ease;
}

.wishlist-btn.loading .btn-text {
  opacity: 0;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-hover);
  z-index: 9999;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 400px;
  min-width: 300px;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.notification-message {
  color: var(--primary);
  font-weight: 500;
  flex: 1;
}

.notification-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--secondary);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.notification-close:hover {
  background: var(--border);
  color: var(--primary);
}

.notification-success {
  border-left: 4px solid #27ae60;
}

.notification-success .notification-message {
  color: #27ae60;
}

.notification-error {
  border-left: 4px solid var(--accent);
}

.notification-error .notification-message {
  color: var(--accent);
}

.notification-info {
  border-left: 4px solid #3498db;
}

.notification-info .notification-message {
  color: #3498db;
}

/* Mobile responsive for notifications */
@media (max-width: 768px) {
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
    min-width: auto;
    transform: translateY(-100px);
  }
  
  .notification.show {
    transform: translateY(0);
  }
}

/* Ensure hero is fully visible on mobile under fixed headers */
@media (max-width: 768px) {
  .hero {
    margin-top: 0 !important;
  }
}

/* ==================== CHECKOUT PAGE STYLES ==================== */
.checkout {
  margin-top: 0;
  padding: 40px 0;
  min-height: calc(100vh - 200px);
}

/* Address Selection Styles */
.address-selection {
  margin-bottom: 20px;
}

.selected-address-display {
  margin-top: 20px;
  animation: slideDown 0.3s ease;
}

.selected-address-display .address-card {
  background: #f8f9fa;
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.selected-address-display .address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}

.selected-address-display .address-header h4 {
  margin: 0;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
}

.selected-address-display .address-type {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.selected-address-display .recipient-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.selected-address-display .recipient-info strong {
  color: var(--dark);
  font-size: 16px;
}

.selected-address-display .recipient-info .phone {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 500;
}

.selected-address-display .address-info p {
  margin: 0;
  color: var(--primary);
  line-height: 1.5;
  font-size: 14px;
}

.no-address-notice {
  text-align: center;
  padding: 30px 20px;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 12px;
  margin-bottom: 20px;
}

.no-address-notice p {
  margin: 0 0 15px 0;
  color: #856404;
  font-weight: 500;
}

.btn-secondary {
  background: #6c757d;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #5a6268;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.checkout h1 {
  color: var(--dark);
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 40px 0;
  text-align: center;
}

.checkout .grid-2 {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}

.checkout section {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.checkout section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 25px 0;
}

.checkout form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  display: block;
}

.checkout textarea,
.checkout select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.checkout textarea:focus,
.checkout select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.checkout textarea {
  min-height: 100px;
  resize: vertical;
}

.checkout .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.checkout .mb-2 {
  margin-bottom: 8px;
}

.checkout .mt-2 {
  margin-top: 8px;
}

.checkout small {
  font-size: 12px;
  color: var(--secondary);
}

.checkout small a {
  color: var(--accent);
  text-decoration: none;
}

.checkout small a:hover {
  text-decoration: underline;
}

.checkout .btn {
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.checkout .btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.checkout .btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--red));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.checkout aside {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 220px;
}

.checkout aside h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 25px 0;
  text-align: center;
}

.checkout .order-summary {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.checkout .order-summary li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.checkout .order-summary li:last-child {
  border-bottom: none;
}

.checkout .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  border-top: 2px solid #f0f0f0;
  margin-top: 15px;
}

.checkout .total strong {
  color: var(--red);
  font-size: 20px;
}

.checkout .alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.checkout .alert-warning {
  background: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}

.checkout .alert-warning a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.checkout .alert-warning a:hover {
  text-decoration: underline;
}

/* Responsive Checkout */
@media (max-width: 768px) {
  .checkout {
    margin-top: 0;
    padding: 20px 0;
  }
  
  .checkout h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .checkout .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .checkout section,
  .checkout aside {
    padding: 20px;
  }
  
  .checkout aside {
    position: static;
    order: -1;
  }
}

/* ==================== IYZICO CHECKOUT STYLES ==================== */
.iyzico-checkout {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.iyzico-checkout iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 8px;
}

.text-muted {
  color: var(--secondary);
  font-size: 14px;
}

/* ==================== TEST PAYMENT STYLES ==================== */
.payment-container {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 30px;
}

.payment-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 30px;
  text-align: center;
}

.payment-header h1 {
  margin: 0 0 10px 0;
  font-size: 2rem;
  font-weight: 600;
}

.order-info {
  margin: 0;
  opacity: 0.9;
  font-size: 1.1rem;
}

.payment-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 30px;
}

.payment-form-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
}

.payment-method {
  margin-bottom: 25px;
  text-align: center;
}

.payment-method h3 {
  margin: 0 0 15px 0;
  color: var(--dark);
  font-size: 1.3rem;
}

.card-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.card-icon {
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.card-icon.visa {
  background: #1a1f71;
}

.card-icon.mastercard {
  background: #eb001b;
}

.card-icon.amex {
  background: #006fcf;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.payment-summary {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  margin: 25px 0;
  border: 1px solid #e9ecef;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f3f4;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item.total {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  border-top: 2px solid var(--accent);
  padding-top: 15px;
  margin-top: 10px;
}

.btn-pay {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  border-radius: 8px;
  color: var(--white);
  transition: all 0.3s ease;
}

.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.security-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 15px;
  background: #e8f5e8;
  border: 1px solid #c3e6c3;
  border-radius: 8px;
  color: #2d5a2d;
  font-size: 0.9rem;
}

.order-summary-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  height: fit-content;
}

.order-summary-section h3 {
  margin: 0 0 20px 0;
  color: var(--dark);
  font-size: 1.2rem;
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.item-name {
  font-weight: 500;
  color: var(--dark);
}

.item-quantity {
  font-size: 0.9rem;
  color: #6c757d;
}

.item-price {
  font-weight: 600;
  color: var(--primary);
}

@media (max-width: 768px) {
  .payment-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .payment-header {
    padding: 20px;
  }
  
  .payment-header h1 {
    font-size: 1.5rem;
  }
}

/* ==================== CHECKOUT SUCCESS STYLES ==================== */
.success-box {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-top: 0;
}

.success-box svg {
  color: #27ae60;
  margin-bottom: 20px;
}

.success-box h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.success-box p {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 30px;
}

.success-box strong {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 768px) {
  .success-box {
    margin-top: 0;
    padding: 40px 20px;
  }
  
  .success-box h1 {
    font-size: 24px;
  }
}

/* Out of Stock Notice */
.out-of-stock-notice {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 12px;
  margin-bottom: 30px;
}

.out-of-stock-notice svg {
  color: #f39c12;
  flex-shrink: 0;
}

.out-of-stock-notice h3 {
  margin: 0 0 5px 0;
  color: #856404;
}

.out-of-stock-notice p {
  margin: 0;
  color: #856404;
  font-size: 14px;
}

/* Product Meta */
.product-meta {
  border-top: 1px solid #e9ecef;
  padding-top: 25px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.meta-item strong {
  color: var(--primary);
}

.meta-item span {
  color: var(--secondary);
}

/* Product Description Section */
.product-description-section {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-tabs {
  display: flex;
  border-bottom: 1px solid #e9ecef;
}

.tab-btn {
  flex: 1;
  padding: 20px;
  border: none;
  background: transparent;
  color: var(--secondary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn.active {
  color: var(--accent);
  background: rgba(220, 53, 69, 0.05);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.tab-content {
  display: none;
  padding: 40px;
}

.tab-content.active {
  display: block;
}

.description-content {
  color: var(--primary);
  line-height: 1.8;
  font-size: 16px;
}

.description-content p {
  margin-bottom: 15px;
}

.related-products-section {
  margin-top: 60px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.related-products-header h2 {
  font-size: 28px;
  color: var(--primary);
  margin: 0;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.view-all-link:hover {
  color: var(--accent-hover);
  transform: translateX(4px);
}

.view-all-link svg {
  width: 18px;
  height: 18px;
}

.related-products-section .products-grid {
  margin: 0;
}

.related-products-section .product-card {
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.related-products-section .product-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #e9ecef;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.feature-card h4 {
  margin-bottom: 10px;
  color: var(--primary);
}

.feature-card p {
  color: var(--secondary);
  font-size: 14px;
  margin: 0;
}

/* Reviews Section */
.reviews-section {
  text-align: center;
}

.rating-overview {
  margin-bottom: 30px;
}

.big-rating {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.stars-large {
  font-size: 24px;
  margin-bottom: 10px;
}

.rating-count {
  color: var(--secondary);
}

.reviews-placeholder {
  padding: 40px;
  color: var(--secondary);
}

/* Shipping Info */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.info-card {
  padding: 25px;
  border: 1px solid #e9ecef;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.info-card h4 {
  margin-bottom: 10px;
  color: var(--primary);
}

.info-card p {
  color: var(--secondary);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-detail-layout {
    gap: 40px;
  }
  
  .product-info-section,
  .product-gallery {
    padding: 30px;
  }
  
  .product-title {
    font-size: 28px;
  }
  
  .current-price {
    font-size: 32px;
  }
}

@media (max-width: 968px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-tabs {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    flex: 1 1 50%;
    min-width: 120px;
  }
  
  .features-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .add-to-cart-btn.primary,
  .wishlist-btn {
    width: 100%;
    height: 50px;
  }

  .related-products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .related-products-section {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .product-detail-section {
    padding: 20px 0 40px;
  }
  
  .product-info-section,
  .product-gallery {
    padding: 20px;
  }
  
  .product-title {
    font-size: 24px;
  }
  
  .current-price {
    font-size: 28px;
  }
  
  .old-price {
    font-size: 20px;
  }
  
  .tab-content {
    padding: 20px;
  }
  
  .quantity-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .product-rating {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .related-products-section {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .tab-btn {
    padding: 15px 10px;
    font-size: 14px;
  }
  
  .main-image-container {
    margin-bottom: 15px;
  }
  
  .thumbnail-gallery {
    gap: 8px;
  }
  
  .thumbnail-item {
    width: 60px;
    height: 60px;
  }
  
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .current-price {
    font-size: 24px;
  }
}

/* ==================== YENİ ÜRÜN GRID SİSTEMİ ==================== */
.product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  overflow: hidden;
}

.wishlist-icon-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.wishlist-icon-btn:hover {
  background: #fff5f6;
  color: var(--accent);
  border-color: #ffd1d6;
}

.wishlist-icon-btn.active {
  background: #ffe6ea;
  color: var(--accent);
  border-color: #ffc2ca;
}

.wishlist-icon-btn.loading { opacity: 0.7; pointer-events: none; }

.product-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.product-img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

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

/* ==================== MOBILE SLIDER FOR DETAILING GUIDE (POPULAR CATEGORIES) ==================== */
@media (max-width: 768px) {
  /* Sadece ana sayfadaki Detaylı Temizlik Rehberleri alanını etkiler */
  .popular-categories .categories-grid {
    /* Grid'i yatay kayan kolonlara çevir */
    grid-template-columns: none; /* önceki tanımı geçersiz kıl */
    grid-auto-flow: column;
    grid-auto-columns: 85%; /* her kart görünümün ~%85'i genişlikte */
    overflow-x: auto;
    overflow-y: visible;
    gap: 16px;
    padding: 0 15px;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox scrollbar gizle */
  }

  .popular-categories .categories-grid::-webkit-scrollbar {
    display: none; /* WebKit scrollbar gizle */
  }

  .popular-categories .category-item {
    scroll-snap-align: start;
  }

  /* Kart içi görsel yüksekliğini mobilde biraz artırıp taşıma yapmadan ortala */
  .popular-categories .category-image {
    height: 200px;
  }
}

/* ==================== LATEST UPDATES: MOBILE SLIDER + ARROWS HIDE ==================== */
/* Okları tamamen kaldır (masaüstü ve mobil) */
.latest-updates .section-arrows { display: none !important; }

@media (max-width: 768px) {
  /* Mobilde Son Yazılar gridini yatay kaydırılabilir slider yap */
  .latest-updates .updates-grid {
    grid-template-columns: none; /* varolan kolon tanımını kaldır */
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    overflow-x: auto;
    overflow-y: visible;
    gap: 16px;
    padding: 0 15px;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .latest-updates .updates-grid::-webkit-scrollbar { display: none; }
  .latest-updates .update-item { scroll-snap-align: start; }

  /* Kartı mobil slider görünümünde daha uyumlu hale getir */
  .latest-updates .update-image { height: 200px; }
}

/* ==================== WIDE REGISTER FORM STYLES ==================== */
.register-form-wide {
  max-width: 800px !important;
  margin: 0 auto;
}

.form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-column label {
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.form-column input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.form-column input:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-column .error {
  color: #dc3545 !important;
  font-size: 14px !important;
  margin-top: 5px !important;
  margin-bottom: 15px !important;
  padding: 10px 15px !important;
  background: rgba(220, 53, 69, 0.1) !important;
  border-radius: 6px !important;
  border-left: 4px solid #dc3545 !important;
  font-weight: 500 !important;
  display: block !important;
  width: 100% !important;
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.1) !important;
}

.form-column .error:empty {
  display: none !important;
}

/* Form column error styling */
.form-column .error {
  color: #dc3545 !important;
  font-size: 14px !important;
  margin-top: 5px !important;
  margin-bottom: 15px !important;
  padding: 10px 15px !important;
  background: rgba(220, 53, 69, 0.1) !important;
  border-radius: 6px !important;
  border-left: 4px solid #dc3545 !important;
  font-weight: 500 !important;
  display: block !important;
  width: 100% !important;
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.1) !important;
}

/* Alt bölümler için yan yana düzen */
.form-bottom-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

/* Mobilde tek sütun yap */
@media (max-width: 768px) {
  .form-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-bottom-sections {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .register-form-wide {
    max-width: 100% !important;
  }
}

/* ==================== NOTIFICATION PREFERENCES STYLES ==================== */
.notification-preferences {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.notification-preferences h3 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.checkbox-label:hover {
  background-color: #e9ecef;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: #0d6efd;
}

.checkbox-label span {
  flex: 1;
  color: #495057;
}

/* Profile sayfasındaki bildirim tercihleri için özel stiller */
.profile-form .form-group .checkbox-group {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 15px;
  margin-top: 10px;
}

.profile-form .checkbox-label {
  padding: 6px;
  border-radius: 4px;
}

.profile-form .checkbox-label:hover {
  background-color: #e9ecef;
}

/* KVKK onayı için özel stiller */
.kvkk-section {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

.kvkk-section .checkbox-label {
  font-size: 13px;
  line-height: 1.5;
  color: #495057;
}

.kvkk-section .checkbox-label a {
  color: #0d6efd;
  text-decoration: underline;
  font-weight: 500;
}

.kvkk-section .checkbox-label a:hover {
  color: #0a58ca;
  text-decoration: none;
}

.kvkk-section .checkbox-label strong {
  color: #dc3545;
  font-weight: 600;
}

/* Zorunlu alan işareti */
.checkbox-label.required::after {
  content: " *";
  color: #dc3545;
  font-weight: bold;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .notification-preferences {
    padding: 15px;
  }
  
  .checkbox-label {
    font-size: 13px;
    padding: 6px;
  }
  
  .checkbox-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
  }
  
  .kvkk-section {
    padding: 12px;
  }
  
  .kvkk-section .checkbox-label {
    font-size: 12px;
  }
}

/* About sayfası stilleri */
.about-hero {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.4) 0%, rgba(185, 28, 28, 0.4) 100%), 
              url('/assets/images/about-hero-bg.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: white;
  padding: 25px 0 !important;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 15vh !important;
  height: 15vh !important;
  max-height: 15vh !important;
  display: flex;
  align-items: center;
}

/* Contact sayfası stilleri */
.contact-hero {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.4) 0%, rgba(185, 28, 28, 0.4) 100%), 
              url('/assets/images/contact-hero-bg.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: white;
  padding: 25px 0 !important;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 15vh !important;
  height: 15vh !important;
  max-height: 15vh !important;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Ana sayfa hero için sola yaslamak */
.home-hero .hero-content {
  margin: 0 !important;
  margin-left: 0 !important;
  text-align: left !important;
}

.hero-title {
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-out;
}

.company-name {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 5px;
  opacity: 0.9;
  text-transform: uppercase;
}

.page-title {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, #fff, rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-subtitle {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.5;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.element-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero responsive tasarım */
@media (max-width: 768px) {
  .about-hero,
  .contact-hero {
    padding: 20px 0 !important;
    min-height: 12vh !important;
    height: 12vh !important;
    max-height: 12vh !important;
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  /* Ana sayfa hero için responsive sola yaslamak */
  .home-hero .hero-content {
    text-align: left !important;
    margin: 0 !important;
    margin-left: 0 !important;
  }
  
  .company-name {
    font-size: 1.2rem;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
  }
  
  .page-title {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
  }
  
  .hero-subtitle p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .about-hero,
  .contact-hero {
    padding: 15px 0 !important;
    min-height: 10vh !important;
    height: 10vh !important;
    max-height: 10vh !important;
  }
  
  .company-name {
    font-size: 1rem;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
  }
  
  .page-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .hero-subtitle p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}

.about-content {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-section {
  margin-bottom: 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-icon {
  margin-bottom: 20px;
  color: var(--accent);
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.partnerships-section {
  margin-bottom: 80px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 50px;
}

.partnership-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partnership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.partnership-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.partnership-content h4 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.partnership-description {
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.brand-approvals,
.export-info,
.region-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.approval-badge,
.export-badge,
.region-badge {
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.mission-vision-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.mission-card,
.vision-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  margin-bottom: 20px;
  color: var(--accent);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
  color: var(--secondary);
  line-height: 1.6;
  font-size: 1.1rem;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive tasarım */
@media (max-width: 768px) {
  .company-name {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle p {
    font-size: 1rem;
  }
  
  .partnership-card {
    flex-direction: column;
    text-align: center;
  }
  
  .partnership-icon {
    margin: 0 auto;
  }
  
  .mission-vision-section {
    grid-template-columns: 1fr;
  }
  
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brand-approvals,
  .export-info,
  .region-info {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-section {
    grid-template-columns: 1fr;
  }
  
  .partnership-card {
    padding: 20px;
  }
  
  .mission-card,
  .vision-card {
    padding: 30px 20px;
  }
}

/* Landing Page Hero Styles */
.hero {
  position: relative;
  min-height: 40vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 40vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

/* Ana sayfa hero slider için güçlü sola yaslamak kuralları */
.home-hero .hero-slide .hero-content,
.home-hero .hero-content {
  text-align: left !important;
  margin: 0 !important;
  margin-left: 0 !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.home-hero .hero-slide,
.home-hero .hero-slides .hero-slide {
  text-align: left !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero .cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-product-image {
  position: relative;
  text-align: center;
}

.product-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.product-hero-image:hover {
  transform: scale(1.05);
}

.product-hero-badge {
  position: absolute;
  top: -10px;
  right: -10px;
}

.product-hero-badge .badge {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive Hero */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero .cta {
    justify-content: center;
  }
  
  .hero-product-image {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 35vh;
  }
  
  .hero-slide {
    min-height: 35vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* ==================== PRODUCT VIDEO STYLES ==================== */
.product-video-section {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.video-title {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-title::before {
  content: "▶";
  color: #dc3545;
  font-size: 16px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.product-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #666;
  padding: 20px;
}

.video-placeholder a {
  color: #dc3545;
  text-decoration: none;
  font-weight: 500;
}

.video-placeholder a:hover {
  text-decoration: underline;
}

/* Responsive video */
@media (max-width: 768px) {
  .product-video-section {
    margin-top: 15px;
    padding: 15px;
  }
  
  .video-title {
    font-size: 16px;
  }
}

/* ZORLA HERO YÜKSEKLİK KONTROLÜ */
.about-hero,
.contact-hero {
  min-height: 30vh !important;
  height: 30vh !important;
  max-height: 30vh !important;
  padding: 50px 0 !important;
}

@media (max-width: 768px) {
  .about-hero,
  .contact-hero {
    min-height: 24vh !important;
    height: 24vh !important;
    max-height: 24vh !important;
    padding: 40px 0 !important;
  }
}

@media (max-width: 480px) {
  .about-hero,
  .contact-hero {
    min-height: 20vh !important;
    height: 20vh !important;
    max-height: 20vh !important;
    padding: 30px 0 !important;
  }
}

/* ==================== HOMEPAGE CATEGORIES STYLES ==================== */
.homepage-categories {
  padding: 20px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.homepage-categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f1f5f9" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  opacity: 0.3;
  z-index: 0;
}

.homepage-categories .container {
  position: relative;
  z-index: 1;
  max-width: 1500px;
}

.homepage-categories .section-header {
  text-align: center;
  margin-bottom: 25px;
}

.homepage-categories .section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  position: relative;
}

.homepage-categories .section-header h2 .highlight {
  background: linear-gradient(135deg, #dc3545, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.homepage-categories .section-header h2 .highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #dc3545, #ef4444);
  border-radius: 2px;
}

.homepage-categories .section-header p {
  font-size: 1rem;
  color: #6c757d;
  margin: 0;
  font-weight: 400;
}

/* Homepage Categories - Button cards */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
  grid-auto-rows: minmax(320px, auto);
}

.category-card {
  display: flex;
  animation: fadeInUp 0.6s ease-out;
}

.category-link {
  --category-accent: rgba(220, 53, 69, 0.85);
  --category-accent-soft: rgba(220, 53, 69, 0.12);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 220px);
  align-items: center;
  gap: 22px;
  width: 100%;
  padding: 28px 24px;
  border-radius: 28px;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(220, 53, 69, 0.2);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
  color: var(--dark);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.category-link::before {
  content: '';
  position: absolute;
  top: -18%;
  left: -15%;
  width: 190px;
  height: 190px;
  background: linear-gradient(135deg, var(--category-accent), transparent);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.32;
  transition: opacity 0.3s ease;
}

.category-link::after {
  content: '';
  position: absolute;
  bottom: -18%;
  right: -12%;
  width: 210px;
  height: 210px;
  background: linear-gradient(135deg, transparent, var(--category-accent-soft));
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.category-link:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 53, 69, 0.32);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
}

.category-link:hover::before,
.category-link:hover::after {
  opacity: 0.6;
}

.category-card:nth-child(2n) .category-link {
  --category-accent: rgba(171, 29, 44, 0.9);
  --category-accent-soft: rgba(171, 29, 44, 0.12);
}

.category-card:nth-child(3n) .category-link {
  --category-accent: rgba(220, 53, 69, 0.78);
  --category-accent-soft: rgba(220, 53, 69, 0.1);
}

.category-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.category-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(15, 23, 42, 0.5);
}

.category-name {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-name-primary {
  font-size: 1.55rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
}

.category-name-secondary {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.1;
}

.category-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.3s ease, transform 0.3s ease;
}

.category-cta::after {
  content: '\2192';
  font-size: 1rem;
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.category-link:hover .category-cta {
  color: var(--accent-hover);
  transform: translateX(4px);
}

.category-link:hover .category-cta::after {
  transform: translateX(4px) scale(1.05);
}

.category-media {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.category-media.has-image::before {
  content: '';
  position: absolute;
  inset: 10% -10% 12% 20%;
  background: linear-gradient(135deg, var(--category-accent-soft), rgba(255, 255, 255, 0));
  border-radius: 32px;
  opacity: 0.7;
  z-index: -1;
}

.category-media.no-image::before {
  display: none;
}

.category-media.no-image {
  justify-content: center;
}

.category-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  transform: scale(1);
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.22));
  transition: transform 0.35s ease;
}

.category-link:hover .category-media img {
  transform: scale(1.05) translateX(4px);
}

.category-media-placeholder {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 220px;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px dashed rgba(220, 53, 69, 0.35);
  background: rgba(220, 53, 69, 0.08);
  color: rgba(15, 23, 42, 0.65);
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.35;
}

.category-media-placeholder svg {
  color: rgba(220, 53, 69, 0.6);
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .homepage-categories {
    padding: 24px 0;
  }
  
  .categories-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 6px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .categories-grid::-webkit-scrollbar {
    height: 6px;
  }
  
  .categories-grid::-webkit-scrollbar-thumb {
    background: rgba(220, 53, 69, 0.3);
    border-radius: 999px;
  }
  
  .category-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
  
  .category-link {
    padding: 18px 16px;
    border-radius: 20px;
  }
  
  .category-name {
    gap: 2px;
  }
  
  .category-name-primary {
    font-size: 1.35rem;
  }
  
  .category-name-secondary {
    font-size: 1.05rem;
  }
}

@media (max-width: 540px) {
  .category-card {
    flex: 0 0 80%;
  }
  
  .category-link {
    padding: 18px 14px;
    border-radius: 18px;
  }
  
  .category-cta {
    font-size: 0.9rem;
  }
  
  .category-media {
    justify-content: center;
  }
  
  .category-media img,
  .category-media-placeholder {
    max-width: 190px;
    width: 80%;
  }
}

@media (min-width: 1280px) {
  .categories-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Animation for category cards on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }
