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

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
}

@media (max-width: 600px) {
  .nav-container {
    padding: 10px 15px;
  }

  .brand-wordmark {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
}

:root {
  color-scheme: dark;
  --bg: #0b0c10;
  --panel: #11141c;
  --panel-2: #171b25;
  --ink: #ffffff;
  --muted: #a9b0bf;
  --line: rgba(255, 215, 0, 0.18);
  --orange: #ff4500;
  --gold: #ffd700;
  --whatsapp: #25d366;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --glass: rgba(17, 20, 28, 0.8);
  --glass-border: rgba(255, 215, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

::selection {
  background: var(--gold);
  color: #000;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--panel-2);
  border-radius: 10px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-bottom: 86px;
  color: var(--ink);
  font-family: Poppins, Montserrat, Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(11, 12, 16, 0.92), rgba(11, 12, 16, 0.98)),
    radial-gradient(circle at 18% 10%, rgba(255, 69, 0, 0.18), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(255, 215, 0, 0.12), transparent 26rem),
    var(--bg);
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

#sparkCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.site-header,
main,
footer {
  position: relative;
  z-index: 1;
}

.compliance-bar {
  background: #11141c;
  color: var(--gold);
  padding: 6px 0;
  font-size: 0.65rem;
  font-weight: 500;
  z-index: 2000;
  position: relative;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  letter-spacing: 0.03em;
  overflow: hidden;
  white-space: nowrap;
}

.compliance-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding-left: 100%;
}

.compliance-bar:hover .compliance-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.compliance-bar span {
  display: inline-block;
  opacity: 0.85;
}

.compliance-bar span {
  display: inline-block;
  max-width: 900px;
  opacity: 0.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  padding: 20px 0;
  /* Extra breathing room */
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav,
main,
footer {
  width: min(1280px, calc(100% - 28px));
  margin: 0 auto;
}

main {
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.1vw, 22px);
  position: relative;
  text-decoration: none;
  min-width: 0;
}

.brand::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.brand:hover::before {
  opacity: 1;
}

.brand-logo {
  width: auto;
  height: auto;
  max-height: clamp(116px, 8.8vw, 148px);
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  mix-blend-mode: normal;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.4));
  transition: all 0.3s ease;
  padding: 0;
}

.brand-wordmark {
  display: block;
  font-family: Cinzel, Montserrat, Georgia, serif;
  font-size: clamp(2.65rem, 3.65vw, 4.35rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.015em;
  color: var(--gold);
  background: linear-gradient(180deg, #fff7ba 0%, #ffd84f 36%, #c77b12 68%, #6e3100 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.65px rgba(38, 18, 0, 0.92);
  filter:
    drop-shadow(0 2px 0 rgba(55, 24, 0, 0.95)) drop-shadow(0 0 12px rgba(255, 215, 0, 0.26));
  white-space: nowrap;
  transform: none;
  transform-origin: left center;
}

.brand-text-image {
  height: clamp(40px, 5vw, 60px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.26));
  transition: all 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.5));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-2px);
}

.nav-whatsapp {
  color: #25d366 !important;
  border-color: rgba(37, 211, 102, 0.2) !important;
}

.nav-whatsapp svg {
  fill: #25d366 !important;
}

.nav-cart-btn {
  position: relative;
}

