@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: #f5f5f5;
}

/* HEADER */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-link {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.cart-badge {
  background: #ff6000;
  color: #fff;
  padding: 2px 8px;
  border-radius: 50%;
  margin-left: 5px;
  font-size: 12px;
}

.page-title {
  text-align: center;
  margin: 30px 0;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  padding: 0 30px 40px;
}

/* PRODUCT CARD */
.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* INFO BAR */
.product-info {
  padding: 12px;
}

.product-name {
  font-size: 14px;
  font-weight: bold;
}

.product-price {
  color: #ff6000;
  font-size: 16px;
  margin-top: 6px;
}

/* BUTTON */
.product-card button {
  width: 100%;
  border: none;
  padding: 12px;
  background: #ff6000;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0 0 18px 18px;
}

.product-card button:hover {
  background: #e55500;
}

/* =========================
   PREMIUM CART DESIGN
========================= */

.cart-container {
  max-width: 900px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* CART LIST */
#cart {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* EMPTY CART */
#cart .empty {
  text-align: center;
  padding: 40px;
  color: #888;
  font-size: 16px;
}

/* CART ITEM */
.cart-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #ffffff;
}

.cart-item:last-child {
  border-bottom: none;
}

/* PRODUCT IMAGE */
.cart-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* INFO */
.cart-info {
  flex: 1;
}

.cart-info strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.cart-info span {
  color: #ff6000;
  font-weight: bold;
  font-size: 16px;
}

/* QTY CONTROL */
.qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.qty button {
  width: 30px;
  height: 30px;
  border: none;
  background: #f2f2f2;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.2s;
}

.qty button:hover {
  background: #ddd;
}

.qty span {
  min-width: 24px;
  text-align: center;
  font-weight: bold;
}

/* REMOVE BUTTON */
.remove-btn {
  border: none;
  background: transparent;
  color: #bbb;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.remove-btn:hover {
  color: #ff3b3b;
  transform: scale(1.15);
}

/* TOTAL */
#total {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
  font-size: 20px;
  font-weight: bold;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .remove-btn {
    align-self: flex-end;
  }

  #total {
    text-align: center;
  }
}

/* =========================
   CART HEADER (PREMIUM)
========================= */

.cart-header {
  max-width: 900px;
  margin: 40px auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-icon {
  font-size: 34px;
}

.cart-title h1 {
  margin: 0;
  font-size: 26px;
}

.cart-title p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #777;
}

.continue-link {
  text-decoration: none;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #ddd;
  color: #333;
  background: #fff;
  transition: all 0.25s;
}

.continue-link:hover {
  background: #ff6000;
  color: #fff;
  border-color: #ff6000;
}

/* MOBILE */
@media (max-width: 600px) {
  .cart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* =========================
   LUXURY CART HEADER
========================= */

.lux-cart-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 22px 40px;
  margin-bottom: 40px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.cart-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-title span {
  background: linear-gradient(135deg, #111, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.continue-shopping {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: #111;

  padding: 12px 22px;
  border-radius: 30px;

  background: linear-gradient(135deg, #f5f5f5, #ffffff);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.12);

  transition: all .35s ease;
}

.continue-shopping::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, #000, #444);
  opacity: 0;
  transition: .35s;
  z-index: -1;
}

.continue-shopping:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.continue-shopping:hover::after {
  opacity: 1;
}

/* =========================
   LUXURY CART CONTAINER
========================= */

.cart-wrapper {
  max-width: 980px;
  margin: auto;
  padding: 0 20px 80px;
}

/* =========================
   CART ITEMS – PREMIUM CARD
========================= */

.cart-item {
  background: linear-gradient(145deg, #ffffff);
  color: #000;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 22px;

  display: flex;
  align-items: center;
  gap: 22px;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(0, 0, 0, 0.6);

  transition: transform .3s ease, box-shadow .3s ease;
}

.cart-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.cart-item img {
  width: 95px;
  height: 95px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* =========================
   CART INFO
========================= */

.cart-info strong {
  font-size: 17px;
  font-weight: 600;
}

.cart-info span {
  margin-top: 6px;
  display: block;
  color: #000000;
}

/* =========================
   QTY CONTROLS
========================= */

.qty {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

.qty button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 18px;
  transition: .25s;
}

.qty button:hover {
  background: #111;
  color: #fff;
}

/* =========================
   REMOVE BUTTON – MINIMAL
========================= */

.remove-btn {
  background: none;
  border: none;
  font-size: 16px;
  opacity: .5;
  cursor: pointer;
  transition: .25s;
}

.remove-btn:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* =========================
   TOTAL SUMMARY – LUX
========================= */

.cart-summary {
  margin-top: 40px;
  padding: 26px 32px;
  border-radius: 20px;

  background: linear-gradient(135deg, #111, #333);
  color: #fff;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 22px;
  font-weight: 600;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
}

body {
  background: #f7f8fa;
  color: #111;
}

/* HEADER */
.main-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: white;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.main-header h2 {
  font-size: 22px;
  font-weight: 700;
}

.cart-link {
  position: relative;
  font-weight: 700;
  font-size: 19px;
  /* ⬅ Sepet yazısı büyüdü */
  text-decoration: none;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
  /* ikon + yazı arası */
}

.cart-link:hover {
  transform: translateY(-1px);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .cart-link {
    font-size: 17px;
  }
}



.cart-badge {
  position: absolute;
  top: -10px;
  right: -14px;
  background: #000;
  color: #fff;
  font-size: 13px;
  /* ⬅ biraz büyüdü */
  padding: 4px 9px;
  border-radius: 999px;
  font-weight: 700;
}


/* SAYFA BAŞLIĞI */
.page-title {
  text-align: center;
  margin: 28px 0;
  font-size: 26px;
  font-weight: 700;
}

/* ÜRÜN GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 0 24px 60px;
}

/* ÜRÜN KART */
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  padding: 16px;
}

/* ÜRÜN BİLGİ */
.product-info {
  padding: 14px 16px;
  text-align: center;
}

.product-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}

.product-price {
  font-size: 16px;
  font-weight: 700;
}

/* BUTON */
.product-card button {
  margin: 14px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: #000;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.product-card button:hover {
  background: #222;
  transform: scale(1.03);
}

/* ========================= */
/* 📱 TABLET */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 MOBİL */
@media (max-width: 600px) {
  .main-header {
    padding: 12px 16px;
  }

  .page-title {
    font-size: 22px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    padding: 0 16px 40px;
  }

  .product-card img {
    height: 200px;
  }
}

.top-bar {
  background: #111;
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.main-header h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.page-title {
  text-align: center;
  font-size: 30px;
  margin: 35px 0 10px;
}

.page-title span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-top: 6px;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
}

.product-name {
  font-weight: 600;
  font-size: 15px;
  min-height: 40px;
}

.product-price {
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.product-card button {
  margin-top: auto;
  background: #111;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-card button:hover {
  background: #000;
  transform: scale(1.02);
}

.footer {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 30px 10px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #eee;
  margin-top: 50px;
}

.footer-nav {
  background: #000;
  color: #fff;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.footer-brand strong {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.footer-brand span {
  display: block;
  font-size: 13px;
  color: #aaa;
  margin-top: 6px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.footer-links a {
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: 0.25s;
}

.footer-social .wa {
  background: #25D366;
}

.footer-social .ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.05);
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  font-size: 12px;
  color: #aaa;
  padding: 15px;
}

.hero {
  text-align: center;
  padding: 50px 20px 30px;
  background: linear-gradient(to bottom, #fafafa, #fff);
}

.hero h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.hero p {
  margin-top: 12px;
  color: #666;
  font-size: 15px;
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  color: #444;
  padding: 15px;
  flex-wrap: wrap;
}

.product-card {
  position: relative;
  overflow: hidden;
}



.product-card button {
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 13px;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
}

body {
  background: #fff;
  line-height: 1.6;
}

.product-grid {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  background: #f2f2f2;
  padding: 10px 14px;
  border-radius: 30px;
  width: 320px;
  gap: 8px;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
}

.search-box i {
  color: #888;
}

.no-result {
  text-align: center;
  font-size: 18px;
  color: #888;
  margin-top: 40px;
}

.category-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 30px 0;
}

.category-bar button {
  padding: 10px 22px;
  border-radius: 25px;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.category-bar button:hover {
  background: #000;
  color: #fff;
}

.category-bar button.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.category-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.category-bar button {
  padding: 10px 22px;
  border-radius: 25px;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.category-bar button.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.category-bar button:hover:not(.active) {
  background: #f3f3f3;
}

/* Filtreyi Temizle */
.clear-btn {
  background: transparent;
  border: 1px dashed #aaa;
  color: #555;
}

.clear-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* ☰ HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #000;
  border-radius: 3px;
}

/* 📱 MOBİL MENÜ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  height: 100%;
  background: #fff;
  box-shadow: 5px 0 30px rgba(0, 0, 0, .15);
  padding: 90px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: .3s ease;
  z-index: 999;
}

.mobile-menu button {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu button:hover {
  background: #000;
  color: #fff;
}

.mobile-menu.open {
  left: 0;
}

/* 📱 MOBİLDE GÖRÜNSÜN */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .category-bar {
    display: none;
  }
}

/* ☰ HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #000;
  border-radius: 3px;
}

/* 📱 MOBİL MENÜ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  height: 100%;
  background: #fff;
  box-shadow: 5px 0 30px rgba(0, 0, 0, .2);
  padding: 90px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: .3s ease;
  z-index: 9999;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu button {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 16px;
  font-weight: 600;
}

/* 📱 SADECE MOBİL */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .category-bar {
    display: none;
  }
}

/* SEPET İKON TASARIM */
.cart-link.icon-only {
  position: relative;
  font-size: 30px;
  color: #000;
  text-decoration: none;
}

.cart-link.icon-only i {
  transition: transform .2s ease, opacity .2s ease;
}

.cart-link.icon-only:hover i {
  transform: scale(1.1);
  opacity: .8;
}

/* SEPET SAYACI */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: 600;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  background: #fafafa;
  color: #111;
}

.main-header {
  background: #fff;
  padding: 18px 28px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero {
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: #fff;
  padding: 90px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero p {
  font-size: 17px;
  opacity: 0.85;
}

.category-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 30px 0;
}

.category-bar button {
  padding: 10px 18px;
  border-radius: 25px;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}

.category-bar button:hover {
  background: #000;
  color: #fff;
}

.category-bar button.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.clear-btn {
  background: #f2f2f2 !important;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-card img {
  border-radius: 14px;
  margin-bottom: 12px;
}

.product-name {
  font-weight: 600;
  font-size: 15px;
}

.product-price {
  font-weight: 700;
  font-size: 16px;
  margin-top: 4px;
}

.product-card button {
  margin-top: 14px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #000;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}

.product-card button:hover {
  background: #222;
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 18px;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
}

.trust-bar div {
  font-weight: 500;
  font-size: 14px;
}

.footer-nav {
  background: #000;
  color: #fff;
  margin-top: 80px;
}

.footer-links a {
  color: #bbb;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social a {
  font-size: 20px;
}

.top-bar {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 8px 0;
  overflow: hidden;
}

#topMessage {
  display: inline-block;
  opacity: 0;
  transform: translateY(-6px);
  transition: all .3s ease;
}

#topMessage.show {
  opacity: 1;
  transform: translateY(0);
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all .25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.product-card img {
  transition: transform .3s ease;
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-card button {
  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  transition: all .25s ease;
}

.product-card button:hover {
  background: #222;
}

/* PRODUCT CARD PREMIUM */
.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all .3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
  border-radius: 14px;
}

/* BADGE */
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
}

.badge.featured {
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* COLORS */
.color-dots {
  display: flex;
  gap: 6px;
  margin: 10px 0;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
}

.dot.black {
  background: #000;
}

.dot.white {
  background: #fff;
}

.dot.blue {
  background: #1e40af;
}

/* BUTTON */
.product-card button {
  width: 100%;
  border-radius: 12px;
  background: #000;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  transition: .3s;
}

.product-card button:hover {
  background: #222;
}

.hero {
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: #fff;
  border-radius: 0 0 30px 30px;
}

.hero h1 {
  font-size: 42px;
  letter-spacing: -1px;
}

.hero p {
  opacity: .85;
}

/* ===============================
   MM DİJİTAL – PREMIUM ADMIN CSS
   =============================== */

:root {
  --bg-main: #0f1117;
  --bg-panel: #161a23;
  --bg-soft: #1d2230;
  --border: #2a2f45;

  --text-main: #ffffff;
  --text-soft: #aab0c0;

  --accent: #6c7cff;
  --accent-hover: #5b6bff;

  --success: #3ddc97;
  --danger: #ff5c5c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #ffffff;
  color: var(--text-main);
  min-height: 100vh;
}

/* ===============================
   LAYOUT
   =============================== */

.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* ===============================
   SIDEBAR
   =============================== */

.sidebar {
  width: 260px;
  background: linear-gradient(180deg, #151923, #0f1117);
  border-right: 1px solid var(--border);
  padding: 28px 22px;
}

.brand {
  margin-bottom: 36px;
}

.brand strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand span {
  display: block;
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 4px;
}

/* MENU */

.sidebar nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: 12px;
  color: var(--text-soft);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sidebar nav a i {
  font-size: 16px;
}

.sidebar nav a:hover {
  background: var(--bg-soft);
  color: var(--text-main);
}

.sidebar nav a.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  box-shadow: 0 10px 30px rgba(108, 124, 255, 0.35);
}

/* ===============================
   MAIN AREA
   =============================== */

.main {
  flex: 1;
  padding: 32px 36px;
}

/* ===============================
   TOP BAR
   =============================== */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.topbar h1 {
  font-size: 26px;
  font-weight: 700;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-panel);
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-soft);
}

