:root{
  --ink:#f9e7c7;          /* beige text */
  --bg:#0a0a0a;           /* main black background */
  --muted:#e0c8a5;        /* secondary beige */
  --brand:#1a0e06;        /* deep brown-red */
  --accent:#ff6f1e;       /* bright burnt orange */
  --accent-deep:#b23a27;  /* deep red accent */
  --sand:#1a0e06;         /* dark brown background for contrast */
  --line:rgba(255,111,30,.25); /* orange glow line */
  --radius:16px;
  --maxw:1200px;
}

/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg, #0a0a0a 0%, #1a0e06 100%);
  line-height:1.6;
}
h1,h2,h3,h4{
  font-family:"Crimson Text", serif;
  color:var(--ink);
  line-height:1.2;
}
.container{width:min(92%, var(--maxw)); margin-inline:auto}

/* Header / Nav */
.site-header{
  position:sticky; top:0; z-index:50;
  background:linear-gradient(180deg, #000, #1a0e06);
  border-bottom:1px solid var(--line);
  color:var(--ink);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit}
.brand-mark {
  width: 60px; /* adjust size as needed */
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-text strong{display:block; font-size:1.05rem; color:var(--ink)}
.brand-text small{color:var(--muted); font-size:.8rem}
.nav{display:flex; gap:28px}
.nav a{
  color:var(--ink); text-decoration:none; font-weight:700;
  text-transform:uppercase; letter-spacing:.4px; opacity:.9; transition:color .3s;
}
.nav a:hover, .nav a.active{color:var(--accent)}
.nav-toggle{display:none; background:none; border:0; color:var(--ink); font-size:1.6rem}

/* Hero */
.hero{
  background:
    radial-gradient(1000px 600px at 50% -10%, rgba(255,111,30,.08), transparent 60%),
    linear-gradient(180deg, #0a0a0a, #1a0e06 70%);
  color:var(--ink);
}
.hero-inner{padding: 20px 0; display:grid; place-items:center; text-align:center}
.hero-logo {
  width: clamp(200px, 35vw, 340px);
  margin-bottom: 10px;
  animation: fadeIn 1.2s ease-in-out;
  filter: drop-shadow(0 0 18px rgba(255,111,30,0.3));
}

/* Optional soft entrance */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy h1{
  font-size: clamp(2rem, 6vw, 3.2rem);
  color:var(--ink);
  text-shadow: 0 0 20px rgba(255,111,30,0.35);
}
.hero-copy p{
  max-width:680px; margin:12px auto 0; color:var(--muted);
}
.cta-row{display:flex; gap:12px; justify-content:center; margin-top:16px; flex-wrap:wrap}
.btn{
  display:inline-block; padding:12px 18px; border-radius:999px;
  border:1px solid var(--accent);
  color:#fff;
  background:linear-gradient(180deg, var(--accent), var(--accent-deep));
  font-weight:800; letter-spacing:.3px; text-decoration:none;
  box-shadow:0 10px 24px rgba(255,111,30,.3);
}
.btn:hover{transform:translateY(-1px); background:linear-gradient(180deg, var(--accent-deep), var(--accent))}
.btn-ghost{
  background:transparent;
  color:var(--accent);
  border-color:var(--accent);
}

/* Sections */
.section{padding:56px 0}
.section-muted{background:var(--brand)}
.section-head{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; margin-bottom:12px; color:var(--ink);
}
.link{color:var(--accent); text-decoration:none; font-weight:700}

/* Features */
.features{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:16px}
.feature{
  background:rgba(25,15,10,0.8);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 6px 18px rgba(255,111,30,.1);
  color:var(--ink);
}

/* Products */
.grid.products{display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:16px}
.card{
  background:rgba(25,15,10,0.85);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:0 6px 18px rgba(255,111,30,.08);
  color:var(--ink);
}
.thumb{
  height:140px; border-radius:12px;
  background:
    radial-gradient(80px 60px at 65% 35%, rgba(255,111,30,.25), transparent 55%),
    #1f1a14;
  border:1px solid var(--line);
}

/* Filters */
.filters{display:flex; gap:10px; margin-bottom:14px; flex-wrap:wrap}
.chip{
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(25,15,10,0.7);
  color:var(--muted);
  cursor:pointer;
}
.chip.active, .chip:hover{
  border-color:var(--accent);
  color:var(--accent);
}

/* Page Hero (Inner Pages) */
.page-hero{
  background:linear-gradient(180deg, #0a0a0a, #1a0e06);
  color:var(--ink);
  padding:40px 0;
  border-bottom:1px solid var(--line);
}
.page-hero h1{color:var(--ink)}

/* Orders & Contact Layouts */
.order-grid{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px}
.form label{display:block; font-weight:600; margin-top:8px}
.form input,.form textarea{
  width:100%; margin-top:6px; padding:10px 12px;
  border-radius:10px; border:1px solid var(--line);
  background:#1a120c; color:var(--ink); font:inherit;
}
.note{color:var(--muted); font-size:.9rem}
.contact-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:18px}
.map{display:grid; place-items:center}
.map-fake{
  width:100%; height:260px;
  border:1px dashed var(--line);
  border-radius:12px; color:var(--muted);
  display:grid; place-items:center;
  background:#1a120c;
}
.map-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.map-link:hover {
  color: var(--accent-deep);
  text-shadow: 0 0 6px rgba(255,111,30,0.5);
}
.phone-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.phone-link:hover {
  color: var(--accent-deep);
  text-shadow: 0 0 6px rgba(255,111,30,0.5);
}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  background:#000;
  color:var(--muted);
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:20px 0;
}
.brand.small .brand-mark{width:34px; height:34px}
.market-title {
  font-family: "Crimson Text", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.market-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}
.banner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #0a0a0a;
  padding: 20px 0;
}

.banner-img {
  width: 90%;       /* controls width */
  max-width: 600px; /* optional max size */
  height: auto;      /* keeps proportions */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 111, 30, 0.25);
  object-fit: contain; /* ensures full image is visible */
}
/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0e06 100%);
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 12px 0; /* compact footer height */
}