.cart-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-widget {
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.cart-widget>* {
  pointer-events: auto;
}

.cart-toggle {
  width: 68px;
  height: 68px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
}

.cart-toggle svg {
  width: 32px;
  height: 32px;
}

.cart-toggle:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cart-popover {
  background: #11141c;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  width: 280px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.cart-popover.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.popover-header {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.popover-stats {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.popover-stat {
  display: flex;
  flex-direction: column;
}

.popover-stat span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.popover-stat strong {
  font-size: 1.25rem;
  color: #fff;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: clamp(380px, 38vw, 520px);
  margin: 18px auto 30px;
  border-radius: 20px;
  /* Enhanced rounded look */
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider:hover {
  transform: translateY(-5px) scale(1.002);
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg-blur {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(0.4);
  z-index: -2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.slide-bg.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 1;
}



.slide-content {
  max-width: 800px;
  width: 100%;
}

.hero-slider h1 {
  margin: 0 0 20px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
}

.highlight {
  color: var(--gold);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.slide-subcopy {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Staggered Animations */
.slide.active .eyebrow,
.slide.active h1,
.slide.active .slide-subcopy {
  opacity: 1;
}

.slide.active .hero-actions {
  animation: heroIn 0.8s cubic-bezier(0.2, 1, 0.3, 1) both 0.8s;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 25px;
  border-radius: 5px;
}

.notice,
.toolbar,
.category-rail,
.product-card,
.basket-panel,
.form-panel,
.contact-section,
.trust-strip {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(23, 27, 37, 0.94), rgba(17, 20, 28, 0.98));
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  cursor: pointer;
  font-family: Montserrat, Poppins, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button.primary,
.submit-button {
  color: #fff;
  background: var(--orange);
}

.button.primary:hover,
.submit-button:hover,
.floating-cart:hover {
  box-shadow: 0 0 0 2px var(--gold), 0 0 26px rgba(255, 215, 0, 0.5);
}

.button.primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

.button.added {
  background: var(--whatsapp) !important;
  border-color: var(--whatsapp);
  color: #fff;
}

.button.secondary,
.button.ghost {
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--line);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 32px;
}

.hero-panel span {
  width: fit-content;
  border-radius: 8px;
  padding: 8px 12px;
  color: #0b0c10;
  background: var(--gold);
  font-weight: 800;
}

.hero-panel strong {
  color: #fff;
  font-family: Montserrat, Poppins, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.notice {
  margin-bottom: 18px;
  padding: 11px 14px;
  border-left: 4px solid var(--orange);
  font-size: 0.9rem;
  box-shadow: none;
}

.notice strong {
  color: var(--gold);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 12px;
  margin-bottom: 16px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 30px;
  gap: 24px;
  margin: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-item strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.search-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-wrap::before {
  content: "🔍";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  opacity: 0.5;
  pointer-events: none;
}

.search-wrap input {
  width: 100%;
  padding-left: 40px !important;
}

.filters {
  display: flex;
  gap: 12px;
}

.filters select {
  min-width: 140px;
  background-color: var(--panel-2);
}

label {
  display: block;
  margin-bottom: 7px;
  color: #f5f5f5;
  font-size: 0.84rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0f1118;
  color: #fff;
  padding: 12px 13px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.14);
}

.category-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0 20px;
  margin-bottom: 20px;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
}

.category-rail::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.category-pill {
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.category-pill.active,
.category-pill:hover {
  color: #0b0c10;
  background: var(--gold);
}

.products-section,
.enquiry-section {
  padding: 22px 0 46px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-heading h2,
.section-heading h1 {
  margin: 0;
  font-family: Montserrat, Poppins, sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading>p {
  color: var(--muted);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 5;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.badge-trending {
  background: var(--gold);
  color: #000;
}

.badge-offer {
  background: #ff4500;
  color: #fff;
}

.testimonials-section {
  padding: 60px 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.testimonial-card {
  background: var(--panel-2);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
  position: relative;
}

.testimonial-card p {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-card strong {
  color: var(--gold);
  font-size: 0.9rem;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border-color: var(--gold);
}

.product-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--gold);
  background:
    radial-gradient(circle at center, rgba(255, 69, 0, 0.28), transparent 52%),
    #090a0e;
  border: 1px solid rgba(255, 215, 0, 0.14);
  overflow: hidden;
}

.product-visual svg {
  width: 58px;
  height: 58px;
}

.product-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  /* Global horizontal scroll protection */
}

.product-card h3 {
  margin: 0;
  font-family: Montserrat, Poppins, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}


.tag,
.unit,
.note {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--gold);
}

.product-note {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.88rem;
}

.product-info-trigger {
  cursor: pointer;
  position: relative;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.price-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.market-price {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500;
  opacity: 0.7;
}

.price {
  color: var(--gold);
  font-family: Montserrat, Poppins, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4500;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 900;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
}

.product-bottom {
  display: grid;
  gap: 12px;
}

.qty-row,
.stepper {
  display: grid;
  gap: 8px;
}

.stepper {
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
}

.stepper-value {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f1118;
  font-weight: 800;
}

.stepper button,
.small-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f1118;
  color: var(--gold);
  cursor: pointer;
  font-weight: 900;
}

.stepper button {
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
}

/* Compact Stepper Style (Shared between Cart and Product Page) */
.qty-stepper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 2px;
  width: fit-content;
}

.qty-stepper button {
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
  background: none;
  border: none;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}

.qty-val {
  min-width: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 700;
}

.dummy-block {}

.stepper button:hover,
.small-button:hover {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.is-out-of-stock {
  opacity: 0.7;
  filter: grayscale(0.8);
}

.is-out-of-stock .qty-row {
  pointer-events: none;
}

.out-of-stock-label {
  background: #374151;
  color: #9ca3af;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px dashed #4b5563;
  width: 100%;
}

.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
  align-items: start;
}

.basket-panel,
.form-panel,
.contact-section {
  padding: 18px;
}

.basket-items {
  display: grid;
  gap: 10px;
  min-height: 130px;
}

.empty {
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 18px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
}

.basket-row {
  display: grid;
  grid-template-columns: 1fr 134px auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f1118;
}

.basket-row strong,
.basket-row span {
  display: block;
}

.basket-row span {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 2px;
}

.basket-qty {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  gap: 6px;
  align-items: center;
}

.basket-qty strong {
  text-align: center;
}

.small-button {
  width: 34px;
  height: 34px;
}

.savings-row {
  display: flex;
  justify-content: space-between;
  color: var(--whatsapp);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.final-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
}

.basket-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.basket-total span {
  color: var(--muted);
  font-weight: 700;
}

.basket-total strong {
  color: var(--gold);
  font-size: 1.55rem;
}

.form-panel {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.submit-button {
  width: 100%;
  min-height: 52px;
  font-size: 16px;
  font-weight: 700;
}

.message-preview {
  display: none;
  white-space: pre-wrap;
  border-radius: 8px;
  padding: 14px;
  background: #0f1118;
  color: var(--muted);
  line-height: 1.5;
}

.message-preview.visible {
  display: block;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  margin: 20px 0 54px;
}

.contact-section h2 {
  margin: 0 0 12px;
  font-family: Montserrat, Poppins, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  text-transform: uppercase;
}

.contact-section p {
  max-width: 620px;
  margin: 0;
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

address a {
  color: var(--gold);
}

footer {
  padding: 24px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.cart-widget {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-widget.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cart-toggle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ffd700, #d4af37);
  /* Rich Gold Gradient */
  color: #0b0c10;
  /* Deep Black Icon */
  border: 2px solid #0b0c10;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35), inset 0 2px 4px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.cart-toggle:hover {
  transform: scale(1.1);
}

.cart-toggle svg {
  width: 28px;
  height: 28px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--orange);
  color: #fff;
  min-width: 22px;
  height: 22px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid var(--panel-2);
}

.cart-popover {
  background: var(--panel-2);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 16px;
  width: 260px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  gap: 12px;
  animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#popoverAction {
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%) !important;
  border: none !important;
  border-radius: 50px !important;
  color: #000 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 12px 24px !important;
}

#popoverAction:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5) !important;
}


@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cart-popover.active {
  display: flex;
}

.popover-header {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.popover-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.popover-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popover-stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

.popover-stat strong {
  font-size: 1rem;
  color: #fff;
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #11141c 0%, #25d366 100%);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: none !important;
}

.floating-whatsapp:hover {
  transform: scale(1.15);
}

.cart-toggle:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5), inset 0 2px 6px rgba(255, 255, 255, 0.5);
}

.cart-toggle.pop {
  animation: cartPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes cartPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.cart-sparks {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 5px var(--gold);
}

.cart-toggle.pop .spark:nth-child(1) {
  animation: sparkFly1 0.6s ease-out forwards;
}

.cart-toggle.pop .spark:nth-child(2) {
  animation: sparkFly2 0.6s ease-out 0.1s forwards;
}

.cart-toggle.pop .spark:nth-child(3) {
  animation: sparkFly3 0.6s ease-out 0.2s forwards;
}

@keyframes sparkFly1 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-20px, -30px) scale(0);
    opacity: 0;
  }
}

@keyframes sparkFly2 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(0px, -40px) scale(0);
    opacity: 0;
  }
}

@keyframes sparkFly3 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(20px, -30px) scale(0);
    opacity: 0;
  }
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #ffffff !important;
  filter: none !important;
}

.social-links,
.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 15px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-icon:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.social-icon.instagram:hover {
  color: #E1306C;
  box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
  border-color: #E1306C;
}

.social-icon.youtube:hover {
  color: #FF0000;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
  border-color: #FF0000;
}

.social-icon.facebook:hover {
  color: #1877F2;
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
  border-color: #1877F2;
}

.admin-page {
  padding-bottom: 40px;
}

.admin-hero,
.admin-panel,
.admin-stats,
.admin-tabs {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(23, 27, 37, 0.94), rgba(17, 20, 28, 0.96));
  box-shadow: var(--shadow);
}

.admin-hero {
  margin: 34px 0 20px;
  padding: 30px;
}

.admin-hero h1 {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.admin-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.6;
}

.admin-panel {
  display: none;
  padding: 18px;
  margin-bottom: 20px;
}

.admin-panel.active {
  display: block;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 12px;
  margin-bottom: 16px;
}

.admin-stats div {
  border-radius: 8px;
  padding: 18px;
  background: #0f1118;
  border: 1px solid var(--line);
}

.admin-stats strong,
.admin-stats span {
  display: block;
}