/* ===============================
   STATS
   =============================== */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background: linear-gradient(180deg, #1b2030, #141826);
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 40px rgba(0, 0, 0, 0.35);
}

.stat-card span {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.stat-card strong {
  font-size: 28px;
  font-weight: 700;
}

/* ===============================
   CONTENT BOX
   =============================== */

.content-box {
  background: linear-gradient(180deg, #1a1f2f, #121522);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.content-box h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.content-box p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 900px) {
  .sidebar {
    display: none;
  }

  .main {
    padding: 24px;
  }
}

/* ===============================
   ADMIN TABLE
   =============================== */

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  text-align: left;
}

.admin-table thead {
  background: #101321;
}

.admin-table th {
  font-size: 13px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}

.admin-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.admin-table tbody tr:hover {
  background: rgba(255, 254, 254, 0.03);
}

.admin-table td {
  font-size: 14px;
}

/* ACTIONS */

.actions {
  display: flex;
  gap: 10px;
}

.actions button {
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s;
}

.actions .edit {
  background: var(--accent);
  color: #fff;
}

.actions .edit:hover {
  background: var(--accent-hover);
}

.actions .delete {
  background: var(--danger);
  color: #fff;
}

.actions .delete:hover {
  opacity: 0.85;
}

.sidebar a {
  pointer-events: auto;
  cursor: pointer;
}

/* ===============================
   ULTRA PREMIUM ADMIN ADD PRODUCT
   =============================== */



/* ===============================
   ADMIN ADD PAGE SCOPE
=============================== */

.admin-add-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, #1f2937, #020617 60%),
    radial-gradient(circle at bottom right, #020617, #000);
  font-family: "Inter", system-ui, sans-serif;
  color: #e5e7eb;

  display: flex;
  justify-content: center;
  align-items: center;
}

.admin-add-page * {
  box-sizing: border-box;
}


/* ANA KART */
.admin-add-container {
  width: 100%;
  max-width: 520px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(22px);
  border-radius: 24px;
  padding: 42px 40px;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.85),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
}

/* PARLAK ÇERÇEVE */
.admin-add-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg,
      transparent 30%,
      rgba(255, 255, 255, 0.15),
      transparent 70%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* BAŞLIK */
.admin-add-container h1 {
  margin: 0 0 30px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-align: center;
}

/* FORM */
.admin-add-container form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* LABEL */
.admin-add-container label {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: -12px;
}

/* INPUT */
.admin-add-container input[type="text"],
.admin-add-container input[type="number"] {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: none;
  outline: none;
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}

.admin-add-container input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.admin-add-container input:focus {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.35);
}

/* FILE INPUT */
.admin-add-container input[type="file"] {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  cursor: pointer;
}

