/* ============================================================
   STORE.CSS — Ayyıldız Spor — Maximum Premium v4
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
section { margin: 0; }

:root {
  --dark-900: #060d1e;
  --dark-800: #0c1425;
  --dark-700: #141f38;
  --dark-600: #1a2a47;
  --red:       #c1121f;
  --red-light: #ff4d5e;
  --red-glow:  rgba(193,18,31,0.35);
  --gold:      #d4af37;
  --cyan:      #22b8c7;
  --ig-grad:   linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  --white-88:  rgba(255,255,255,0.88);
  --white-70:  rgba(255,255,255,0.70);
  --white-45:  rgba(255,255,255,0.45);
  --white-12:  rgba(255,255,255,0.12);
  --white-06:  rgba(255,255,255,0.06);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-card: 0 20px 60px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 40px var(--red-glow);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

@keyframes shimmer {
  from { transform: translateX(-140%); }
  to   { transform: translateX(140%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ==========================================================
   STORE SECTION
   ========================================================== */
.store {
  padding: 5rem 0 6rem;
}

/* ---- Header ---- */
.store-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s ease both;
}

.store-header .page-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white-88);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}
.store-header .page-title::after {
  content: '';
  display: block;
  width: 52px; height: 3px;
  background: var(--red);
  border-radius: 3px;
  margin: 0.5rem auto 0;
}

.store-desc {
  font-size: 1.05rem;
  color: var(--white-45);
}

/* ---- Category Filters ---- */
.category-filters {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.85s ease both 0.1s;
}

.cat {
  background: var(--white-06);
  border: 1px solid var(--white-12);
  color: var(--white-70);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55em 1.4em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.cat:hover {
  background: rgba(193,18,31,0.12);
  border-color: rgba(193,18,31,0.35);
  color: var(--red-light);
}
.cat.active {
  background: linear-gradient(135deg, var(--red) 0%, #9e0e18 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(193,18,31,0.40);
}

/* ---- Products Grid ---- */
.store-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.9s ease both 0.15s;
}

.product-card {
  width: 260px;
  flex-shrink: 0;
}

.product-card {
  background: linear-gradient(145deg, var(--dark-800), var(--dark-700));
  border: 1px solid var(--white-12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  border-color: rgba(193,18,31,0.30);
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--dark-600);
}
.product-image > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

/* ---- Product Image Slider ---- */
.product-slider {
  position: relative;
  width: 100%; height: 100%;
}
.product-slider .slider-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.product-slider .slider-img.active {
  opacity: 1;
  pointer-events: auto;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.product-card:hover .slider-btn { opacity: 1; }
.slider-btn:hover { background: rgba(193,18,31,0.8); }
.slider-btn.prev { left: 8px; }
.slider-btn.next { right: 8px; }

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}
.slider-dots .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s ease;
}
.slider-dots .dot.active {
  background: #fff;
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
}
.product-card:hover .product-image > img { transform: scale(1.06); }
.product-card:hover .slider-img.active { transform: scale(1.06); }

/* shimmer on hover */
.product-image::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  transform: translateX(-140%);
  pointer-events: none;
}
.product-card:hover .product-image::after { animation: shimmer 0.7s ease forwards; }

.badge.coming {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(212,175,55,0.90);
  color: var(--dark-900);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.coming-soon .product-image img { filter: grayscale(0.6); }

.product-info {
  padding: 1.3rem 1.4rem;
}

.product-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white-88);
  margin-bottom: 0.55rem;
  line-height: 1.35;
}

.price {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.btn-primary, .btn-add {
  background: linear-gradient(135deg, var(--red) 0%, #9e0e18 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.7em 1.6em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 4px 16px rgba(193,18,31,0.35);
  transition: var(--transition);
  font-family: inherit;
}
.btn-primary:hover:not(:disabled), .btn-add:hover:not(:disabled) {
  box-shadow: 0 8px 24px rgba(193,18,31,0.50);
  transform: translateY(-2px);
}
.btn-primary:disabled, .btn-add:disabled {
  background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
  box-shadow: none;
  color: var(--white-45);
  cursor: not-allowed;
}

/* ---- Empty State ---- */
.empty-state,
.no-results {
  width: 100%;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--white-45);
}
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3, .no-results h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white-88);
  margin-bottom: 0.5rem;
}
.empty-state p, .no-results p { font-size: 0.95rem; margin-bottom: 1.5rem; }