.admin-stats strong {
  display: block;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.admin-stats span {
  color: var(--muted);
  margin-top: 4px;
  font-weight: 700;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  margin-bottom: 16px;
}

.admin-tab {
  min-height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: #fff;
  background: #0f1118;
  cursor: pointer;
  font-weight: 800;
}

.admin-tab.active,
.admin-tab:hover {
  color: #0b0c10;
  background: var(--gold);
}

.admin-panel {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

.section-heading h2,
.section-heading h1 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.section-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}

.admin-table-wrapper {
  overflow-x: auto;
  width: 100%;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  background: rgba(17, 20, 28, 0.4);
  backdrop-filter: blur(12px);
  scrollbar-width: thin;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
}

.admin-table-wrapper table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.admin-table-wrapper th {
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 15px;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admin-table-wrapper th:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #fff;
}

.admin-table-wrapper td {
  padding: 16px 15px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: #e2e8f0;
  font-size: 0.9rem;
}

.admin-table-wrapper tr:last-child td {
  border-bottom: none;
}

.admin-table-wrapper tr {
  transition: background 0.3s ease;
}

.admin-table-wrapper tr:hover {
  background: rgba(255, 215, 0, 0.03);
}

.admin-product-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 215, 0, 0.2);
  background: #000;
  transition: transform 0.3s ease;
}

.admin-product-thumb:hover {
  transform: scale(1.1);
}

.admin-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}


@media (max-width: 768px) {
  .admin-hero {
    padding: 20px;
    margin-top: 10px;
  }

  .admin-hero h1 {
    font-size: 2rem;
  }

  .admin-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    padding: 8px !important;
    gap: 8px !important;
    display: grid !important;
  }

  .admin-stats div {
    padding: 12px 5px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .admin-stats strong {
    font-size: 1.2rem !important;
  }

  .admin-stats span {
    font-size: 0.65rem !important;
  }

  .admin-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  .section-actions {
    width: 100%;
    justify-content: space-between;
  }

  .admin-tabs {
    padding: 5px;
    gap: 5px;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar for clean look */
  }

  .admin-tabs::-webkit-scrollbar {
    display: none;
  }

  .admin-tab {
    padding: 0 15px;
    font-size: 0.8rem;
    min-height: 38px;
    flex: 0 0 auto;
  }

  .admin-body .nav {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: 10px 0;
  }

  .admin-body .nav-links {
    width: 100%;
    justify-content: space-evenly;
    gap: 10px;
  }

  .admin-body .nav-links a {
    font-size: 0.75rem;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .admin-body .nav-links svg {
    width: 18px;
    height: 18px;
  }
}

.status-select {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s;
  background: #0f1118;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.status-select.status-pending {
  color: #ffd700;
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.05);
}

.status-select.status-contacted {
  color: #60a5fa;
  border-color: #60a5fa;
  background: rgba(96, 165, 250, 0.05);
}

.status-select.status-payment {
  color: #34d399;
  border-color: #34d399;
  background: rgba(52, 211, 153, 0.05);
}

.status-select.status-completed {
  color: #10b981;
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.status-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}