.admin-add-container input[type="file"]::-webkit-file-upload-button {
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  color: #fff;
  font-weight: 500;
  margin-right: 12px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.admin-add-container input[type="file"]::-webkit-file-upload-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

/* SUBMIT BUTTON */
.admin-add-container button {
  margin-top: 10px;
  padding: 16px;
  border-radius: 16px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #020617;
  cursor: pointer;
  background: linear-gradient(135deg, #22d3ee, #6366f1);
  box-shadow: 0 18px 50px rgba(99, 102, 241, 0.6);
  transition: all 0.3s ease;
}

.admin-add-container button:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 70px rgba(99, 102, 241, 0.8);
}

/* ALT LINK */
.admin-add-container .back-link {
  margin-top: 26px;
  text-align: center;
}

.admin-add-container .back-link a {
  color: #9ca3af;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s;
}

.admin-add-container .back-link a:hover {
  color: #22d3ee;
}

.logo {
  color: #000;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.logo span {
  font-weight: 400;
  color: #555;
}

.logo {
  font-size: 20px;
  /* ⬅ küçültüldü */
  font-weight: 800;
  color: #111;
  letter-spacing: 0.3px;
  line-height: 1;
  /* ⬅ navbar büyümesini engeller */
  display: flex;
  align-items: center;
}

.logo span {
  font-weight: 400;
  color: #555;
  margin-left: 4px;
}

.main-header {
  height: 64px;
  /* ⬅ sabit yükseklik */
  padding: 0 28px;
  /* ⬅ üst-alt padding sıfır */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header {
  height: 64px;
  /* ⬅ navbar yüksekliği */
  padding: 0 32px;
  display: flex;
  align-items: center;
  /* ⬅ her şeyi dikey ortalar */
  justify-content: space-between;
  background: #fff;
}

@media (max-width: 600px) {
  .main-header {
    height: 58px;
    padding: 0 16px;
  }

}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  max-height: 190px;
  /* 🔥 NAVBAR'I ASLA BOZMAZ */
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-box {
  height: 100%;
  display: flex;
  align-items: center;
  /* 🔥 logo dikey ortada */
}

.logo-box img {
  max-height: 190px;
  /* 🔥 BURAYI BÜYÜT/KÜÇÜLT */
  width: auto;
  display: block;
}

.product-card button {
  display: block;
  margin: 16px auto 0 auto;
  /* ortalama */
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-card button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transition: all 0.6s ease;
}

.product-card button:hover::before {
  left: 150%;
}

.product-card button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-card button {
  display: block;
  margin: 16px auto 0 auto;
  padding: 12px 26px;
  border: none;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* PARLAMA KATMANI */
.product-card button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.7),
      transparent);
  animation: shine 4s infinite ease-in-out;
}

/* PARLAMA ANİMASYONU */
@keyframes shine {
  0% {
    left: -120%;
  }

  60% {
    left: -120%;
  }

  100% {
    left: 150%;


  }
}

/* TOAST MESSAGE */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #000;
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* AKTİF HALİ */
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* SEPETE EKLE BUTONU */
.add-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* BASILDIĞI AN */
.add-btn.clicked {
  transform: scale(0.95);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* DALGA (RIPPLE) EFEKTİ */
.add-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  pointer-events: none;
}

.add-btn.clicked::after {
  animation: ripple 0.5s ease-out;
}

@keyframes ripple {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(15);
  }
}

.product-name {
  color: #111;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
}

.product-detail {
  max-width: 1200px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.detail-image img {
  width: 100%;
  border-radius: 16px;
  background: #f6f6f6;
  padding: 30px;
}

.detail-info h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.detail-price {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.detail-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.add-btn.big {
  width: 100%;
  padding: 18px;
  font-size: 18px;
  border-radius: 12px;
}

.detail-category {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.buy-box {
  margin-top: 30px;
  padding: 25px;
  border-radius: 16px;
  background: #f9f9f9;
  border: 1px solid #eee;
}

.buy-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 15px;
}

.in-stock {
  color: #16a34a;
}

.secure-info {
  margin-top: 12px;
  font-size: 13px;
  color: #777;
  text-align: center;
}

.add-btn.big {
  background: linear-gradient(90deg, #000, #333);
  color: #ffffff;
  border: none;
  padding: 18px;
  font-size: 18px;
  border-radius: 14px;
  cursor: pointer;
  width: 100%;
  transition: transform .15s ease, box-shadow .15s ease;
}

.add-btn.big:active {
  transform: scale(0.97);
}

.detail-category {
  background: #ffffff;
  border: 1px solid #eee;
  padding: 10px 14px;
  border-radius: 12px;
  display: inline-block;
  font-size: 10px;
  color: #787373;
  margin-bottom: 18px;
}

/* HEADER */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  height: 72px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}

/* SOL BLOK */
.header-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* LOGO */
.logo-img {
  height: 200px;
  width: auto;
  object-fit: contain;
}

/* NAVBAR */
.main-nav {
  display: flex;
  gap: 22px;
}

.main-nav a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  padding: 6px 0;
  transition: color .3s ease;
}

/* HOVER ALT ÇİZGİ */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #000, #666);
  transition: width .35s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: #000;
}

/* ARAMA */
.search-box {
  flex: 1;
  max-width: 420px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 10px 42px;
  border-radius: 999px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  background: #f7f7f7;
}

.search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

/* SEPET */
.cart-link {
  position: relative;
  font-size: 22px;
  color: #111;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #000;
  color: #fff;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 50%;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ARAMA ICON */
.search-icon-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #111;
  transition: transform .2s ease;
}

.search-icon-btn:hover {
  transform: scale(1.1);
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.search-overlay.show {
  display: flex;
}

/* SEARCH MODAL */
.search-box-modal {
  position: relative;
  width: 90%;
  max-width: 520px;
}

.search-box-modal input {
  width: 100%;
  padding: 18px 52px 18px 22px;
  font-size: 18px;
  border-radius: 999px;
  border: 1px solid #ddd;
  outline: none;
}

/* CLOSE BUTTON */
.close-search {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #555;
}

/* SEARCH ICON */
.search-icon-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  margin-right: 14px;
  color: #111;
}

/* SEARCH PAGE */
.search-page {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: none;
}

.search-page.show {
  display: block;
}

/* HEADER */
.search-header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  border-bottom: 1px solid #eee;
}

/* LOGO */
.search-logo img {
  height: 200px;
}

/* INPUT */
.search-input-box {
  flex: 1;
  max-width: 600px;
  margin: 0 40px;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 14px 18px;
}

.search-input-box i {
  margin-right: 12px;
  color: #444;
}

.search-input-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 18px;
}

/* CLOSE */
.search-close {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #111;
  transition: .2s;
}

.search-close:hover {
  color: #e60023;
}

/* FOOTER NAVBAR */
.footer-navbar {
  background: #000;
  color: #fff;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.footer-brand {
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* MENU */
.footer-menu {
  display: flex;
  gap: 28px;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: .2s;
}

.footer-menu a:hover {
  color: #fff;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  transition: .2s;
}

.footer-social a:hover {
  color: #e60023;
}

/* HEADER ICON HİZALAMA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Sepeti header-actions içine hizalamak için */
.header-actions+.cart-link {
  margin-left: 18px;
}

/* İkon boyutları eşit olsun */
.search-icon-btn i,
.cart-link i {
  font-size: 30px;
}

/* Sepet badge düzgün dursun */
.cart-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: black;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
}

.header-actions,
.cart-link {
  display: inline-flex;
  align-items: center;
}

/* Header sağ taraf referans olsun */
.header {
  position: relative;
}

/* Arama butonu */
.header-actions {
  position: absolute;
  right: 80px;
  /* sepetin solu */
  top: 50%;
  transform: translateY(-50%);
}

/* Sepet */
.cart-link {
  position: absolute;
  right: 10px;

}

.productName {
  color: #000000;
}

#productName {
  color: #111 !important;
}

.product-category {
  margin-top: 6px;
  font-size: 13px;
  color: #555;
  background: #f2f2f2;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 14px;
  font-weight: 500;
}

/* PRODUCT DETAIL */
.product-detail {
  max-width: 1200px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 20px;
}

.detail-image {
  background: #f7f7f7;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-image img {
  max-width: 100%;
  border-radius: 14px;
}