.btn-secondary {
  display: inline-block;
  background: var(--white-06);
  border: 1px solid var(--white-12);
  color: var(--white-88);
  font-weight: 600;
  padding: 0.75em 2em;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-secondary:hover { background: var(--white-12); transform: translateY(-2px); }

/* ---- Instagram Banner ---- */
.insta-shop-banner {
  margin-top: 3rem;
}

.insta-shop-inner {
  background: linear-gradient(145deg, var(--dark-800), var(--dark-700));
  border: 1px solid var(--white-12);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
/* IG gradient border */
.insta-shop-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--ig-grad);
}
/* atmospheric orb */
.insta-shop-inner::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(131,58,180,0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.insta-shop-inner > * { position: relative; z-index: 1; }

.insta-shop-icon {
  width: 80px; height: 80px;
  border-radius: 22px;
  background: var(--ig-grad);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  box-shadow: 0 8px 26px rgba(131,58,180,0.35);
}

.insta-shop-title {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--white-88);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.insta-shop-desc {
  font-size: 0.98rem;
  color: var(--white-70);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.65;
}
.insta-shop-desc strong { color: var(--white-88); }

.insta-shop-btn {
  display: inline-flex;
  align-items: center;
  background: var(--ig-grad);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 0.85em 2.2em;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(131,58,180,0.40);
  transition: var(--transition);
}
.insta-shop-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(131,58,180,0.55); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 640px) {
  .store { padding: 3.5rem 0 4rem; }
  .store-grid { gap: 0.8rem; }
  .product-card { width: calc(50% - 0.4rem); }
  .insta-shop-inner { padding: 2.2rem 1.2rem; }
  .product-info { padding: 1rem; }
  .product-info h3 { font-size: 0.85rem; }
  .price { font-size: 1rem; margin-bottom: 0.7rem; }
  .btn-primary, .btn-add { font-size: 0.82rem; padding: 0.6em 1.2em; }
  .category-filters { gap: 0.4rem; }
  .cat { font-size: 0.78rem; padding: 0.45em 1em; }
}

@media (max-width: 420px) {
  .store-grid { gap: 0.6rem; }
  .product-card { width: calc(50% - 0.3rem); }
  .product-info { padding: 0.8rem 0.7rem; }
  .product-info h3 { font-size: 0.8rem; line-height: 1.3; }
  .price { font-size: 0.92rem; }
  .store-header .page-title { font-size: 1.8rem; }
  .store-desc { font-size: 0.88rem; }
  .insta-shop-inner { padding: 1.8rem 1rem; }
  .insta-shop-icon { width: 60px; height: 60px; border-radius: 16px; }
  .insta-shop-title { font-size: 1.2rem; }
  .insta-shop-desc { font-size: 0.88rem; }
  .insta-shop-btn { font-size: 0.88rem; padding: 0.75em 1.8em; }
}

@media (max-width: 380px) {
  .product-card { width: 100%; max-width: 320px; }
}

/* ==========================================================
   ORDER SYSTEM — Modal, Cart, Variants
   ========================================================== */

/* ---- Product Add Button (active products) ---- */
.btn-add {
  background: linear-gradient(135deg, var(--red), #8b0a14);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--red-glow);
}
.btn-add:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--red-glow); }

/* ---- Modal Overlay ---- */
.order-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
  padding: 1rem;
}

.order-modal-box {
  background: var(--dark-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  width: min(480px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.order-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white-70);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.order-modal-close:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* ---- Product Modal Header ---- */
.order-modal-product {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.order-modal-img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
}
.order-modal-meta h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white-88);
  margin: 0 0 0.3rem;
  line-height: 1.3;
}
.order-modal-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold);
}