.admin-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.admin-form-wide,
.admin-form-actions {
  grid-column: 1 / -1;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-actions .button {
  min-height: 36px;
  padding: 0 10px;
  font-size: 0.78rem;
}

.admin-image-preview {
  min-height: 72px;
  display: grid;
  place-items: center;
  margin-top: 8px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #0f1118;
  overflow: hidden;
  text-align: center;
  font-size: 0.86rem;
}

.admin-image-preview img {
  width: 100%;
  max-height: 110px;
  display: block;
  object-fit: contain;
  padding: 8px;
}

.admin-help {
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.admin-help strong {
  color: var(--gold);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 13px 12px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--gold);
  font-family: Montserrat, Poppins, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.admin-table td {
  color: #f6f6f6;
}

.admin-table td span {
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-table a {
  color: var(--whatsapp);
  font-weight: 700;
}

.empty-admin {
  color: var(--muted) !important;
  text-align: center !important;
}

@media (max-width: 980px) {

  .hero,
  .toolbar,
  .enquiry-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip,
  .admin-stats,
  .admin-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 24px;
    width: 50px;
    height: 50px;
  }

  .testimonials-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 14px 20px !important;
    margin-left: -14px !important;
    margin-right: -14px !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 80% !important;

    scroll-snap-align: center;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 20px;
  }

  footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 20px !important;
    padding: 20px 0 !important;
  }

  footer div {
    text-align: center !important;
    align-items: center !important;
  }

  .footer-socials {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .site-header {
    padding: 10px 0;
    /* Slimmer header */
  }

  .nav {
    justify-content: space-between;
    padding: 4px 12px;
  }

  .brand-logo {
    width: auto;
    height: auto;
    max-height: 108px;
    max-width: 100%;
  }

  .brand-wordmark {
    font-size: clamp(1.35rem, 5.6vw, 2.35rem);
    letter-spacing: 0;
  }

  .nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: min(100%, calc(100% - 24px)) !important;
    padding: 8px 12px !important;
  }

  .nav-toggle {
    display: block !important;
  }

  .nav-toggle.hidden {
    display: none !important;
  }

  .shop-btn {
    display: none !important;
  }

  .compliance-bar {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    /* Reduced width as requested */
    max-width: 250px;
    background: #0b0b0b;
    flex-direction: column;
    padding: 80px 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border-left: 1px solid var(--line);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    gap: 16px;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    font-size: 1.1rem;
    justify-content: flex-start;
  }

  .toolbar {
    position: sticky;
    top: 60px;
    z-index: 90;
    margin: 0 -10px 24px;
    display: flex;
    flex-direction: column;
    /* Stacked rows for mobile */
    gap: 12px;
    padding: 16px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  }

  .search-wrap {
    width: 100%;
  }

  .search-wrap input {
    min-height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    padding-left: 44px !important;
  }

  .filters {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .filters select {
    width: 100%;
    min-height: 44px;
    /* Matching search bar */
    border-radius: 12px;
    font-size: 0.9rem;
    padding: 0 16px;
    background-color: rgba(255, 255, 255, 0.12);
    /* Brighter for better visibility */
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 500;
  }

  .hero-slider {
    height: 250px;
    margin: 20px 0 18px;
    border-radius: 12px;
  }

  .hero-slider .slider-dots {
    display: none;
  }

  .hero-copy {
    padding: 16px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-copy p {
    display: none;
    /* Hide long description on mobile hero to save space */
  }

  .hero-copy h1 {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .product-visual {
    height: auto;
    /* Let aspect-ratio: 1/1 control the height naturally */
  }

  .product-card h3 {
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .price-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .price-row {
    margin-bottom: 2px;
  }

  .price {
    font-size: 1rem;
  }

  .product-note {
    display: none;
    /* Hidden by default on mobile */
  }

  .product-note.active {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    z-index: 100;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    border-radius: 12px;
    animation: fadeIn 0.3s ease;
  }

  .product-note.active::after {
    content: "Tap to close";
    display: block;
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .trust-strip {
    display: grid;
    /* Removed as per request to save space and use hero instead */
  }

  .basket-row,
  .trust-strip,
  .admin-stats,
  .admin-form {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .cart-widget {
    right: 16px;
    bottom: 84px;
    left: 16px;
    /* Anchor left to allow width: 100% */
  }

  .cart-popover {
    width: auto;
    /* Fill available space */
    right: 0;
    left: 0;
  }




  .nav-container {
    justify-content: center;
    /* Center logo now that hamburger is gone */
    padding: 6px 16px;
  }

  .products-section .section-heading,
  .category-rail,
  .notice {
    display: none;
  }

  .floating-whatsapp {
    position: fixed !important;
    bottom: 100px !important;
    right: 20px !important;
    display: grid !important;
    z-index: 2147483647 !important;
    transform: translateZ(0) !important;
    /* iOS fix */
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .cart-widget {
    position: fixed !important;
    bottom: 160px !important;
    right: 16px !important;
    left: 16px !important;
    z-index: 2147483647 !important;
    transform: translateZ(0) !important;
    /* iOS fix */
    opacity: 1 !important;
    pointer-events: auto !important;
    display: flex !important;
  }

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

@media print {

  .site-header,
  .toolbar,
  .category-rail,
  .hero,
  .notice,
  #products,
  footer,
  #sparkCanvas,
  .cart-widget {
    display: none;
  }

  body {
    padding-bottom: 0;
    background: #fff;
    color: #000;
  }

  main {
    width: 100%;
  }

  .enquiry-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-pending {
  color: #ffb100;
  background: rgba(255, 177, 0, 0.15);
  border: 1px solid rgba(255, 177, 0, 0.3);
}

.status-paid {
  color: var(--whatsapp);
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.status-cancelled {
  color: #ff4500;
  background: rgba(255, 69, 0, 0.15);
  border: 1px solid rgba(255, 69, 0, 0.3);
}

.admin-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-select-sm {
  background: var(--panel-2);
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.85rem;
  cursor: pointer;
}

.inquiry-items-summary {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 4px;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Admin Login Overlay */
.admin-login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-login-overlay:not(.active) {
  display: none;
}

.login-card {
  background: #111;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #333;
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.login-card h2 {
  margin-bottom: 8px;
  color: white;
}

.login-card p {
  color: #888;
  margin-bottom: 30px;
}

.login-card form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-card input {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #333;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: inherit;
}

.admin-note-text {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-visual-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-icon-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Admin Notifications */
.admin-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(200%);
  background: #1e293b;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

.admin-toast.active {
  transform: translateX(-50%) translateY(0);
}

.admin-toast .button.sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 9999px;
}

/* --- HEADER CLASS MAPPINGS --- */
.header {
  position: sticky !important;
  top: 0 !important;
  z-index: 2000 !important;
  background: #000000 !important;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2) !important;
  transition: background 0.3s ease, box-shadow 0.3s ease !important;
}

.top-bar {
  text-align: center !important;
  font-size: 11px !important;
  padding: 8px 0 !important;
  background: #111 !important;
  color: #ffd700 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.top-bar-track {
  display: inline-block !important;
  animation: marquee 60s linear infinite !important;
  padding-left: 100% !important;
}

.top-bar-track span {
  display: inline-block !important;
  padding-right: 50px !important;
}

.nav-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: min(1280px, calc(100% - 60px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  gap: 22px !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  gap: clamp(12px, 1.1vw, 22px) !important;
  position: relative !important;
  text-decoration: none !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

/* Removed brand glow for transparency */

.nav-menu {
  display: flex !important;
  gap: 60px !important;
  align-items: center !important;
  margin: 0 auto !important;
  width: auto !important;
  justify-content: center !important;
}

.nav-menu a {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  font-size: 1.15rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.nav-menu a:hover {
  color: var(--gold) !important;
}

.header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  flex: 1 1 auto !important;
  justify-content: flex-end !important;
}

.shop-btn {
  display: none !important;
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 10px 24px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
}

.shop-btn:hover {
  background: var(--gold) !important;
  color: #000 !important;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4) !important;
}

.hamburger {
  display: none !important;
  font-size: 2rem !important;
  color: var(--gold) !important;
  cursor: pointer !important;
}

@media (max-width: 992px) {
  .nav-menu {
    display: none !important;
  }

  .hamburger {
    display: block !important;
  }
}

/* Mobile-first header polish */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

.nav-links a.active {
  color: var(--gold);
  border-color: rgba(255, 215, 0, 0.45);
  background: rgba(255, 215, 0, 0.1);
}

@media (max-width: 720px) {
  .header {
    background: rgba(3, 3, 3, 0.97) !important;
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45) !important;
  }

  .top-bar {
    font-size: 0.62rem !important;
    line-height: 1.35 !important;
    padding: 5px 0 !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.14) !important;
  }

  .nav-container {
    width: 100% !important;
    min-height: 64px !important;
    padding: 6px 14px !important;
    gap: 10px !important;
  }

  .brand {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    /* Reduced gap to move them closer */
    max-width: calc(100% - 120px) !important;
    transition: opacity 0.2s ease !important;
  }

  body.no-scroll .header .brand {
    opacity: 0.28 !important;
  }

  .brand::before {
    display: none !important;
  }

  .brand-logo {
    flex: 0 0 auto !important;
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.32)) !important;
  }

  .brand-wordmark {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: clamp(1.1rem, 5.2vw, 1.55rem) !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    -webkit-text-stroke-width: 0.35px !important;
    filter: drop-shadow(0 1px 0 rgba(55, 24, 0, 0.85)) !important;
  }

  .brand-text-image {
    height: 35px !important;
    /* Fixed height on mobile */
    width: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 1px 0 rgba(55, 24, 0, 0.85)) !important;
    transform: translateY(4px) !important;
    /* Lowered slightly to center */
    margin-left: -10px !important;
    /* Pull closer to logo to account for image padding */
  }

  .nav-toggle {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    margin-left: 6px !important;
    color: #ffd700 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    order: -1 !important;
    /* Keep on the left */
    z-index: 2205 !important;
    filter: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    touch-action: manipulation !important;
  }

  .nav-toggle:hover,
  .nav-toggle:focus,
  .nav-toggle:focus-visible,
  .nav-toggle:active {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .nav-toggle.hidden {
    display: grid !important;
  }

  .nav-toggle svg {
    width: 24px !important;
    height: 24px !important;
    transition: transform 0.22s ease !important;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    content: "" !important;
    position: absolute !important;
    width: 23px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    opacity: 0 !important;
    transform: rotate(0deg) !important;
    transition: opacity 0.18s ease, transform 0.22s ease !important;
  }

  .nav-toggle svg line {
    transform-box: fill-box;
    transform-origin: center;
    stroke-width: 2.4px;
    transition: transform 0.22s ease, opacity 0.18s ease;
  }

  .nav-toggle svg line:nth-child(1) {
    opacity: 1;
    transform: none;
  }

  .nav-toggle svg line:nth-child(2) {
    transform: none;
  }

  .nav-toggle svg line:nth-child(3) {
    transform: none;
  }

  .nav-toggle.active {
    background: transparent !important;
    border-color: transparent !important;
  }

  .nav-toggle.active svg {
    opacity: 0 !important;
  }

  .nav-toggle.active::before {
    opacity: 1 !important;
    transform: rotate(45deg) !important;
  }

  .nav-toggle.active::after {
    opacity: 1 !important;
    transform: rotate(-45deg) !important;
  }

  .nav-backdrop {
    background: rgba(0, 0, 0, 0.68) !important;
    backdrop-filter: blur(3px);
    z-index: 1900 !important;
  }

  .nav-links {
    position: fixed !important;
    inset: 0 0 0 auto !important;
    width: min(86vw, 330px) !important;
    max-width: none !important;
    min-height: 100dvh !important;
    padding: 100px 18px 28px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    background:
      linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(8, 8, 8, 0.98)),
      radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.14), transparent 18rem) !important;
    border-left: 1px solid rgba(255, 215, 0, 0.22) !important;
    box-shadow: -18px 0 46px rgba(0, 0, 0, 0.72) !important;
    transform: translateX(105%) !important;
    transition: transform 0.28s ease !important;
    z-index: 2200 !important;
  }

  .nav-links.active {
    transform: translateX(0) !important;
  }

  .nav-links a {
    width: 100% !important;
    min-height: 50px !important;
    justify-content: flex-start !important;
    padding: 0 14px !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.075) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 8px !important;
    font-family: Outfit, Poppins, sans-serif !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold) !important;
    background: rgba(255, 215, 0, 0.1) !important;
    border-color: rgba(255, 215, 0, 0.36) !important;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
  }

  .brand-wordmark {
    font-size: clamp(1rem, 5vw, 1.22rem) !important;
  }

  .nav-toggle {
    flex-basis: 42px !important;
    width: 42px !important;
    height: 42px !important;
  }
}

.admin-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(17, 20, 28, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-top: none;
  border-radius: 0 0 16px 16px;
  margin-top: -1px;
}

.pagination-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.pagination-info select {
  background: #0f1118;
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

#pageNumber {
  display: flex;
  gap: 8px;
  margin: 0 10px;
}

.page-number {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.1);
  color: var(--muted);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
}

.page-number:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.page-number.active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.pagination-dots {
  color: var(--muted);
  font-weight: 800;
  padding: 0 5px;
}

#pageNumber,
#inquiryPageNumber {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 8px;
}

.pagination-controls .button {
  height: 34px;
  width: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 1.2rem;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
  color: var(--gold);
}

@media (max-width: 600px) {
  .admin-pagination {
    padding: 8px 12px;
  }
}


/* Login Overlay */
.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 16, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

.login-overlay.active {
  opacity: 1;
  visibility: visible;
}

.login-overlay:not(.active) {
  display: none;
}

.login-card {
  background: #161b22;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #30363d;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: all 0.4s;
  text-align: center;
}

.login-overlay.active .login-card {
  transform: translateY(0);
}

.success-card h2 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  margin-bottom: 15px;
}

.overlay-actions {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overlay-actions .button.sm {
  padding: 12px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.success-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.login-card h2 {
  margin-bottom: 10px;
  color: var(--gold);
}

.login-card p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.login-card .form-group {
  text-align: left;
  margin-bottom: 20px;
}

.login-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.85rem;
}

.login-card input {
  width: 100%;
  background: #0d1117;
  border: 1px solid #30363d;
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  outline: none;
  transition: all 0.2s;
}

.login-card input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* --- PERFECT CART PAGE STYLES --- */
.cart-page-container {
  padding-top: 20px;
  padding-bottom: 80px;
}

.cart-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 1024px) {
  .cart-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  padding-bottom: 15px;
}

.cart-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold);
}

