/* Mobil İlk (Mobile First) Yaklaşımı */

/* Genel Stiller */
:root {
    --primary-color: #2d68d6;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --white: #fff;
    --black: #000;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.btn:hover {
    background-color: #2d68d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Mobil Üst Bilgi */
.mobile-top-bar {
    display: none;
    padding: 10px 15px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo img {
    height: 30px;
}

.hamburger-menu {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--dark-color);
    cursor: pointer;
}

.mobile-cart {
    position: relative;
    font-size: 18px;
}

.mobile-cart .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--danger-color);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Mobil Arama Çubuğu */
.mobile-search {
    display: none;
    padding: 10px 15px;
    background-color: var(--light-color);
    border-bottom: 1px solid #eee;
}

.mobile-search input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
    font-size: 14px;
}

.mobile-search button {
    padding: 0 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    height: 100%;
}

/* Mobil Menü */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background-color: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-nav.show {
    left: 0;
}

.mobile-nav-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    background-color: var(--primary-color);
    color: var(--white);
}

.close-mobile-nav {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
}

.mobile-nav-links {
    padding: 15px 0;
}

.mobile-nav-links a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-color);
    transition: var(--transition);
    font-size: 15px;
}

.mobile-nav-links a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.mobile-nav-links a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Desktop Only Elemanları */
.desktop-only {
    display: block;
}

/* Üst Navigasyon */
.top-nav {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 8px 0;
    font-size: 14px;
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
}

.top-nav a {
    color: var(--light-color);
    margin-right: 15px;
    transition: var(--transition);
}

.top-nav a:hover {
    color: var(--primary-color);
}

.top-nav a i {
    margin-right: 5px;
}

/* Ana Navigasyon */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
}

.search-bar {
    display: flex;
    flex: 1;
    margin: 0 30px;
    max-width: 600px;
}

.search-bar input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.search-bar button {
    padding: 0 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-link {
    margin-left: 20px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link i {
    margin-right: 5px;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--danger-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Kategori Navigasyon */
.category-nav {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
}

.category-nav .container {
    display: flex;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.dropbtn {
    background-color: transparent;
    color: var(--white);
    padding: 8px 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropbtn i {
    margin-right: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--box-shadow);
    z-index: 1;
    border-radius: var(--border-radius);
}

.dropdown-content a {
    color: var(--dark-color);
    padding: 12px 16px;
    display: block;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.category-link {
    margin-right: 15px;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
}

.category-link:hover {
    opacity: 0.8;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 500px;
}

.slide-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.slider-controls button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--white);
}

/* Kategoriler */
.categories {
    padding: 40px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.category-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--box-shadow);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 15px;
    color: var(--white);
    text-align: center;
}

.category-overlay h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Popüler Ürünler */
.popular-products {
    padding: 40px 0;
    background-color: var(--white);
}

.product-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 8px 15px;
    margin: 0 5px 5px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    font-size: 14px;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.tab-btn:hover {
    color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--danger-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: bold;
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 12px;
}

.product-title {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 40px;
}

/* Temel Reset ve Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: none; /* Firefox scrollbar gizle */
  -ms-overflow-style: none; /* IE & Edge scrollbar gizle */
}

::-webkit-scrollbar {
  display: none; /* Chrome, Safari scrollbar gizle */
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  background: #f8f9fa;
}

/* Container */
.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* Ürün Grid Konteyneri */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  padding: 15px;
  width: 100%;
}

/* Ürün Kartları */
.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Ürün Görseli */
.product-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Fiyat ve Butonlar */
.product-price {
  display: flex;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}