/* ---- Variant Buttons ---- */
.variant-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white-45);
  margin-bottom: 0.55rem;
}
.variant-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.variant-btn {
  padding: 0.45em 1em;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--white-88);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.variant-btn:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.variant-btn.selected { background: var(--red); border-color: var(--red); color: #fff; }
.variant-btn.out-of-stock, .variant-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ---- Stock Info ---- */
.stock-info {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4em 0.8em;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: inline-block;
}
.stock-info.in-stock { background: rgba(16,185,129,0.12); color: #10b981; }
.stock-info.out-of-stock-info { background: rgba(239,68,68,0.12); color: #ef4444; }

/* ---- Quantity Control ---- */
.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  overflow: hidden;
}
.qty-control button {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--white-88);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.qty-control button:hover { background: rgba(255,255,255,0.12); }
.qty-control span {
  min-width: 36px;
  text-align: center;
  font-weight: 700;
  color: var(--white-88);
  font-size: 0.95rem;
}

/* ---- Add to Cart Button ---- */
.btn-add-to-cart {
  width: 100%;
  padding: 0.85em;
  background: linear-gradient(135deg, var(--red), #8b0a14);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px var(--red-glow);
  letter-spacing: 0.02em;
}
.btn-add-to-cart:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--red-glow); }

/* ==========================================================
   MINI CART
   ========================================================== */
.mini-cart {
  position: fixed;
  bottom: 7rem; right: 1.5rem;
  width: min(340px, calc(100vw - 2rem));
  background: var(--dark-800);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  animation: slideUp 0.2s ease;
  max-height: 70vh;
}
.mini-cart-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.2rem 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-weight: 800;
  color: var(--white-88);
  font-size: 0.95rem;
}
.cart-count {
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 50px;
  padding: 0.1em 0.55em;
  min-width: 1.4em;
  text-align: center;
}
.mini-cart-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--white-45);
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.mini-cart-close:hover { color: var(--white-88); }
.cart-items { flex: 1; overflow-y: auto; padding: 0.6rem 0; }
.cart-empty {
  text-align: center;
  padding: 1.5rem;
  color: var(--white-45);
  font-size: 0.88rem;
}
.cart-item {
  padding: 0.55rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.cart-item-name { font-size: 0.82rem; color: var(--white-70); line-height: 1.3; flex: 1; }
.cart-item-price { font-size: 0.85rem; font-weight: 800; color: var(--gold); white-space: nowrap; }
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.cart-item-controls button {
  width: 24px; height: 24px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--white-88);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-controls button:hover { background: rgba(255,255,255,0.12); }
.cart-item-controls span { font-size: 0.82rem; color: var(--white-70); min-width: 20px; text-align: center; }
.cart-item-controls .remove-btn { color: #ef4444; border-color: rgba(239,68,68,0.2); margin-left: auto; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
  color: var(--white-70);
  font-size: 0.9rem;
}
.cart-total-amount { color: var(--gold); font-weight: 900; font-size: 1rem; }
.btn-checkout {
  margin: 0 1rem 1rem;
  padding: 0.8em 1.5em;
  background: linear-gradient(135deg, var(--red), #8b0a14);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px var(--red-glow);
}
.btn-checkout:hover { transform: translateY(-1px); box-shadow: 0 8px 22px var(--red-glow); }
.btn-checkout:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---- FAB (floating cart button) ---- */
.cart-fab {
  position: fixed;
  bottom: 6.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #8b0a14);
  color: #fff;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 9997;
  box-shadow: 0 6px 22px var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-fab:hover { transform: scale(1.08); box-shadow: 0 10px 32px var(--red-glow); }
.cart-fab-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: #020617;
  font-size: 0.68rem;
  font-weight: 900;
  border-radius: 50px;
  min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 0.3em;
}
@keyframes bounce {
  0%,100% { transform: scale(1); }
  40%     { transform: scale(1.22); }
}
.cart-fab.bounce { animation: bounce 0.4s ease; }

/* ==========================================================
   ORDER FORM MODAL
   ========================================================== */
.order-form-box { width: min(560px, 100%); }
.order-form-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white-88);
  margin: 0 0 0.3rem;
}
.order-form-sub { font-size: 0.85rem; color: var(--white-45); margin: 0 0 1.2rem; }

.order-cart-summary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  margin-bottom: 1.2rem;
}
.order-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  color: var(--white-70);
  padding: 0.2rem 0;
  gap: 0.5rem;
}
.order-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
  padding-top: 0.5rem;
  margin-top: 0.4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.order-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
@media (max-width: 480px) { .order-field-row { grid-template-columns: 1fr; } }