.cart-header h2 span {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  opacity: 0.6;
  font-weight: 400;
  margin-left: 10px;
}

.add-more-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}

.add-more-link:hover {
  opacity: 0.8;
}

.basket-item-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
  position: relative;
}

.basket-item-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateX(5px);
}

.item-main {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.item-image-placeholder {
  width: 60px;
  height: 60px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.item-details h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.item-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.item-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-price {
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
}

.market-price {
  text-decoration: line-through;
  opacity: 0.4;
  font-size: 0.8rem;
}

.item-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.item-total-col {
  text-align: right;
  min-width: 100px;
}

.item-total-col .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 2px;
}

.item-total-col .val {
  font-weight: 800;
  color: var(--gold);
}

.remove-item-btn {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.remove-item-btn:hover {
  opacity: 1;
}

/* Summary Card */
.summary-card {
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.summary-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  padding-bottom: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.summary-row.savings {
  color: #22c55e;
}

.summary-row.total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
}

/* Checkout Form */
.checkout-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
}

.form-title {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.checkout-form .form-row {
  margin-bottom: 20px;
}

.checkout-form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--muted);
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  color: white;
  font-family: inherit;
  transition: border-color 0.3s;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.promo-input-group {
  display: flex;
  gap: 10px;
}

.promo-input-group button {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
}

.promo-input-group button:hover {
  background: var(--gold);
  color: black;
}

.submit-button {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.btn-subtext {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 4px;
}

.empty-cart-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.qty-val {
  font-weight: 700;
  min-width: 30px;
  text-align: center;
}

@media (max-width: 600px) {
  .cart-page-container {
    padding-top: 15px;
    padding-bottom: 30px;
  }

  .cart-header {
    margin-bottom: 15px;
    padding-bottom: 8px;
  }

  .cart-header h2 {
    font-size: 1.2rem;
  }

  .basket-item-card {
    padding: 8px 12px;
    gap: 8px;
    margin-bottom: 6px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    /* Name | Qty | Price */
    align-items: center;
  }

  .item-main {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    width: auto;
    margin-bottom: 0;
  }

  .item-image-placeholder {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    display: grid !important;
    /* Force show */
    place-items: center;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
  }

  .item-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .item-details h4 {
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
    max-width: 150px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .item-meta {
    font-size: 0.75rem;
    color: var(--muted);
    display: block !important;
    /* Force show */
    margin-bottom: 0;
  }

  .item-pricing {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
  }

  .item-pricing .current-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    display: block !important;
    /* Force show */
  }

  .item-pricing .market-price {
    text-decoration: line-through;
    opacity: 0.4;
    font-size: 0.75rem;
    display: block !important;
    /* Force show */
  }

  .item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    width: auto;
    padding-top: 0;
    margin-top: 0;
    border-top: none;
  }

  .qty-stepper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 2px;
    transform: none;
  }

  .qty-stepper button {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
    background: none;
    border: none;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
  }

  .qty-val {
    min-width: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: #fff;
    font-weight: 700;
  }

  .item-total-col {
    display: none !important;
    /* Hide subtotal to match screenshot and save space */
  }

  .remove-item-btn {
    display: none !important;
    /* Hide X to avoid accidental clicks */
  }

  .summary-card {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 15px;
  }

  .summary-row {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .summary-row.total {
    font-size: 1rem;
    padding-top: 10px;
  }

  .checkout-form {
    padding: 15px;
    border-radius: 15px;
  }

  .form-title {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .checkout-form .form-row {
    margin-bottom: 12px;
  }
}

/* Export Menu */
.export-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--panel-2);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 2000;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.export-menu.active {
  display: flex;
}

.export-menu button {
  background: none;
  border: none;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s;
  width: 100%;
}

.export-menu button:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
}