.current-price {
  font-weight: bold;
  color: var(--primary-color, #2e66f2);
}

.old-price {
  color: var(--secondary-color, #999);
  text-decoration: line-through;
  font-size: 13px;
}

.discount {
  color: var(--success-color, #28a745);
  font-size: 13px;
  margin-left: 8px;
}

/* Ürün İşlemleri Butonları */
.product-actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}

.add-to-cart {
  flex: 1;
  padding: 8px;
  background-color: var(--primary-color, #2e66f2);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.3s;
}

.add-to-cart:hover {
  background-color: #2557c3;
}

.add-to-fav {
  width: 36px;
  height: 36px;
  background-color: var(--light-color, #f1f1f1);
  color: var(--secondary-color, #555);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.add-to-fav:hover {
  color: var(--danger-color, #dc3545);
}

/* Kampanyalar */
.campaigns {
  padding: 40px 0;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  padding: 0 15px;
}

.campaign-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  background: #000;
}

.campaign-card:hover {
  transform: scale(1.03);
}

.campaign-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-content {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
}

.campaign-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.campaign-content p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* Markalar */
.brands {
  padding: 40px 0;
  background-color: #fff;
}

.brand-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 15px 0;
}

.brand-item {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 120px;
  height: 70px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  transition: filter 0.3s, opacity 0.3s;
}

.brand-item img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.7;
}

.brand-item:hover img {
  filter: none;
  opacity: 1;
}

/* Footer */
.footer {
  background-color: var(--dark-color, #222);
  color: var(--light-color, #eee);
  padding: 40px 15px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
  color: #fff;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color, #2e66f2);
}

.footer-col p {
  opacity: 0.8;
  margin-bottom: 15px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
  text-decoration: none;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary-color, #2e66f2);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 14px;
  color: inherit;
  transition: background-color 0.3s, color 0.3s;
}

.social-links a:hover {
  background-color: var(--primary-color, #2e66f2);
  color: #fff;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px 0 0 8px;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  padding: 0 12px;
  background-color: var(--primary-color, #2e66f2);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 14px;
}

/* Footer Alt Kısım */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #ccc;
}

.payment-methods {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-methods img {
  height: 25px;
}

/* Sepet Modal */
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 2000;
}

.cart-modal-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: #fff;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.cart-modal-header {
  padding: 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-cart {
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}

.close-cart:hover {
  color: var(--danger-color, #dc3545);
}

.cart-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.empty-cart i {
  font-size: 40px;
  color: var(--secondary-color, #999);
  margin-bottom: 15px;
}

.empty-cart p {
  margin-bottom: 15px;
  font-size: 16px;
}

.cart-modal-footer {
  padding: 15px;
  border-top: 1px solid #eee;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: var(--primary-color, #2e66f2);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
  .hero-slider {
    height: 350px;
  }

  .slide-content h2 {
    font-size: 32px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 992px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-top-bar,
  .mobile-search {
    display: flex;
  }

  .navbar .container {
    flex-wrap: wrap;
  }

  .search-bar {
    order: 3;
    width: 100%;
    margin: 15px 0 0;
  }

  .hero-slider {
    height: 300px;
    margin-top: 10px;
  }

  .slide-content {
    left: 5%;
    max-width: 80%;
  }

  .slide-content h2 {
    font-size: 24px;
  }

  .slide-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .product-img {
    height: 160px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cart-modal-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 250px;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-card {
    height: 180px;
  }

  .campaign-grid {
    grid-template-columns: 1fr;
  }

  .campaign-card {
    height: 150px;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .payment-methods {
    margin-top: 10px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 200px;
  }

  .slide-content .btn {
    padding: 8px 15px;
    font-size: 12px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .section-title::after {
    width: 50px;
    height: 2px;
  }
}

@media (max-width: 400px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-img {
    height: 200px;
  }
}

/* Kategori Stilleri */
.categories {
  padding: 40px 20px;
  text-align: center;
  background: #f8f9fa;
}

.categories h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.category-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.category-card {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.circle-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.category-card h3 {
  margin: 10px 0;
  font-size: 1.1rem;
  color: #333;
}

.shop-btn {
  background: #ffffff;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.shop-btn:hover {
  background: #ffffff;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .category-grid {
    gap: 20px;
  }

  .category-card {
    width: 140px;
  }

  .circle-icon {
    width: 100px;
    height: 100px;
  }

  .circle-icon img {
    width: 50px;
    height: 50px;
  }
}

/* İkon Menü */
.icon-menu {
  padding: 10px 0;
  background: #fff;
  overflow-x: auto;
}

.icon-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 15px;
  padding: 10px;
}

.icon-item {
  flex: 0 0 auto;
  text-align: center;
  scroll-snap-align: start;
  width: 80px;
}

.icon-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 5px;
}

.icon-item p {
  font-size: 13px;
  color: #333;
}

/* Kategori Menüsü */
.kategori-menusu {
  background-color: #ffffff; /* koyu kahve */
  padding: 10px;
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  gap: 10px;
}

.kategori-btn {
  display: inline-block;
  padding: 8px 18px;
  background-color: transparent;
  color: rgb(0, 0, 0);
  border: 1.5px solid rgb(0, 0, 0);
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  white-space: nowrap;
  cursor: pointer;
}

.kategori-btn:hover {
  background-color: rgb(255, 255, 255);
  color: #2e0d00;
}

.kategori-btn.aktif {
  background-color: rgb(255, 255, 255);
  color: #2e0d00;
  font-weight: bold;
}

/* Mobilde Scroll */
.kategori-menusu::-webkit-scrollbar {
  display: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Bilgisayarda 4'lü */
  gap: 20px;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* Telefonda 2'li */
  }
}



.view-all {
  position: relative; /* ya da absolute */
  left: 5px;        /* sağa 30px kaydır */
  top: -15px;         /* aşağıya 10px kaydır */
}












/* admin-login.html */

    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #ff6600, #ff9a3c);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      margin: 0;
    }
    .login-box {
      background: #fff;
      padding: 40px 35px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
      text-align: center;
      width: 320px;
      transition: 0.3s;
    }
    .login-box:hover { transform: translateY(-3px); }
    h2 { margin-bottom: 10px; color: #333; }
    input {
      padding: 12px;
      width: 100%;
      margin-bottom: 15px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 14px;
    }
    button {
      padding: 12px;
      width: 100%;
      background: #ff6600;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      font-size: 15px;
      transition: 0.3s;
    }
    button:hover { background: #ff7e2d; }
    #error {
      color: red;
      display: none;
      margin-top: 10px;
      font-size: 14px;
    }
  

/* admin-order-detail.html */

    body {
      background:#f6f6f6;
      font-family:"Poppins", sans-serif;
      padding:20px;
    }
    .card {
      background:white;
      padding:25px;
      border-radius:12px;
      box-shadow:0 3px 12px rgba(0,0,0,0.1);
      max-width:800px;
      margin:auto;
    }
    a.back {
      background:#ff7a00;
      color:white;
      padding:10px 16px;
      border-radius:8px;
      text-decoration:none;
    }
    .section {
      margin-top:25px;
      padding:20px;
      border:1px solid #eee;
      border-radius:10px;
      background:#fafafa;
    }
    table {
      width:100%;
      border-collapse:collapse;
      margin-top:10px;
    }
    table th, td {
      text-align:left;
      padding:10px;
      border-bottom:1px solid #ddd;
    }
    
    /* Durum butonları */
    .statusBtn {
      padding:10px 14px;
      border-radius:8px;
      border:1px solid #ccc;
      background:#eee;
      cursor:pointer;
      margin-right:10px;
    }
    .statusBtn.active {
      background:#ff7a00;
      color:white;
      border-color:#ff7a00;
      font-weight:bold;
    }

    #statusMessage {
      margin-top:10px;
      font-weight:bold;
      color:green;
    }

    /* Silme butonu */
    #deleteBtn {
      background:#d9534f;
      color:white;
      padding:10px 16px;
      border:none;
      border-radius:8px;
      cursor:pointer;
      margin-top:20px;
    }
  

/* admin.html */

    :root {
      --bg: #f6f6f6;
      --card: #fff;
      --text: #222;
      --muted: #666;
      --accent: #ff6600;
      --danger: #ff0800;
    }

    * {
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
    }

    .wrap {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 16px;
    }

    h1 {
      margin: 0 0 16px;
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .tabs button {
      padding: 10px 16px;
      border: 1px solid #ddd;
      background: #fff;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 500;
      transition: 0.3s;
    }

    .tabs button:hover {
      background: #fafafa;
    }

    .tabs button.active {
      background: var(--accent);
      color: white;
      border-color: var(--accent);
    }

    .tab {
      display: none;
    }

    .tab.active {
      display: block;
    }

    .card {
      background: var(--card);
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
      padding: 16px;
      margin-bottom: 16px;
      transition: 0.3s;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 10px;
      margin-bottom: 10px;
    }

    input, textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 14px;
    }

    textarea {
      min-height: 80px;
      resize: vertical;
    }

    button {
      padding: 10px 16px;
      border: none;
      border-radius: 8px;
      background: var(--accent);
      color: rgb(0, 0, 0);
      font-weight: 500;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      opacity: 0.9;
    }

    button[style*="background:#d9534f"] {
      background: var(--danger) !important;
    }

    .table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }

    .table th, .table td {
      padding: 10px;
      border-bottom: 1px solid #eee;
      text-align: left;
    }

    .loading {
      color: var(--muted);
      font-size: 15px;
      padding: 10px;
    }

    .hidden { display: none; }

    .msg { margin-left: 8px; color: var(--muted); }

    .error { color: #b00020; margin-top: 8px; }

    .toast {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--accent);
      color: white;
      padding: 12px 20px;
      border-radius: 8px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
      opacity: 0;
      transition: opacity 0.4s, transform 0.4s;
      transform: translateY(20px);
      z-index: 1000;
    }

    .toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 600px) {
      .wrap { padding: 0 10px; }
      .tabs { flex-direction: column; }
      .grid { grid-template-columns: 1fr; }
      .table th, .table td {
        font-size: 13px;
        padding: 8px;
      }
      button { width: 100%; margin-top: 6px; }
    }
  

/* arama.html */

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            padding-bottom: 20px;
        }

        /* Header - Ana sayfayla uyumlu */
        .mobile-search-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: #fff;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 2200;
        }

        .back-btn {
            background: none;
            border: none;
            padding: 6px;
            cursor: pointer;
            border-radius: 8px;
            display: flex;
            align-items: center;
            color: #333;
            font-size: 20px;
            transition: background 0.2s;
        }

        .back-btn:hover { 
            background: rgba(0,0,0,0.05); 
        }

        .search-wrapper {
            flex: 1;
            display: flex;
            position: relative;
        }

        .search-wrapper input {
            flex: 1;
            padding: 10px 50px 10px 14px;
            border-radius: 999px;
            border: 1px solid #ddd;
            font-size: 14px;
            outline: none;
            background: #f7f7f7;
            width: 100%;
        }

        .search-wrapper button.search-btn {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            background: #ff7b00;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: #e66a00;
        }

        .mobile-cart {
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            text-decoration: none;
            color: #333;
        }

        .cart-count {
            background: #ff4500;
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 7px;
            border-radius: 999px;
            position: absolute;
            top: -6px;
            right: -6px;
            min-width: 18px;
            text-align: center;
            line-height: 1;
            display: none;
        }

        /* SEPET BİLDİRİMİ */
        .cart-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #4CAF50;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 9999;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            font-size: 14px;
            font-weight: 600;
        }
        
        .cart-notification.show {
            transform: translateX(0);
        }

        /* Search Info */
        .search-info {
            background: linear-gradient(135deg, #fff5f0, #ffffff);
            padding: 15px;
            margin-bottom: 8px;
            border-left: 4px solid #ff7b00;
        }
        .search-term {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }
        .search-count {
            font-size: 14px;
            color: #666;
        }

        /* Filter Section - Kompakt tasarım */
        .filter-section {
            background: #fff;
            padding: 15px;
            margin-bottom: 8px;
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .filter-section::-webkit-scrollbar {
            display: none;
        }
        .filter-btn {
            flex: 0 0 auto;
            padding: 10px 16px;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            color: #495057;
        }
        .filter-btn:hover {
            background: #fff5f0;
            border-color: #ffb380;
            transform: translateY(-1px);
        }
        .filter-btn.active {
            background: linear-gradient(135deg, #ff7b00, #ff9500);
            color: white;
            border-color: #ff7b00;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
        }

        /* Products Grid - AYAKKABI SAYFASI GİBİ */
        .products-container {
            padding: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            width: 100%;
        }

        /* TABLET GÖRÜNÜM */
        @media (min-width: 600px) {
            .products-container {
                padding: 20px;
            }
            
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
        }

        /* DESKTOP GÖRÜNÜM */
        @media (min-width: 900px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
        }

        /* BÜYÜK EKRANLAR */
        @media (min-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #f0f0f0;
            width: 100%;
            display: flex;
            flex-direction: column;
            min-height: 320px;
        }

        .product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            border-color: #ff7b00;
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 200px;
            flex-shrink: 0;
            overflow: hidden;
            background: #f8f9fa;
        }

        /* TABLET VE DESKTOP İÇİN DAHA BÜYÜK GÖRSEL */
        @media (min-width: 600px) {
            .product-card {
                min-height: 380px;
            }
            
            .product-image {
                height: 220px;
            }
        }

        @media (min-width: 900px) {
            .product-card {
                min-height: 400px;
            }
            
            .product-image {
                height: 240px;
            }
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .discount-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: linear-gradient(135deg, #ff4757, #ff3742);
            color: white;
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 10px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
        }

        .new-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: linear-gradient(135deg, #2ed573, #1dd1a1);
            color: white;
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 10px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(46, 213, 115, 0.4);
        }

        .favorite-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(255,255,255,0.95);
            border: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .favorite-btn:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .favorite-btn i {
            color: #ff7b00;
            font-size: 12px;
        }

        .favorite-btn.active {
            background: #ff7b00;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
        }

        .favorite-btn.active i {
            color: white;
        }

        .product-info {
            flex: 1;
            padding: 10px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 50px;
        }

        .product-brand {
            font-size: 11px;
            color: #666;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .product-title {
            font-size: 13px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: -5px;
            line-height: 1.4;
            min-height: 38px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 10px;
            transform: translateY(-14px);
        }

        .stars {
            color: #ffc107;
            font-size: 14px;
        }

        .rating-count {
            font-size: 10px;
            color: #999;
            font-weight: 500;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            transform: translateY(1px);
        }

        .current-price {
            font-size: 14px;
            font-weight: 700;
            color: #ff7b00;
        }

        .old-price {
            font-size: 10px;
            color: #999;
            text-decoration: line-through;
            font-weight: 500;
        }

        .add-to-cart {
            width: 100%;
            padding: 8px;
            background: linear-gradient(135deg, #ff7b00, #ff9f40);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(255, 123, 0, 0.3);
            margin-top: auto;
        }

        .add-to-cart:hover {
            background: linear-gradient(135deg, #e66a00, #ff8c20);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
        }

        /* KÜÇÜK TELEFON EKRANLARİ İÇİN ÖZEL AYAR */
        @media (max-width: 360px) {
            .products-grid {
                gap: 8px;
            }
            
            .product-card {
                aspect-ratio: 2.5/4;
            }
            
            .product-info {
                padding: 8px;
            }
            
            .product-title {
                font-size: 11px;
                height: 28px;
            }
            
            .current-price {
                font-size: 12px;
            }
        }

        /* No Results */
        .no-results {
            background: #fff;
            padding: 60px 20px;
            text-align: center;
            margin: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .no-results i {
            font-size: 64px;
            color: #ddd;
            margin-bottom: 20px;
        }
        .no-results h3 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .no-results p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        .suggestions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }
        .suggestion {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #495057;
        }
        .suggestion:hover {
            background: #ff7b00;
            color: white;
            border-color: #ff7b00;
            transform: translateY(-2px);
        }

        /* Loading */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
            font-size: 16px;
            color: #666;
            flex-direction: column;
            gap: 15px;
            background: white;
            margin: 20px;
            border-radius: 16px;
        }

        .loading i {
            font-size: 32px;
            color: #ff7b00;
        }

        /* Toast Message */
        .toast {
            position: fixed;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #2ed573, #1dd1a1);
            color: white;
            padding: 12px 20px;
            border-radius: 12px;
            box-shadow: 0 6px 24px rgba(46, 213, 115, 0.4);
            z-index: 3000;
            display: none;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 14px;
        }

        .toast.show {
            display: flex;
        }
    

/* ayakkabi.html */

        :root {
            --bg-primary: #f5f5f5;
            --bg-secondary: #ffffff;
            --text-primary: #333;
            --text-secondary: #888;
            --border-color: #ddd;
            --shadow: rgba(0,0,0,0.08);
            --accent: #ff7b00;
        }
        
        [data-theme="dark"] {
            --bg-primary: #121212;
            --bg-secondary: #1e1e1e;
            --text-primary: #e0e0e0;
            --text-secondary: #aaa;
            --border-color: #333;
            --shadow: rgba(0,0,0,0.3);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            padding-bottom: 20px;
            transition: all 0.3s ease;
        }

        .mobile-search-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: var(--bg-secondary);
            box-shadow: 0 4px 16px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 2200;
            font-family: Arial, sans-serif;
            transition: all 0.3s ease;
        }

        .back-btn {
            background: none;
            border: none;
            padding: 6px;
            cursor: pointer;
            border-radius: 8px;
            display: flex;
            align-items: center;
            color: var(--text-primary);
            font-size: 20px;
            transition: background 0.2s;
        }

        .back-btn:hover { 
            background: rgba(255,123,0,0.1); 
        }

        .search-wrapper {
            flex: 1;
            display: flex;
            position: relative;
        }

        .search-wrapper input {
            flex: 1;
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid var(--border-color);
            font-size: 14px;
            outline: none;
            background: var(--bg-primary);
            width: 100%;
            color: var(--text-primary);
            transition: all 0.2s;
        }

        .search-wrapper input:focus {
            border-color: var(--accent);
        }

        .search-wrapper button.search-btn {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            padding: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        .header-icon-btn {
            background: none;
            border: none;
            padding: 8px;
            cursor: pointer;
            color: var(--text-primary);
            font-size: 18px;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .header-icon-btn:hover {
            background: rgba(255,123,0,0.1);
        }

        .mobile-cart {
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            text-decoration: none;
            color: var(--text-primary);
        }

        .cart-count {
            background: var(--accent);
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 7px;
            border-radius: 999px;
            position: absolute;
            top: -6px;
            right: -6px;
            min-width: 18px;
            text-align: center;
            line-height: 1;
            display: none;
        }

        .cart-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #4CAF50;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 9999;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            font-size: 14px;
            font-weight: 600;
        }
        
        .cart-notification.show {
            transform: translateX(0);
        }

        .filters-container {
            background: var(--bg-secondary);
            padding: 12px 15px;
            margin-bottom: 10px;
            box-shadow: 0 2px 8px var(--shadow);
        }

        .filters-scroll {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 4px 0;
        }

        .filters-scroll::-webkit-scrollbar {
            display: none;
        }

        .filter-chip {
            flex: 0 0 auto;
            background: var(--bg-primary);
            border: 2px solid var(--border-color);
            border-radius: 25px;
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .filter-chip:hover {
            background: rgba(255,123,0,0.1);
            border-color: var(--accent);
        }

        .filter-chip.active {
            background: linear-gradient(135deg, var(--accent), #ff9500);
            color: white;
            border-color: var(--accent);
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
        }

        .filter-panel {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            border-radius: 20px 20px 0 0;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 9998;
            max-height: 70vh;
            overflow-y: auto;
            box-shadow: 0 -4px 20px var(--shadow);
        }

        .filter-panel.active {
            transform: translateY(0);
        }

        .filter-panel-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 9997;
            display: none;
            backdrop-filter: blur(5px);
        }

        .filter-panel-overlay.active {
            display: block;
        }

        .filter-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .filter-panel-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .close-panel-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 5px;
        }

        .filter-section {
            margin-bottom: 20px;
        }

        .filter-section-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .filter-option {
            padding: 8px 16px;
            background: var(--bg-primary);
            border: 2px solid var(--border-color);
            border-radius: 20px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.2s;
            color: var(--text-primary);
        }

        .filter-option:hover {
            border-color: var(--accent);
            background: rgba(255,123,0,0.1);
        }

        .filter-option.selected {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .price-slider-container {
            margin: 15px 0;
        }

        .price-range-display {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            text-align: center;
            margin-bottom: 10px;
        }

        .price-slider {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: var(--border-color);
            outline: none;
            -webkit-appearance: none;
            cursor: pointer;
        }

        .price-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #ff9500);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
            transition: all 0.3s ease;
        }

        .price-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 20px rgba(255, 123, 0, 0.6);
        }

        .price-slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #ff9500);
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
        }

        .sort-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .sort-option {
            padding: 12px 15px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-primary);
            background: var(--bg-primary);
        }

        .sort-option:hover {
            background: rgba(108, 92, 231, 0.1);
        }

        .sort-option.selected {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: white;
            font-weight: 600;
        }

        .sort-option i {
            font-size: 16px;
        }

        .filter-panel-footer {
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
            display: flex;
            gap: 10px;
            position: sticky;
            bottom: 0;
            background: var(--bg-secondary);
            margin: 0 -20px;
            padding: 15px 20px;
        }

        .clear-filters-btn {
            flex: 1;
            padding: 12px;
            background: var(--bg-primary);
            color: var(--text-primary);
            border: 2px solid var(--border-color);
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .apply-filters-btn {
            flex: 2;
            padding: 12px;
            background: linear-gradient(135deg, var(--accent), #ff9500);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .apply-filters-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
        }

        .products-info-bar {
            background: var(--bg-secondary);
            padding: 12px 15px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 4px var(--shadow);
        }

        .product-count {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .product-count strong {
            color: var(--accent);
            font-weight: 700;
        }

        .products-container {
            padding: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            width: 100%;
        }

        @media (min-width: 600px) {
            .products-container {
                padding: 20px;
            }
            
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
        }

        @media (min-width: 900px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
        }

        @media (min-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .product-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px var(--shadow);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid var(--border-color);
            width: 100%;
            display: flex;
            flex-direction: column;
            min-height: 320px;
        }

        .product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px var(--shadow);
            border-color: var(--accent);
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 200px;
            flex-shrink: 0;
            overflow: hidden;
            background: var(--bg-primary);
        }

        @media (min-width: 600px) {
            .product-card {
                min-height: 380px;
            }
            
            .product-image {
                height: 220px;
            }
        }

        @media (min-width: 900px) {
            .product-card {
                min-height: 400px;
            }
            
            .product-image {
                height: 240px;
            }
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .discount-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: linear-gradient(135deg, #ff4757, #ff3742);
            color: white;
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 10px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
        }

        .new-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: linear-gradient(135deg, #2ed573, #1dd1a1);
            color: white;
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 10px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(46, 213, 115, 0.4);
        }

        .favorite-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(255,255,255,0.95);
            border: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .favorite-btn:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .favorite-btn i {
            color: var(--accent);
            font-size: 12px;
        }

        .favorite-btn.active {
            background: var(--accent);
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
        }

        .favorite-btn.active i {
            color: white;
        }

        .product-info {
            flex: 1;
            padding: 10px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 50px;
        }

        .product-brand {
            font-size: 11px;
            color: var(--text-secondary);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .product-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: -5px;
            line-height: 1.4;
            min-height: 38px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 10px;
            transform: translateY(-14px);
        }

        .stars {
            color: #ffc107;
            font-size: 14px;
        }

        .rating-count {
            font-size: 10px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            transform: translateY(1px);
        }

        .current-price {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent);
        }

        .old-price {
            font-size: 10px;
            color: var(--text-secondary);
            text-decoration: line-through;
            font-weight: 500;
        }

        .add-to-cart {
            width: 100%;
            padding: 8px;
            background: linear-gradient(135deg, var(--accent), #ff9f40);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(255, 123, 0, 0.3);
            margin-top: auto;
        }

        .add-to-cart:hover {
            background: linear-gradient(135deg, #e66a00, #ff8c20);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
        }

        .load-more-container {
            text-align: center;
            padding: 30px 20px;
        }

        .load-more-btn {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .load-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
        }

        .loading {
            text-align: center;
            padding: 60px 20px;
            background: var(--bg-secondary);
            margin: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 12px var(--shadow);
            color: var(--text-secondary);
            font-size: 16px;
        }

        .loading i {
            font-size: 32px;
            color: var(--accent);
            margin-bottom: 15px;
            display: block;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .error {
            text-align: center;
            padding: 60px 20px;
            background: var(--bg-secondary);
            margin: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 12px var(--shadow);
            color: #e74c3c;
        }

        .error h3 {
            margin-bottom: 15px;
            font-size: 20px;
            color: var(--text-primary);
        }

        .error p {
            margin-bottom: 20px;
            color: var(--text-secondary);
        }

        .retry-btn {
            background: linear-gradient(135deg, var(--accent), #ff9f40);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .retry-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 20px;
            backdrop-filter: blur(5px);
        }

        .modal-overlay.show {
            display: flex;
        }

        .modal-content {
            background: var(--bg-secondary);
            border-radius: 16px;
            max-width: 450px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(50px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .modal-header {
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-body {
            padding: 20px;
        }

        .product-preview {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .product-preview-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-primary);
        }

        .product-preview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-preview-info h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .product-preview-info .brand {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .product-preview-info .price {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
        }

        .option-group {
            margin-bottom: 20px;
        }

        .option-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .option-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 8px;
        }

        .option-btn {
            padding: 10px 15px;
            border: 2px solid var(--border-color);
            background: var(--bg-secondary);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            min-height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
        }

        .option-btn:hover {
            border-color: var(--accent);
            background: rgba(255,123,0,0.1);
        }

        .option-btn.selected {
            border-color: var(--accent);
            background: linear-gradient(135deg, var(--accent), #ff9500);
            color: white;
        }

        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid var(--border-color);
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }

        .color-option:hover {
            border-color: var(--accent);
            transform: scale(1.1);
        }

        .color-option.selected {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px var(--bg-secondary), 0 0 0 4px var(--accent);
        }

        .color-option.selected::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            border: 2px solid var(--border-color);
            background: var(--bg-secondary);
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            color: var(--text-secondary);
            transition: all 0.2s;
        }

        .quantity-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .quantity-input {
            width: 60px;
            height: 40px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            outline: none;
            background: var(--bg-secondary);
            color: var(--text-primary);
        }

        .quantity-input:focus {
            border-color: var(--accent);
        }

        .modal-footer {
            padding: 20px;
            border-top: 1px solid var(--border-color);
            display: flex;
            gap: 10px;
        }

        .modal-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .modal-btn-cancel {
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        .modal-btn-cancel:hover {
            background: var(--border-color);
        }

        .modal-btn-add {
            background: linear-gradient(135deg, var(--accent), #ff9500);
            color: white;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
        }

        .modal-btn-add:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
        }

        .modal-btn-add:disabled {
            background: #ccc;
            transform: none;
            box-shadow: none;
            cursor: not-allowed;
        }

        .toast {
            position: fixed;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #2ed573, #1dd1a1);
            color: white;
            padding: 14px 24px;
            border-radius: 12px;
            box-shadow: 0 6px 24px rgba(46, 213, 115, 0.4);
            z-index: 3000;
            display: none;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            font-size: 14px;
        }

        .toast.show {
            display: flex;
        }

        .toast i {
            font-size: 16px;
        }

        .scroll-to-top {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent), #ff9500);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(255, 123, 0, 0.6);
        }
    

/* cart.html */

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            padding-bottom: 80px;
        }

        /* Header */
        .header {
            background: #fff;
            padding: 12px 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .back-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
            padding: 8px;
        }
        .header-title {
            font-size: 18px;
            font-weight: 600;
            flex: 1;
            color: #333;
        }
        .cart-count-header {
            background: #ff7b00;
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }

        /* Cart Items */
        .cart-container {
            background: #fff;
            margin: 10px;
            border-radius: 10px;
            padding: 15px;
        }
        .cart-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .cart-item:last-child {
            border-bottom: none;
        }
        .cart-item img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
        }
        .item-details {
            flex: 1;
        }
        .item-name {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
            color: #333;
        }
        .item-brand {
            font-size: 12px;
            color: #666;
            margin-bottom: 4px;
        }
        .item-options {
            font-size: 11px;
            color: #888;
            margin-bottom: 8px;
        }
        .item-price {
            font-size: 15px;
            font-weight: 700;
            color: #ff7b00;
        }
        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 8px;
        }
        .qty-btn {
            background: #f0f0f0;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 14px;
            color: #333;
        }
        .qty-btn:hover {
            background: #e0e0e0;
        }
        .qty-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        .quantity {
            font-size: 14px;
            font-weight: 600;
            min-width: 20px;
            text-align: center;
        }
        .remove-btn {
            background: none;
            border: none;
            color: #ff4444;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            font-size: 16px;
        }
        .remove-btn:hover {
            background: rgba(255, 68, 68, 0.1);
        }

        /* Empty Cart */
        .empty-cart {
            text-align: center;
            padding: 60px 20px;
            background: #fff;
            margin: 20px;
            border-radius: 10px;
        }
        .empty-icon {
            font-size: 48px;
            color: #ddd;
            margin-bottom: 20px;
        }
        .empty-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }
        .empty-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }
        .shop-btn {
            background: #ff7b00;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        /* Total Section */
        .total-section {
            background: #fff;
            margin: 10px;
            border-radius: 10px;
            padding: 20px;
        }
        .total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .total-row:last-child {
            border-bottom: none;
            padding-top: 15px;
            font-size: 18px;
            font-weight: 700;
        }
        .total-label {
            font-size: 14px;
            color: #666;
        }
        .total-value {
            font-size: 14px;
            font-weight: 600;
            color: #333;
        }

        /* Checkout Button */
        .checkout-section {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 15px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        .checkout-btn {
            width: 100%;
            background: linear-gradient(135deg, #ff7b00, #e66a00);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 123, 0, 0.3);
        }
        .checkout-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
    

/* cocukgiyim.html */

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            padding-bottom: 20px;
        }

        /* Modern Header - Erkek sayfasıyla aynı */
        .mobile-search-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: #fff;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 2200;
            font-family: Arial, sans-serif;
        }

        .back-btn {
            background: none;
            border: none;
            padding: 6px;
            cursor: pointer;
            border-radius: 8px;
            display: flex;
            align-items: center;
            color: #333;
            font-size: 20px;
            transition: background 0.2s;
        }

        .back-btn:hover { 
            background: rgba(0,0,0,0.05); 
        }

        .search-wrapper {
            flex: 1;
            display: flex;
            position: relative;
        }

        .search-wrapper input {
            flex: 1;
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid #ddd;
            font-size: 14px;
            outline: none;
            background: #f7f7f7;
            width: 100%;
        }

        .search-wrapper button.search-btn {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            padding: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        .mobile-cart {
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            text-decoration: none;
            color: #333;
        }

        .cart-count {
            background: #10b981;
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 7px;
            border-radius: 999px;
            position: absolute;
            top: -6px;
            right: -6px;
            min-width: 18px;
            text-align: center;
            line-height: 1;
            display: none;
        }

        /* SEPET BİLDİRİMİ */
        .cart-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #4CAF50;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 9999;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            font-size: 14px;
            font-weight: 600;
        }
        
        .cart-notification.show {
            transform: translateX(0);
        }

        /* Kompakt Filter Section - Tek satır */
        .filters {
            background: white;
            padding: 15px;
            margin-bottom: 5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            gap: 12px;
            overflow: hidden;
            position: relative;
        }

        /* Sabit fiyat filtresi butonu - sol başta */
        .price-filter-btn {
            flex: 0 0 auto;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 25px;
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #495057;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .price-filter-btn:hover {
            background: #f0fdf4;
            border-color: #86efac;
        }

        .price-filter-btn.active {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            border-color: #10b981;
        }

        /* Kaydırılabilir kategori butonları */
        .category-scroll {
            flex: 1;
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 2px 0;
        }

        .category-scroll::-webkit-scrollbar {
            display: none;
        }

        .filter-btn {
            flex: 0 0 auto;
            padding: 10px 16px;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            color: #495057;
        }

        .filter-btn:hover {
            background: #f0fdf4;
            border-color: #86efac;
            transform: translateY(-1px);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            border-color: #10b981;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        /* Price Slider Panel - Tam genişlik */
        .price-slider-panel {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: 0 0 16px 16px;
            padding: 20px 15px;
            display: none;
            border: 2px solid #e9ecef;
            border-top: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .price-slider-panel.active {
            display: block;
            border-color: #10b981;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
        }

        .price-slider-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .price-slider-title {
            font-size: 14px;
            font-weight: 600;
            color: #333;
        }

        .price-range-display {
            font-size: 14px;
            font-weight: 600;
            color: #10b981;
        }

        .price-slider-container {
            position: relative;
            margin: 20px 0;
        }

        .price-slider {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: #e9ecef;
            outline: none;
            -webkit-appearance: none;
            cursor: pointer;
        }

        .price-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #10b981, #059669);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
            transition: all 0.3s ease;
        }

        .price-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
        }

        .price-slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #10b981, #059669);
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
        }

        .price-marks {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            font-size: 12px;
            color: #666;
        }

        .price-mark {
            font-weight: 500;
        }

        /* Products Grid - Modern tasarım */
        .products-container {
            padding: 20px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #f0f0f0;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.15);
            border-color: #10b981;
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: #f8f9fa;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.08);
        }

        .discount-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, #ff4757, #ff3742);
            color: white;
            padding: 6px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
        }

        .new-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            color: white;
            padding: 6px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
        }

        .favorite-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(255,255,255,0.95);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
        }

        .favorite-btn:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }

        .favorite-btn i {
            color: #10b981;
            font-size: 16px;
        }

        .favorite-btn.active {
            background: #fbbf24;
            box-shadow: 0 4px 16px rgba(251, 191, 36, 0.4);
        }

        .favorite-btn.active i {
            color: white;
        }

        .product-info {
            padding: 16px;
        }

        .product-brand {
            font-size: 11px;
            color: #10b981;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .product-title {
            font-size: 14px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
            line-height: 1.4;
            height: 40px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 12px;
        }

        .stars {
            color: #fbbf24;
            font-size: 14px;
        }

        .rating-count {
            font-size: 11px;
            color: #999;
            font-weight: 500;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }

        .current-price {
            font-size: 15px;
            font-weight: 700;
            color: #10b981;
        }

        .old-price {
            font-size: 12px;
            color: #999;
            text-decoration: line-through;
            font-weight: 500;
        }

        .add-to-cart {
            width: 100%;
            padding: 8px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        .add-to-cart:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }

        .add-to-cart:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Product Selection Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 20px;
            backdrop-filter: blur(5px);
        }

        .modal-overlay.show {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 16px;
            max-width: 450px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease;
        }

        @media (max-width: 480px) {
            .modal-content {
                max-width: 90%;
                max-height: 75vh;
                margin: auto;
            }
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(50px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .modal-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: #f5f5f5;
            color: #666;
        }

        .modal-body {
            padding: 20px;
        }

        .product-preview {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .product-preview-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: #f8f9fa;
        }

        .product-preview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-preview-info h3 {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .product-preview-info .brand {
            font-size: 14px;
            color: #666;
            margin-bottom: 8px;
        }

        .product-preview-info .price {
            font-size: 18px;
            font-weight: 700;
            color: #10b981;
        }

        .option-group {
            margin-bottom: 20px;
        }

        .option-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .option-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 8px;
        }

        .option-btn {
            padding: 10px 15px;
            border: 2px solid #e9ecef;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            min-height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .option-btn:hover {
            border-color: #10b981;
            background: #f0fdf4;
        }

        .option-btn.selected {
            border-color: #10b981;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }

        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid #e9ecef;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }

        .color-option:hover {
            border-color: #10b981;
            transform: scale(1.1);
        }

        .color-option.selected {
            border-color: #10b981;
            box-shadow: 0 0 0 2px #fff, 0 0 0 4px #10b981;
        }

        .color-option.selected::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            border: 2px solid #e9ecef;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            color: #666;
            transition: all 0.2s;
        }

        .quantity-btn:hover {
            border-color: #10b981;
            color: #10b981;
        }

        .quantity-input {
            width: 60px;
            height: 40px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            outline: none;
        }

        .quantity-input:focus {
            border-color: #10b981;
        }

        .modal-footer {
            padding: 20px;
            border-top: 1px solid #eee;
            display: flex;
            gap: 10px;
        }

        .modal-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .modal-btn-cancel {
            background: #f8f9fa;
            color: #666;
        }

        .modal-btn-cancel:hover {
            background: #e9ecef;
        }

        .modal-btn-add {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        .modal-btn-add:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }

        .modal-btn-add:disabled {
            background: #ccc;
            transform: none;
            box-shadow: none;
            cursor: not-allowed;
        }

        /* Loading ve Error */
        .loading, .error {
            text-align: center;
            padding: 60px 20px;
            background: white;
            margin: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .loading {
            color: #666;
            font-size: 16px;
        }

        .loading i {
            font-size: 24px;
            color: #10b981;
            margin-bottom: 15px;
            display: block;
        }

        .error {
            color: #e74c3c;
        }

        .error h3 {
            margin-bottom: 15px;
            font-size: 20px;
            color: #2c3e50;
        }

        .error p {
            margin-bottom: 20px;
            color: #666;
            line-height: 1.6;
        }

        .retry-btn {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .retry-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }

        /* Toast Message */
        .toast {
            position: fixed;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #2ed573, #1dd1a1);
            color: white;
            padding: 14px 24px;
            border-radius: 12px;
            box-shadow: 0 6px 24px rgba(46, 213, 115, 0.4);
            z-index: 3000;
            display: none;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            font-size: 14px;
        }

        .toast.show {
            display: flex;
            animation: bounceIn 0.5s ease;
        }

        @keyframes bounceIn {
            0% { transform: translateX(-50%) scale(0.3); }
            50% { transform: translateX(-50%) scale(1.1); }
            100% { transform: translateX(-50%) scale(1); }
        }

        .toast i {
            font-size: 16px;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .products-container {
                padding: 15px;
            }
            
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
            
            .product-image {
                height: 160px;
            }

            .product-info {
                padding: 12px;
            }
        }

        @media (min-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .products-container {
                padding: 8px;
            }
            
            .products-grid {
                gap: 8px;
            }

            .product-image {
                height: 120px;
            }

            .product-info {
                padding: 8px;
            }

            .filter-btn {
                padding: 8px 14px;
                font-size: 12px;
            }
        }


        /* Yukarı Çık Butonu */
.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7b00, #ff9500);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 123, 0, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}
    

/* detay.html */

    :root {
      --bg: #f5f5f8;
      --bg-soft: #ffffff;
      --primary: #ff7b00;
      --primary-soft: rgba(255, 123, 0, 0.12);
      --primary-dark: #d96500;
      --text-main: #1f1f23;
      --text-soft: #5b5b63;
      --text-muted: #8f8f98;
      --border: #e1e1ea;
      --danger: #e53935;
      --success: #2e7d32;
      --accent: #ff3366;
      --badge-bg: #f0f0ff;
      --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
      --radius-lg: 16px;
      --radius-md: 10px;
      --radius-pill: 999px;
      --transition-fast: 0.18s ease-out;
      --transition-normal: 0.25s ease;
      --font-main: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-main);
      background: radial-gradient(circle at top, #fff8f0 0%, #f5f5f8 45%, #ececf5 100%);
      color: var(--text-main);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button {
      font-family: inherit;
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(225, 225, 234, 0.8);
    }

    .header-inner {
      max-width: 1150px;
      margin: 0 auto;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      font-size: 20px;
      letter-spacing: 0.03em;
      color: var(--primary);
    }

    .logo-mark {
      width: 26px;
      height: 26px;
      border-radius: 12px;
      background: linear-gradient(135deg, #ffb347, #ff7b00);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 16px;
      box-shadow: 0 6px 16px rgba(255, 123, 0, 0.5);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: var(--radius-pill);
      background: #f5f5ff;
      font-size: 12px;
      color: var(--text-soft);
    }

    .header-pill span {
      font-size: 12px;
      color: var(--primary);
      font-weight: 600;
    }

    .header-cart {
      position: relative;
      border-radius: 999px;
      border: 1px solid var(--border);
      padding: 6px 12px 6px 10px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ffffff;
      cursor: pointer;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    }

    .header-cart:hover {
      transform: translateY(-1px);
      border-color: var(--primary);
      box-shadow: 0 6px 16px rgba(15, 23, 42, 0.1);
    }

    .header-cart-icon {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: var(--primary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: var(--primary);
    }

    .header-cart-text {
      font-size: 12px;
      color: var(--text-soft);
    }

    .header-cart-count {
      font-size: 12px;
      font-weight: 600;
      color: var(--primary-dark);
    }

    /* MAIN LAYOUT */

    main {
      flex: 1;
      max-width: 1150px;
      width: 100%;
      margin: 22px auto 40px;
      padding: 0 16px 40px;
    }

    .breadcrumb {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .breadcrumb a {
      opacity: 0.9;
    }

    .breadcrumb a:hover {
      opacity: 1;
      text-decoration: underline;
    }

    .breadcrumb-sep {
      font-size: 10px;
      opacity: 0.7;
    }

    .product-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
      gap: 26px;
      align-items: start;
    }

    /* LEFT: GALLERY */

    .product-gallery-card {
      background: rgba(255,255,255,0.96);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: sticky;
      top: 72px;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 4px;
    }

    .badge {
      font-size: 11px;
      padding: 4px 8px;
      border-radius: var(--radius-pill);
      background: var(--badge-bg);
      color: var(--text-soft);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .badge-fire {
      background: rgba(255, 123, 0, 0.12);
      color: var(--primary-dark);
    }

    .badge-new {
      background: rgba(46, 125, 50, 0.1);
      color: var(--success);
    }

    .badge i {
      font-style: normal;
      font-size: 12px;
    }

    .product-main-image-wrap {
      border-radius: 18px;
      overflow: hidden;
      background: linear-gradient(135deg, #f9f5ff, #fff);
      border: 1px solid #ececf5;
      position: relative;
      min-height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-main-image {
      width: 100%;
      max-height: 430px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease-out;
    }

    .product-main-image-wrap:hover .product-main-image {
      transform: scale(1.03);
    }

    .image-zoom-hint {
      position: absolute;
      right: 10px;
      bottom: 10px;
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.55);
      color: #fff;
      font-size: 10px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .image-zoom-hint span {
      font-size: 11px;
    }

    .thumb-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      margin-top: 6px;
    }

    .thumb-img-wrap {
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid transparent;
      background: #fafafa;
      cursor: pointer;
      position: relative;
      padding: 3px;
      transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    }

    .thumb-img-wrap.selected {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(255, 123, 0, 0.45);
      transform: translateY(-1px);
    }

    .thumb-img {
      border-radius: 8px;
      width: 100%;
      height: 72px;
      object-fit: cover;
    }

    /* RIGHT: INFO */

    .product-info-card {
      background: rgba(255,255,255,0.96);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      padding: 18px 16px 16px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .product-brand-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 4px;
    }

    .brand-tag {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--primary-dark);
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(255, 123, 0, 0.09);
    }

    .rating-line {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text-soft);
    }

    .rating-stars {
      color: #ffb400;
      font-size: 13px;
    }

    .rating-count {
      font-size: 11px;
    }

    .product-title {
      font-size: 20px;
      font-weight: 600;
      line-height: 1.3;
      color: #16161a;
      margin-bottom: 4px;
    }

    .product-subtitle {
      font-size: 13px;
      color: var(--text-soft);
      margin-bottom: 6px;
    }

    .price-line {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin: 4px 0 6px;
    }

    .price-current {
      font-size: 24px;
      font-weight: 700;
      color: var(--primary-dark);
    }

    .price-old {
      font-size: 13px;
      text-decoration: line-through;
      color: var(--text-muted);
    }

    .price-discount-badge {
      font-size: 11px;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(255, 51, 102, 0.09);
      color: var(--accent);
      font-weight: 600;
    }

    .delivery-line {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text-soft);
      margin-bottom: 4px;
    }

    .delivery-line span.icon {
      font-size: 14px;
    }

    .stock-line {
      font-size: 12px;
      color: var(--success);
      margin-bottom: 8px;
    }

    .stock-low {
      color: var(--danger);
    }

    .divider {
      border-top: 1px dashed #e4e4f0;
      margin: 8px 0;
    }

    .option-group {
      margin-bottom: 10px;
    }

    .option-label-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 6px;
      font-size: 12px;
      color: var(--text-soft);
    }

    .option-label-row span.label {
      font-weight: 600;
      color: #20202a;
      font-size: 13px;
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .chip {
      min-width: 44px;
      padding: 6px 10px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border);
      font-size: 12px;
      text-align: center;
      cursor: pointer;
      background: #fafafa;
      transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    }

    .chip:hover {
      border-color: var(--primary);
      box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
      transform: translateY(-1px);
    }

    .chip.selected {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary-dark);
      box-shadow: 0 6px 16px rgba(255, 123, 0, 0.55);
    }

    .chip.disabled {
      opacity: 0.45;
      cursor: not-allowed;
    }

    .qty-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin: 6px 0 8px;
    }

    .qty-control {
      display: inline-flex;
      align-items: center;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border);
      overflow: hidden;
      background: #fafafa;
    }

    .qty-btn {
      width: 30px;
      height: 30px;
      border: none;
      background: transparent;
      cursor: pointer;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-soft);
      transition: background var(--transition-fast), color var(--transition-fast);
    }

    .qty-btn:hover {
      background: #eeeefd;
      color: var(--primary);
    }

    .qty-value {
      min-width: 32px;
      text-align: center;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
    }

    .qty-info {
      font-size: 11px;
      color: var(--text-muted);
      text-align: right;
      flex: 1;
    }

    .cta-row {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 8px;
      margin-top: 6px;
    }

    .btn-primary {
      border-radius: var(--radius-pill);
      border: none;
      padding: 12px 14px;
      background: linear-gradient(135deg, #ff9b40, #ff7b00);
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 10px 24px rgba(255, 123, 0, 0.5);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      filter: brightness(1.03);
      box-shadow: 0 12px 28px rgba(255, 123, 0, 0.7);
    }

    .btn-outline {
      border-radius: var(--radius-pill);
      border: 1px solid var(--border);
      background: #fff;
      padding: 11px 12px;
      font-size: 13px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      color: var(--text-soft);
      transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    }

    .btn-outline span.icon {
      font-size: 14px;
    }

    .btn-outline:hover {
      border-color: var(--primary);
      background: #fff7ef;
      color: var(--primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
    }

    .info-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 12px;
      margin-top: 4px;
    }

    .info-box {
      border-radius: var(--radius-md);
      border: 1px dashed #dedeee;
      padding: 9px 10px;
      background: #fafaff;
      font-size: 11px;
      color: var(--text-soft);
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .info-box strong {
      font-size: 12px;
      color: #272733;
    }

    .info-box small {
      font-size: 10px;
      color: var(--text-muted);
    }

    /* ALT BLOKLAR: AÇIKLAMA, ÖZELLİKLER, YORUMLAR, BENZER ÜRÜNLER */

    .bottom-section {
      margin-top: 24px;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 18px;
    }

    .panel {
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: var(--shadow-soft);
      padding: 14px 14px 12px;
    }

    .panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 6px;
    }

    .panel-title {
      font-size: 15px;
      font-weight: 600;
      color: #22222b;
    }

    .panel-subtitle {
      font-size: 11px;
      color: var(--text-muted);
    }

    .description-text {
      font-size: 13px;
      color: var(--text-soft);
      line-height: 1.6;
      white-space: pre-line;
    }

    .feature-list {
      margin-top: 6px;
      padding-left: 16px;
      font-size: 12px;
      color: var(--text-soft);
    }

    .feature-list li {
      margin-bottom: 2px;
    }

    .review-item {
      padding: 8px 0;
      border-bottom: 1px dashed #e3e3f0;
    }

    .review-item:last-child {
      border-bottom: none;
    }

    .review-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      margin-bottom: 3px;
    }

    .review-name {
      font-weight: 600;
      color: #252532;
    }

    .review-stars {
      color: #ffb400;
      font-size: 11px;
    }

    .review-text {
      font-size: 12px;
      color: var(--text-soft);
    }

    /* Benzer ürünler */

    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 10px;
    }

    .related-card {
      border-radius: 14px;
      background: #fafafa;
      border: 1px solid #ececf2;
      padding: 8px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    }

    .related-card:hover {
      transform: translateY(-2px);
      border-color: var(--primary);
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    }

    .related-img {
      border-radius: 10px;
      height: 110px;
      object-fit: cover;
    }

    .related-title {
      font-size: 12px;
      color: #272732;
      font-weight: 500;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    .related-price {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary-dark);
    }

    /* Toast mesajı */

    .toast {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      padding: 10px 14px;
      border-radius: var(--radius-pill);
      background: rgba(17, 24, 39, 0.96);
      color: #fff;
      font-size: 12px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.5);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease;
      z-index: 40;
    }

    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(-4px);
      pointer-events: auto;
    }

    .toast span.icon {
      font-size: 14px;
    }

    /* Empty / error */

    .center-message {
      text-align: center;
      padding: 40px 16px;
      font-size: 14px;
      color: var(--text-soft);
    }

    .center-message strong {
      color: #18181f;
    }

    /* RESPONSIVE */

    @media (max-width: 900px) {
      .product-layout {
        grid-template-columns: minmax(0, 1fr);
      }

      .product-gallery-card {
        position: static;
      }

      .bottom-section {
        grid-template-columns: minmax(0, 1fr);
      }

      .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .header-inner {
        padding-inline: 10px;
      }

      main {
        padding-inline: 10px;
        margin-top: 14px;
      }

      .product-info-card {
        padding-inline: 12px;
      }

      .product-gallery-card {
        padding: 12px;
      }

      .product-title {
        font-size: 18px;
      }

      .cta-row {
        grid-template-columns: minmax(0, 1fr);
      }
    }
  

