
/* ============================================================
 🖤 SENPAI’S STASH — LIGHT MINIMALIST BLACK & WHITE THEME
============================================================ */

/* 🎨 Root Variables */
:root {
  --bg: #f9fafb;
  --card: #ffffff;
  --border: #e5e7eb;
  --text: #111111;
  --muted: #6b7280;
  --primary: #bfbfbf;   /* Header colour */
  --accent: #ffffff;    /* White */
  --success: #16a34a;
  --danger: #ef4444;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

html, body {
  font-family: "Inter", system-ui, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ============================================================
🧭 HEADER — Clean Black & White Translucent Layout
   🖤 Left: Logo | 🤍 Right: Nav + Cart
============================================================ */

header.site,
.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.75); /* translucent black */
  color: #ffffff;
  padding: 14px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 🪶 Darker variant when scrolled */
header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
}

/* ============================================================
🎯 INNER LAYOUT
============================================================ */
header.site .header-inner,
.main-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between; /* ✅ pushes nav to right side */
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
🎨 LOGO AREA (LEFT SIDE)
============================================================ */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.brand .logo {
  height: 42px;
  width: auto;
  display: block;
  transition: transform 0.25s ease, filter 0.3s ease;
  filter: brightness(1.1);
}

.brand .logo:hover {
  transform: scale(1.05);
  filter: brightness(1.25);
}

/* ============================================================
🧭 NAVIGATION + CART AREA (RIGHT SIDE)
============================================================ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 🖱 Navigation Links */
.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: color 0.25s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: #e5e7eb;
  transform: translateY(-1px);
}

/* ============================================================
🛒 CART LINK & BADGE
============================================================ */
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cart-link:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* 🔢 Cart Badge */
.cart-count {
  font-size: 13px;
  font-weight: 700;
  background: #000;
  color: #fff;
  border-radius: 50%;
  padding: 3px 7px;
  line-height: 1;
  position: relative;
  top: -2px;
  transition: transform 0.2s ease;
}

/* ✨ Pop animation when item is added */
.cart-count.pop {
  animation: popBadge 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popBadge {
  0% { transform: scale(1); }
  30% { transform: scale(1.4); }
  60% { transform: scale(0.9); }
  80% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ============================================================
📱 RESPONSIVE HEADER
============================================================ */
@media (max-width: 600px) {
  .brand .logo {
    height: 36px;
  }

  .nav-links {
    gap: 12px;
  }

  .cart-link {
    font-size: 18px;
  }

  .cart-count {
    font-size: 12px;
    padding: 2px 6px;
  }
}


/* ============================================================
 🪄 FLOATING “+1” TEXT (when item added)
============================================================ */
.floating-text {
  position: absolute;
  right: 0;
  top: -10px;
  color: #22c55e;
  font-weight: 700;
  animation: floatUp 0.8s ease-out forwards;
  font-size: 14px;
  pointer-events: none;
}
@keyframes floatUp {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); }
}


/* ============================================================
🔍 SEARCH BAR — Centered Layout
============================================================ */
.search-row {
  display: flex;
  justify-content: center;        /* Centers the search bar */
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px auto 30px auto;
  max-width: 1200px;
  text-align: center;
}

.search-row input[type="text"],
.search-row select {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  min-width: 220px;
  outline: none;
  box-shadow: var(--shadow);
  font-size: 14px;
}

.search-row button {
  background: var(--primary);
  color: var(--accent);
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}

.search-row button:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

/* ============================================================
🛍️ PRODUCTS HEADING — Centered + Styled
============================================================ */
.container h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  position: relative;
}

/* Optional underline accent (can remove if you want plain text) */
.container h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #000;
  margin: 6px auto 0 auto;
  border-radius: 2px;
}


/* ============================================================
🛍️ PRODUCTS GRID — Clean Uniform Layout
============================================================ */

/* 🧱 Grid Container */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  justify-content: center;
  justify-items: center;
  align-items: start;
  margin: 0 auto;
  max-width: 1300px; /* keeps content centered */
  padding: 20px;
}

/* 🪄 Product Card */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 260px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* 🖼️ Product Image Area */
.card .pic {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .pic img {
  transform: scale(1.05);
}

/* 📦 Product Info */
.card .body {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  gap: 6px;
}

/* 💰 Price */
.card .price {
  font-weight: 800;
  font-size: 15px;
  color: #000;
}

/* 🏷️ Title */
.card .title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
  line-height: 1.3;
  color: #111;
}

/* 🧩 Category */
.card .category {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}

/* 🟢 Stock Badge */
.badge {
  display: inline-block;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
  margin-top: 2px;
}

.badge:not(.out) {
  background: #ecfdf5;
  color: #16a34a;
  border: 1px solid #d1fae5;
}

.badge.out {
  background: #fee2e2;
  color: #b91c1c;
  border-color: #fecaca;
  opacity: 0.85;
}

/* 🛒 Add Button */
.actions {
  margin-top: 10px;
}

.btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.25s ease;
}

.btn-cart:hover {
  background: #333;
  transform: scale(1.05);
}

/* ✅ Added Effect */
.btn-cart.added {
  background-color: #22c55e !important;
  color: #fff !important;
  transform: scale(1.05);
}
.btn-cart.added i {
  margin-right: 5px;
}

/* 📱 Responsive Layout */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 90%;
  }
}

/* ============================================================
 🧠 BUTTONS — Add to Cart & States
============================================================ */
.actions {
  margin-top: 8px;
}
.btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s, transform 0.2s;
}

/* 🖱 Hover Lift */
.btn-cart:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ✅ Added! Effect — Auto revert after 1s */
.btn-cart.added {
  background-color: #22c55e !important;
  color: #fff !important;
  transform: scale(1.05);
  transition: background-color 0.6s ease, transform 0.3s ease;
}
.btn-cart.added i {
  margin-right: 5px;
}
.btn-cart.added.revert {
  background-color: #000 !important;
  transform: scale(1);
}

/* 🗑️ Red Trash Remove Button */
.btn-remove {
  background: #ef4444; /* bright red */
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  font-size: 18px;
  transition: background 0.2s, transform 0.2s;
}

.btn-remove:hover {
  background: #dc2626; /* darker red on hover */
  transform: scale(1.05);
}

.btn-remove wa-icon {
  font-size: 18px;
  color: #fff;
}