.detail-info h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.product-category {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  background: linear-gradient(135deg, #111, #333);
  color: #fff;
  letter-spacing: .3px;
}

.detail-price {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

.buy-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.buy-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 15px;
}

.in-stock {
  color: #1db954;
}

.add-btn.big {
  width: 100%;
  padding: 16px;
  border-radius: 40px;
  background: linear-gradient(135deg, #000, #222);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}

.add-btn.big:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .25);
}

.secure-info {
  margin-top: 16px;
  font-size: 13px;
  color: #777;
  text-align: center;
}

.product-detail-container {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.product-image-area {
  background: #f7f7f7;
  border-radius: 24px;
  padding: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-area img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.product-info-area {
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 12px;
}

.product-title {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  /* 👈 SİYAH */
  margin-bottom: 16px;
}

.product-price {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}

.product-description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 36px;
}

.buy-box {
  border-top: 1px solid #eee;
  padding-top: 24px;
}

.stock-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 20px;
}

.in-stock {
  color: #2ecc71;
  font-weight: 600;
}

.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.product-modal.show {
  display: flex;
}

.product-modal-inner {
  background: #fff;
  width: 90%;
  max-width: 1100px;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
}

.modal-left {
  flex: 1;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-left img {
  max-width: 80%;
}

.modal-right {
  flex: 1;
  padding: 50px;
}

.modal-brand {
  font-weight: 700;
  letter-spacing: 2px;
  color: #000000;
}

.modal-title {
  color: #111;
  font-size: 28px;
  margin: 10px 0;
}

.modal-price {
  color: #111;
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

.modal-secure {
  color: #111;
}

.modal-add-btn {
  margin-top: 40px;
  padding: 26px 32px;
  border-radius: 20px;
  z-index: 1;
  position: relative;
  font-size: inherit;
  font-family: inherit;
  color: white;
  padding: 0.5em 1em;
  outline: none;
  border: none;
  background-color: hsl(0, 0%, 0%);
  overflow: hidden;
  cursor: pointer;

}

.modal-add-btn::after {
  content: '';
  z-index: -1;
  background-color: hsla(0, 0%, 100%, 0.2);
  position: absolute;
  top: -50%;
  bottom: -50%;
  width: 1.25em;
  transform: translate3d(-525%, 0, 0) rotate(35deg);
}

.modal-add-btn:hover::after {
  transition: transform 0.45s ease-in-out;
  transform: translate3d(200%, 0, 0) rotate(35deg);

  .login-box {
    color: #000;
  }
}

.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: none;
  z-index: 9999;
}

.product-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal-content {
  background: #ffffff;
  width: 900px;
  max-width: 95%;
  border-radius: 12px;
  padding: 30px;
}

.product-modal-body {
  display: flex;
  gap: 40px;
}

.product-left img {
  width: 320px;
  border-radius: 12px;
}

.product-right h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.product-right h3 {
  font-size: 18px;
  opacity: .7;
}

.product-right p {
  font-size: 24px;
  margin: 20px 0;
}

.close-modal {
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.modal-close {
  opacity: 0.6;
  position: absolute;
  top: 24px;
  right: 24px;

  background: transparent;
  border: none;
  font-size: 28px;
  font-weight: 600;
  color: #111;
  cursor: pointer;

  transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  opacity: 1;
  color: #e10600;
  /* premium kırmızı */
  transform: scale(1.1);
}

.product-modal-inner {
  position: relative;
}

/* Auth Sayfaları İçin Arkaplan (Opsiyonel) */
.auth-body {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  /* Varsa modern bir font */
}

/* Auth Kartı - Ana Konteynır */
.auth-container {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  /* Yumuşak premium gölge */
  text-align: center;
}

.auth-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.auth-container p {
  color: #666;
  margin-bottom: 30px;
  font-size: 14px;
}

/* Form Elemanları */
.auth-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.auth-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.auth-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #eee;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.auth-form input:focus {
  border-color: #000;
  /* Premium siyah odaklanma */
  background: #fff;
}

/* Premium Buton */
.auth-btn {
  width: 100%;
  padding: 14px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
  margin-top: 10px;
}

.auth-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.auth-btn:active {
  transform: translateY(0);
}

/* Alt Linkler */
.auth-footer {
  margin-top: 25px;
  font-size: 14px;
  color: #666;
}

.auth-footer a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border 0.3s ease;
}

.auth-footer a:hover {
  border-bottom: 1px solid #000;
}

/* Genel Sağ Menü Yerleşimi */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-item {
  position: relative;
  cursor: pointer;
}

/* İkon ve Yazı Stili */
.header-item i {
  font-size: 20px;
  color: #1d1d1f;
  transition: transform 0.2s ease;
}

.user-trigger {
  display: flex;
  align-items: center;
  gap: 10px; /* İkonlar ve ok arası boşluk */
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.user-trigger:hover {
  background: #f5f5f7;
}

.user-greeting {
  font-size: 13px;
  font-weight: 500;
  color: #1d1d1f;
}

.arrow-icon {
  font-size: 10px !important;
  color: #86868b !important;
}

/* Dropdown Menü Tasarımı - Lüks Görünüm */
.dropdown-menu {
  position: absolute;
  top: 120%;
  right: 0;
  width: 220px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  /* Cam efekti */
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  padding: 5px 15px 10px;
  font-size: 11px;
  text-transform: uppercase;
  color: #86868b;
  letter-spacing: 1px;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: #1d1d1f;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.dropdown-menu a i {
  font-size: 16px;
  width: 20px;
  color: #424245;
}

.dropdown-menu a:hover {
  background: #f5f5f7;
}

.divider {
  height: 1px;
  background: #f0f0f2;
  margin: 8px 0;
}

.logout-btn {
  color: #ff3b30 !important;
  /* Premium Kırmızı */
}

/* Sepet Balonu */
.cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: #1d1d1f;
  color: #fff;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header Genel Hizalama */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* İkon Grubu ve Hizalama */
.header-right-group {
  display: flex;
  align-items: center;
  gap: 20px;
  /* İkonlar arası lüks boşluk */
  margin-left: auto;
  /* İkonları en sağa iter */
}

/* İkon Renkleri (Görseldeki Koyu Ton) */
.header-right-group i {
  font-size: 20px;
  color: #000 !important;
  cursor: pointer;
  transition: opacity 0.2s;
}

/* Arama Butonu Sıfırlama */
.search-icon-btn {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Sepet Badge Ayarı */
.cart-link {
  position: relative;
  text-decoration: none;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #000;
  color: #fff;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid #fff;
}

/* Profil ve Dropdown */
.user-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.user-greeting {
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

.dropdown-menu {
  position: absolute;
  top: 150%;
  right: 0;
  width: 180px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: none;
  padding: 10px 0;
  z-index: 1001;
}

.header-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Profil İkonu Özel Ayarı */
.user-trigger i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000 !important;
  width: 28px;  /* Hepsini aynı genişlikteki kutuya hapsettik */
  height: 28px; /* Hepsini aynı yükseklikteki kutuya hapsettik */
  text-align: center;
}

.user-trigger .fa-circle-user {
  font-size: 28px !important; /* Diğerlerinden büyük olmalı ki eşit görünsün */
  width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000 !important;
  /* Eğer hala yukarıda duruyorsa burayı 1px 2px oynat */
  margin-top: 0px; 
}

/* Üzerine gelince rengi solmasın, premium kalsın */
.user-trigger:hover i {
  opacity: 0.8;
  transform: scale(1.05);
}

/* Eğer yanındaki yazı çok sırıtırsa onu da burdan ayarla */
.user-greeting {
  color: #000 !important;
  font-weight: 700;
  /* Yazıyı da biraz kalınlaştırdık ki ikona uysun */
  font-size: 13px;
}

/* Menü ve tetikleyici (trigger) arasındaki boşluğu kapatmak için köprü */
.header-item.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  /* İkon ile menü arasındaki o boşluğu dolduran görünmez alan */
  display: block;
}

.dropdown-menu {
  position: absolute;
  top: 130%;
  /* İkona biraz daha yaklaştırdık */
  right: 0;
  width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  /* Gölgeyi artırdık ki daha premium dursun */
  padding: 10px 0;

  /* ANİMASYONLU GEÇİŞ: Hemen kapanmaması için geçiş efekti */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
  /* 0.3 saniyelik yumuşak geçiş */
  z-index: 9999;
}

/* Hover durumunda menüyü açık tut */
.header-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MENÜNÜN KAPANMASINI GECİKTİREN SIR: */
/* Fare menüden çıksa bile 0.1-0.2 saniye beklemesi için */
.header-item.dropdown .dropdown-menu {
  transition-delay: 0.1s;
}

.dropdown-menu a {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #f8f8f8;
  color: #000;
}

.product-card {
  position: relative;
  /* Kalbi sabitlemek için ana şart */
  overflow: hidden;
}

.fav-circle {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  /* Tam beyaz yuvarlak */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Hafif premium gölge */
  transition: all 0.2s ease;
}

.fav-circle i {
  color: #000000;
  /* Kalp ilk başta siyah olsun */
  font-size: 18px;
}

/* Üzerine gelince hafifçe büyüsün */
.fav-circle:hover {
  transform: scale(1.1);
}

/* Tıklandığında (Aktif) hali */
.fav-circle.active {
  background-color: #ffffff;
  /* Arka plan yine beyaz kalsın */
}

.fav-circle.active i {
  color: #ff4757;
  /* Sadece kalp kırmızı olsun */
  font-weight: 900;
  /* Dolu kalp */
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.fav-circle {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.fav-circle.active i {
  color: #ff4757;
}

.top-announcement-bar {
  background: #000;
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
}

.marquee {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 50px;
  animation: marquee-animation 25s linear infinite;
}

.marquee-content span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes marquee-animation {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.top-bar {
  background-color: #000;
  color: #fff;
  height: 40px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar-slider {
  display: flex;
  flex-direction: column;
  height: 40px;
  text-align: center;
  /* 4 mesaj var, her biri 3 saniye = 12 saniye toplam döngü */
  animation: slide-up-down 12s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

.top-bar-item {
  height: 40px;
  line-height: 40px;
  /* Yazıyı dikeyde ortalar */
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  width: 100vw;
}

@keyframes slide-up-down {

  /* 0-25% arası 1. mesaj */
  0%,
  20% {
    transform: translateY(0);
  }

  /* 25-50% arası 2. mesaj */
  25%,
  45% {
    transform: translateY(-40px);
  }

  /* 50-75% arası 3. mesaj */
  50%,
  70% {
    transform: translateY(-80px);
  }

  /* 75-100% arası 4. mesaj */
  75%,
  95% {
    transform: translateY(-120px);
  }

  /* Döngü başa dönerken hızlı geçiş */
  100% {
    transform: translateY(0);
  }
}

/* Logo kutusunun hizalanması */
.logo-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logonun tıklanabilir alanı ve boyutu */
.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
  /* Navbar yüksekliğine uyum sağlar */
}

.logo-img {
  max-height: 50px;
  /* Navbar yüksekliğine göre burayı değiştirebilirsin */
  width: auto;
  /* Oranı bozmaz */
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Logoya tıklandığında hafif bir hareket istersen */
.logo-link:hover .logo-img {
  transform: scale(1.05);
}

/* Header genel yüksekliği (opsiyonel) */
.main-header {
  height: 70px;
  /* Logo için yeterli alan sağlar */
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: #fff;
}

/* Header'ın ana taşıyıcısı */
.main-header {
  width: 100%;
  height: 70px;
  /* Navbar yüksekliğini sabitleyelim */
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 20px;
  /* Kenarlardan çok az boşluk bırak, sıfıra sıfır istersen 0 yap */
  border-bottom: 1px solid #eee;
}

.header-content-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
  /* Her şeyi sola yasla */
}

/* Logonun etrafındaki kutu */
.main-logo-anchor {
  display: flex;
  align-items: center;
  height: 50px;
  /* Navbar 70px ise bu 50px olsun ki nefes alsın */
  margin-right: auto;
  /* Navigasyonu ve sağ tarafı itmek istersen bunu kaldırıp nav'a margin-left verebiliriz */
  flex-shrink: 0;
  /* Logonun ezilmesini engeller */
}



/* Menülerin yerleşimi */
.main-nav {
  display: flex;
  gap: 20px;
  margin-left: 40px;
  /* Logo ile menü arasına boşluk koyar */
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  /* Navbar yüksekliğini biraz artırdım ki logo heybetli dursun */
  background: #fff;
  padding: 0 20px;
  /* Kenar boşluğu */
  width: 100%;
  box-sizing: border-box;
}

/* Logo en sola sıfırlansın */
.header-left-side {
  height: 100%;
  /* Header'ın tüm yüksekliğini kapla */
  display: flex;
  align-items: center;
}

.logo-wrapper {
  height: 100%;
  /* Link alanı header kadar olsun */
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 200%;
  /* Üstten alttan çok az boşluk kalması daha şık durur */
  width: auto;
  object-fit: contain;
  /* Oranı bozmadan sığdır */
}

/* Menülerin hizası bozulmasın */
.header-center-side {
  flex-grow: 1;
  /* Ortadaki boşluğu kapla */
  display: flex;
  justify-content: flex-start;
  /* Logodan hemen sonra başlasın */
  margin-left: 40px;
  /* Logo ile menü arasına mesafe koy */
}

.main-nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  line-height: normal;
  /* Yukarı kaymayı engeller */
}

/* Sağ ikonlar */
.header-right-side {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-results {
  max-height: 70vh;
  /* Çok sonuç çıkarsa ekranı kaplamasın, kaydırılsın */
  overflow-y: auto;
  background: #fff;
  margin-top: 10px;
  border-radius: 8px;
}

.search-result-item:hover {
  background-color: #f9f9f9;
}

.search-results-container {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-height: 80vh;
  overflow-y: auto;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.search-item:hover {
  background: #eee;
}

.search-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

.search-item-name {
  font-weight: 600;
  font-size: 14px;
}

.search-item-price {
  color: #e67e22;
  font-size: 13px;
}

/* Arama sayfasındaki sonuç alanı ana sayfa ızgarasıyla aynı olsun */
.search-results-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  /* Kart genişliği */
  gap: 25px;
  padding: 30px;
  max-height: 80vh;
  overflow-y: auto;
  justify-items: center;
}

/* Arama sayfasının arka planını biraz koyulaştırırsan kartlar daha iyi patlar */
.search-page {
  background-color: #fbfbfb;
}

/* Modalın her şeyin, ama her şeyin üzerinde olduğundan emin olalım */
.product-modal {
  z-index: 99999 !important;
  /* Bir adet 9 daha ekledik, kral dairesi burası */
  display: none;
  /* Başlangıçta gizli */
}

.product-modal.active {
  /* Modal açıldığında gelen class */
  display: flex !important;
}

/* Drawer Genel */
.cart-drawer {
   pointer-events: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  transition: right 0.4s ease-in-out;
  visibility: hidden;
}

.cart-drawer.open {
  right: 0;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer-overlay {
   pointer-events: auto;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.cart-drawer-content {
  position: absolute;
  right: 0;
  width: 450px;
  /* Görseldeki genişlik */
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* Görseldeki Yeşil Buton */
.drawer-pay-btn {
  width: 100%;
  padding: 18px;
  background: #44D64D;
  /* Görseldeki yeşil */
  color: white;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.cart-drawer-content {
  display: flex;
  flex-direction: column;
  /* İçeriği diklemesine dizer */
}

.cart-drawer-items {
  flex: 1;
  /* Ürün listesi ortayı kaplar */
  overflow-y: auto;
  /* Çok ürün varsa kendi içinde kayar */
  padding: 20px;
}

.cart-drawer-footer {
  padding: 25px;
  border-top: 1px solid #eee;
  background: #fff;
  /* Altta sabit durur */
}

.drawer-total-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.total-label {
  font-size: 16px;
  color: #555;
}

.total-amount {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.drawer-pay-btn {
  width: 100%;
  padding: 18px;
  background: #000000;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* Başlık alanı genel stili */
.cart-drawer-header {
  background: #fff;
  position: sticky;
  /* Yukarıda sabit kalsın */
  top: 0;
  z-index: 10;
}

.drawer-title {
  font-family: 'Inter', sans-serif;
  /* Varsa modern bir font */
  text-transform: uppercase;
  /* SEPETİNİZ şeklinde büyük harf yapar */
}

/* X Butonu Efekti */
.close-drawer-btn:hover {
  opacity: 0.7;
  transform: scale(1.1);
  transition: all 0.2s ease;
}

/* ÜRÜN - TOPLAM etiketlerinin hizası */
.drawer-labels {
  display: flex;
  justify-content: space-between;
  padding: 15px 25px;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  letter-spacing: 1px;
  border-bottom: 1px solid #f9f9f9;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  /* Daha oval, daha modern */
  padding: 15px;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  /* Belirsiz bir çerçeve */
}

.product-card:hover {
  transform: translateY(-5px);
  /* Hafif yukarı kayma */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Çok hafif bir gölge */
}

.product-name {
  font-weight: 500;
  font-size: 15px;
  color: #111;
  margin-top: 15px;
}

.product-price {
  font-weight: 600;
  color: #000000;
  /* Marka rengin */
  font-size: 16px;
}

/* Full Screen Prestij Modal */
.product-modal-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  /* Tertemiz beyaz */
  z-index: 9999;
  display: none;
  /* JS ile açılacak */
  overflow-y: auto;
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-modal-fullscreen.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Sayfa Düzeni */
.premium-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.premium-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  border-bottom: 1px solid #f5f5f7;
}

.back-btn {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 1px;
}

/* Ana Grid */
.premium-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding-top: 60px;
}

/* Galeri Alanı */
.premium-gallery {
  background: #fbfbfb;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
}

.image-focus-area img {
  max-height: 60vh;
  object-fit: contain;
  transition: transform 0.8s ease;
}

/* Satın Alma Alanı */
.sidebar-inner {
  position: sticky;
  top: 40px;
}

.elite-category-tag {
  font-size: 11px;
  font-weight: 700;
  color: #86868b;
  letter-spacing: 2px;
}

.elite-title-text {
  color: #000;
  font-size: 42px;
  font-weight: 600;
  margin: 10px 0 20px;
  line-height: 1.1;
}

.elite-price-tag {
  font-size: 28px;
  font-weight: 500;
  color: #1d1d1f;
}


.btn-premium-add {
  width: 100%;
  padding: 22px;
  background: #000000;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin: 40px 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-premium-add:hover {
  background: #151815;
  transform: scale(1.02);
}

.elite-description-text {
  font-size: 16px;
  color: #515154;
  line-height: 1.6;
  margin-top: 20px;
}

/* --- PREMIUM ADMIN ADD PAGE --- */

:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --input-border: #e2e8f0;
  --accent-color: #667eea;
}

.admin-add-page {
  background: #f0f2f5 url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&q=80&w=1964&ixlib=rb-4.0.3') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.admin-add-container {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 700px;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 20px;
}

.admin-add-container h1 {
  font-size: 28px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  text-align: center;
}

.admin-add-container p {
  text-align: center;
  color: #64748b;
  margin-bottom: 35px;
  font-size: 15px;
}

/* Modern Input Grupları */
.form-group {
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.admin-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  padding-left: 4px;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--input-border);
  border-radius: 12px;
  font-size: 15px;
  background: #f8fafc;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Özel File Input */
input[type="file"] {
  background: #fff;
  padding: 10px;
  border: 2px dashed var(--input-border);
  cursor: pointer;
}

/* Premium Butonlar */
.form-actions {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-save {
  background: var(--primary-gradient);
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.btn-cancel {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.btn-cancel:hover {
  color: #ef4444;
}

/* Mobil Uyumluluk */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .admin-add-container {
    padding: 25px;
  }
}

/* --- PRESTİJ DARK MODE ADMIN PANEL --- */

.admin-add-page {
  /* Daha derin ve asil bir koyu gradyan */
  background: radial-gradient(circle at top left, #1e293b, #0f172a);
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  color: #ffffff;
}

.admin-add-container {
  /* Siyah ama derinliği olan bir zemin */
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 700px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.admin-add-container h1 {
  font-size: 30px;
  font-weight: 800;
  color: #f8fafc;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 5px;
}

.admin-add-container p {
  text-align: center;
  color: #94a3b8;
  /* Soft gri, göz yormaz */
  margin-bottom: 35px;
}

/* Input Alanları - Siyah Üzerine Net Beyaz Yazı */
.admin-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
  /* Yazılar artık çok net */
  margin-bottom: 10px;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  padding: 15px;
  background: #1e293b;
  /* Koyu gri/mavi input zemini */
  border: 1px solid #334155;
  border-radius: 12px;
  color: #ffffff;
  /* Giriş yapılan yazı bembeyaz */
  font-size: 16px;
  transition: all 0.2s ease;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: #38bdf8;
  /* Fokus olunca parlayan neon mavi */
  background: #0f172a;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

/* Select kutusu için küçük bir dokunuş */
.admin-form select option {
  background: #1e293b;
  color: white;
}

/* Dosya Seçme Alanı */
input[type="file"] {
  border: 2px dashed #334155;
  background: rgba(30, 41, 59, 0.5);
  padding: 20px;
  text-align: center;
}

/* Butonlar */
.btn-save {
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
  color: white;
  padding: 16px 45px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
  transition: all 0.3s;
}

.btn-save:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.5);
}

/* Butonların yan yana düzgün durması için düzenleme */
.form-actions {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Butonları eşit genişlikte yan yana diz */
  gap: 20px;
}

/* Kaydet Butonu (Mavi-Premium) */
.btn-save {
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}

.btn-save:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.5);
}

/* İptal Butonu (Kırmızı-Premium) */
.btn-cancel {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  /* Premium Kırmızı */
  color: white;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  /* Link alt çizgisini kaldır */
  box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.4);
  transition: all 0.3s ease;
  display: flex;
  /* İçindeki metni ortalamak için */
  justify-content: center;
  align-items: center;
}

.btn-cancel:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 15px 25px -5px rgba(239, 68, 68, 0.5);
  color: white;
  /* Hover olunca rengin değişmesini engelle */
}

/* Mobilde butonlar alt alta gelsin */
@media (max-width: 500px) {
  .form-actions {
    grid-template-columns: 1fr;
  }
}

.btn-cancel:hover {
  color: #f1f5f9;
}

.product-detail-page {
  background: #0f172a;
  color: white;
  padding: 50px 20px;
}

.product-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: rgba(30, 41, 59, 0.5);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.product-info h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #38bdf8;
}

.price-tag {
  font-size: 32px;
  font-weight: 800;
  margin: 25px 0;
  color: #2ecc71;
}

.specs p {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.buy-button {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 30px;
}

.premium-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 5px;
}

.premium-select:focus {
  border-color: #000;
  outline: none;
}

.elite-description-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-top: 10px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

/* Dropdown ana menüyle birebir */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link i {
  font-size: 10px;
  opacity: 0.7;
}

/* Dropdown Menü */
.dropdown-menu-nav {
  position: absolute;
  top: 140%;
  left: 0;
  background: #fff;
  min-width: 190px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 9999;
}

.dropdown-menu-nav a {
  display: block;
  padding: 12px 20px;
  color: #000;
  font-size: 14px;
  text-decoration: none;
}

.dropdown-menu-nav a:hover {
  background: #f5f5f5;
}

/* Hover ile aç */
.nav-dropdown:hover .dropdown-menu-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ========== DROPDOWN MENU STİLLERİ ========== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-dropdown .nav-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.nav-dropdown .nav-link:hover {
  color: #e74c3c;
}

.nav-dropdown.active .nav-link {
  color: #e74c3c;
}

.dropdown-menu-nav {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-nav a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #555;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu-nav a:last-child {
  border-bottom: none;
}

.dropdown-menu-nav a:hover {
  background: #f8f8f8;
  color: #e74c3c;
  padding-left: 25px;
}

/* Mobil için */
@media (max-width: 768px) {
  .dropdown-menu-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    border-radius: 0;
    background: #f8f8f8;
    margin-top: 0;
  }

  .nav-dropdown.mobile-active .dropdown-menu-nav {
    display: block;
  }

  .nav-dropdown .nav-link::after {
    content: "▼";
    font-size: 10px;
    margin-left: auto;
  }
}

.search-results-container {
  pointer-events: auto;
}

.search-card {
  cursor: pointer;
}

/* ===========================
   ADMIN FORM GENEL
=========================== */

.admin-layout {
  background: #0f0f0f;
  min-height: 100vh;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.main {
  padding: 40px 20px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.topbar h1 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===========================
   FORM KUTUSU
=========================== */

.content-box {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* ===========================
   FORM ELEMANLARI
=========================== */

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: #1d1d1d;
  border: 1px solid #333;
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  transition: 0.25s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #44d64d;
  background: #1f1f1f;
}

/* ===========================
   FORM ROW (YAN YANA)
=========================== */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===========================
   TEXTAREA
=========================== */

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===========================
   GÖRSEL
=========================== */

.form-group img {
  border-radius: 12px;
  border: 1px solid #333;
}

/* ===========================
   BUTONLAR
=========================== */

.btn-add {
  color: #000;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.25s;
}

.btn-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(68, 214, 77, 0.35);
}

/* ===========================
   DOSYA INPUT
=========================== */

input[type="file"] {
  background: #1a1a1a;
  border: 1px dashed #333;
  padding: 14px;
  cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
  background: #44d64d;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  margin-right: 10px;
  cursor: pointer;
  font-weight: 600;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

.edit {
  padding: 6px 12px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  margin-right: 8px;
  display: inline-block;
}

.edit:hover {
  background: #333;
}

.header-right-group {
  display: flex !important;
  align-items: center;
  position: relative;
  z-index: 1000;
}

.hamburger {
  pointer-events: auto !important;
  /* Tıklamayı mecbur kılar */
  background: transparent;
  border: none;
  font-size: 24px;
}

.cart-drawer-content {
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  /* Daha modern bir font */
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.cart-item:hover {
  background: #fafafa;
}

.cart-item img {
  width: 80px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Sayacı şıklaştıralım */
.quantity-controls {
  display: flex;
  align-items: center;
  background: #f5f5f7;
  border-radius: 50px;
  padding: 5px 15px;
}

.quantity-controls button {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: #000;
}

.quantity-num {
  margin: 0 15px;
  font-weight: 600;
  font-size: 14px;
}

.main-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  /* Premium hissi veren asıl sır budur */
  -webkit-backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  z-index: 999999;
  transition: right .35s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 20px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.cart-drawer-footer {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid #eee;
  font-weight: 600;
}

/* =========================
   PREMIUM ADMIN THEME
   ========================= */


/* SIDEBAR */
.sidebar {
  background: linear-gradient(180deg, #020617, #020617cc);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.sidebar .brand strong {
  font-size: 18px;
  letter-spacing: 1px;
}

.sidebar a {
  color: #9ca3af;
  padding: 14px 18px;
  border-radius: 14px;
  margin: 4px 8px;
  transition: all .25s ease;
}

.sidebar a:hover {
  background: rgba(99, 102, 241, 0.12);
  color: #fff;
}

.sidebar .active {
  background: linear-gradient(135deg, #6366f1, #818cf8);
  color: #fff;
  box-shadow: 0 10px 30px rgba(99, 102, 241, .35);
}

/* MAIN */
.main {
  padding: 40px;
}

/* TOPBAR */
.topbar h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .5px;
}

/* STAT CARD */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.stat-card span {
  color: #a5b4fc;
  font-size: 14px;
}

.stat-card strong {
  display: block;
  margin-top: 12px;
  font-size: 36px;
  font-weight: 800;
}

/* CONTENT BOX */
.content-box {
  margin-top: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(18px);
}

/* TABLE */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.admin-table thead {
  background: rgba(99, 102, 241, .12);
}

.admin-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #c7d2fe;
}

.admin-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.admin-table tr:hover {
  background: rgba(255, 255, 255, .03);
}

/* BUTTONS */
.actions .edit {
  background: linear-gradient(135deg, #6366f1, #818cf8);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
}

.actions .delete {
  background: linear-gradient(135deg, #ef4444, #f87171);
  border: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  margin-left: 8px;
  cursor: pointer;
}

/* ===== ADMIN SIDEBAR PREMIUM ===== */

.admin-layout {
  font-family: 'Inter', sans-serif;
}

/* Sidebar container */
.sidebar {
  width: 260px;
  background: linear-gradient(180deg, #05070d, #0b1020);
  padding: 30px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* Logo alanı */
.sidebar .brand {
  margin-bottom: 40px;
}

.sidebar .brand strong {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  display: block;
}

.sidebar .brand span {
  font-size: 13px;
  color: #8b8fae;
}

/* Liste reset */
.sidebar ul,
.sidebar li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Menü linkleri */
.sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: 14px;
  color: #cfd3ff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
}

/* Icon */
.sidebar a i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  opacity: 0.9;
}

/* Hover */
.sidebar a:hover {
  background: rgba(108, 99, 255, 0.12);
  color: #fff;
}

/* Aktif menü */
.sidebar .active a,
.sidebar a.active {
  background: linear-gradient(135deg, #6c63ff, #4d8cff);
  color: #fff;
  box-shadow: 0 10px 25px rgba(108, 99, 255, 0.35);
}

/* Aktif icon */
.sidebar .active a i,
.sidebar a.active i {
  color: #fff;
}

/* Alt menüler arası boşluk */
.sidebar a+a {
  margin-top: 6px;
}

.main-header {
  background-color: #ffffff;
}

.user-menu {
  position: relative;
  cursor: pointer;
}

.user-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  display: none;
  flex-direction: column;
  z-index: 9999;
}

.user-dropdown a {
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.user-dropdown a:hover {
  background: #f5f5f5;
}

.user-dropdown .logout {
  color: #c0392b;
  font-weight: 600;
}

.user-menu {
  position: relative;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  display: none;
  flex-direction: column;
  z-index: 9999;
}

.user-dropdown a {
  padding: 12px 16px;
  text-decoration: none;
  color: #111;
  font-size: 14px;
}

.user-dropdown a:hover {
  background: #f5f5f5;
}

.user-dropdown .logout {
  color: #c0392b;
  font-weight: 600;
}

.user-dropdown.active {
  display: flex;
}

.user-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-menu {
  color: #000;
}

/* Detay sayfasında modal yapısını tam sayfa yap */
.detail-page-active {
  display: block !important;
  position: relative !important;
  z-index: 1;
  background: #fff;
}

.back-btn {
  color: #000;
}

.product-modal-fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  /* Sayfadaki her şeyin üzerinde olması için */
  overflow-y: auto;
}

.product-modal-fullscreen.active {
  display: block;
}
#productModal {
  pointer-events: auto;
}

#productModal * {
  pointer-events: auto;
}
/* 🔥 MODAL TIKLAMA KİLİDİ ÇÖZÜMÜ */
#productModal,
#productModal * {
  pointer-events: auto !important;
}
.elite-title-text {
  color: #000 !important;
}

.product-meta-details span {
  color: #555 !important;
}

.product-meta-details strong {
  color: #000 !important;
}
.product-header-elite,
.product-header-elite * {
  color: #000 !important;
}
.success-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-box {
  text-align: center;
  background: #fff;
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.check-icon {
  width: 90px;
  height: 90px;
  background: #27ae60;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
}

.order-no {
  margin-top: 10px;
  font-size: 16px;
}

.btn-primary {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background: #000;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  margin-left: 10px;
  color: #555;
}
.orders-page {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 5%;
}

.order-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.order-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.order-status {
  background: #f1c40f;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

.order-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
}
.success-wrapper {
  max-width: 700px;
  margin: 120px auto;
  text-align: center;
  padding: 0 5%;
}

.success-icon {
  width: 90px;
  height: 90px;
  background: #2ecc71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.success-icon i {
  color: white;
  font-size: 40px;
}

.success-sub {
  color: #555;
  margin-bottom: 40px;
}

.success-card {
  background: #fff;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  text-align: left;
}

.success-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.success-item img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #eee;
}

.success-info span {
  font-size: 13px;
  color: #777;
}

.success-price {
  margin-left: auto;
  font-weight: 600;
}

.success-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 18px;
}

.success-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-black {
  background: #000;
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #000;
  padding: 14px 30px;
  border-radius: 40px;
  color: #000;
  text-decoration: none;
}
.orders-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.orders-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.order-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all .2s ease;
}

.order-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.order-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-label {
  font-size: 12px;
  color: #000000;
}


.order-info strong {
  color: #000000;
  display: block;
  font-size: 15px;
}

.order-date {
  font-size: 13px;
  color: #000000  ;
  margin-top: 4px;
}

.order-status {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* DURUM RENKLERİ */
.status-siparişalındı {
  background: #fff4cc;
  color: #c49b00;
}

.status-hazırlanıyor {
  background: #e6f0ff;
  color: #1e60d4;
}

.status-kargoda {
  background: #e9fff3;
  color: #1fa971;
}

.status-teslimedildi {
  background: #000;
  color: #fff;
}

.order-bottom {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-total span {
  font-size: 12px;
  color: #000000;
}

.order-total strong {
  display: block;
  font-size: 18px;
  color: #000;
}

.order-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid #000;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;

}



/* BOŞ DURUM */
.empty-orders {
  text-align: center;
  padding: 60px;
  background: #f9f9f9;
  border-radius: 16px;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: #000;
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
}
.orders-title {
  color: #000000;
}
/* RESET + FONT */
* {
  box-sizing: border-box;
}

body {
  background: #f5f5f5;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont;
  color: #000;
}

/* WRAPPER */
.order-detail-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  background: #fff;
  border-radius: 18px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* HEADER */
.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid #eaeaea;
}

.order-header h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

.order-header h1 span {
  font-weight: 500;
}

.order-date {
  margin-top: 6px;
  font-size: 14px;
  color: #000;
}

/* STATUS */
.order-status {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #000;
  color: #000;
  background: #fff;
}

/* INFO GRID */
.order-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 40px 0;
}

.order-box {
  border: 1px solid #000;
  background-color: #000;
  border-radius: 14px;
  padding: 24px;
}


.order-box h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.order-box p,
.order-box span {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
}



/* PRODUCTS */
.order-products {
  margin-top: 50px;
}

.order-products h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000000;
}

/* PRODUCT ROW */
.order-product {
  display: grid;
  grid-template-columns: 100px 1fr 160px;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #eaeaea;
}

.order-product:last-child {
  border-bottom: none;
}

.order-product img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #000;
}

/* PRODUCT INFO */
.product-info strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}

.product-info span {
  font-size: 14px;
  color: #000;
}

/* PRICES */
.product-prices {
  text-align: right;
}

.product-prices span {
  display: block;
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;
}

.product-prices strong {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

/* TOTAL */
.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #000000;
}

.order-total span {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.order-total strong {
  font-size: 26px;
  font-weight: 800;
  color: #000000;
}

/* FOOTER */
.order-footer {
  margin-top: 50px;
  text-align: right;
}

.back-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  border: 1px solid #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  background: #fff;
  transition: all 0.25s ease;
}

.back-btn:hover {
  background: #000;
  color: #fff;
}
.order-box {
  background-color: #1e60d4 !;
  color: #1e60d4;
}
.search-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  
  /* Z-index: Sepetten (9999) küçük olmalı */
  z-index: 9000;
  
  /* Başlangıçta gizli - DISPLAY:NONE KULLANMA! */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
  /* Layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  
  /* Animasyon */
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* Arama açıkken */
.search-page.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Arama header'ı */
.search-header {
  width: 100%;
  max-width: 720px;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}



/* FOOTER HER ZAMAN GÖRÜNÜR KALSIN */
.footer-nav {
  position: relative;
  z-index: 50 !important;
  /* important ekledim çünkü başka yerden override edilebilir */
}

/* SEPET DRAWER EN ÜSTTE KALSIN */
.cart-drawer {
  z-index: 9999 !important;
}

/* Body scroll kontrolü - Sadece arama açıkken */
body.no-scroll {
  overflow: hidden;
  width: 100%;
}
/* 🔍 ARAMA SONUÇLARI – MOBİLDE 2'Lİ ÜRÜN */
#searchResults {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* Kart grid'e uysun diye */
#searchResults .product-card {
  width: 100% !important;
  margin: 0 !important;
}
/* === ARAMA SONUÇLARI GRID === */
#searchResults {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  box-sizing: border-box;
}
#searchResults .product-card {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  padding: 12px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  #searchResults {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ===============================
   ARAMA SONUÇLARI – MOBİL ONLY
   =============================== */