.order-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}
.order-field:last-child { margin-bottom: 0; }
.order-field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white-45);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.order-field input,
.order-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white-88);
  padding: 0.65em 0.9em;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  font-family: inherit;
  resize: vertical;
}
.order-field input:focus,
.order-field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.order-field input::placeholder,
.order-field textarea::placeholder { color: var(--white-45); }
.req { color: var(--red); }
.opt { font-weight: 400; text-transform: none; font-size: 0.75rem; color: var(--white-45); }

/* ---- Order messages ---- */
.order-msg {
  padding: 0.75em 1em;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.8rem;
}
.order-msg.success { background: rgba(16,185,129,0.12); color: #10b981; border: 1px solid rgba(16,185,129,0.25); }
.order-msg.error   { background: rgba(239,68,68,0.12); color: #ef4444; border: 1px solid rgba(239,68,68,0.25); }

/* ==========================================================
   PRE-ORDER NOTICE (header)
   ========================================================== */
.preorder-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(252,163,17,0.08);
  border: 1px solid rgba(252,163,17,0.25);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  margin: 1.2rem auto 0;
  max-width: 600px;
  text-align: left;
}
.preorder-notice p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin: 0;
}
.preorder-notice strong { color: rgba(255,255,255,0.88); }
.preorder-badge {
  flex-shrink: 0;
  background: rgba(252,163,17,0.18);
  color: #fca311;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 6px;
  padding: 0.25em 0.65em;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 0.05rem;
}

/* ==========================================================
   PRE-ORDER INFO BOX (inside modal)
   ========================================================== */
.preorder-info-box {
  background: rgba(252,163,17,0.07);
  border: 1px solid rgba(252,163,17,0.22);
  border-left: 3px solid #fca311;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}
.preorder-info-box strong {
  display: block;
  color: #fca311;
  font-size: 0.83rem;
  margin-bottom: 0.3rem;
}

/* ==========================================================
   PAYMENT OPTIONS
   ========================================================== */
.payment-options {
  margin: 1rem 0 0.8rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1rem;
}
.payment-options-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.payment-option { cursor: pointer; }
.payment-option input[type="radio"] { display: none; }
.payment-option-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
}
.payment-option input[type="radio"]:checked + .payment-option-box {
  border-color: rgba(252,163,17,0.5);
  background: rgba(252,163,17,0.08);
  color: #fca311;
}
.payment-icon { font-size: 1.1rem; }
.iban-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  padding: 0.6rem 0.8rem;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}
.iban-info strong { color: rgba(255,255,255,0.85); letter-spacing: 0.03em; }

/* ==========================================================
   ORDER LEGAL NOTE
   ========================================================== */
.order-legal-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.6rem;
  line-height: 1.4;
}

/* ==========================================================
   MOBILE RESPONSIVE — STORE PAGE
   ========================================================== */
@media (max-width: 768px) {
  .store-header { padding: 1.5rem 0 0.5rem; }
  .preorder-notice {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin: 1rem 0 0;
    text-align: left;
  }

  .store-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .category-filters { gap: 0.4rem; }
  .cat { padding: 0.45em 0.9em; font-size: 0.78rem; }

  .product-card { border-radius: 14px; }
  .product-info { padding: 0.75rem; }
  .product-info h3 { font-size: 0.9rem; }
  .price { font-size: 0.95rem !important; }
  .btn-add { padding: 0.6rem 0.8rem; font-size: 0.8rem; }

  /* Cart FAB mobile */
  .cart-fab { bottom: 5.5rem; right: 1rem; width: 50px; height: 50px; font-size: 1.2rem; }

  /* Mini cart mobile */
  .mini-cart {
    width: 100%;
    max-width: 100%;
    right: 0; left: 0;
    bottom: 0;
    border-radius: 16px 16px 0 0;
    top: auto;
  }

  /* Product modal mobile */
  .order-modal-box {
    width: 100%;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    max-height: 92vh;
    overflow-y: auto;
  }
  .order-modal-overlay { align-items: flex-end; padding: 0; }

  .order-modal-product { flex-direction: column; gap: 0.75rem; }
  .order-modal-img { width: 100%; height: 200px; border-radius: 10px; }

  .payment-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .store-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  .order-field-row { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
}

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