/* Hide discount badge and category tag on mobile only */
@media (max-width: 600px) {

  .discount-badge,
  .product-card .tag {
    display: none !important;
  }
}


/* Dual-View Control Logic */
@media (max-width: 600px) {
  .desktop-bottom-controls {
    display: none !important;
  }

  .mobile-thumb-controls {
    display: block !important;
  }

  .product-visual {
    position: relative !important;
  }

  .thumbnail-add-btn {
    position: absolute !important;
    bottom: 8px !important;
    right: 8px !important;
    width: 36px !important;
    height: 36px !important;
    background: var(--gold) !important;
    border: 2px solid rgba(0, 0, 0, 0.22) !important;
    color: #111 !important;
    border-radius: 8px !important;
    font-size: 1.55rem !important;
    font-weight: 900 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow:
      0 8px 18px rgba(0, 0, 0, 0.48),
      0 0 0 3px rgba(255, 215, 0, 0.18) !important;
    z-index: 10 !important;
    padding: 0 0 3px !important;
    line-height: 1 !important;
    -webkit-tap-highlight-color: transparent !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease !important;
  }

  .thumbnail-stepper {
    position: absolute !important;
    bottom: 8px !important;
    right: 8px !important;
    min-width: 96px !important;
    height: 36px !important;
    background: rgba(10, 10, 10, 0.88) !important;
    color: var(--gold) !important;
    border: 1.5px solid rgba(255, 215, 0, 0.74) !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 5px !important;
    padding: 3px 5px !important;
    z-index: 10 !important;
    box-shadow:
      0 8px 18px rgba(0, 0, 0, 0.48),
      0 0 0 3px rgba(255, 215, 0, 0.12) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .thumbnail-stepper button {
    background: rgba(255, 215, 0, 0.16) !important;
    border: none !important;
    color: var(--gold) !important;
    border-radius: 50% !important;
    font-size: 1.15rem !important;
    font-weight: 900 !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 0 2px !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .thumbnail-stepper .qty-val {
    font-weight: 800 !important;
    font-size: 0.98rem !important;
    min-width: 18px !important;
    text-align: center !important;
    color: #fff !important;
  }

  .thumbnail-add-btn.qty-control-pulse,
  .thumbnail-stepper.qty-control-pulse {
    animation: thumbControlPop 0.28s ease both !important;
  }

  .thumbnail-stepper .qty-val.qty-control-pulse {
    animation: qtyNumberPop 0.32s ease both !important;
  }
}

@keyframes thumbControlPop {
  0% {
    transform: translateY(0) scale(0.88);
  }

  55% {
    transform: translateY(-3px) scale(1.08);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes qtyNumberPop {
  0% {
    transform: scale(0.75);
    opacity: 0.55;
  }

  55% {
    transform: scale(1.22);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 601px) {
  .mobile-thumb-controls {
    display: none !important;
  }

  .desktop-bottom-controls {
    display: block !important;
  }
}


/* Force-Hide Mobile Controls on Desktop */
.mobile-thumb-controls {
  display: none !important;
}

@media (max-width: 600px) {
  .mobile-thumb-controls {
    display: block !important;
  }
}

/* Force-Hide Desktop Controls on Mobile */
@media (max-width: 600px) {
  .desktop-bottom-controls {
    display: none !important;
  }
}

@media (min-width: 601px) {
  .desktop-bottom-controls {
    display: block !important;
  }
}


/* Ultra-Compact Mobile Gaps */
@media (max-width: 600px) {
  .product-visual {
    margin-bottom: 8px !important;
  }

  .product-details {
    padding-top: 2px !important;
    margin-top: 0 !important;
  }


  .product-details h3 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
  }

  .product-note {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.75rem !important;
    line-height: 1.1 !important;
  }

  .product-bottom {
    margin-top: 2px !important;
    padding-top: 2px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  }
}


/* Force-Zero Gap for Mobile */
@media (max-width: 600px) {
  .product-card {
    gap: 0 !important;
  }

  .product-visual {
    margin-bottom: 10px !important;
    padding-bottom: 0 !important;
  }

  .product-details {
    margin-top: 0 !important;
    padding-top: 4px !important;
  }

}


/* Final Precision Layout Fixes */

/* 1. Ensure Mobile Controls are HIDDEN on Desktop by default */
.mobile-thumb-controls {
  display: none !important;
}

/* 2. Remove the forced spacing and height on Mobile */
@media (max-width: 600px) {
  .product-card {
    min-height: auto !important;
    /* Remove the 320px height that causes the gap */
    justify-content: flex-start !important;
    /* Stack items tightly from the top */
    gap: 0 !important;
  }

  .mobile-thumb-controls {
    display: block !important;
    /* Show only on mobile */
  }

  .desktop-bottom-controls {
    display: none !important;
    /* Hide original button on mobile */
  }
}

/* 3. Ensure Desktop looks exactly like the original */
@media (min-width: 601px) {
  .desktop-bottom-controls {
    display: block !important;
  }

  .product-card {
    min-height: 320px !important;
    /* Restore original desktop height */
    justify-content: space-between !important;
    /* Restore original desktop spacing */
  }
}


/* Cart Popover Item Styling */
.popover-item {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 0.85rem !important;
  color: #fff !important;
}

.popover-item span:first-child {
  font-weight: 600 !important;
  color: var(--gold) !important;
  max-width: 160px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.popover-item span:last-child {
  font-weight: 700 !important;
  color: #fff !important;
}

#popoverItems {
  max-height: 250px !important;
  overflow-y: auto !important;
  margin-bottom: 10px !important;
  padding-right: 5px !important;
}

#popoverItems::-webkit-scrollbar {
  width: 4px !important;
}

#popoverItems::-webkit-scrollbar-thumb {
  background: var(--gold) !important;
  border-radius: 10px !important;
}


/* Hide Pagination Label on Mobile */
@media (max-width: 600px) {
  .pagination-label {
    display: none !important;
  }

  .pagination-info select {
    min-width: 60px !important;
    text-align: center !important;
  }
}


/* Precision Search Icon Alignment */
.search-wrap::before {
  content: " ??\ !important;
 position: absolute !important;
  left: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: -1px !important;
  /* Micro-adjustment for emoji baseline */
  opacity: 0.6 !important;
  font-size: 1.1rem !important;
  pointer-events: none !important;
  z-index: 5 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
}

@media (max-width: 600px) {
  .search-wrap::before {
    left: 12px !important;
    font-size: 1rem !important;
  }

  .search-wrap input {
    padding-left: 38px !important;
  }
}


/* Fine-Tuning Mobile Search Icon */
@media (max-width: 600px) {
  .search-wrap::before {
    transform: translateY(-38%) !important;
    /* Shift down further for mobile */
    margin-top: 0 !important;
  }
}


/* Modern Search Bar Redesign */
.search-box {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

.search-box-icon {
  position: absolute !important;
  left: 14px !important;
  width: 20px !important;
  height: 20px !important;
  color: var(--gold) !important;
  opacity: 0.8 !important;
  pointer-events: none !important;
  z-index: 5 !important;
}

#search {
  padding-left: 46px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease !important;
}

#search:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1) !important;
}

/* Remove old emoji pseudo-element */
.search-wrap::before {
  content: none !important;
  display: none !important;
}

@media (max-width: 600px) {
  .search-box-icon {
    left: 12px !important;
    width: 18px !important;
    height: 18px !important;
  }

  #search {
    padding-left: 40px !important;
    font-size: 0.95rem !important;
  }
}