/* Base layout */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

/* Follow Us row */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* even spacing between text and icons */
  font-size: 0.95rem;
  color: var(--ink);
}

.footer-social span {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.2px;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-icon {
  font-size: 1rem;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: rgba(25, 15, 10, 0.6);
}

.social-icon:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 0 6px rgba(255,111,30,0.4);
}

/* Copyright */
.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.85;
}
/* GET IN TOUCH – CARDS INSIDE IMAGE */
.get-in-touch {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0e06 100%);
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-wrapper {
  position: relative;
  width: min(95%, 1100px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.contact-bg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

/* Overlay with clickable boxes */
.overlay-cards {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 2;
}

.contact-card {
  background: rgba(26, 14, 6, 0.85);
  border-radius: 16px;
  padding: 26px 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45),
              0 0 12px rgba(255, 111, 30, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(255, 111, 30, 0.35);
}

.contact-box {
  display: block;
  color: #f9e7c7;
  text-decoration: none;
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-card h3 {
  color: var(--accent);
  font-family: "Crimson Text", serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-card p {
  color: #f9e7c7;
  font-size: 1rem;
}
/* ORDERS HERO SECTION */
.orders-hero {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0e06 100%);
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  align-items: center;
}

.orders-hero .container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  width: 95%;
}

.orders-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.orders-img:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 36px rgba(255, 111, 30, 0.35);
}
.from-ocean {
  background-color: #1a0f07;
  padding: 60px 20px;
  text-align: center;
  color: #f4e3c1;
}

.from-ocean h2 {
  font-family: 'Georgia', serif;
  color: #f4e3c1;
  font-size: 2rem;
  margin-bottom: 40px;
}

.ocean-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px; /* smaller gap between cards */
}

.ocean-card {
  position: relative;
  width: 220px;      /* you can adjust width */
  height: 220px;     /* and height as needed */
  border-radius: 12px;
  overflow: hidden;
  background-color: #24150b;
  border: 1px solid #3b2415;
  transition: all 0.3s ease;
}

.ocean-card img {
  width: 100%;
  height: 100%;
  object-fit: fill; /* makes image fill container */
}

.ocean-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

/* Optional: if you want to overlay text later */
.ocean-card h3,
.ocean-card p {
  display: none; /* hides text */
}
.connect-section {
  background-color: #1a0f07; /* match your dark theme */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.connect-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* ensures it stacks on small screens */
  justify-content: center;
  max-width: 1000px;
}

.connect-card {
  position: relative;
  width: 45%;
  min-width: 300px;
  height: 250px;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.connect-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.connect-card:hover img {
  filter: brightness(1);
  transform: scale(1.05);
  cursor: pointer;
}
.products .card {
  background-color: #1a0f07; /* keep your dark theme */
  border: 1px solid #3b2415;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.products .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.products .thumb {
  width: 100%;
  height: 180px; /* Adjust this for size consistency */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 10px;
}

.products .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes images fill area nicely */
  border-radius: 8px;
}