@media (max-width: 767px) {

  /* 2'li grid */
  #searchResults {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 16px;
  }

  /* Kart – ince uzunluğu iptal */
  #searchResults .product-card {
    width: 100% !important;
    padding: 14px !important;
    border-radius: 18px;
    background: #fff;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: unset !important;
  }

  /* Görsel – kartı kalın yapan kısım */
  #searchResults .product-card img {
    width: 100% !important;
    height: 120px !important;   /* 🔥 kalınlık burada */
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
  }

  /* Yazılar */
  #searchResults .product-info {
    text-align: center;
  }

  #searchResults .product-name {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 6px;
  }

  #searchResults .product-price {
    font-size: 15px;
    font-weight: 700;
    margin-top: 6px;
  }
}
.orders-link {
  position: relative;
}
/* Senin CSS'in */
.notif-dot {
  position: absolute;
  top: -2px;
  right: -10px;
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 50%;
  display: none; /* JS ile açılacak */
}
/* Ana Konteynır */
.address-page-container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Header Kısmı */
.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
}

.address-header h1 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0;
}

/* Yeni Adres Ekle Butonu */
.btn-add-address {
    background: #3498db;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-add-address:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Adres Kartları Izgarası (Grid) */
.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* Kart Tasarımı */
.address-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #3498db;
}