/* ============================================================
 🍞 TOAST NOTIFICATIONS
============================================================ */
.toast {
  position: fixed;
  bottom: 20px;
  right: -300px;
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.toast.show {
  right: 20px;
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
 🛒 CART PAGE — Minimal Centered Layout
============================================================ */
.cart-container {
  max-width: 950px; /* perfect balance for centered cart */
  margin: 40px auto;
  padding: 25px 30px;
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* 🏷️ Cart Title */
.cart-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #111;
}

.cart-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #000;
  display: block;
  margin: 6px auto 0;
  border-radius: 2px;
}

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

/* 🧱 Single Cart Item */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.cart-item:hover {
  transform: translateY(-2px);
}

/* 🖼️ Product Image */
.cart-image img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

/* 🧩 Info Text */
.cart-info {
  flex: 1;
  margin-left: 16px;
  font-size: 14px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-info strong {
  font-size: 15px;
  margin-bottom: 3px;
  color: #000;
}

/* ➕➖ Buttons + Remove */
.cart-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-small {
  background: #000;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s;
}

.btn-small:hover {
  background: #333;
}

.btn-remove {
  background: var(--danger);
  color: #fff;
}

.btn-remove:hover {
  background: #dc2626;
}

/* ============================================================
💵 CART FOOTER — Improved Layout + Accent Checkout
============================================================ */
.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* aligns total above buttons */
  margin-top: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-footer .btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Left side - Continue Shopping button */
.cart-footer .btn-back {
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: 0.25s ease;
}
.cart-footer .btn-back:hover {
  background: #333;
  transform: translateY(-1px);
}
.cart-footer .btn-back::before {
  content: "←";
  margin-right: 6px;
}

/* Right side layout */
.summary-right {
  display: flex;
  flex-direction: column; /* ✅ total above buttons */
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}

/* Buttons inside summary */
.summary-right .btn-row {
  display: flex;
  gap: 10px;
}

/* Buttons (Clear & Checkout) */
.btn-small {
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
}
.btn-small:hover {
  background: #333;
  transform: translateY(-1px);
}

/* 💚 Subtle Green Accent for Checkout */
.btn-checkout {
  background: #16a34a;
  color: #fff;
}
.btn-checkout:hover {
  background: #15803d;
}

/* 📱 Responsive layout */
@media (max-width: 768px) {
  .cart-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .summary-right {
    align-items: flex-start;
  }
}

.upload-slip {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.upload-slip label {
  font-weight: 600;
  font-size: 14px;
  color: #111;
}

.upload-slip input[type="file"] {
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  cursor: pointer;
}


/* Responsive */
@media (max-width: 700px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-info {
    margin-left: 0;
    margin-top: 10px;
  }

  .cart-actions {
    align-self: flex-end;
  }
}

/* ============================================================
 ⚙️ LOADER
============================================================ */
.loader {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  z-index: 100;
}
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.06);
  border-top: 4px solid #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
 📱 RESPONSIVE
============================================================ */
@media (max-width: 600px) {
  .brand .logo { height: 34px; }
  .nav-links { gap: 12px; }
  .cart-item { flex-direction: column; align-items: flex-start; }
}

/* 🔥 SENPAI'S SHARINGAN LOADER 🔥 */
/* =============================== */

/* Loader Container — Center & Fade */
.sharingan-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.sharingan-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Sharingan Core */
.sharingon {
  width: 6em;
  height: 6em;
  background-color: red;
  border: 6px solid black;
  border-radius: 50%;
  animation: rot 1.2s linear infinite;
  position: relative;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

/* Inner Ring */
.ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.5em;
  height: 3.5em;
  border: 4px solid rgba(110, 13, 13, 0.5);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* Tomoe shapes */
.to, .circle {
  position: absolute;
  border-radius: 50%;
}

.to {
  width: 0.9em;
  height: 0.9em;
  background-color: black;
}

.to:nth-child(1) {
  top: -0.5em;
  left: 50%;
  transform: translateX(-40%);
}

.to::before {
  content: "";
  position: absolute;
  top: -0.5em;
  right: -0.2em;
  width: 1.1em;
  height: 0.9em;
  border-left: 16px solid black;
  border-radius: 100% 0 0;
}

.to:nth-child(2) {
  bottom: 0.5em;
  left: -0.35em;
  transform: rotate(-120deg);
}

.to:nth-child(3) {
  bottom: 0.5em;
  right: -0.35em;
  transform: rotate(120deg);
}

/* Central Glow */
.circle {
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  transform: translate(-50%, -50%);
  background-color: black;
  box-shadow: 0 0 20px 1px rgba(0,0,0,0.8);
}

/* Rotation */
@keyframes rot {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================================
 🦶 FOOTER — Centered & Sticky Layout (Fixed Version)
============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 24px 16px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  width: 100%;
  margin-top: 60px;
  box-sizing: border-box;
}

/* ✅ Ensure footer stays below content */
body {
  display: block;
  min-height: 100vh;
}

/* Optional: maintain consistent spacing */
main.container {
  min-height: calc(100vh - 200px);
}

/* Center footer content */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-icons {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
}

.footer-icon {
  font-size: 18px;
  color: #000;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-icon:hover {
  color: #333;
  transform: scale(1.2);
}


/* ============================================================
 🌄 HERO BANNER — Full Responsive Version
   ⚙️ For index.html hero section
============================================================ */

/* 🖼️ Hero Container */
.hero {
  flex: none !important;
  width: 100%;
  min-height: 420px; /* Default height on large screens */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

/* 🌫️ Gradient Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

/* 🧠 Hero Text Layer */
.hero * {
  position: relative;
  z-index: 2;
}

/* ✨ Title */
.hero h1 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* 💬 Subtitle / Tagline */
.hero p {
  color: #e5e7eb;
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* 🛒 Hero Button */
.hero .btn-primary {
  margin-top: 24px;
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
  background: #333;
  transform: translateY(-3px);
}

/* ============================================================
 📱 Responsive Breakpoints
============================================================ */

/* 🖥️ Medium Screens (Tablets) */
@media (max-width: 1024px) {
  .hero {
    min-height: 360px;
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .btn-primary {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

/* 📱 Small Screens (Phones) */
@media (max-width: 600px) {
  .hero {
    min-height: 300px;
    padding: 40px 16px;
    background-position: top center;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
    max-width: 90%;
  }

  .hero .btn-primary {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}

/* 📱 Extra Small Screens (Tiny devices) */
@media (max-width: 400px) {
  .hero {
    min-height: 280px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .hero .btn-primary {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

/* ============================================================
 💳 CHECKOUT FORM — Final Optimized Layout
============================================================ */
.checkout-section {
  margin-top: 40px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.checkout-section h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #111;
  text-align: center;
}

/* ✅ Grid-based responsive layout */
.checkout-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px 24px;
  align-items: start;
}

.checkout-form > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-form label {
  font-weight: 600;
  font-size: 14px;
  color: #111;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  background: #f9fafb;
  transition: 0.2s;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: #000;
  background: #fff;
  outline: none;
}

/* 🏦 Bank Transfer Options (full width section) */
#bankOptions {
  grid-column: span 2;
  background: #f9fafb;
  border: 1px solid var(--border);
  padding: 16px 18px;
  border-radius: 10px;
  margin-top: 8px;
}

#bankOptions label {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  #bankOptions {
    grid-column: span 1;
  }
}

/* Bank details inside box */
.bank-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bank-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.bank-item img {
  width: 38px;
  height: auto;
  border-radius: 4px;
  margin-right: 8px;
}

.bank-item p {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 600;
  color: #111;
}

/* Copy Button */
.btn-copy {
  background: #000;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-copy:hover {
  background: #333;
  transform: scale(1.05);
}

/* 📱 Responsive for small devices */
@media (max-width: 600px) {
  .bank-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .btn-copy {
    align-self: flex-end;
  }
}
/* ============================================================
🧾 FIX — SEND ORDER BUTTON ALIGNMENT & STYLE
============================================================ */
.checkout-section .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  width: 100%;
  max-width: 200px;
  margin: 10px auto 0 auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.checkout-section .btn-submit:hover {
  background: #333;
  transform: translateY(-1px);
}

/* Center button row */
.checkout-section .form-actions {
  grid-column: span 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .checkout-section .form-actions {
    grid-column: span 1;
    justify-content: center;
  }
}