.products h4 {
  color: #f4e3c1;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}


@media (max-width: 768px) {
  .connect-card {
    width: 100%;
  }
}


/* Responsive */
@media (max-width: 240px) {
  .orders-hero {
    padding: 40px 0;
  }
  .orders-img {
    max-width: 90%;
  }
}

.hero--coastal {
  background: radial-gradient(circle at top, #1a1a1a, #0e0e0f);
  color: #fff;
  
  position: relative;
}

.hero--coastal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#ffb84d 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.15;
  pointer-events: none;
}

.orders-hero .container {
  display: block !important;
}

.orders-hero-img-wrapper {
  text-align: center;
  margin-bottom: 1.25rem;
}

.orders-img {
  max-width: 500px;
  width: 100%;
}
/* ========== ORDERS PAGE LAYOUT ========== */

body[data-page="orders"] .section .container {
  max-width: 1100px;
}

body[data-page="orders"] .order-grid {
  display: block;
}

body[data-page="orders"] .order-grid .card {
  width: 100%;
}

/* Hero layout */
.orders-hero .container {
  display: block;
}

.orders-hero-img-wrapper {
  text-align: center;
  margin-bottom: 1.25rem;
}

.orders-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Hero notice card */
.orders-notice {
  margin-top: 1.5rem;
  background: #111827;
  color: #f9fafb;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(249, 115, 22, 0.5);
}

.orders-notice h1 {
  margin-bottom: 0.5rem;
}

.orders-notice ul {
  margin: 0.75rem 0 0.75rem 1.1rem;
  padding: 0;
  font-size: 0.95rem;
}

.orders-notice li {
  margin-bottom: 0.25rem;
}

.orders-price-note {
  font-size: 0.85rem;
  color: #fde68a;
  margin-top: 0.5rem;
}

/* Basic form layout helpers */
.order-intro-text {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.form-section-title {
  margin-top: 1.3rem;
  margin-bottom: 0.35rem;
  font-size: 1.6rem;
}

.form-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.3rem;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* Responsive tweaks */
@media (max-width: 720px) {
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ========== PICKUP DATE / TIME GRID ========== */

.pickup-table {
  border: 1px solid #3b3b40;
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 0.9rem 0 1.1rem;
  background: #050509;
}

.pickup-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr));
  border-top: 1px solid #27272f;
}

.pickup-row:first-child {
  border-top: none;
}

.pickup-label {
  padding: 0.7rem 0.9rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
  border-right: 1px solid #27272f;
  display: flex;
  align-items: center;
}

.pickup-label .required {
  color: #f97316;
  margin-left: 0.2rem;
}

/* Option cells */
.pickup-option {
  border-right: 1px solid #27272f;
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.pickup-option:last-child {
  border-right: none;
}

/* Hide native radios */
.pickup-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pickup-box {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.pickup-box-square {
  width: 16px;
  height: 16px;
  border: 1px solid #e5e7eb;
  box-sizing: border-box;
}

.pickup-box-text {
  font-weight: 600;
}

/* Checked state */
.pickup-option input[type="radio"]:checked + .pickup-box .pickup-box-square {
  background: #f97316;
  border-color: #f97316;
}

/* Mobile pickup grid */
@media (max-width: 900px) {
  .pickup-row {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
    row-gap: 0.25rem;
  }
}

@media (max-width: 640px) {
  .pickup-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .pickup-label {
    border-right: none;
    border-bottom: 1px solid #27272f;
  }

  .pickup-option {
    border-right: none;
    border-bottom: 1px solid #27272f;
  }

  .pickup-row:last-child .pickup-option:last-child {
    border-bottom: none;
  }
}

/* ========== ORDER TABLE & ROWS ========== */

.order-items-table {
  border: 1px solid #3b3b40;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #0b0b0f;
  margin-top: 0.5rem;
}

.order-items-header {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a3a3b0;
  background: #111827;
  border-bottom: 1px solid #3b3b40;
}

.order-items {
  display: flex;
  flex-direction: column;
}

/* Category heading row */
.order-category-row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  padding: 0.4rem 0.9rem;
  background: #050509;
  border-bottom: 1px solid #27272f;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f97316;
}

/* Product rows */
.order-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  gap: 0.6rem;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid #27272f;
  color: #f9fafb;
}

.order-item-row:last-child {
  border-bottom: none;
}