/* erkekgiyim.html */

        :root {
            --bg-primary: #f5f5f5;
            --bg-secondary: #ffffff;
            --text-primary: #333;
            --text-secondary: #888;
            --border-color: #ddd;
            --shadow: rgba(0,0,0,0.08);
            --accent: #ff7b00;
        }
        
        [data-theme="dark"] {
            --bg-primary: #121212;
            --bg-secondary: #1e1e1e;
            --text-primary: #e0e0e0;
            --text-secondary: #aaa;
            --border-color: #333;
            --shadow: rgba(0,0,0,0.3);
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            padding-bottom: 20px;
            transition: all 0.3s ease;
        }

        .mobile-search-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: var(--bg-secondary);
            box-shadow: 0 4px 16px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 2200;
            font-family: Arial, sans-serif;
            transition: all 0.3s ease;
        }

        .back-btn {
            background: none;
            border: none;
            padding: 6px;
            cursor: pointer;
            border-radius: 8px;
            display: flex;
            align-items: center;
            color: var(--text-primary);
            font-size: 20px;
            transition: background 0.2s;
        }

        .back-btn:hover { 
            background: rgba(255,123,0,0.1); 
        }

        .search-wrapper {
            flex: 1;
            display: flex;
            position: relative;
        }

        .search-wrapper input {
            flex: 1;
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid var(--border-color);
            font-size: 14px;
            outline: none;
            background: var(--bg-primary);
            width: 100%;
            color: var(--text-primary);
            transition: all 0.2s;
        }

        .search-wrapper input:focus {
            border-color: var(--accent);
        }

        .search-wrapper button.search-btn {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            padding: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        .header-icon-btn {
            background: none;
            border: none;
            padding: 8px;
            cursor: pointer;
            color: var(--text-primary);
            font-size: 18px;
            border-radius: 8px;
            transition: all 0.2s;
            position: relative;
        }

        .header-icon-btn:hover {
            background: rgba(255,123,0,0.1);
        }

        .mobile-cart {
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            text-decoration: none;
            color: var(--text-primary);
        }

        .cart-count {
            background: var(--accent);
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 7px;
            border-radius: 999px;
            position: absolute;
            top: -6px;
            right: -6px;
            min-width: 18px;
            text-align: center;
            line-height: 1;
            display: none;
        }

        .cart-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #4CAF50;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 9999;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            font-size: 14px;
            font-weight: 600;
        }
        
        .cart-notification.show {
            transform: translateX(0);
        }

        /* BASİTLEŞTİRİLMİŞ FİLTRELER */
        .filters-container {
            background: var(--bg-secondary);
            padding: 12px 15px;
            margin-bottom: 10px;
            box-shadow: 0 2px 8px var(--shadow);
        }

        .filters-scroll {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 4px 0;
        }

        .filters-scroll::-webkit-scrollbar {
            display: none;
        }

        .filter-chip {
            flex: 0 0 auto;
            background: var(--bg-primary);
            border: 2px solid var(--border-color);
            border-radius: 25px;
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .filter-chip:hover {
            background: rgba(255,123,0,0.1);
            border-color: var(--accent);
        }

        .filter-chip.active {
            background: linear-gradient(135deg, var(--accent), #ff9500);
            color: white;
            border-color: var(--accent);
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
        }

        .filter-chip i {
            font-size: 14px;
        }

        /* FİLTRE DROPDOWN PANELLER */
        .filter-panel {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            border-radius: 20px 20px 0 0;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 9998;
            max-height: 70vh;
            overflow-y: auto;
            box-shadow: 0 -4px 20px var(--shadow);
        }

        .filter-panel.active {
            transform: translateY(0);
        }

        .filter-panel-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 9997;
            display: none;
            backdrop-filter: blur(5px);
        }

        .filter-panel-overlay.active {
            display: block;
        }

        .filter-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .filter-panel-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .close-panel-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 5px;
        }

        .filter-section {
            margin-bottom: 20px;
        }

        .filter-section-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .filter-option {
            padding: 8px 16px;
            background: var(--bg-primary);
            border: 2px solid var(--border-color);
            border-radius: 20px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.2s;
            color: var(--text-primary);
        }

        .filter-option:hover {
            border-color: var(--accent);
            background: rgba(255,123,0,0.1);
        }

        .filter-option.selected {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .price-slider-container {
            margin: 15px 0;
        }

        .price-range-display {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            text-align: center;
            margin-bottom: 10px;
        }

        .price-slider {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: var(--border-color);
            outline: none;
            -webkit-appearance: none;
            cursor: pointer;
        }

        .price-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #ff9500);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
            transition: all 0.3s ease;
        }

        .price-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 20px rgba(255, 123, 0, 0.6);
        }

        .price-slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #ff9500);
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
        }

        .sort-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .sort-option {
            padding: 12px 15px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-primary);
            background: var(--bg-primary);
        }

        .sort-option:hover {
            background: rgba(108, 92, 231, 0.1);
        }

        .sort-option.selected {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: white;
            font-weight: 600;
        }

        .sort-option i {
            font-size: 16px;
        }

        .filter-panel-footer {
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
            display: flex;
            gap: 10px;
            position: sticky;
            bottom: 0;
            background: var(--bg-secondary);
            margin: 0 -20px;
            padding: 15px 20px;
        }

        .clear-filters-btn {
            flex: 1;
            padding: 12px;
            background: var(--bg-primary);
            color: var(--text-primary);
            border: 2px solid var(--border-color);
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .apply-filters-btn {
            flex: 2;
            padding: 12px;
            background: linear-gradient(135deg, var(--accent), #ff9500);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .apply-filters-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
        }

        .products-info-bar {
            background: var(--bg-secondary);
            padding: 12px 15px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 4px var(--shadow);
        }

        .product-count {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .product-count strong {
            color: var(--accent);
            font-weight: 700;
        }

        .products-container {
            padding: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            width: 100%;
        }

        @media (min-width: 600px) {
            .products-container {
                padding: 20px;
            }
            
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
        }

        @media (min-width: 900px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
        }

        @media (min-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .product-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px var(--shadow);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid var(--border-color);
            width: 100%;
            display: flex;
            flex-direction: column;
            min-height: 320px;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px var(--shadow);
            border-color: var(--accent);
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 200px;
            flex-shrink: 0;
            overflow: hidden;
            background: var(--bg-primary);
        }

        @media (min-width: 600px) {
            .product-card {
                min-height: 380px;
            }
            
            .product-image {
                height: 220px;
            }
        }

        @media (min-width: 900px) {
            .product-card {
                min-height: 400px;
            }
            
            .product-image {
                height: 240px;
            }
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .discount-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: linear-gradient(135deg, #ff4757, #ff3742);
            color: white;
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 10px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
            z-index: 4;
        }

        .price-drop-badge {
            position: absolute;
            top: 40px;
            left: 8px;
            background: linear-gradient(135deg, #00b894, #00cec9);
            color: white;
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 10px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(0, 184, 148, 0.4);
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .price-drop-badge i {
            font-size: 9px;
        }

        .new-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: linear-gradient(135deg, #2ed573, #1dd1a1);
            color: white;
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 10px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(46, 213, 115, 0.4);
            z-index: 4;
        }

        .favorite-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(255,255,255,0.95);
            border: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            z-index: 5;
        }

        .favorite-btn:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .favorite-btn i {
            color: var(--accent);
            font-size: 12px;
        }

        .favorite-btn.active {
            background: var(--accent);
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
        }

        .favorite-btn.active i {
            color: white;
        }

        .product-info {
            flex: 1;
            padding: 10px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 50px;
        }

        .product-brand {
            font-size: 11px;
            color: var(--text-secondary);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .product-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: -5px;
            line-height: 1.4;
            min-height: 38px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 10px;
            transform: translateY(-14px);
        }

        .stars {
            color: #ffc107;
            font-size: 14px;
        }

        .rating-count {
            font-size: 10px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            transform: translateY(1px);
        }

        .current-price {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent);
        }

        .old-price {
            font-size: 10px;
            color: var(--text-secondary);
            text-decoration: line-through;
            font-weight: 500;
        }

        .add-to-cart {
            width: 100%;
            padding: 8px;
            background: linear-gradient(135deg, var(--accent), #ff9f40);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(255, 123, 0, 0.3);
            margin-top: auto;
        }

        .add-to-cart:hover {
            background: linear-gradient(135deg, #e66a00, #ff8c20);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
        }

        .add-to-cart:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .load-more-container {
            text-align: center;
            padding: 30px 20px;
        }

        .load-more-btn {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .load-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
        }

        .load-more-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .loading {
            text-align: center;
            padding: 60px 20px;
            background: var(--bg-secondary);
            margin: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 12px var(--shadow);
            color: var(--text-secondary);
            font-size: 16px;
        }

        .loading i {
            font-size: 32px;
            color: var(--accent);
            margin-bottom: 15px;
            display: block;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .error {
            text-align: center;
            padding: 60px 20px;
            background: var(--bg-secondary);
            margin: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 12px var(--shadow);
            color: #e74c3c;
        }

        .error h3 {
            margin-bottom: 15px;
            font-size: 20px;
            color: var(--text-primary);
        }

        .error p {
            margin-bottom: 20px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .retry-btn {
            background: linear-gradient(135deg, var(--accent), #ff9f40);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .retry-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 20px;
            backdrop-filter: blur(5px);
        }

        .modal-overlay.show {
            display: flex;
        }

        .modal-content {
            background: var(--bg-secondary);
            border-radius: 16px;
            max-width: 450px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(50px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .modal-header {
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        .modal-body {
            padding: 20px;
        }

        .product-preview {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .product-preview-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-primary);
        }

        .product-preview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-preview-info h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .product-preview-info .brand {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .product-preview-info .price {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
        }

        .option-group {
            margin-bottom: 20px;
        }

        .option-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .option-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 8px;
        }

        .option-btn {
            padding: 10px 15px;
            border: 2px solid var(--border-color);
            background: var(--bg-secondary);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            min-height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
        }

        .option-btn:hover {
            border-color: var(--accent);
            background: rgba(255,123,0,0.1);
        }

        .option-btn.selected {
            border-color: var(--accent);
            background: linear-gradient(135deg, var(--accent), #ff9500);
            color: white;
        }

        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid var(--border-color);
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }

        .color-option:hover {
            border-color: var(--accent);
            transform: scale(1.1);
        }

        .color-option.selected {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px var(--bg-secondary), 0 0 0 4px var(--accent);
        }

        .color-option.selected::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            border: 2px solid var(--border-color);
            background: var(--bg-secondary);
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            color: var(--text-secondary);
            transition: all 0.2s;
        }

        .quantity-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .quantity-input {
            width: 60px;
            height: 40px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            outline: none;
            background: var(--bg-secondary);
            color: var(--text-primary);
        }

        .quantity-input:focus {
            border-color: var(--accent);
        }

        .modal-footer {
            padding: 20px;
            border-top: 1px solid var(--border-color);
            display: flex;
            gap: 10px;
        }

        .modal-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .modal-btn-cancel {
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        .modal-btn-cancel:hover {
            background: var(--border-color);
        }

        .modal-btn-add {
            background: linear-gradient(135deg, var(--accent), #ff9500);
            color: white;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
        }

        .modal-btn-add:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
        }

        .modal-btn-add:disabled {
            background: #ccc;
            transform: none;
            box-shadow: none;
            cursor: not-allowed;
        }

        .toast {
            position: fixed;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #2ed573, #1dd1a1);
            color: white;
            padding: 14px 24px;
            border-radius: 12px;
            box-shadow: 0 6px 24px rgba(46, 213, 115, 0.4);
            z-index: 3000;
            display: none;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            font-size: 14px;
        }

        .toast.show {
            display: flex;
        }

        .toast i {
            font-size: 16px;
        }

        .scroll-to-top {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent), #ff9500);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(255, 123, 0, 0.6);
        }

        .scroll-to-top:active {
            transform: translateY(-1px);
        }
    

/* favoriler.html */

        :root {
            --bg-primary: #f5f5f5;
            --bg-secondary: #ffffff;
            --text-primary: #333;
            --text-secondary: #888;
            --border-color: #ddd;
            --shadow: rgba(0,0,0,0.08);
            --accent: #ff7b00;
        }
        
        [data-theme="dark"] {
            --bg-primary: #121212;
            --bg-secondary: #1e1e1e;
            --text-primary: #e0e0e0;
            --text-secondary: #aaa;
            --border-color: #333;
            --shadow: rgba(0,0,0,0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            transition: background 0.3s, color 0.3s;
            padding-bottom: 20px;
        }
        
        .header {
            position: sticky;
            top: 0;
            background: var(--bg-secondary);
            padding: 8px 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 6px var(--shadow);
            z-index: 100;
            backdrop-filter: blur(10px);
        }
        
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .back-btn {
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: var(--text-primary);
            padding: 6px;
            border-radius: 50%;
            transition: all 0.2s;
        }
        
        .back-btn:hover {
            background: rgba(255, 123, 0, 0.1);
        }
        
        .back-btn:active {
            transform: scale(0.95);
        }
        
        .header-title {
            font-size: 16px;
            font-weight: 700;
        }
        
        .header-actions {
            display: flex;
            gap: 8px;
        }
        
        .icon-btn {
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: var(--text-primary);
            padding: 6px;
            border-radius: 50%;
            position: relative;
            transition: all 0.2s;
        }
        
        .icon-btn:hover {
            background: rgba(255, 123, 0, 0.1);
        }
        
        .icon-btn:active {
            transform: scale(0.95);
        }
        
        .cart-badge {
            position: absolute;
            top: 2px;
            right: 2px;
            background: var(--accent);
            color: white;
            font-size: 10px;
            padding: 2px 5px;
            border-radius: 10px;
            min-width: 16px;
            text-align: center;
            font-weight: 700;
            display: none;
        }
        
        .cart-badge.show {
            display: block;
        }
        
        .favorites-empty {
            text-align: center;
            padding: 80px 20px;
        }
        
        .empty-icon {
            font-size: 80px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            opacity: 0.5;
        }
        
        .empty-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .empty-text {
            color: var(--text-secondary);
            margin-bottom: 24px;
            font-size: 14px;
            line-height: 1.6;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .browse-btn {
            background: linear-gradient(135deg, var(--accent), #e66d00);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
        }
        
        .browse-btn:active {
            transform: scale(0.98);
        }
        
        .favorites-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 12px;
        }
        
        .favorites-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding: 0 4px;
        }
        
        .item-count {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 600;
        }
        
        .clear-all-btn {
            background: none;
            border: 1px solid var(--border-color);
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 12px;
            cursor: pointer;
            color: var(--text-primary);
            font-weight: 600;
            transition: all 0.2s;
        }
        
        .clear-all-btn:hover {
            border-color: #ef4444;
            color: #ef4444;
        }
        
        .clear-all-btn:active {
            transform: scale(0.95);
        }
        
        .favorites-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        
        .favorite-card {
            background: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 6px var(--shadow);
            position: relative;
            transition: all 0.2s ease;
            cursor: pointer;
        }
        
        .favorite-card:active {
            transform: scale(0.98);
        }
        
        .favorite-image {
            width: 100%;
            height: 180px;
            overflow: hidden;
            position: relative;
            background: var(--bg-primary);
        }
        
        .favorite-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .remove-fav-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(255,255,255,0.95);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            transition: all 0.2s;
            z-index: 10;
        }
        
        .remove-fav-btn:active {
            transform: scale(0.9);
        }
        
        .remove-fav-btn i {
            color: var(--accent);
            font-size: 16px;
        }
        
        .favorite-info {
            padding: 10px;
        }
        
        .favorite-brand {
            font-size: 10px;
            color: var(--text-secondary);
            margin-bottom: 4px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .favorite-title {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.3;
            height: 34px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .favorite-price {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }
        
        .current-price {
            font-size: 16px;
            font-weight: 700;
            color: var(--accent);
        }
        
        .old-price {
            font-size: 12px;
            color: var(--text-secondary);
            text-decoration: line-through;
        }
        
        .discount-badge {
            background: #4caf50;
            color: white;
            font-size: 9px;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 700;
        }
        
        .add-to-cart-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--accent), #e66d00);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        
        .add-to-cart-btn:active {
            transform: scale(0.98);
        }
        
        .notification {
            position: fixed;
            top: 80px;
            left: 50%;
            transform: translateX(-50%) translateY(-150px);
            background: #4caf50;
            color: white;
            padding: 12px 24px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 10000;
            transition: transform 0.4s ease;
            font-weight: 600;
            font-size: 14px;
            min-width: 200px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .notification.show {
            transform: translateX(-50%) translateY(0);
        }
        
        .notification.error {
            background: #ef4444;
        }
        
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--accent), #e66d00);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:active {
            transform: scale(0.95);
        }
        
        @media (min-width: 768px) {
            .favorites-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 14px;
            }
            
            .favorite-image {
                height: 240px;
            }
            
            .favorite-info {
                padding: 14px;
            }
            
            .favorite-title {
                font-size: 14px;
                height: 40px;
            }
        }
        
        @media (min-width: 1024px) {
            .favorites-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (min-width: 1400px) {
            .favorites-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }
    

/* hakkimizda.html */

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', sans-serif;
            background: #f5f5f5;
            color: #333;
            line-height: 1.8;
        }
        .header {
            background: white;
            padding: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .back-btn {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #333;
        }
        .header-title {
            font-size: 18px;
            font-weight: 700;
        }
        .hero {
            background: linear-gradient(135deg, #ff7b00, #ff9500);
            color: white;
            text-align: center;
            padding: 60px 20px;
        }
        .hero h1 {
            font-size: 36px;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 18px;
            opacity: 0.9;
        }
        .content {
            max-width: 800px;
            margin: -40px auto 40px;
            background: white;
            border-radius: 16px;
            padding: 40px 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        .section {
            margin-bottom: 40px;
        }
        .section h2 {
            font-size: 24px;
            color: #ff7b00;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section p {
            font-size: 16px;
            margin-bottom: 12px;
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .stat-card {
            text-align: center;
            padding: 24px;
            background: #f8f9fa;
            border-radius: 12px;
        }
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #ff7b00;
        }
        .stat-label {
            font-size: 14px;
            color: #666;
            margin-top: 8px;
        }
        .values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        .value-card {
            padding: 20px;
            background: #fff5f0;
            border-left: 4px solid #ff7b00;
            border-radius: 8px;
        }
        .value-card h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: #ff7b00;
        }
        .value-card p {
            font-size: 14px;
            color: #666;
        }
    

/* hesabim.html */

    /* ================================
       GENEL AYARLAR
    =================================*/
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: #f4f5f7;
      color: #222;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ================================
       ÜST BAR (LOGIN TARZI)
    =================================*/
    .topbar {
      height: 56px;
      background: #ffffff;
      border-bottom: 1px solid #e3e3e3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 18px;
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .topbar-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .back-btn {
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: none;
      background: #f2f2f2;
      cursor: pointer;
      font-size: 18px;
    }

    .topbar-title {
      font-size: 18px;
      font-weight: 600;
    }

    /* ================================
       ÜST TURUNCU ARKA PLAN
    =================================*/
    .hero-bg {
      width: 100%;
      height: 180px;
      background: linear-gradient(135deg, #F27A1A, #ff9b4d);
    }

    /* ================================
       ANA KART / CONTAINER
    =================================*/
    .page-wrapper {
      max-width: 1080px;
      margin: -110px auto 40px;
      padding: 0 14px;
    }

    .account-card {
      background: #ffffff;
      border-radius: 24px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.10);
      padding: 24px 20px 20px;
    }

    /* ================================
       PROFİL BAŞLIK
    =================================*/
    .profile-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .profile-avatar {
      width: 80px;
      height: 80px;
      border-radius: 999px;
      background: #ffe4cc;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      color: #F27A1A;
    }

    .profile-name {
      font-size: 20px;
      font-weight: 600;
    }

    .profile-email {
      font-size: 14px;
      color: #666;
    }

    /* ================================
       SEKME BUTONLARI
    =================================*/
    .tabs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      background: #f7f7f7;
      padding: 6px;
      border-radius: 999px;
      margin-bottom: 18px;
    }

    .tab-btn {
      border: none;
      border-radius: 999px;
      padding: 8px 6px;
      font-size: 14px;
      background: transparent;
      cursor: pointer;
      color: #555;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .tab-btn span.icon {
      font-size: 16px;
    }

    .tab-btn.active {
      background: #F27A1A;
      color: #ffffff;
      box-shadow: 0 4px 10px rgba(242,122,26,0.4);
    }

    /* ================================
       TAB İÇERİKLERİ
    =================================*/
    .tab-panel {
      display: none;
      animation: fadeIn 0.25s ease;
    }

    .tab-panel.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ================================
       BİLGİLERİM TABLOSU
    =================================*/
    .info-list {
      border-radius: 18px;
      border: 1px solid #ececec;
      overflow: hidden;
    }

    .info-row {
      display: flex;
      justify-content: space-between;
      padding: 11px 14px;
      font-size: 14px;
      border-bottom: 1px solid #f0f0f0;
    }

    .info-row:last-child {
      border-bottom: none;
    }

    .info-label {
      color: #555;
    }

    .info-value {
      color: #222;
      font-weight: 500;
    }

    .section-title {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .section {
      margin-bottom: 18px;
    }

    /* ================================
       SİPARİŞ KARTLARI
    =================================*/
    .order-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .order-card {
      border-radius: 14px;
      border: 1px solid #f0e0d1;
      background: #fffaf5;
      padding: 11px 13px;
      font-size: 13px;
    }

    .order-top {
      display: flex;
      justify-content: space-between;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .order-meta {
      display: flex;
      justify-content: space-between;
      color: #666;
      margin-bottom: 3px;
    }

    .order-status {
      font-size: 12px;
      padding: 3px 7px;
      border-radius: 999px;
      background: #e6f7e8;
      color: #2e8b3c;
      display: inline-block;
    }

    /* ================================
       ADRES KARTLARI
    =================================*/
    .address-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .address-card {
      border-radius: 14px;
      border: 1px solid #e8e8e8;
      background: #ffffff;
      padding: 11px 13px;
      font-size: 13px;
    }

    .address-title {
      font-weight: 600;
      margin-bottom: 4px;
    }

    .address-text {
      color: #555;
      margin-bottom: 6px;
    }

    /* ================================
       BUTONLAR
    =================================*/
    .btn {
      border-radius: 999px;
      border: none;
      padding: 10px 14px;
      font-size: 14px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .btn-orange {
      background: #F27A1A;
      color: #fff;
    }

    .btn-orange:hover {
      background: #da6b13;
    }

    .btn-outline {
      background: #fff;
      border: 1px solid #ddd;
      color: #555;
    }

    .btn-full {
      width: 100%;
      margin-top: 10px;
    }

    .logout-btn {
      margin-top: 8px;
      background: #ff4b4b;
      color: #fff;
    }

    .logout-btn:hover {
      background: #e23a3a;
    }

    /* ================================
       MODAL (Adres Ekle)
    =================================*/
    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 30;
    }

    .modal {
      width: 90%;
      max-width: 420px;
      background: #fff;
      border-radius: 18px;
      padding: 18px 16px 16px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.2);
      animation: popup 0.22s ease;
    }

    @keyframes popup {
      from { opacity: 0; transform: translateY(14px) scale(0.96); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .modal-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .input {
      width: 100%;
      padding: 10px 11px;
      border-radius: 11px;
      border: 1px solid #dcdcdc;
      outline: none;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .textarea {
      width: 100%;
      height: 100px;
      padding: 10px 11px;
      border-radius: 11px;
      border: 1px solid #dcdcdc;
      outline: none;
      font-size: 14px;
      resize: none;
      margin-bottom: 8px;
    }

    .modal-actions {
      display: flex;
      gap: 8px;
      margin-top: 8px;
    }

    .modal-actions .btn {
      flex: 1;
    }

    /* ================================
       MOBİL DOKUNUŞLAR
    =================================*/
    @media (max-width: 640px) {
      .account-card {
        padding: 20px 14px 18px;
        border-radius: 18px;
      }

      .tabs {
        font-size: 13px;
      }

      .tab-btn {
        font-size: 13px;
        padding: 7px 3px;
      }

      .profile-name {
        font-size: 18px;
      }
    }
  

/* iade.html */

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', sans-serif;
            background: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 40px;
        }
        .header {
            background: white;
            padding: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .back-btn {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #333;
        }
        .header-title {
            font-size: 18px;
            font-weight: 700;
        }
        .content {
            max-width: 800px;
            margin: 20px auto;
            padding: 0 16px;
        }
        .info-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }
        .info-card h2 {
            font-size: 22px;
            color: #ff7b00;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .info-card h3 {
            font-size: 18px;
            margin: 20px 0 12px;
            color: #333;
        }
        .info-card p {
            font-size: 15px;
            margin-bottom: 12px;
            color: #666;
        }
        .info-card ul {
            margin-left: 20px;
            margin-bottom: 12px;
        }
        .info-card li {
            margin-bottom: 8px;
            color: #666;
        }
        .highlight {
            background: #fff5f0;
            padding: 16px;
            border-left: 4px solid #ff7b00;
            border-radius: 8px;
            margin: 16px 0;
        }
        .highlight strong {
            color: #ff7b00;
        }
    

/* iletisim.html */

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', sans-serif;
            background: #f5f5f5;
            color: #333;
        }
        .header {
            background: white;
            padding: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .back-btn {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #333;
        }
        .header-title {
            font-size: 18px;
            font-weight: 700;
        }
        .content {
            max-width: 600px;
            margin: 20px auto;
            padding: 0 16px;
        }
        .contact-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            border-bottom: 1px solid #f0f0f0;
        }
        .contact-item:last-child {
            border-bottom: none;
        }
        .contact-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #ff7b00, #ff9500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }
        .contact-info h3 {
            font-size: 16px;
            margin-bottom: 4px;
        }
        .contact-info p {
            font-size: 14px;
            color: #666;
        }
        .contact-info a {
            color: #ff7b00;
            text-decoration: none;
        }
        .form-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }
        .form-card h2 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #ff7b00;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .form-input {
            width: 100%;
            padding: 12px;
            border: 2px solid #e5e5e5;
            border-radius: 8px;
            font-size: 14px;
        }
        .form-input:focus {
            outline: none;
            border-color: #ff7b00;
        }
        textarea.form-input {
            resize: vertical;
            min-height: 100px;
        }
        .submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #ff7b00, #ff9500);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
        }
        .submit-btn:active {
            transform: scale(0.98);
        }
    

/* index.html */

        :root {
            --bg-primary: #f5f5f5;
            --bg-secondary: #ffffff;
            --text-primary: #333;
            --text-secondary: #888;
            --border-color: #ddd;
            --shadow: rgba(0,0,0,0.08);
            --shadow-hover: rgba(0,0,0,0.12);
            --card-bg: #fff;
            --search-bg: #f7f7f7;
            --category-border: #ffffff;
            --footer-bg: #2c3e50;
            --footer-text: #ecf0f1;
        }
        
        [data-theme="dark"] {
            --bg-primary: #121212;
            --bg-secondary: #1e1e1e;
            --text-primary: #e0e0e0;
            --text-secondary: #aaa;
            --border-color: #333;
            --shadow: rgba(0,0,0,0.3);
            --shadow-hover: rgba(0,0,0,0.5);
            --card-bg: #1e1e1e;
            --search-bg: #2a2a2a;
            --category-border: #1e1e1e;
            --footer-bg: #1a1a1a;
            --footer-text: #b0b0b0;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            padding-bottom: 60px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        .theme-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            display: flex;
            align-items: center;
            border-radius: 8px;
            transition: background 0.2s;
        }
        
        .theme-toggle:hover {
            background: rgba(255,123,0,0.1);
        }
        
        .theme-toggle i {
            font-size: 18px;
            color: var(--text-primary);
        }
        
        .mobile-search-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: var(--bg-secondary);
            box-shadow: 0 4px 16px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 2200;
            font-family: Arial, sans-serif;
            transition: all 0.3s ease;
        }
        
        .mobile-search-bar.scrolled {
            padding: 6px 12px;
            box-shadow: 0 6px 20px var(--shadow);
        }
        
        .mobile-search-bar.scrolled .search-wrapper input {
            padding: 8px 12px;
            font-size: 13px;
        }
        
        .hamburger-btn {
            background: none;
            border: none;
            padding: 6px;
            cursor: pointer;
            border-radius: 8px;
            display: flex;
            align-items: center;
        }
        
        .hamburger-btn:hover { 
            background: rgba(255,123,0,0.1); 
        }
        
        .hamburger-btn svg rect {
            fill: var(--text-primary);
        }
        
        .search-wrapper {
            flex: 1;
            display: flex;
            position: relative;
        }
        
        .search-wrapper input {
            flex: 1;
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid var(--border-color);
            font-size: 14px;
            outline: none;
            background: var(--search-bg);
            width: 100%;
            color: var(--text-primary);
            transition: all 0.2s;
        }
        
        .search-wrapper input:focus {
            border-color: #ff7b00;
            background: var(--bg-secondary);
        }
        
        .search-wrapper button.search-btn {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            padding: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        .search-wrapper button.search-btn:hover {
            background: rgba(255,123,0,0.1);
            border-radius: 50%;
        }
        
        .search-wrapper button.search-btn svg line,
        .search-wrapper button.search-btn svg circle {
            stroke: var(--text-primary);
        }
        
        .mobile-cart {
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
        }
        
        .mobile-cart i {
            color: var(--text-primary);
        }
        
        .cart-count {
            background: #ff4500;
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 7px;
            border-radius: 999px;
            position: absolute;
            top: -6px;
            right: -6px;
            min-width: 18px;
            text-align: center;
            line-height: 1;
            display: none;
        }

        .search-results-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--card-bg);
            border-radius: 12px;
            box-shadow: 0 10px 30px var(--shadow);
            margin-top: 8px;
            max-height: 500px;
            overflow-y: auto;
            z-index: 2300;
            display: none;
        }
        
        .search-results-dropdown.active {
            display: block;
        }
        
        .search-history-section {
            padding: 12px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .search-history-title {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .clear-history {
            color: #ff7b00;
            cursor: pointer;
            font-weight: 600;
        }
        
        .clear-history:hover {
            text-decoration: underline;
        }
        
        .search-history-items {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        
        .history-item {
            padding: 6px 12px;
            background: var(--search-bg);
            border-radius: 16px;
            font-size: 12px;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .history-item:hover {
            background: rgba(255, 123, 0, 0.1);
            color: #ff7b00;
        }
        
        .history-item i {
            font-size: 10px;
        }
        
        .search-suggestions {
            padding: 12px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .suggestion-title {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }
        
        .suggestion-items {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .suggestion-item {
            padding: 8px 12px;
            background: var(--search-bg);
            border-radius: 8px;
            font-size: 13px;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .suggestion-item:hover {
            background: rgba(255, 123, 0, 0.1);
        }
        
        .suggestion-item i {
            color: #ff7b00;
            font-size: 14px;
        }
        
        .search-result-item {
            display: flex;
            align-items: center;
            padding: 12px;
            border-bottom: 1px solid var(--border-color);
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .search-result-item:hover {
            background: var(--search-bg);
        }
        
        .search-result-item img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 12px;
        }
        
        .search-result-info {
            flex: 1;
        }
        
        .search-result-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        
        .search-result-price {
            font-size: 13px;
            color: #ff7b00;
            font-weight: bold;
        }
        
        .search-result-category {
            font-size: 11px;
            color: var(--text-secondary);
            margin-top: 2px;
        }
        
        .search-no-results {
            padding: 20px;
            text-align: center;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .quick-view-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }
        
        .quick-view-modal.active {
            display: flex;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .quick-view-content {
            background: var(--bg-secondary);
            border-radius: 16px;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.3s ease;
        }
        
        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .quick-view-close {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.2s;
        }
        
        .quick-view-close:hover {
            background: rgba(0, 0, 0, 0.7);
            transform: scale(1.1);
        }
        
        .quick-view-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 16px 16px 0 0;
        }
        
        .quick-view-info {
            padding: 20px;
        }
        
        .quick-view-brand {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }
        
        .quick-view-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        
        .quick-view-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }
        
        .quick-view-stars {
            color: #ffc107;
            font-size: 14px;
        }
        
        .quick-view-rating-count {
            font-size: 12px;
            color: var(--text-secondary);
        }
        
        .quick-view-price {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .quick-view-current-price {
            font-size: 24px;
            font-weight: 700;
            color: #ff7b00;
        }
        
        .quick-view-old-price {
            font-size: 16px;
            color: var(--text-secondary);
            text-decoration: line-through;
        }
        
        .quick-view-discount {
            background: #4caf50;
            color: white;
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .quick-view-description {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        
        .quick-view-actions {
            display: flex;
            gap: 12px;
        }
        
        .quick-view-btn {
            flex: 1;
            padding: 14px;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .quick-view-detail-btn {
            background: #ff7b00;
            color: white;
        }
        
        .quick-view-detail-btn:hover {
            background: #e66a00;
            transform: translateY(-2px);
        }
        
        .quick-view-cart-btn {
            background: transparent;
            color: #ff7b00;
            border: 2px solid #ff7b00;
        }
        
        .quick-view-cart-btn:hover {
            background: #ff7b00;
            color: white;
        }

        .cart-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #4CAF50;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 9999;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            font-size: 14px;
            font-weight: 600;
        }
        
        .cart-notification.show {
            transform: translateX(0);
        }

        .slide-menu {
            position: fixed;
            top: 0;
            left: -280px;
            width: 260px;
            height: 100%;
            background: var(--bg-secondary);
            box-shadow: 4px 0 30px var(--shadow);
            padding: 20px 16px;
            border-radius: 0 14px 14px 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: left .35s ease;
            z-index: 2400;
            font-family: Arial, sans-serif;
        }
        
        .slide-menu.open { 
            left: 0; 
        }
        
        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .menu-header h3 { 
            margin:0; 
            font-size:18px;
            color: var(--text-primary);
        }
        
        .close-btn {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: var(--text-primary);
        }
        
        .menu-list {
            list-style:none;
            padding:0;
            margin:0;
            flex:1;
            display:flex;
            flex-direction:column;
            gap:12px;
        }
        
        .menu-list li a {
            text-decoration:none;
            color: var(--text-primary);
            font-weight:600;
            padding:10px 12px;
            border-radius:8px;
            display:block;
            transition: background .2s;
        }
        
        .menu-list li a:hover { 
            background: rgba(255,123,0,0.1); 
        }
        
        .menu-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s ease;
            z-index: 2300;
        }
        
        .menu-backdrop.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .kategori-menusu {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding: 10px 15px;
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--category-border);
            scrollbar-width: none;
        }
        
        .kategori-menusu::-webkit-scrollbar {
            display: none;
        }
        
        .kategori-btn {
            flex: 0 0 auto;
            padding: 8px 12px;
            background: var(--card-bg);
            border-radius: 20px;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 10px;
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 2px 6px var(--shadow);
        }
        
        .kategori-btn:hover {
            background: #e65c00;
            color: #ffffff;
        }
        
        .kategori-btn i {
            font-size: 16px;
        }

        .auto-slider {
            width: 95%;
            height:80px;
            overflow: hidden;
            margin: 10px auto;
            border-radius: 12px;
            position: relative;
            touch-action: pan-x;
            font-family: Arial, sans-serif;
        }
        
        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .slider-track a {
            flex: 0 0 100%;
            height: 160px;
            display: block;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .slider-track img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 12px;
        }
        
        .slider-indicator {
            position: absolute;
            bottom: 10px;
            right: 15px;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 4px 10px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: bold;
        }

        .icon-scroll {
            display: flex;
            gap: -5px;
            overflow-x: auto;
            padding: 10px 6px;
            align-items: center;
            scrollbar-width: none;
        }
        
        .icon-scroll::-webkit-scrollbar {
            display: none;
        }
        
        .icon-item {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 80px;
            gap: 6px;
            font-family: Arial, sans-serif;
            font-size: 12px;
            color: var(--text-primary);
        }
        
        .icon-circle {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            overflow: hidden;
            background: var(--search-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 18px var(--shadow);
        }
        
        .icon-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .product-section {
            padding: 15px;
            transform: translateY(-14px);
        }
        
        .section-header {
            display: block;
            text-align: center;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            position: relative;
            transform: translateY(6px);
        }

        .section-title::after {
            content: '';
            width: 60px;
            height: 3px;
            background: #ff7b00;
            display: block;
            margin: 8px auto 0;
        }

        .view-all {
            font-size: 12px;
            color: #ff7b00;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 5px;
        }
        
        .product-scroll {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding-bottom: 10px;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        
        .product-scroll::-webkit-scrollbar {
            display: none;
        }

        .modern-product-card {
            background: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 2px 8px var(--shadow);
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
            flex: 0 0 130px;
            font-family: 'Segoe UI', sans-serif;
            scroll-snap-align: start;
            position: relative;
        }
        
        .modern-product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--shadow-hover);
        }
        
        .quick-view-icon {
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 123, 0, 0.9);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            z-index: 5;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .modern-product-card:hover .quick-view-icon {
            display: flex;
        }
        
        .quick-view-icon:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .modern-product-image {
            position: relative;
            width: 100%;
            height: 160px;
            overflow: hidden;
        }
        
        .modern-product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .modern-product-card:hover .modern-product-image img {
            transform: scale(1.03);
        }
        
        .modern-discount-badge {
            position: absolute;
            top: 6px;
            left: 6px;
            background: linear-gradient(90deg, #ff3f3f, #ff7b00);
            color: #fff;
            padding: 2px 6px;
            font-size: 8px;
            font-weight: 600;
            border-radius: 6px;
        }
        
        .modern-fav-btn {
            position: absolute;
            top: 6px;
            right: 6px;
            background: rgba(255,255,255,0.9);
            border: none;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            transition: all 0.2s;
        }
        
        .modern-fav-btn:hover {
            transform: scale(1.05);
            background: white;
        }
        
        .modern-fav-btn i {
            color: #ff7b00;
            font-size: 12px;
        }
        
        .modern-product-info {
            padding: 6px;
            min-height: 85px;
        }
        
        .modern-product-brand {
            font-size: 10px;
            color: var(--text-secondary);
            margin-bottom: 2px;
        }
        
        .modern-product-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 6px 0;
            line-height: 1.2;
            height: 28px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .modern-product-price {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 6px;
        }
        
        .modern-current-price {
            font-size: 11px;
            font-weight: 700;
            color: #ff7b00;
        }
        
        .modern-old-price {
            font-size: 10px;
            color: var(--text-secondary);
            text-decoration: line-through;
        }
        
        .modern-product-rating {
            color: #ffc107;
            font-size: 12px;
            margin-bottom: 4px;
            transform: translateY(-6px);
        }
        
        .modern-rating-count {
            color: var(--text-secondary);
            font-size: 10px;
        }
        
        .modern-new-badge {
            display: inline-block;
            background: linear-gradient(135deg, #f02b11, #fc7a00);
            color: white;
            font-size: 8px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 12px;
            margin-top: 2px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
            transform: translateY(-13px);
        }
        
        .modern-add-cart {
            width: 100%;
            padding: 6px;
            background: #ff7b00;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .modern-add-cart:hover {
            background: #e66a00;
        }

        .flash-products-wrapper {
            padding: 15px;
            margin: 0;
            background: linear-gradient(90deg, #ff7b00, #ff3f3f);
            border-radius: 0;
            box-shadow: none;
            border: none;
        }
        
        .flash-header-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            gap: 10px;
        }
        
        .flash-title {
            color: white;
            margin: 0;
            font-size: 18px;
        }
        
        .flash-countdown {
            display: flex;
            gap: 4px;
            align-items: center;
        }
        
        .countdown-item {
            background: rgba(255,255,255,0.2);
            padding: 4px 6px;
            border-radius: 4px;
            backdrop-filter: blur(10px);
            min-width: 38px;
            text-align: center;
        }
        
        .countdown-number {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: white;
            line-height: 1;
        }
        
        .countdown-label {
            display: block;
            font-size: 8px;
            color: rgba(255,255,255,0.8);
            margin-top: 2px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        
        .countdown-separator {
            color: white;
            font-size: 14px;
            font-weight: 700;
            padding: 0 2px;
        }

        .flash-products-scroll {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding-bottom: 10px;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }

        .flash-products-scroll::-webkit-scrollbar {
            display: none;
        }

        .kategori-container {
            padding: 15px;
        }
        
        .kategori-title {
            text-align: center;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            color: var(--text-primary);
        }
        
        .kategori-title::after {
            content: '';
            width: 60px;
            height: 3px;
            background: #ff7b00;
            display: block;
            margin: 8px auto 0;
        }
        
        .kategori-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 15px;
        }
        
        .kategori-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 8px var(--shadow);
            transition: transform 0.3s ease;
            height: 100px;
        }
        
        .kategori-card:hover {
            transform: translateY(-5px);
        }
        
        .kategori-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .kategori-info {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 15px;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            text-align: center;
        }
        
        .kategori-info h3 {
            margin: 0 0 5px;
            font-size: 16px;
        }

        .footer {
            background: var(--footer-bg);
            color: var(--footer-text);
            padding: 20px 15px;
            margin-top: 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .footer-col h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #ff7b00;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 8px;
        }
        
        .footer-col ul li a {
            color: var(--footer-text);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        
        .footer-col ul li a:hover {
            color: #ff7b00;
        }
        
        .footer-col p {
            color: var(--footer-text);
        }
        
        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .social-links a {
            color: var(--footer-text);
            font-size: 18px;
            transition: color 0.2s;
        }
        
        .social-links a:hover {
            color: #ff7b00;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #34495e;
            font-size: 12px;
            color: #bdc3c7;
        }

        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 6px 0;
            z-index: 2500;
        }
        
        .bottom-nav a {
            text-decoration: none;
            color: var(--text-primary);
            font-size: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .bottom-nav a img {
            width: 24px;
            height: 24px;
            margin-bottom: 4px;
        }
        
        .bottom-nav a.active {
            color: #ff6000;
            font-weight: bold;
        }

        .scroll-to-top {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff7b00, #ff9500);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(255, 123, 0, 0.6);
        }

        .scroll-to-top:active {
            transform: translateY(-1px);
        }

        /* ✅ RECENTLY VIEWED SECTION */
        #recently-viewed-main-section {
            display: none;
        }
        
        #recently-viewed-main-section.show {
            display: block;
        }
        
        #recently-viewed-main-section .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            text-align: left;
        }
        
        #recently-viewed-main-section .section-title {
            margin-bottom: 0;
            transform: translateY(0);
        }
        
        #recently-viewed-main-section .section-title::after {
            display: none;
        }
        
        #recently-viewed-main-section .clear-recent {
            font-size: 13px;
            color: #ff7b00;
            cursor: pointer;
            font-weight: 600;
            background: rgba(255, 123, 0, 0.1);
            padding: 6px 12px;
            border-radius: 20px;
            transition: all 0.2s;
        }
        
        #recently-viewed-main-section .clear-recent:hover {
            background: rgba(255, 123, 0, 0.2);
            transform: translateY(-1px);
        }
        
        @media (min-width: 768px) {
            .auto-slider, .slider-track a {
                height: 200px;
            }
            .modern-product-card {
                flex: 0 0 200px;
            }
            .modern-product-image {
                height: 240px;
            }
            .kategori-card img {
                height: 200px;
            }
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .flash-products-wrapper {
                padding: 20px;
            }
        }

        @media (min-width: 1024px) {
            .flash-products-wrapper {
                max-width: 1200px;
                margin: 20px auto;
            }
        }

        /* 🔍 Yarım Ekran Arama Paneli */
.search-panel {
  position: fixed;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 55%;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
  padding: 15px;
  transition: bottom 0.35s ease;
  z-index: 9999;
}

.search-panel.active {
  bottom: 0;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.search-box input {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.close-btn {
  padding: 10px 12px;
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 10px;
}

.suggestions {
  font-size: 14px;
}

.tags span {
  background: #f3f3f3;
  padding: 6px 10px;
  border-radius: 8px;
  margin-right: 8px;
  display: inline-block;
  margin-top: 4px;
}

.results div {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

    

/* kadingiyim.html */

        :root {
            --bg-primary: #f5f5f5;
            --bg-secondary: #ffffff;
            --text-primary: #333;
            --text-secondary: #888;
            --border-color: #ddd;
            --shadow: rgba(0,0,0,0.08);
            --accent: #ec4899;
        }
        
        [data-theme="dark"] {
            --bg-primary: #121212;
            --bg-secondary: #1e1e1e;
            --text-primary: #e0e0e0;
            --text-secondary: #aaa;
            --border-color: #333;
            --shadow: rgba(0,0,0,0.3);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            padding-bottom: 20px;
            transition: all 0.3s ease;
        }

        .mobile-search-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: var(--bg-secondary);
            box-shadow: 0 4px 16px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 2200;
            font-family: Arial, sans-serif;
            transition: all 0.3s ease;
        }

        .back-btn {
            background: none;
            border: none;
            padding: 6px;
            cursor: pointer;
            border-radius: 8px;
            display: flex;
            align-items: center;
            color: var(--text-primary);
            font-size: 20px;
            transition: background 0.2s;
        }

        .back-btn:hover { 
            background: rgba(236, 72, 153, 0.1); 
        }

        .search-wrapper {
            flex: 1;
            display: flex;
            position: relative;
        }

        .search-wrapper input {
            flex: 1;
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid var(--border-color);
            font-size: 14px;
            outline: none;
            background: var(--bg-primary);
            width: 100%;
            color: var(--text-primary);
            transition: all 0.2s;
        }

        .search-wrapper input:focus {
            border-color: var(--accent);
        }

        .search-wrapper button.search-btn {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            padding: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        .header-icon-btn {
            background: none;
            border: none;
            padding: 8px;
            cursor: pointer;
            color: var(--text-primary);
            font-size: 18px;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .header-icon-btn:hover {
            background: rgba(236, 72, 153, 0.1);
        }

        .mobile-cart {
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            text-decoration: none;
            color: var(--text-primary);
        }

        .cart-count {
            background: var(--accent);
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 7px;
            border-radius: 999px;
            position: absolute;
            top: -6px;
            right: -6px;
            min-width: 18px;
            text-align: center;
            line-height: 1;
            display: none;
        }

        .cart-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #4CAF50;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 9999;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            font-size: 14px;
            font-weight: 600;
        }
        
        .cart-notification.show {
            transform: translateX(0);
        }

        .filters-container {
            background: var(--bg-secondary);
            padding: 12px 15px;
            margin-bottom: 10px;
            box-shadow: 0 2px 8px var(--shadow);
        }

        .filters-scroll {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 4px 0;
        }

        .filters-scroll::-webkit-scrollbar {
            display: none;
        }

        .filter-chip {
            flex: 0 0 auto;
            background: var(--bg-primary);
            border: 2px solid var(--border-color);
            border-radius: 25px;
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .filter-chip:hover {
            background: rgba(236, 72, 153, 0.1);
            border-color: var(--accent);
        }

        .filter-chip.active {
            background: linear-gradient(135deg, var(--accent), #f97316);
            color: white;
            border-color: var(--accent);
            box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
        }

        .filter-chip i {
            font-size: 14px;
        }

        .filter-panel {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            border-radius: 20px 20px 0 0;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 9998;
            max-height: 70vh;
            overflow-y: auto;
            box-shadow: 0 -4px 20px var(--shadow);
        }

        .filter-panel.active {
            transform: translateY(0);
        }

        .filter-panel-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 9997;
            display: none;
            backdrop-filter: blur(5px);
        }

        .filter-panel-overlay.active {
            display: block;
        }

        .filter-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .filter-panel-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .close-panel-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 5px;
        }

        .filter-section {
            margin-bottom: 20px;
        }

        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .filter-option {
            padding: 8px 16px;
            background: var(--bg-primary);
            border: 2px solid var(--border-color);
            border-radius: 20px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.2s;
            color: var(--text-primary);
        }

        .filter-option:hover {
            border-color: var(--accent);
            background: rgba(236, 72, 153, 0.1);
        }

        .filter-option.selected {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .price-slider-container {
            margin: 15px 0;
        }

        .price-range-display {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            text-align: center;
            margin-bottom: 10px;
        }

        .price-slider {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: var(--border-color);
            outline: none;
            -webkit-appearance: none;
            cursor: pointer;
        }

        .price-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #f97316);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
            transition: all 0.3s ease;
        }

        .price-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
        }

        .price-slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #f97316);
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
        }

        .sort-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .sort-option {
            padding: 12px 15px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-primary);
            background: var(--bg-primary);
        }

        .sort-option:hover {
            background: rgba(168, 85, 247, 0.1);
        }

        .sort-option.selected {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
            font-weight: 600;
        }

        .sort-option i {
            font-size: 16px;
        }

        .filter-panel-footer {
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
            display: flex;
            gap: 10px;
            position: sticky;
            bottom: 0;
            background: var(--bg-secondary);
            margin: 0 -20px;
            padding: 15px 20px;
        }

        .clear-filters-btn {
            flex: 1;
            padding: 12px;
            background: var(--bg-primary);
            color: var(--text-primary);
            border: 2px solid var(--border-color);
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .apply-filters-btn {
            flex: 2;
            padding: 12px;
            background: linear-gradient(135deg, var(--accent), #f97316);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .apply-filters-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
        }

        .products-info-bar {
            background: var(--bg-secondary);
            padding: 12px 15px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 4px var(--shadow);
        }

        .product-count {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .product-count strong {
            color: var(--accent);
            font-weight: 700;
        }

        .products-container {
            padding: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            width: 100%;
        }

        @media (min-width: 600px) {
            .products-container {
                padding: 20px;
            }
            
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
        }

        @media (min-width: 900px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
        }

        @media (min-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .product-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px var(--shadow);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid var(--border-color);
            width: 100%;
            display: flex;
            flex-direction: column;
            min-height: 320px;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px var(--shadow);
            border-color: var(--accent);
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 200px;
            flex-shrink: 0;
            overflow: hidden;
            background: var(--bg-primary);
        }

        @media (min-width: 600px) {
            .product-card {
                min-height: 380px;
            }
            
            .product-image {
                height: 220px;
            }
        }

        @media (min-width: 900px) {
            .product-card {
                min-height: 400px;
            }
            
            .product-image {
                height: 240px;
            }
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .discount-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: linear-gradient(135deg, #ff4757, #ff3742);
            color: white;
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 10px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
            z-index: 4;
        }

        .new-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: linear-gradient(135deg, #2ed573, #1dd1a1);
            color: white;
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 10px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(46, 213, 115, 0.4);
            z-index: 4;
        }

        .favorite-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(255,255,255,0.95);
            border: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            z-index: 5;
        }

        .favorite-btn:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .favorite-btn i {
            color: var(--accent);
            font-size: 12px;
        }

        .favorite-btn.active {
            background: var(--accent);
            box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
        }

        .favorite-btn.active i {
            color: white;
        }

        .product-info {
            flex: 1;
            padding: 10px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 50px;
        }

        .product-brand {
            font-size: 11px;
            color: var(--text-secondary);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .product-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: -5px;
            line-height: 1.4;
            min-height: 38px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 10px;
            transform: translateY(-14px);
        }

        .stars {
            color: #ffc107;
            font-size: 14px;
        }

        .rating-count {
            font-size: 10px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            transform: translateY(1px);
        }

        .current-price {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent);
        }

        .old-price {
            font-size: 10px;
            color: var(--text-secondary);
            text-decoration: line-through;
            font-weight: 500;
        }

        .add-to-cart {
            width: 100%;
            padding: 8px;
            background: linear-gradient(135deg, var(--accent), #f97316);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
            margin-top: auto;
        }

        .add-to-cart:hover {
            background: linear-gradient(135deg, #db2777, #ea580c);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
        }

        .add-to-cart:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .load-more-container {
            text-align: center;
            padding: 30px 20px;
        }

        .load-more-btn {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .load-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
        }

        .loading {
            text-align: center;
            padding: 60px 20px;
            background: var(--bg-secondary);
            margin: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 12px var(--shadow);
            color: var(--text-secondary);
            font-size: 16px;
        }

        .loading i {
            font-size: 32px;
            color: var(--accent);
            margin-bottom: 15px;
            display: block;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .error {
            text-align: center;
            padding: 60px 20px;
            background: var(--bg-secondary);
            margin: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 12px var(--shadow);
            color: #e74c3c;
        }

        .error h3 {
            margin-bottom: 15px;
            font-size: 20px;
            color: var(--text-primary);
        }

        .error p {
            margin-bottom: 20px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .retry-btn {
            background: linear-gradient(135deg, var(--accent), #f97316);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .retry-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 20px;
            backdrop-filter: blur(5px);
        }

        .modal-overlay.show {
            display: flex;
        }

        .modal-content {
            background: var(--bg-secondary);
            border-radius: 16px;
            max-width: 450px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(50px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .modal-header {
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        .modal-body {
            padding: 20px;
        }

        .product-preview {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .product-preview-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-primary);
        }

        .product-preview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-preview-info h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .product-preview-info .brand {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .product-preview-info .price {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
        }

        .option-group {
            margin-bottom: 20px;
        }

        .option-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .option-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 8px;
        }

        .option-btn {
            padding: 10px 15px;
            border: 2px solid var(--border-color);
            background: var(--bg-secondary);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            min-height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
        }

        .option-btn:hover {
            border-color: var(--accent);
            background: rgba(236, 72, 153, 0.1);
        }

        .option-btn.selected {
            border-color: var(--accent);
            background: linear-gradient(135deg, var(--accent), #f97316);
            color: white;
        }

        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid var(--border-color);
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }

        .color-option:hover {
            border-color: var(--accent);
            transform: scale(1.1);
        }

        .color-option.selected {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px var(--bg-secondary), 0 0 0 4px var(--accent);
        }

        .color-option.selected::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            border: 2px solid var(--border-color);
            background: var(--bg-secondary);
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            color: var(--text-secondary);
            transition: all 0.2s;
        }

        .quantity-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .quantity-input {
            width: 60px;
            height: 40px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            outline: none;
            background: var(--bg-secondary);
            color: var(--text-primary);
        }

        .quantity-input:focus {
            border-color: var(--accent);
        }

        .modal-footer {
            padding: 20px;
            border-top: 1px solid var(--border-color);
            display: flex;
            gap: 10px;
        }

        .modal-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .modal-btn-cancel {
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        .modal-btn-cancel:hover {
            background: var(--border-color);
        }

        .modal-btn-add {
            background: linear-gradient(135deg, var(--accent), #f97316);
            color: white;
            box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
        }

        .modal-btn-add:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
        }

        .modal-btn-add:disabled {
            background: #ccc;
            transform: none;
            box-shadow: none;
            cursor: not-allowed;
        }

        .toast {
            position: fixed;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #2ed573, #1dd1a1);
            color: white;
            padding: 14px 24px;
            border-radius: 12px;
            box-shadow: 0 6px 24px rgba(46, 213, 115, 0.4);
            z-index: 3000;
            display: none;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            font-size: 14px;
        }

        .toast.show {
            display: flex;
        }

        .scroll-to-top {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent), #f97316);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(236, 72, 153, 0.6);
        }
    

/* katagori.html */

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            padding-bottom: 80px;
        }

        /* Header */
        .header {
            background: #fff;
            padding: 12px 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .back-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
            padding: 8px;
        }
        .header-title {
            font-size: 18px;
            font-weight: 600;
            flex: 1;
            color: #333;
        }
        .header-icons {
            display: flex;
            gap: 15px;
        }
        .header-icons i {
            font-size: 20px;
            cursor: pointer;
            color: #333;
            padding: 8px;
        }

        /* Sayfa Başlığı */
        .page-title {
            text-align: center;
            padding: 20px 15px;
            background: #fff;
            margin-bottom: 10px;
        }
        .page-title h1 {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 8px;
        }
        .page-title p {
            font-size: 14px;
            color: #666;
        }

        /* Arama Kutusu */
        .search-section {
            background: #fff;
            padding: 15px;
            margin-bottom: 10px;
        }
        .search-wrapper {
            position: relative;
        }
        .search-input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            border-radius: 25px;
            border: 1px solid #ddd;
            font-size: 14px;
            outline: none;
            background: #f8f8f8;
        }
        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 16px;
        }

        /* Kategori Bölümleri */
        .category-section {
            background: #fff;
            margin-bottom: 10px;
            padding: 20px 15px 15px 15px;
        }
        .section-title {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background: #ff7b00;
            border-radius: 2px;
        }

        /* Kategori Kartları */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .category-card {
            background: #f8f8f8;
            border-radius: 12px;
            padding: 15px;
            text-decoration: none;
            color: #333;
            transition: all 0.2s;
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-height: 100px;
            justify-content: center;
        }
        .category-card:hover {
            background: #ff7b00;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 123, 0, 0.2);
        }
        .category-icon {
            font-size: 24px;
            margin-bottom: 8px;
            color: #ff7b00;
            transition: color 0.2s;
        }
        .category-card:hover .category-icon {
            color: white;
        }
        .category-name {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .category-count {
            font-size: 12px;
            opacity: 0.8;
        }

        /* Büyük Kategori Kartları */
        .category-grid-large {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .category-card-large {
            background: linear-gradient(135deg, #ff7b00, #e66a00);
            border-radius: 15px;
            padding: 20px;
            text-decoration: none;
            color: white;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .category-card-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        .category-card-large::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100%;
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            transform: translateX(50px);
        }
        .category-large-content {
            flex: 1;
        }
        .category-large-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        .category-large-desc {
            font-size: 13px;
            opacity: 0.9;
        }
        .category-large-icon {
            font-size: 30px;
            opacity: 0.3;
            margin-left: 15px;
        }

        /* Özel Kategoriler */
        .special-categories {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        .special-card {
            background: #fff;
            border-radius: 10px;
            padding: 12px 8px;
            text-decoration: none;
            color: #333;
            transition: all 0.2s;
            border: 2px solid #eee;
            text-align: center;
            min-height: 70px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
        }
        .special-card.sale {
            border-color: #ff4444;
            background: linear-gradient(135deg, #ff4444, #ff6666);
            color: white;
        }
        .special-card.new {
            border-color: #22c55e;
            background: linear-gradient(135deg, #22c55e, #4ade80);
            color: white;
        }
        .special-card.trending {
            border-color: #3b82f6;
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
            color: white;
        }
        .special-card i {
            font-size: 16px;
            margin-bottom: 4px;
        }

        /* Bottom Navigation */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: white;
            border-top: 1px solid #ddd;
            padding: 6px 0;
            z-index: 2500;
        }
        .bottom-nav a {
            text-decoration: none;
            color: #333;
            font-size: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .bottom-nav a img {
            width: 24px;
            height: 24px;
            margin-bottom: 4px;
        }
        .bottom-nav a.active {
            color: #ff6000;
            font-weight: bold;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .special-categories {
                grid-template-columns: repeat(6, 1fr);
            }
            .header-title {
                font-size: 20px;
            }
            .page-title h1 {
                font-size: 28px;
            }
        }

        @media (min-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            body {
                max-width: 1200px;
                margin: 0 auto;
            }
        }
    

/* kredi.html */

        /* Genel Stil Ayarları */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            padding-bottom: 80px;
        }

        /* Header */
        .header {
            background: #fff;
            padding: 12px 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .back-btn {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #333;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }

        .back-btn:hover {
            background: rgba(0,0,0,0.05);
        }

        .header-title {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            flex: 1;
        }

        /* Ana İçerik */
        .container {
            padding: 15px;
        }

        /* Genel Form Stilleri */
        .form-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .form-section h2 {
            font-size: 18px;
            font-weight: 700;
            color: #ff7b00;
            margin-bottom: 15px;
            border-bottom: 2px solid #ff7b00;
            padding-bottom: 8px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            color: #666;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            transition: border-color 0.2s;
        }
        
        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: #ff7b00;
        }

        .card-details-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .card-details-grid .half-width {
            grid-column: span 1;
        }

        @media (min-width: 600px) {
            .card-details-grid {
                grid-template-columns: 1fr 1fr;
            }
            .card-details-grid .full-width {
                grid-column: span 2;
            }
        }

        /* Sipariş Özeti */
        .order-summary {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            padding: 20px;
            margin-bottom: 20px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .summary-row span:first-child {
            color: #666;
        }

        .summary-row.total-row {
            border-top: 1px solid #eee;
            padding-top: 10px;
            margin-top: 10px;
            font-weight: 700;
            font-size: 18px;
            color: #ff7b00;
        }
        
        .summary-row.total-row span:first-child {
            color: #ff7b00;
        }

        /* Kart İkonları */
        .card-icons {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
        }

        .card-icons i {
            font-size: 24px;
            color: #999;
        }

        /* Ödeme Butonu */
        .pay-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #ff7b00, #ff9500);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 20px;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 15px rgba(255,123,0,0.3);
        }

        .pay-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,123,0,0.4);
        }

        .pay-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            box-shadow: none;
            transform: none;
        }

        /* Checkbox */
        .consent-checkbox {
            display: flex;
            align-items: flex-start;
            margin-top: 15px;
        }

        .consent-checkbox input {
            margin-right: 8px;
            margin-top: 4px;
        }

        .consent-checkbox label {
            font-size: 12px;
            color: #666;
            font-weight: 400;
        }
        
        .consent-checkbox label a {
            color: #ff7b00;
            text-decoration: none;
        }

        /* Mesaj Alanı */
        .message-box {
            display: none;
            background: #22c55e;
            color: white;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 20px;
        }

        .message-box.error {
            background: #ef4444;
        }

        @media (min-width: 768px) {
            .container {
                max-width: 600px;
                margin: 20px auto;
            }
        }
    

/* login.html */

    :root {
      --bg-primary: #fafafa;
      --bg-secondary: #ffffff;
      --text-primary: #1a1a1a;
      --text-secondary: #777;
      --border-color: #e5e5e5;
      --accent: #ff7b00;
      --accent-dark: #e66d00;
      --danger: #ef4444;
      --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    [data-theme="dark"] {
      --bg-primary: #0f0f0f;
      --bg-secondary: #171717;
      --text-primary: #f5f5f5;
      --text-secondary: #a3a3a3;
      --border-color: #272727;
      --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #ffe6cc, #fafafa 40%);
      background-attachment: fixed;
      color: var(--text-primary);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 16px;
      padding-top: 70px;
      transition: background 0.3s, color 0.3s;
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 56px;
      padding: 0 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(250, 250, 250, 0.9);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
      z-index: 50;
    }

    [data-theme="dark"] .header {
      background: rgba(15, 15, 15, 0.9);
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .back-btn {
      border: none;
      background: none;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--text-primary);
      transition: background 0.2s, transform 0.1s;
    }

    .back-btn:hover {
      background: rgba(0, 0, 0, 0.04);
      transform: translateX(-1px);
    }

    .header-title {
      font-size: 18px;
      font-weight: 700;
    }

    .theme-toggle {
      border: none;
      background: none;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--text-primary);
      transition: background 0.2s, transform 0.1s;
    }

    .theme-toggle:hover {
      background: rgba(0, 0, 0, 0.04);
      transform: rotate(-8deg);
    }

    /* CARD */

    .auth-card {
      width: 100%;
      max-width: 420px;
      background: var(--bg-secondary);
      border-radius: 20px;
      box-shadow: var(--shadow-soft);
      padding: 22px 18px 20px;
      position: relative;
      overflow: hidden;
    }

    .logo-badge {
      position: absolute;
      top: -30px;
      right: -20px;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: radial-gradient(circle, #ffb347, #ff7b00);
      opacity: 0.15;
    }

    .auth-header {
      margin-bottom: 18px;
    }

    .auth-title {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 0.3px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .auth-title span.brand {
      color: #ff7b00;
    }

    .auth-subtitle {
      font-size: 13px;
      color: var(--text-secondary);
      margin-top: 4px;
    }

    .auth-tabs {
      display: flex;
      gap: 8px;
      background: var(--bg-primary);
      padding: 4px;
      border-radius: 999px;
      margin: 16px 0 18px;
    }

    .auth-tab {
      flex: 1;
      border-radius: 999px;
      border: none;
      background: transparent;
      color: var(--text-secondary);
      font-size: 13px;
      font-weight: 600;
      padding: 6px 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: all 0.2s;
    }

    .auth-tab i {
      font-size: 14px;
    }

    .auth-tab.active {
      background: linear-gradient(135deg, #ff7b00, #ff9500);
      color: #fff;
      box-shadow: 0 6px 15px rgba(255, 123, 0, 0.4);
    }

    .auth-body {
      margin-top: 6px;
    }

    .form-group {
      margin-bottom: 12px;
    }

    .form-label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 4px;
    }

    .input-wrapper {
      position: relative;
    }

    .form-input {
      width: 100%;
      padding: 10px 12px 10px 36px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      background: var(--bg-primary);
      color: var(--text-primary);
      font-size: 13px;
      outline: none;
      transition: border 0.2s, box-shadow 0.2s, background 0.2s;
    }

    .form-input:focus {
      border-color: #ff7b00;
      box-shadow: 0 0 0 1px rgba(255, 123, 0, 0.25);
      background: var(--bg-secondary);
    }

    .input-icon {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 13px;
      color: var(--text-secondary);
    }

    .helper-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 2px 0 12px;
      font-size: 12px;
    }

    .remember-me {
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      color: var(--text-secondary);
    }

    .remember-me input {
      width: 14px;
      height: 14px;
      accent-color: #ff7b00;
      cursor: pointer;
    }

    .forgot-link {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
    }

    .forgot-link:hover {
      text-decoration: underline;
    }

    .btn {
      width: 100%;
      border-radius: 14px;
      border: none;
      padding: 11px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: transform 0.1s, box-shadow 0.2s, background 0.2s;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: #fff;
      box-shadow: 0 10px 20px rgba(255, 123, 0, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 25px rgba(255, 123, 0, 0.45);
    }

    .btn-outline {
      margin-top: 8px;
      background: transparent;
      border: 1px dashed var(--border-color);
      color: var(--text-secondary);
    }

    .btn-outline:hover {
      border-style: solid;
      border-color: var(--accent);
      color: var(--accent);
    }

    .divider {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 12px 0;
      font-size: 11px;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .divider span {
      flex: 1;
      height: 1px;
      background: var(--border-color);
    }

    .meta-text {
      margin-top: 8px;
      font-size: 11px;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .link-inline {
      color: var(--accent);
      font-weight: 600;
      cursor: pointer;
    }

    /* Notification */

    .notification {
      position: fixed;
      top: 76px;
      left: 50%;
      transform: translateX(-50%) translateY(-120%);
      background: linear-gradient(135deg, #10b981, #059669);
      color: #fff;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.3s;
      z-index: 1000;
    }

    .notification.show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .notification.error {
      background: linear-gradient(135deg, #ef4444, #dc2626);
    }

    /* Bottom nav küçük */

    .bottom-hint {
      margin-top: 20px;
      font-size: 11px;
      color: var(--text-secondary);
      text-align: center;
      max-width: 380px;
    }

    @media (min-width: 768px) {
      body {
        justify-content: center;
        padding-top: 80px;
      }
      .header {
        max-width: 480px;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 999px;
      }
    }
  

/* Markalar.html */

    /* Global Reset & Temel Stiller */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f5f5f5;
      color: #333;
      line-height: 1.6;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    ul {
      list-style: none;
    }
    
    /* Navbar */
    header {
      background-color: #fff;
      border-bottom: 1px solid #ddd;
      padding: 20px 0;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .navbar .logo {
      font-size: 24px;
      font-weight: 600;
      color: #333;
    }
    .navbar nav ul {
      display: flex;
      gap: 20px;
      align-items: center;
    }
    .navbar nav ul li a {
      font-size: 16px;
      transition: color 0.3s;
    }
    .navbar nav ul li a:hover {
      color: #007BFF;
    }
    
    /* Banner Bölümü */
    .banner {
      position: relative;
      height: 350px;
      background: url('markalar-banner.jpg') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      margin-bottom: 30px;
    }
    .banner::before {
      content: "";
      position: absolute;
      top: 0; 
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
    }
    .banner-content {
      position: relative;
      z-index: 1;
      padding: 0 20px;
    }
    .banner h1 {
      font-size: 48px;
      margin-bottom: 20px;
    }
    .banner p {
      font-size: 20px;
      margin-bottom: 20px;
    }
    .btn-custom {
      background: #007BFF;
      color: #fff;
      padding: 12px 30px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
      font-size: 16px;
    }
    .btn-custom:hover {
      background: #0056b3;
    }
    
    /* Bölüm Başlığı */
    .section-title {
      text-align: center;
      margin: 20px 0 30px;
      font-size: 32px;
      font-weight: 500;
      color: #333;
    }
    
    /* Markalar Grid Bölümü */
    .brands {
      padding: 0 20px 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    .brand-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      text-align: center;
      padding: 20px;
    }
    .brand-card:hover {
      transform: translateY(-5px);
    }
    .brand-card img {
      width: 100%;
      height: auto;
      max-height: 120px;
      object-fit: contain;
      margin-bottom: 15px;
    }
    .brand-card h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #333;
    }
    .brand-card button {
      background: #007BFF;
      color: #fff;
      padding: 8px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
      font-size: 14px;
    }
    .brand-card button:hover {
      background: #0056b3;
    }
    
    /* Footer */
    footer {
      background: #333;
      color: #fff;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }
    
    /* Responsive Ayarlar */
    @media (max-width: 768px) {
      .brands {
        grid-template-columns: repeat(2, 1fr);
      }
      .banner h1 {
        font-size: 36px;
      }
    }
    @media (max-width: 480px) {
      .brands {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  

/* odeme.html */

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', sans-serif; background: #f5f5f5; padding-bottom: 80px; }
        .header { background: #fff; padding: 12px 15px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 15px; position: sticky; top: 0; z-index: 1000; }
        .back-btn { background: none; border: none; font-size: 24px; cursor: pointer; padding: 8px; }
        .header-title { font-size: 18px; font-weight: 600; flex: 1; }
        .section { background: #fff; padding: 20px; margin-bottom: 8px; }
        .section-title { font-size: 16px; font-weight: 600; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
        .order-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
        .order-item:last-child { border-bottom: none; }
        .item-image { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; }
        .item-details { flex: 1; }
        .item-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
        .item-info { font-size: 11px; color: #666; }
        .item-price { font-size: 14px; font-weight: 600; color: #ff7b00; }
        .item-actions { display: flex; gap: 8px; margin-top: 8px; }
        .item-btn { padding: 4px 10px; font-size: 11px; border: 1px solid #ddd; background: white; border-radius: 6px; cursor: pointer; }
        .option-card { display: flex; align-items: center; gap: 12px; padding: 15px; border: 2px solid #eee; border-radius: 10px; margin-bottom: 10px; cursor: pointer; transition: all 0.2s; }
        .option-card:hover { border-color: #ff7b00; }
        .option-card.selected { border-color: #ff7b00; background: rgba(255, 123, 0, 0.05); }
        .option-card input[type="radio"] { width: 18px; height: 18px; accent-color: #ff7b00; }
        .address-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; width: 100%; }
        .address-title { font-size: 14px; font-weight: 600; flex: 1; }
        .address-badge { background: #ff7b00; color: white; padding: 2px 8px; border-radius: 12px; font-size: 10px; font-weight: 600; }
        .address-text { font-size: 13px; color: #666; line-height: 1.4; margin-left: 30px; }
        .payment-icon { width: 40px; height: 40px; background: #f8f8f8; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
        .installment-section { display: none; margin-top: 15px; }
        .installment-section.show { display: block; }
        .installment-option { display: flex; justify-content: space-between; padding: 14px; border: 2px solid #e0e0e0; border-radius: 8px; margin-bottom: 10px; cursor: pointer; transition: all 0.3s; }
        .installment-option:hover { border-color: #ff7b00; }
        .installment-option.active { border-color: #ff7b00; background: rgba(255, 123, 0, 0.05); }
        .total-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
        .total-row:last-child { border-bottom: none; padding-top: 15px; font-size: 16px; font-weight: 700; }
        .total-row .discount { color: #22c55e; }
        .checkout-section { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; padding: 15px; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 1000; }
        .checkout-btn { width: 100%; background: linear-gradient(135deg, #ff7b00, #e66a00); color: white; border: none; padding: 15px; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; }
        .checkout-btn:disabled { background: #ccc; cursor: not-allowed; }
        .modal { position: fixed; inset: 0; background: rgba(0,0,0,0.5); display: none; align-items: center; justify-content: center; z-index: 3000; padding: 20px; }
        .modal.show { display: flex; }
        .modal-content { background: white; padding: 30px; border-radius: 15px; max-width: 400px; width: 100%; max-height: 90vh; overflow-y: auto; }
        .modal-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; text-align: center; }
        .form-group { margin-bottom: 15px; }
        .form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
        .form-input { width: 100%; padding: 12px; border: 2px solid #e5e5e5; border-radius: 8px; font-size: 14px; }
        .form-input:focus { outline: none; border-color: #ff7b00; }
        .form-textarea { width: 100%; padding: 12px; border: 2px solid #e5e5e5; border-radius: 8px; font-size: 14px; min-height: 80px; resize: vertical; }
        .btn { width: 100%; padding: 12px; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; margin-bottom: 10px; }
        .btn-primary { background: #ff7b00; color: white; }
        .btn-secondary { background: #6b7280; color: white; }
        .add-address-btn { width: 100%; padding: 12px; background: transparent; border: 2px dashed #ddd; border-radius: 10px; color: #ff7b00; font-size: 14px; font-weight: 600; cursor: pointer; margin-top: 10px; }
        .guest-alert { background: #fff3e0; padding: 12px; border-radius: 8px; margin-bottom: 15px; border-left: 4px solid #ff7b00; }
        .success-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #22c55e, #16a34a); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 40px; color: white; }

        /* KUPON KODU */
        .coupon-section { display: flex; gap: 10px; margin-bottom: 15px; }
        .coupon-input { flex: 1; padding: 12px; border: 2px solid #e5e5e5; border-radius: 8px; font-size: 14px; text-transform: uppercase; }
        .coupon-btn { padding: 12px 20px; background: #ff7b00; color: white; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; white-space: nowrap; }
        .coupon-success { background: #d1fae5; color: #065f46; padding: 10px; border-radius: 6px; margin-bottom: 15px; font-size: 13px; display: none; }
        .coupon-success.show { display: flex; align-items: center; gap: 8px; }

        /* SÖZLEŞME ONAYLARI */
        .contracts-section { background: #fff; padding: 20px; margin-bottom: 8px; }
        .contract-checkbox { display: flex; gap: 10px; margin-bottom: 12px; padding: 12px; background: #f8f9fa; border-radius: 8px; border: 2px solid #e5e5e5; transition: all 0.3s; }
        .contract-checkbox:hover { border-color: #ff7b00; }
        .contract-checkbox.checked { border-color: #22c55e; background: #f0fdf4; }
        .contract-checkbox input[type="checkbox"] { width: 20px; height: 20px; cursor: pointer; margin-top: 2px; accent-color: #22c55e; }
        .contract-label { flex: 1; font-size: 13px; line-height: 1.5; cursor: pointer; }
        .contract-label strong { font-weight: 700; color: #333; }
        .contract-label a { color: #ff7b00; text-decoration: underline; }
        .contracts-warning { background: #fee; color: #c00; padding: 12px; border-radius: 8px; font-size: 13px; margin-top: 15px; display: none; }

        /* 3D SECURE MODAL */
        .secure-3d-modal { position: fixed; inset: 0; background: white; z-index: 9999; display: none; flex-direction: column; }
        .secure-3d-modal.show { display: flex; }
        .secure-header { background: linear-gradient(135deg, #1e40af, #1e3a8a); color: white; padding: 20px; text-align: center; }
        .secure-body { flex: 1; padding: 30px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
        .secure-logo { font-size: 64px; margin-bottom: 20px; }
        .secure-title { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
        .secure-text { font-size: 14px; color: #666; margin-bottom: 30px; text-align: center; }
        .secure-code-input { width: 200px; padding: 16px; border: 3px solid #e5e5e5; border-radius: 10px; font-size: 32px; text-align: center; letter-spacing: 10px; margin-bottom: 20px; }
        .secure-timer { font-size: 14px; color: #666; margin-bottom: 20px; }

        /* KAYITLI KARTLAR */
        .saved-cards { margin-bottom: 15px; }
        .saved-card { display: flex; align-items: center; gap: 12px; padding: 12px; border: 2px solid #e5e5e5; border-radius: 10px; margin-bottom: 10px; cursor: pointer; }
        .saved-card.selected { border-color: #ff7b00; background: rgba(255, 123, 0, 0.05); }
        .card-icon { width: 50px; height: 35px; background: linear-gradient(135deg, #667eea, #764ba2); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }

        /* KARGO ŞİRKETİ */
        .cargo-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 10px; }
        .cargo-card { padding: 12px; border: 2px solid #e5e5e5; border-radius: 8px; text-align: center; cursor: pointer; transition: all 0.3s; }
        .cargo-card:hover { border-color: #ff7b00; }
        .cargo-card.selected { border-color: #ff7b00; background: rgba(255, 123, 0, 0.05); }
        .cargo-logo { font-size: 24px; margin-bottom: 8px; }
        .cargo-name { font-size: 12px; font-weight: 600; }
        .cargo-time { font-size: 11px; color: #666; }

        @media (min-width: 768px) { body { max-width: 600px; margin: 0 auto; } }
    

/* Outlet.html */

    /* Global Reset & Temel Stiller */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f5f5f5;
      color: #333;
      line-height: 1.6;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    ul {
      list-style: none;
    }
    
    /* Navbar */
    header {
      background-color: #fff;
      border-bottom: 1px solid #ddd;
      padding: 20px 0;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .navbar .logo {
      font-size: 24px;
      font-weight: 600;
      color: #333;
    }
    .navbar nav ul {
      display: flex;
      gap: 20px;
      align-items: center;
    }
    .navbar nav ul li a {
      font-size: 16px;
      transition: color 0.3s;
    }
    .navbar nav ul li a:hover {
      color: #007BFF;
    }
    
    /* Banner Bölümü */
    .banner {
      position: relative;
      height: 350px;
      background: url('outlet-banner.jpg') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      margin-bottom: 30px;
    }
    .banner::before {
      content: "";
      position: absolute;
      top: 0; 
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
    }
    .banner-content {
      position: relative;
      z-index: 1;
      padding: 0 20px;
    }
    .banner h1 {
      font-size: 48px;
      margin-bottom: 20px;
    }
    .banner p {
      font-size: 20px;
      margin-bottom: 20px;
    }
    .btn-custom {
      background: #007BFF;
      color: #fff;
      padding: 12px 30px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
      font-size: 16px;
    }
    .btn-custom:hover {
      background: #0056b3;
    }
    
    /* Bölüm Başlığı */
    .section-title {
      text-align: center;
      margin: 20px 0 30px;
      font-size: 32px;
      font-weight: 500;
      color: #333;
    }
    
    /* Ürünler Grid Bölümü */
    .products {
      padding: 0 20px 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .product-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-5px);
    }
    .product-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }
    .product-info {
      padding: 15px;
      display: flex;
      flex-direction: column;
      flex: 1;
      justify-content: space-between;
    }
    .product-info h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #333;
    }
    .price {
      font-size: 18px;
      color: #007BFF;
      margin-bottom: 10px;
    }
    .price span {
      text-decoration: line-through;
      color: #999;
      margin-left: 5px;
      font-size: 16px;
    }
    .product-info button {
      background: #007BFF;
      color: #fff;
      padding: 10px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
      font-size: 16px;
    }
    .product-info button:hover {
      background: #0056b3;
    }
    
    /* Footer */
    footer {
      background: #333;
      color: #fff;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }
    
    /* Responsive Ayarlar */
    @media (max-width: 768px) {
      .products {
        grid-template-columns: repeat(2, 1fr);
      }
      .banner h1 {
        font-size: 36px;
      }
    }
    @media (max-width: 480px) {
      .products {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  

/* sendeal.html */

    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #eef2f7;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    .slider-container {
      position: relative;
      width: 90%;
      max-width: 600px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .slider-wrapper {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .slide {
      min-width: 100%;
      height: 200px;
    }
    .slide a {
      display: block;
      height: 100%;
      width: 100%;
    }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
    }
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 30px;
      color: #fff;
      background: rgba(0, 0, 0, 0.3);
      border: none;
      padding: 5px 10px;
      cursor: pointer;
      border-radius: 50%;
      z-index: 10;
    }
    .arrow:hover {
      background: rgba(0, 0, 0, 0.5);
    }
    .arrow.left {
      left: 10px;
    }
    .arrow.right {
      right: 10px;
    }
  

/* sepet.html */

        :root {
            --bg-primary: #f5f5f5;
            --bg-secondary: #ffffff;
            --text-primary: #333;
            --text-secondary: #888;
            --border-color: #ddd;
            --shadow: rgba(0,0,0,0.08);
            --accent: #ff7b00;
            --success: #4caf50;
            --error: #f44336;
        }
        
        [data-theme="dark"] {
            --bg-primary: #121212;
            --bg-secondary: #1e1e1e;
            --text-primary: #e0e0e0;
            --text-secondary: #aaa;
            --border-color: #333;
            --shadow: rgba(0,0,0,0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            transition: background 0.3s, color 0.3s;
            padding-bottom: 80px;
            overflow-x: hidden;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        /* HEADER - COMPACT */
        .header {
            position: sticky;
            top: 0;
            background: var(--bg-secondary);
            padding: 8px 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 6px var(--shadow);
            z-index: 100;
            backdrop-filter: blur(10px);
        }
        
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .back-btn {
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: var(--text-primary);
            padding: 6px;
            border-radius: 50%;
            transition: all 0.2s;
        }
        
        .back-btn:hover {
            background: rgba(255, 123, 0, 0.1);
        }
        
        .back-btn:active {
            transform: scale(0.95);
        }
        
        .header-title {
            font-size: 16px;
            font-weight: 700;
        }
        
        .cart-badge {
            background: var(--accent);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            margin-left: 4px;
        }
        
        .header-actions {
            display: flex;
            gap: 8px;
        }
        
        .icon-btn {
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: var(--text-primary);
            padding: 6px;
            border-radius: 50%;
            transition: all 0.2s;
        }
        
        .icon-btn:hover {
            background: rgba(255, 123, 0, 0.1);
        }
        
        .icon-btn:active {
            transform: scale(0.95);
        }
        
        /* SHIPPING PROGRESS - COMPACT */
        .shipping-progress {
            background: linear-gradient(135deg, rgba(255,123,0,0.1), rgba(255,123,0,0.05));
            padding: 10px 12px;
            margin: 12px;
            border-radius: 10px;
            box-shadow: 0 2px 6px var(--shadow);
            border: 1px solid rgba(255,123,0,0.2);
        }
        
        .progress-text {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 8px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .progress-text i {
            color: var(--accent);
            font-size: 14px;
            animation: truck-bounce 2s infinite;
        }
        
        @keyframes truck-bounce {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(5px); }
        }
        
        .progress-text.success i {
            color: var(--success);
            animation: none;
        }
        
        .progress-bar {
            width: 100%;
            height: 8px;
            background: var(--bg-primary);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), #ffb366);
            border-radius: 10px;
            transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        
        .progress-fill.complete {
            background: linear-gradient(90deg, var(--success), #66bb6a);
        }
        
        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 2s infinite;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .progress-amount {
            margin-top: 6px;
            font-size: 11px;
            color: var(--text-secondary);
            text-align: center;
        }
        
        /* DELIVERY ESTIMATE - COMPACT */
        .delivery-estimate {
            background: linear-gradient(135deg, var(--bg-secondary), rgba(76, 175, 80, 0.05));
            padding: 10px 12px;
            margin: 12px;
            border-radius: 10px;
            box-shadow: 0 2px 6px var(--shadow);
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(76, 175, 80, 0.2);
        }
        
        .delivery-icon {
            background: linear-gradient(135deg, var(--success), #66bb6a);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
            flex-shrink: 0;
        }
        
        .delivery-info {
            flex: 1;
        }
        
        .delivery-title {
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 2px;
            color: var(--text-secondary);
        }
        
        .delivery-date {
            font-size: 13px;
            font-weight: 700;
            color: var(--success);
        }
        
        /* EMPTY CART - COMPACT */
        .cart-empty {
            text-align: center;
            padding: 50px 20px;
            animation: fadeIn 0.6s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .empty-icon {
            font-size: 60px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .empty-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .empty-text {
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 13px;
            line-height: 1.5;
        }
        
        .continue-shopping-btn {
            background: linear-gradient(135deg, var(--accent), #ffb366);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
        }
        
        .continue-shopping-btn:active {
            transform: scale(0.98);
        }
        
        .cart-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 12px;
        }
        
        .cart-items {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 10px;
            margin-bottom: 12px;
            box-shadow: 0 2px 6px var(--shadow);
        }
        
        /* CART ITEM - COMPACT */
        .cart-item {
            display: flex;
            gap: 10px;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 10px;
            background: var(--bg-primary);
            position: relative;
            animation: slideIn 0.4s ease;
            transition: all 0.3s ease;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .cart-item:last-child {
            margin-bottom: 0;
        }
        
        .cart-item.removing {
            animation: slideOut 0.4s ease forwards;
        }
        
        @keyframes slideOut {
            to {
                opacity: 0;
                transform: translateX(100px);
                height: 0;
                padding: 0;
                margin: 0;
            }
        }
        
        .item-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 2px 6px var(--shadow);
        }
        
        .item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .item-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .item-name {
            font-size: 13px;
            font-weight: 600;
            line-height: 1.3;
            padding-right: 25px;
        }
        
        .item-variants {
            display: flex;
            gap: 8px;
            font-size: 11px;
            color: var(--text-secondary);
        }
        
        .item-variant {
            display: flex;
            align-items: center;
            gap: 4px;
            background: var(--bg-secondary);
            padding: 2px 6px;
            border-radius: 6px;
        }
        
        .item-price {
            font-size: 16px;
            font-weight: 700;
            color: var(--accent);
            margin-top: auto;
        }
        
        .item-actions {
            display: flex;
            gap: 6px;
            margin-top: 6px;
        }
        
        .save-later-btn {
            background: none;
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 11px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: all 0.2s;
        }
        
        .save-later-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        
        .save-later-btn:active {
            transform: scale(0.95);
        }
        
        .remove-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(244, 67, 54, 0.1);
            border: none;
            color: var(--error);
            font-size: 16px;
            cursor: pointer;
            padding: 6px;
            transition: all 0.2s;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .remove-btn:hover {
            background: var(--error);
            color: white;
        }
        
        .remove-btn:active {
            transform: scale(0.95);
        }
        
        /* QUANTITY CONTROLS - COMPACT */
        .quantity-controls {
            display: flex;
            align-items: center;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            width: fit-content;
            margin-top: 6px;
            background: var(--bg-secondary);
        }
        
        .qty-btn {
            background: var(--bg-primary);
            border: none;
            width: 28px;
            height: 28px;
            font-size: 16px;
            cursor: pointer;
            color: var(--text-primary);
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .qty-btn:hover:not(:disabled) {
            background: var(--accent);
            color: white;
        }
        
        .qty-btn:active:not(:disabled) {
            transform: scale(0.9);
        }
        
        .qty-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .qty-value {
            width: 40px;
            text-align: center;
            font-weight: 700;
            font-size: 14px;
            background: var(--bg-secondary);
            transition: all 0.3s;
        }
        
        .qty-value.pulse {
            animation: number-pulse 0.3s;
        }
        
        @keyframes number-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); color: var(--accent); }
        }
        
        /* SAVED ITEMS - COMPACT */
        .saved-items-section {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 10px;
            margin-bottom: 12px;
            display: none;
            box-shadow: 0 2px 6px var(--shadow);
        }
        
        .saved-items-section.show {
            display: block;
        }
        
        .saved-items-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .saved-items-title {
            font-size: 14px;
            font-weight: 700;
        }
        
        .clear-saved {
            font-size: 11px;
            color: var(--accent);
            cursor: pointer;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 6px;
            transition: all 0.2s;
        }
        
        .clear-saved:hover {
            background: rgba(255, 123, 0, 0.1);
        }
        
        .saved-item {
            display: flex;
            gap: 10px;
            padding: 8px;
            margin-bottom: 8px;
            border-radius: 8px;
            background: var(--bg-primary);
        }
        
        .saved-item:last-child {
            margin-bottom: 0;
        }
        
        .saved-item-image {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .saved-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .saved-item-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .saved-item-name {
            font-size: 12px;
            font-weight: 600;
        }
        
        .saved-item-price {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent);
        }
        
        .saved-item-actions {
            display: flex;
            gap: 6px;
            margin-top: 6px;
        }
        
        .move-to-cart-btn {
            background: linear-gradient(135deg, var(--accent), #ffb366);
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 11px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .move-to-cart-btn:active {
            transform: scale(0.95);
        }
        
        .delete-saved-btn {
            background: none;
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 11px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .delete-saved-btn:hover {
            border-color: var(--error);
            color: var(--error);
        }
        
        /* MODALS - COMPACT */
        .delete-modal, .share-modal, .coupons-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(5px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }
        
        .delete-modal.active, .share-modal.active, .coupons-modal.active {
            display: flex;
        }
        
        .delete-modal-content, .share-modal-content {
            background: var(--bg-secondary);
            border-radius: 16px;
            padding: 20px;
            max-width: 320px;
            width: 90%;
            animation: slideUp 0.3s;
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .delete-icon, .share-icon {
            font-size: 50px;
            text-align: center;
            margin-bottom: 12px;
        }
        
        .delete-icon {
            color: var(--error);
        }
        
        .share-icon {
            color: var(--accent);
        }
        
        .delete-title, .share-title {
            font-size: 18px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 6px;
        }
        
        .delete-text, .share-text {
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 16px;
            font-size: 13px;
        }
        
        .delete-actions {
            display: flex;
            gap: 10px;
        }
        
        .modal-btn {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }
        
        .modal-btn:active {
            transform: scale(0.95);
        }
        
        .cancel-btn {
            background: var(--bg-primary);
            color: var(--text-primary);
        }
        
        .confirm-btn {
            background: linear-gradient(135deg, var(--error), #e57373);
            color: white;
        }
        
        .share-link-container {
            background: var(--bg-primary);
            padding: 10px;
            border-radius: 8px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .share-link {
            flex: 1;
            font-size: 11px;
            color: var(--text-secondary);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .copy-link-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
        }
        
        .share-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 12px;
        }
        
        .share-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 10px;
            background: var(--bg-primary);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .share-option:active {
            transform: scale(0.95);
        }
        
        .share-option i {
            font-size: 20px;
            color: var(--accent);
        }
        
        .share-option span {
            font-size: 11px;
        }
        
        .close-share-btn {
            width: 100%;
            padding: 10px;
            background: var(--bg-primary);
            color: var(--text-primary);
            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }
        
        /* PROMO SECTION - COMPACT */
        .promo-section {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 10px;
            margin-bottom: 12px;
            box-shadow: 0 2px 6px var(--shadow);
        }
        
        .promo-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .available-coupons-btn {
            font-size: 11px;
            color: var(--accent);
            cursor: pointer;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 6px;
            transition: all 0.2s;
        }
        
        .available-coupons-btn:hover {
            background: rgba(255, 123, 0, 0.1);
        }
        
        .promo-input-group {
            display: flex;
            gap: 6px;
        }
        
        .promo-input {
            flex: 1;
            padding: 10px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 13px;
            background: var(--bg-primary);
            color: var(--text-primary);
            outline: none;
        }
        
        .promo-input:focus {
            border-color: var(--accent);
        }
        
        .apply-btn {
            background: linear-gradient(135deg, var(--accent), #ffb366);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
        }
        
        .apply-btn:active {
            transform: scale(0.95);
        }
        
        .applied-coupons {
            margin-top: 8px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        
        .applied-coupon {
            background: rgba(76, 175, 80, 0.1);
            border: 1px solid var(--success);
            padding: 8px 10px;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .applied-coupon-code {
            font-size: 13px;
            font-weight: 700;
            color: var(--success);
        }
        
        .applied-coupon-desc {
            font-size: 11px;
            color: var(--text-secondary);
        }
        
        .remove-coupon-btn {
            background: none;
            border: none;
            color: var(--error);
            font-size: 16px;
            cursor: pointer;
            padding: 4px;
        }
        
        .remove-coupon-btn:active {
            transform: scale(0.95);
        }
        
        /* COUPONS MODAL - COMPACT */
        .coupons-modal-content {
            background: var(--bg-secondary);
            border-radius: 16px;
            padding: 16px;
            max-width: 350px;
            width: 90%;
            max-height: 70vh;
            overflow-y: auto;
            animation: slideUp 0.3s;
        }
        
        .coupons-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .coupons-modal-title {
            font-size: 16px;
            font-weight: 700;
        }
        
        .close-coupons-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-secondary);
            cursor: pointer;
        }
        
        .coupon-item {
            background: var(--bg-primary);
            border: 2px dashed var(--border-color);
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .coupon-item:hover {
            border-color: var(--accent);
            background: rgba(255, 123, 0, 0.05);
        }
        
        .coupon-item.applied {
            border-color: var(--success);
            background: rgba(76, 175, 80, 0.05);
            cursor: not-allowed;
        }
        
        .coupon-code {
            font-size: 16px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 4px;
        }
        
        .coupon-item.applied .coupon-code {
            color: var(--success);
        }
        
        .coupon-description {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 6px;
        }
        
        .coupon-validity {
            font-size: 10px;
            color: var(--text-secondary);
        }
        
        .coupon-applied-badge {
            display: inline-block;
            background: var(--success);
            color: white;
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 10px;
            margin-top: 6px;
        }
        
        /* SUMMARY SECTION - COMPACT */
        .summary-section {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 12px;
            box-shadow: 0 2px 6px var(--shadow);
        }
        
        .summary-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            font-size: 13px;
        }
        
        .summary-row.total {
            border-top: 2px solid var(--border-color);
            margin-top: 8px;
            padding-top: 10px;
            font-size: 18px;
            font-weight: 700;
        }
        
        .summary-row.total .value {
            color: var(--accent);
        }
        
        .summary-row .label {
            color: var(--text-secondary);
        }
        
        .summary-row.discount .value {
            color: var(--success);
        }
        
        /* CHECKOUT SECTION - COMPACT */
        .checkout-section {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            padding: 10px 12px;
            box-shadow: 0 -2px 8px var(--shadow);
            z-index: 90;
        }
        
        .checkout-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--accent), #ffb366);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.2s;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
        }
        
        .checkout-btn:active {
            transform: scale(0.98);
        }
        
        .checkout-total {
            font-size: 16px;
        }
        
        /* RECOMMENDED - COMPACT */
        .recommended-section {
            background: var(--bg-secondary);
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 12px;
            box-shadow: 0 2px 6px var(--shadow);
        }
        
        .recommended-title {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .product-scroll {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 8px;
            scrollbar-width: none;
        }
        
        .product-scroll::-webkit-scrollbar {
            display: none;
        }
        
        .product-card {
            background: var(--bg-primary);
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            flex: 0 0 110px;
            transition: all 0.2s;
        }
        
        .product-card:active {
            transform: scale(0.95);
        }
        
        .product-image {
            width: 100%;
            height: 110px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .product-info {
            padding: 8px;
        }
        
        .product-name {
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 4px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .product-price {
            font-size: 13px;
            font-weight: 700;
            color: var(--accent);
        }
        
        /* NOTIFICATION - COMPACT */
        .notification {
            position: fixed;
            top: 60px;
            left: 50%;
            transform: translateX(-50%) translateY(-150px);
            background: var(--success);
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            z-index: 10000;
            transition: transform 0.4s;
            font-weight: 600;
            font-size: 13px;
            min-width: 200px;
            text-align: center;
        }
        
        .notification.show {
            transform: translateX(-50%) translateY(0);
        }
        
        .notification.error {
            background: var(--error);
        }
        
        /* DESKTOP */
        @media (min-width: 768px) {
            .cart-content {
                display: grid;
                grid-template-columns: 1fr 350px;
                gap: 16px;
            }
            
            .checkout-section {
                position: static;
                box-shadow: none;
                padding: 0;
            }
            
            .summary-section {
                position: sticky;
                top: 70px;
            }
            
            body {
                padding-bottom: 20px;
            }
            
            .shipping-progress,
            .delivery-estimate {
                margin: 0 0 12px 0;
            }
        }
    

/* sss.html */

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', sans-serif;
            background: #f5f5f5;
            color: #333;
            padding-bottom: 40px;
        }
        .header {
            background: white;
            padding: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .back-btn {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #333;
        }
        .header-title {
            font-size: 18px;
            font-weight: 700;
        }
        .content {
            max-width: 800px;
            margin: 20px auto;
            padding: 0 16px;
        }
        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 16px;
        }
        .faq-question:hover {
            background: #f8f9fa;
        }
        .faq-icon {
            color: #ff7b00;
            font-size: 18px;
            transition: transform 0.3s;
        }
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        .faq-answer-content {
            padding: 0 20px 20px;
            color: #666;
            line-height: 1.8;
        }
    

/* tümünügör.html */

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            padding-bottom: 60px;
        }

        /* Header */
        .header {
            background: #fff;
            padding: 12px 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .back-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
            padding: 8px;
        }
        .header-title {
            font-size: 18px;
            font-weight: 600;
            flex: 1;
            color: #333;
        }
        .header-icons {
            display: flex;
            gap: 15px;
        }
        .header-icons i {
            font-size: 20px;
            cursor: pointer;
            color: #333;
            padding: 8px;
            position: relative;
        }
        .cart-count {
            background: #ff4500;
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 999px;
            position: absolute;
            top: 2px;
            right: 2px;
            min-width: 16px;
            text-align: center;
            line-height: 1;
        }

        /* Filter Section */
        .filter-section {
            background: #fff;
            padding: 15px;
            margin-bottom: 8px;
            display: flex;
            gap: 10px;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .filter-section::-webkit-scrollbar {
            display: none;
        }
        .filter-btn {
            flex: 0 0 auto;
            padding: 8px 16px;
            background: #f0f0f0;
            border: none;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .filter-btn.active {
            background: #ff7b00;
            color: white;
        }

        /* Products Grid */
        .products-container {
            padding: 10px 15px;
        }
        .products-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        /* Product Card */
        .product-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            position: relative;
        }
        .product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        /* Badge */
        .product-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: linear-gradient(90deg, #ff7b00, #ff9500);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            z-index: 2;
        }
        .product-badge.discount {
            background: linear-gradient(90deg, #ff4444, #ff6666);
        }
        .product-badge.new {
            background: linear-gradient(90deg, #22c55e, #4ade80);
        }

        /* Favorite Button */
        .fav-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(4px);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            z-index: 2;
        }
        .fav-btn:hover {
            background: white;
            transform: scale(1.1);
        }
        .fav-btn i {
            color: #ff7b00;
            font-size: 16px;
        }

        /* Product Info */
        .product-info {
            padding: 12px;
        }
        .product-brand {
            color: #666;
            font-size: 12px;
            margin-bottom: 4px;
            font-weight: 500;
        }
        .product-title {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 6px;
            line-height: 1.3;
            height: 35px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .product-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 8px;
        }
        .stars {
            color: #ff9900;
            font-size: 14px;
        }
        .rating-count {
            color: #666;
            font-size: 11px;
        }
        .product-price {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 15px;
            height: 20px;
        }
        .current-price {
            font-size: 16px;
            font-weight: 700;
            color: #ff7b00;
        }
        .old-price {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
        }
        .add-to-cart {
            width: 100%;
            background: #ff7b00;
            color: white;
            border: none;
            padding: 8px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .add-to-cart:hover {
            background: #e66a00;
        }

        /* Loading */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
            font-size: 16px;
            color: #666;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            .product-image {
                height: 240px;
            }
        }
        @media (min-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Alt Menü */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: white;
            border-top: 1px solid #ddd;
            padding: 6px 0;
            z-index: 2500;
        }
        .bottom-nav a {
            text-decoration: none;
            color: #333;
            font-size: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .bottom-nav a img {
            width: 24px;
            height: 24px;
            margin-bottom: 4px;
        }
    

/* İndirimler.html */

    /* Genel Reset ve Temel Stiller */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Poppins', sans-serif;
      background: #f5f5f5;
      color: #333;
      line-height: 1.6;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    ul {
      list-style: none;
    }
    
    /* Navbar */
    header {
      background: #fff;
      border-bottom: 1px solid #ddd;
      padding: 20px 0;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .navbar .logo {
      font-size: 24px;
      font-weight: 600;
      color: #333;
    }
    .navbar nav ul {
      display: flex;
      gap: 20px;
      align-items: center;
    }
    .navbar nav ul li a {
      font-size: 16px;
      transition: color 0.3s;
    }
    .navbar nav ul li a:hover {
      color: #007BFF;
    }
    
    /* Banner Bölümü */
    .banner {
      position: relative;
      height: 300px;
      background: url('indirimler-banner.jpg') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }
    .banner::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
    }
    .banner-content {
      position: relative;
      z-index: 1;
      padding: 0 20px;
    }
    .banner h1 {
      font-size: 48px;
      margin-bottom: 20px;
    }
    .banner p {
      font-size: 20px;
      margin-bottom: 20px;
    }
    .btn {
      background: #007BFF;
      color: #fff;
      padding: 12px 30px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s;
      font-size: 16px;
    }
    .btn:hover {
      background: #0056b3;
    }
    
    /* Filtreleme Bölümü */
    .filter-section {
      background: #fff;
      border-bottom: 1px solid #eee;
      padding: 20px;
      text-align: center;
    }
    .filter-section select,
    .filter-section input[type="text"] {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-right: 10px;
      font-size: 16px;
      min-width: 180px;
    }
    
    /* Ürünler - Masaüstünde 8 sütunlu grid */
    .products {
      padding: 30px 20px;
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 20px;
    }
    .product-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-5px);
    }
    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .product-info {
      padding: 15px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .product-info h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #333;
    }
    .price {
      font-size: 16px;
      color: #007BFF;
      margin-bottom: 10px;
    }
    .old-price {
      font-size: 14px;
      color: #999;
      text-decoration: line-through;
      margin-left: 5px;
    }
    .product-info button {
      background: #007BFF;
      color: #fff;
      padding: 10px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
      font-size: 16px;
    }
    .product-info button:hover {
      background: #0056b3;
    }
    
    /* Footer */
    footer {
      background: #333;
      color: #fff;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }
    
    /* Responsive Ayarlar */
    @media (max-width: 1400px) {
      .products {
        grid-template-columns: repeat(6, 1fr);
      }
    }
    @media (max-width: 1200px) {
      .products {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    @media (max-width: 768px) {
      .products {
        grid-template-columns: repeat(2, 1fr);
      }
      .banner h1 {
        font-size: 36px;
      }
    }
    @media (max-width: 480px) {
      .products {
        grid-template-columns: 1fr;
      }
    }
  