/* Kart Header (Başlık ve Badge) */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.address-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
}

.status-badge {
    background: #e8f8f0;
    color: #27ae60;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Kart Gövdesi */
.address-body {
    flex-grow: 1;
    margin-bottom: 20px;
}

.receiver-name {
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.phone {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 15px 0;
}

.full-address {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Kart Footer (Butonlar) */
.address-footer {
    display: flex;
    gap: 12px;
    border-top: 1px solid #f1f4f8;
    padding-top: 15px;
}

.btn-edit, .btn-delete {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
}

.btn-edit {
    background: #f8f9fa;
    color: #2c3e50;
    border: 1px solid #dee2e6;
}

.btn-edit:hover {
    background: #e9ecef;
}

.btn-delete {
    background: #fff5f5;
    color: #e74c3c;
}

.btn-delete:hover {
    background: #fee2e2;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 600px) {
    .address-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-add-address {
        width: 100%;
        justify-content: center;
    }

    .address-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }

    .address-page-container {
        margin: 15px auto;
    }
}
/* Bu kod her şeyi ezer geçer (Force Override) */
@media (max-width: 768px) {
    /* 1. Çekmeceyi ekranın tam ortasına veya yanına %100 daya */
    .cart-drawer-content {
        width: 100vw !important; /* Ekran genişliği neyse o! */
        min-width: 100vw !important;
        max-width: 100vw !important;
        right: 0 !important;
        left: 0 !important;
        height: 100vh !important;
        position: fixed !important;
        border-radius: 0 !important; /* Mobilde köşe yumuşatmayı boşver tam kaplasın */
    }

    /* 2. İçindeki elemanların taşmasını engelle */
    .cart-drawer-items {
        width: 100% !important;
        padding: 10px !important;
        box-sizing: border-box !important; /* Padding genişliği bozmasın */
    }

    /* 3. Eğer ürün isimleri sığmıyorsa diye */
    .cart-item {
        display: flex !important;
        width: 100% !important;
        box-sizing: border-box !important;
        gap: 10px !important;
    }

    /* 4. Alt kısımdaki ödeme butonunu ve toplamı sabitle */
    .cart-drawer-footer {
        width: 100% !important;
        box-sizing: border-box !important;
        position: absolute;
        bottom: 0;
        left: 0;
    }
}
.auth-social {
    width: 100%;
    margin-top: 10px;
}

/* "Veya" Çizgisi Tasarımı */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.divider span {
    padding: 0 10px;
}

/* Google Butonu - Senin ana butonunla aynı formda */
.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px; /* Giriş Yap butonuyla aynı yükseklik */
    background-color: #ffffff;
    border: 2px solid #1a1a1a; /* Senin ana butonun renginde çerçeve */
    border-radius: 15px; /* Senin inputlarla aynı ovalik */
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.google-login-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.google-icon-box {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.google-icon-box img {
    width: 20px;
    height: 20px;
}

.btn-text {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 15px;
}