/* Left column: product info */
.order-item-main {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.order-item-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.order-item-unit {
  font-size: 0.8rem;
  color: #a1a1aa;
}

/* Middle column: quantity control (spinner + input + unit) */
.order-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Spinner column */
.qty-spinner {
  display: inline;            /* flex instead of inline-flex is fine here */
  align-items: center;
  gap: 6px;
}


.qty-btn {
  border: 1px solid #3b3b40;
  background: #111111;
  color: #f9fafb;
  padding: 4px 8px;
  font-size: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}


.qty-btn:first-child {
  border-bottom: 1px solid #3b3b40;
}

.qty-btn:hover {
  background: #1f2933;
  box-shadow: 0 0 6px rgba(255, 111, 30, 0.4);
  transform: translateY(-1px);
}

.qty-input {
  flex: 1 1 70px;           /* <-- key line: can grow, base size ~70px */
  min-width: 60px;          /* don’t get too tiny */
  max-width: 110px;         /* optional: don’t get too huge */

  height: 40px;
  line-height: 40px;
  font-size: 1rem;
  text-align: center;

  border: 1px solid #3b3b40;
  background: #050509;
  color: #f9fafb;
  padding: 0 8px;
  border-radius: 6px;
  box-sizing: border-box;
  
}


/* Unit label (KGS / DOZEN / EACH) */
.qty-unit {
  font-size: 0.8rem;
  color: #e5e7eb;
}

/* Right column: estimated price */
.order-item-estimate {
  text-align: right;
  font-size: 0.86rem;
  white-space: nowrap;
}

.order-item-estimate .est-label {
  opacity: 0.7;
  margin-right: 0.15rem;
}

.order-item-estimate .line-estimate {
  font-weight: 700;
  color: #f97316;
}

/* Total + min note */
.order-total {
  margin-top: 0.7rem;
  font-size: 0.9rem;
}

#orderEstimatedTotal {
  font-size: 1.05rem;
  color: #f97316;
}

.min-order-note {
  font-size: 0.8rem;
  margin-top: 0.25rem;
  color: #f97316;
}

.min-order-note.ok {
  color: #22c55e;
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  max-width: 100%;
}

.order-items-table, .pickup-table {
  overflow-x: auto;
}
/* --- Estimated Total Row --- */
.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111827;
  border: 1px solid rgba(255, 111, 30, 0.4);
  padding: 14px 16px;
  border-radius: 12px;
  margin-top: 14px;
  box-shadow: 0 0 14px rgba(255, 111, 30, 0.15);
}

.order-total-label {
  color: #f9e7c7;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.order-total-box {
  background: #1a0f07;
  padding: 8px 14px;
  border-radius: 8px;
  color: #f97316;
  font-size: 1.1rem;
  font-weight: 800;
  border: 1px solid rgba(255, 111, 30, 0.5);
  min-width: 100px;
  text-align: right;
}

.order-total-note {
  font-size: 0.85rem;
  color: #e5e7eb;
  opacity: 0.8;
  margin-top: 8px;
}
.confirm-group {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.confirm-check {
  display: flex;
  align-items: center;   /* makes checkbox & text align side-by-side */
  gap: 10px;             /* space between checkbox and text */
  font-size: 0.9rem;
  color: #e5e7eb;
  padding: 6px 0;
}

.confirm-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;           
  accent-color: #f97316; /* orange tick */
  flex-shrink: 0;        /* prevents shrinking */
}

.confirm-check span {
  line-height: 1.4;
}



/* Table responsive tweaks */
@media (max-width: 720px) {
  .order-items-header {
    display: none;
  }

  .order-category-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .order-item-row {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    grid-template-rows: auto auto;
    row-gap: 0.35rem;
  }

  .order-item-estimate {
    grid-column: 2 / 3;
    text-align: right;
    font-size: 0.82rem;
  }
}


/* Responsive behavior */
@media (max-width: 900px) {
  .overlay-cards {
    position: static;
    transform: none;
    margin-top: 20px;
    align-items: center;
  }
  .contact-wrapper {
    width: 95%;
  }
  .contact-card {
    width: 85%;
    max-width: 320px;
  }
}

/* ✅ Responsive adjustments */
@media (max-width: 600px) {
  .footer-inner {
    gap: 6px;
    padding: 6px 0;
  }

  .footer-social {
    flex-direction: column;
    gap: 4px;
  }

  .social-links {
    gap: 6px;
  }

  .social-icon {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  .footer-copy {
    font-size: 0.8rem;
  }
}


/* Responsive */
@media (max-width: 980px){
  .nav{
    position:fixed; left:0; right:0; top:58px;
    background:#000;
    display:none; flex-direction:column;
    padding:12px 24px; gap:12px;
  }
  .nav.open{display:flex}
  .nav-toggle{display:inline-flex}
  .features{grid-template-columns:1fr}
  .grid.products{grid-template-columns:repeat(2,1fr)}
  .order-grid,.contact-grid{grid-template-columns:1fr}
}
@media (max-width: 520px){
  .grid.products{grid-template-columns:1fr}
}