/* Admin Direct Image Upload Styling */
.admin-img-cell {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-upload-label {
  cursor: pointer;
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px dashed rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.img-upload-label:hover {
  border-color: var(--gold);
  transform: scale(1.05);
  background: rgba(255, 215, 0, 0.1);
}

.admin-table-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-table-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--gold);
  text-align: center;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.img-upload-label::after {
  content: " +\;
 position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.img-upload-label:hover::after {
  opacity: 1;
}

.stock-toggle-btn {
  padding: 4px 8px !important;
  font-size: 0.65rem !important;
  text-transform: uppercase;
}


/* Admin Image Row Refinement */
.admin-img-wrapper {
  position: relative;
  display: inline-block;
}

.img-remove-x {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: #ff4444;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  border: 2px solid #1a1b1f;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  padding: 0;
}

.img-remove-x:hover {
  background: #ff0000;
  transform: scale(1.1);
}

.img-row-layout {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Admin Toggle Switch */
.admin-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.admin-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.admin-toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: .4s;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: #fff;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

input:checked+.admin-toggle-slider {
  background-color: #22c55e;
  border-color: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

input:checked+.admin-toggle-slider:before {
  transform: translateX(20px);
}

input:focus+.admin-toggle-slider {
  box-shadow: 0 0 1px #22c55e;
}

/* Add to Cart Animations */
@keyframes btnPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.btn-pop {
  animation: btnPop 0.3s ease;
}

@keyframes badgePop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

.badge-pop {
  animation: badgePop 0.3s ease;
}

/* Stepper Pop Animation */
.stepper {
  animation: stepperPop 0.2s ease;
}

@keyframes stepperPop {
  0% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

/* Cart Popover List Scroll */
#popoverItems {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 5px;
}

/* Spacing Reductions */
.hero-slider {
  margin-bottom: 15px !important;
}

.trust-strip {
  margin-top: 15px !important;
  margin-bottom: 20px !important;
  padding: 15px 0 !important;
}

.testimonials-section {
  margin-bottom: 20px !important;
}

.contact-section {
  margin-top: 15px !important;
}

@media (max-width: 640px) {

  .products-section,
  #products {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }

  #pagination {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }

  .testimonials-section {
    margin-top: 20px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin-bottom: 10px !important;
  }

  .testimonials-section h2 {
    font-size: 1.3rem !important;
    /* Reduced heading font size */
  }

  #mini-faq {
    margin-top: 10px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}

/* Hide Home link in desktop view to save space */
@media (min-width: 641px) {
  .nav-links a[href="index.html"] {
    display: none !important;
  }
}

/* Final mobile header override */
@media (max-width: 640px) {
  .header {
    position: sticky !important;
    top: 0 !important;
    background: rgba(2, 2, 2, 0.98) !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.28) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(14px) !important;
  }

  .top-bar,
  .compliance-bar {
    display: none !important;
  }

  .nav-container {
    width: 100% !important;
    min-height: 58px !important;
    padding: 6px 12px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .brand {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 54px) !important;
    gap: 8px !important;
  }

  .brand-logo {
    width: 42px !important;
    height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    filter: drop-shadow(0 0 9px rgba(255, 215, 0, 0.36)) !important;
  }

  .brand-wordmark {
    font-size: clamp(1rem, 5vw, 1.42rem) !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    -webkit-text-stroke-width: 0.25px !important;
  }

  .nav-toggle {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    padding: 0 !important;
    margin: 0 0 0 6px !important;
    flex: 0 0 44px !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: 0 !important;
    color: var(--gold) !important;
    z-index: 2301 !important;
    filter: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    touch-action: manipulation !important;
  }

  .nav-toggle:hover,
  .nav-toggle:focus,
  .nav-toggle:focus-visible,
  .nav-toggle:active {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .nav-toggle.hidden {
    display: grid !important;
  }

  .nav-toggle svg {
    width: 24px !important;
    height: 24px !important;
    transition: transform 0.22s ease !important;
  }

  .nav-toggle svg line {
    stroke-width: 2.4px !important;
    transform-box: fill-box !important;
    transform-origin: center !important;
  }

  .nav-toggle svg line:nth-child(1) {
    opacity: 1 !important;
    transform: none !important;
  }

  .nav-toggle svg line:nth-child(2) {
    transform: none !important;
  }

  .nav-toggle svg line:nth-child(3) {
    transform: none !important;
  }

  .nav-toggle.active {
    background: transparent !important;
    border-color: transparent !important;
  }

  .nav-backdrop {
    background: rgba(0, 0, 0, 0.62) !important;
    backdrop-filter: blur(2px) !important;
    z-index: 1990 !important;
  }

  .nav-links {
    position: fixed !important;
    inset: 66px 10px auto 10px !important;
    width: auto !important;
    max-width: none !important;
    min-height: 0 !important;
    padding: 10px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    background: rgba(12, 12, 12, 0.98) !important;
    border: 1px solid rgba(255, 215, 0, 0.22) !important;
    border-radius: 8px !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.7) !important;
    transform: translateY(-12px) scale(0.98) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform 0.22s ease, opacity 0.18s ease !important;
    z-index: 2300 !important;
  }

  .nav-links.active {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .nav-links a {
    min-height: 46px !important;
    width: 100% !important;
    padding: 0 14px !important;
    justify-content: center !important;
    border-radius: 8px !important;
    font-size: 0.86rem !important;
    letter-spacing: 0.06em !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.13) !important;
  }
}

/* Force products section heading to be visible on mobile and make trust strip compact */
@media (max-width: 640px) {
  .products-section .section-heading {
    display: flex !important;
  }

  .trust-strip {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 0 !important;
    padding: 12px 0 !important;
    margin: 15px 0 !important;
    justify-content: flex-start !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .trust-strip::-webkit-scrollbar {
    display: none !important;
  }

  .trust-item {
    flex: 0 0 100% !important;
    scroll-snap-align: center !important;
    text-align: center;
    padding: 12px 20px !important;
    background: none !important;
    border: none !important;
  }

  .trust-item strong {
    font-size: 0.9rem !important;
    display: block !important;
    margin-bottom: 4px !important;
  }

  .trust-item span {
    font-size: 0.75rem !important;
    display: block !important;
    color: var(--muted) !important;
  }
}

/* Hide cloned trust item on desktop so it doesn't break the grid */
@media (min-width: 641px) {
  .trust-clone-item {
    display: none !important;
  }
}

/* Admin Button Variants */
.button.success {
  background: #22c55e;
  color: #fff;
  border: none;
}

.button.success:hover {
  background: #16a34a;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.button.sm {
  padding: 6px 12px;
  font-size: 0.75rem;
}

/* Keep footer social icons in one horizontal row */
footer .footer-socials {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  width: 100% !important;
}

footer .footer-socials .social-icon {
  flex: 0 0 50px !important;
  display: grid !important;
}


/* Extracted from admin.html */
.admin-extracted-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.admin-extracted-2 {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.1);
  padding: 20px;
  border-radius: 12px;
  display: block;
}

.admin-extracted-3 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-extracted-4 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-extracted-5 {
  color: var(--muted);
  font-size: 0.85rem;
}

.admin-extracted-6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.admin-extracted-7 {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
}

.admin-extracted-8 {
  font-size: 1.4rem;
  color: #fff;
}

.admin-extracted-9 {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-extracted-10 {
  font-size: 1.6rem;
  color: var(--gold);
}

.admin-extracted-11 {
  display: flex;
  gap: 12px;
  align-items: center;
}

.admin-extracted-12 {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.admin-extracted-13 {
  width: 100%;
  padding: 8px 12px 8px 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.admin-extracted-14 {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}

.admin-extracted-15 {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.8rem;
  user-select: none;
  white-space: nowrap;
}

.admin-extracted-16 {
  accent-color: var(--gold);
}

.admin-extracted-17 {
  position: relative;
}

.admin-extracted-18 {
  color: var(--gold);
  border-color: var(--gold);
}

.admin-extracted-19 {
  display: none;
  border: 1px solid rgba(255, 215, 0, 0.1);
  padding: 20px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.admin-extracted-20 {
  cursor: pointer;
}

.admin-extracted-21 {
  margin-top: 30px;
}

.admin-extracted-22 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #30363d;
}

.admin-extracted-23 {
  color: var(--gold);
  font-family: var(--font-display);
  margin: 0;
}

.admin-extracted-24 {
  text-align: left;
}

.admin-extracted-25 {
  text-align: center;
}

.admin-extracted-26 {
  text-align: right;
}

.admin-extracted-27 {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.admin-extracted-28 {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 16px;
  padding: 24px;
  max-width: 520px;
  width: 95%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.admin-extracted-29 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.admin-extracted-30 {
  color: var(--gold);
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.1rem;
}

.admin-extracted-31 {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.6;
  padding: 4px 8px;
}

.admin-extracted-32 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin: 0 0 12px;
}

.admin-extracted-33 {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: #0a0c10;
  border-radius: 10px;
  overflow: hidden;
  cursor: move;
  border: 2px solid #30363d;
}

.admin-extracted-34 {
  display: block;
  width: 100%;
  height: 100%;
}

.admin-extracted-35 {
  position: absolute;
  inset: 0;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 215, 0, 0.8);
  pointer-events: none;
  border-radius: 4px;
}

.admin-extracted-36 {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: space-between;
  align-items: center;
}

.admin-extracted-37 {
  display: flex;
  gap: 8px;
}

.admin-extracted-38 {
  padding: 4px 12px;
  font-size: 1.2rem;
  min-width: 36px;
}

.admin-extracted-39 {
  display: flex;
  gap: 12px;
}

.admin-extracted-40 {
  background: var(--gold);
  color: #000;
  font-weight: 700;
}

.admin-extracted-41 {
  display: none;
}

.admin-extracted-42 {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
}

.admin-extracted-43 {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 16px;
  padding: 24px;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
}

.admin-extracted-44 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid #30363d;
  padding-bottom: 16px;
}

.admin-extracted-45 {
  color: var(--gold);
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.admin-extracted-46 {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.admin-extracted-47 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.admin-extracted-48 {
  grid-column: span 2;
}

.admin-extracted-49 {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-extracted-50 {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: #0a0c10;
  border: 1px solid #30363d;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.admin-extracted-51 {
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.admin-extracted-52 {
  width: 100%;
  height: 42px;
  padding: 0;
  border: 1px solid #30363d;
  border-radius: 8px;
  background: #0a0c10;
  cursor: pointer;
}

.admin-extracted-53 {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 8px;
  border: 1px dashed #30363d;
}

.admin-extracted-54 {
  width: 120px;
  height: 120px;
  background: #0a0c10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #30363d;
  border-radius: 8px;
  overflow: hidden;
}

.admin-extracted-55 {
  grid-column: span 2;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
  border-top: 1px solid #30363d;
  padding-top: 16px;
}

.admin-extracted-56 {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #30363d;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.admin-extracted-57 {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s;
}

/* Improve visibility of status dropdown options */
.status-select option {
  background-color: #161b22 !important;
  color: #fff !important;
}

/* Override mobile thumb controls to look like qty-stepper */
@media (max-width: 600px) {
  .thumbnail-add-btn {
    width: 32px !important;
    height: 32px !important;
    background: rgba(0, 0, 0, 0.65) !important;
    /* Softer semi-transparent black */
    backdrop-filter: blur(4px) !important;
    /* Frost effect */
    border: 1px solid var(--gold) !important;
    /* Solid gold border */
    color: var(--gold) !important;
    /* Bright gold + sign */
    border-radius: 8px !important;
    font-size: 1.5rem !important;
    /* Larger font */
    font-weight: 900 !important;
    /* Thicker font */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    /* Softer shadow */
    padding: 0 !important;
  }

  .thumbnail-stepper {
    height: 32px !important;
    min-width: auto !important;
    background: rgba(0, 0, 0, 0.65) !important;
    /* Softer semi-transparent black */
    backdrop-filter: blur(4px) !important;
    /* Frost effect */
    border: 1px solid var(--gold) !important;
    /* Solid gold border */
    border-radius: 8px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    /* Softer shadow */
    padding: 2px !important;
    gap: 0 !important;
  }

  .thumbnail-stepper button {
    background: none !important;
    border: none !important;
    color: var(--gold) !important;
    /* Bright gold symbols */
    font-size: 1.4rem !important;
    /* Larger font */
    font-weight: 900 !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 0 !important;
  }

  .thumbnail-stepper .qty-val {
    color: #fff !important;
    /* Pure white number */
    font-weight: 900 !important;
    /* Bold number */
    font-size: 1rem !important;
    /* Larger number */
  }
}

/* Visually hidden but accessible for SEO */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}