/* ===== Navbar Component ===== */

html,
body {
  margin: 0;
  padding: 0;
}

nav {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.2) 0%, rgba(45, 45, 45, 0.2) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin: 0;
  width: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0 20px;
  height: 70px;
  gap: 30px;
  box-sizing: border-box;
}

.navbar-brand {
  font-size: 24px;
  font-weight: bold;
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand:hover {
  color: #ff8c5a;
}

.navbar-logo-image {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-logo-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.navbar-brand:hover .navbar-logo-image {
  transform: scale(1.05);
}

.navbar-brand:hover .navbar-logo-text {
  color: #ff6b35;
}

/* ===== Menu Wrapper ===== */

.navbar-menu-wrapper {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.navbar-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-family: inherit;
}

.navbar-link:hover {
  color: #ff6b35;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff6b35;
  transition: width 0.3s ease;
}

.navbar-link:hover::after {
  width: 100%;
}

/* ===== Dropdown ===== */

.navbar-dropdown {
  position: relative;
}

.dropdown-toggle {
  position: relative;
}

.dropdown-toggle .carat {
  transition: transform 0.3s ease;
}

.navbar-dropdown:hover .dropdown-toggle .carat {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2d2d2d;
  border: 1px solid #3d3d3d;
  border-radius: 6px;
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.navbar-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 14px;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-menu a:hover {
  background-color: #3d3d3d;
  color: #ff6b35;
  padding-left: 25px;
}

/* ===== Order Button ===== */

.btn-order {
  background-color: #ff6b35;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-order:hover {
  background-color: #ff8c5a;
}

.btn-order::after {
  display: none;
}

/* ===== Icons Menu ===== */

.navbar-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-right: 40px;
  flex-shrink: 0;
}

.navbar-mobile-shortcuts {
  display: none;
}

.icon-btn {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}

.icon-btn:hover {
  background-color: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
}

.cart-icon {
  position: relative;
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -7px;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: #28a745;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  pointer-events: none;
}

.cart-icon.is-adding {
  animation: cartIconBump 0.45s ease;
}

.cart-icon.is-adding::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34c759;
  transform: translateX(-50%);
  animation: cartDropIn 0.45s ease forwards;
}

@keyframes cartIconBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.16); }
  100% { transform: scale(1); }
}

@keyframes cartDropIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px) scale(0.7);
  }
  55% {
    opacity: 1;
    transform: translateX(-50%) translateY(7px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px) scale(0.8);
  }
}

.icon-btn::after {
  content: attr(title);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1a1a1a;
  color: #ff6b35;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.icon-btn:hover::after {
  opacity: 1;
  visibility: visible;
}

/* ===== Hamburger Toggle ===== */

.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */

.hero {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  z-index: 10;
}

.hero-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.hero-column-left {
  flex: 2;
  gap: 20px;
}

.hero-column-right {
  flex: 1;
  gap: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  padding: 40px 30px !important;
  max-width: 380px;
}

.hero-title {
  margin: 0;
  font-size: clamp(40px, 8vw, 91px);
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  line-height: 1.0;
}

.hero-title .highlight {
  color: #ff6b35;
}

/* Anton font utility class */
.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Compact vertical grouping for stacked hero titles */
.hero-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
  /* adjust this to taste (smaller = closer) */
}

.hero-subtitle {
  margin: 0;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.hero-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-btn-primary {
  background-color: #ff6b35;
  color: #ffffff;
}

.hero-btn-primary:hover {
  background-color: #ff8c5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.hero-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ff6b35;
}

.hero-btn-secondary:hover {
  background-color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.hero-btn-tertiary {
  background-color: #ff6b35;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 13px;
}

.hero-btn-tertiary:hover {
  background-color: #ff8c5a;
  transform: translateY(-2px);
}

.hero-product-image {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 6px;
  max-width: 350px;
}

.hero-product-title {
  margin: 0;
  font-size: 24px;
  color: #ff6b35;
  font-weight: bold;
  text-align: center;
}

.hero-product-description {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  line-height: 1.5;
  max-width: 300px;
}

.hero-product-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 300px;
}

.hero-product-buttons .hero-btn {
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn-label {
  display: block;
  will-change: transform, opacity;
}

@keyframes slotRollOut {
  from { transform: translateY(0);      opacity: 1; }
  to   { transform: translateY(-120%);  opacity: 0; }
}

@keyframes slotRollIn {
  from { transform: translateY(120%);   opacity: 0; }
  to   { transform: translateY(0);      opacity: 1; }
}

.hero-scroll-cue {
  display: none;
}

@media (max-width: 1024px) {
  .navbar-menu-wrapper {
    gap: 25px;
  }

  .navbar {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .navbar-menu-wrapper {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #1a1a1a;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    align-items: stretch;
  }

  .navbar-menu-wrapper.active {
    max-height: 640px;
    border-bottom: 1px solid #3d3d3d;
  }

  .navbar-menu-wrapper>* {
    border-bottom: 1px solid #3d3d3d;
    padding: 15px 20px;
  }

  .navbar-link {
    width: 100%;
    padding: 15px 20px !important;
  }

  .navbar-link::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    background-color: #1a1a1a;
    margin-top: 0;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: none;
    padding: 0;
  }

  .navbar-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    border-top: 1px solid #3d3d3d;
  }

  .dropdown-menu a {
    padding: 12px 20px 12px 40px;
    background-color: transparent;
  }

  .dropdown-toggle .carat {
    transition: transform 0.3s ease;
  }

  .navbar-dropdown.active .dropdown-toggle .carat {
    transform: rotate(180deg);
  }

  .navbar-icons {
    display: none;
  }

  .navbar-mobile-shortcuts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 14px 16px 16px;
    border-bottom: 0;
  }

  .navbar-mobile-shortcuts .icon-btn {
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
  }

  .navbar-mobile-shortcuts .icon-btn:hover {
    background: rgba(255, 107, 53, 0.18);
    border-color: rgba(255, 107, 53, 0.55);
  }

  .icon-btn::after {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar {
    padding: 0 15px;
    height: auto;
    min-height: 70px;
  }

  /* ===== Hero Mobile Layout ===== */

  .hero {
    height: 100vh;
  }

  .hero-overlay {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 90px;
    /* so navbar doesn’t overlap */
  }


  .hero-column-left,
  .hero-column-right {
    width: 100%;
    max-width: 100%;
  }

  .hero-column-left {
    /* Keep full width; vertical centering handled by inner wrapper on small screens */
    width: 100%;
    max-width: 100%;
  }

  .hero-left-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    /* Make the inner block take available height so centering works */
    min-height: calc(100vh - 90px);
  }

  .hero-column-right {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
  }

  .hero-titles{
    margin-top: 70px;
  }

  .hero-product-image {
    height: auto;
    max-height: 250px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 75%;
    max-width: 360px;
    margin-inline: auto;
  }

  .hero-btn {
    width: 100%;
  }


}

/* ===== WHY BRAAIERY Section ===== */
.section-why {
  padding: 90px 20px 100px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.why-header {
  font-size: clamp(30px, 6vw, 68px);
  letter-spacing: 2px;
  margin: 0;
  margin-block-end: -0.23em;
}

#why-braaiery .why-header,
#flavours .why-header,
#reviews .why-header,
#locations .why-header,
#emberpos .ember-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 14px;
}

#flavours .why-header {
  margin-block-end: 0;
  margin-bottom: 18px;
}

#why-braaiery .why-header::before,
#why-braaiery .why-header::after,
#flavours .why-header::before,
#flavours .why-header::after,
#reviews .why-header::before,
#reviews .why-header::after,
#locations .why-header::before,
#locations .why-header::after,
#emberpos .ember-section-title::before,
#emberpos .ember-section-title::after {
  content: "";
  flex: 0 0 clamp(150px, 24vw, 360px);
  height: 7px;
  border-radius: 999px;
}

#why-braaiery .why-header::before,
#flavours .why-header::before,
#reviews .why-header::before,
#locations .why-header::before,
#emberpos .ember-section-title::before {
  background: linear-gradient(to right,
  rgba(255, 107, 53, 0.08) 0%,
  rgba(255, 107, 53, 0.4) 55%,
      rgba(255, 107, 53, 0.95) 100%);
}

#why-braaiery .why-header::after,
#flavours .why-header::after,
#reviews .why-header::after,
#locations .why-header::after,
#emberpos .ember-section-title::after {
  background: linear-gradient(to left,
  rgba(255, 107, 53, 0.08) 0%,
  rgba(255, 107, 53, 0.4) 55%,
      rgba(255, 107, 53, 0.95) 100%);
}

#emberpos .ember-section-title {
  margin-block-end: 0;
  margin-bottom: 18px;
}

.why-subheader {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px 0;
  opacity: 0.95;
}

.why-paragraph {
  margin: 0 auto;
  max-width: 720px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  opacity: 0.9;
  font-style: italic;
}

.highlight {
  color: #ff6b35;
}

.why-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: auto;
  margin-top: 24px;
}

.why-img {
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 6px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  position: relative;
  width: 300px;
  height: 188px;
  aspect-ratio: 16 / 10;
}

.why-img.img-center {
  width: 300px;
  height: 188px;
  z-index: 1; /* put center image behind the side images */
}

.why-img.img-left,
.why-img.img-right {
  width: 390px;
  height: 244px;
  z-index: 3; /* side images sit above the center image */
}

.why-img.img-left {
  margin-right: -50px;
  transform: translateX(-12px);
}

.why-img.img-right {
  margin-left: -50px;
  transform: translateX(12px);
}

.why-about-trigger {
  margin-top: 26px;
  background-color: #ff6b35;
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.28s ease;
}

.why-about-trigger:hover {
  background-color: #ff8c5a;
  transform: translateY(-2px);
}

.why-story-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 5;
}

.section-why.story-open .why-story-scrim {
  opacity: 1;
  pointer-events: auto;
}

.why-story-panel {
  position: fixed;
  top: clamp(74px, 8vw, 108px);
  bottom: 16px;
  width: min(920px, 90vw);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px 0 0 12px;
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  overflow: hidden;
  z-index: 12;
  pointer-events: none;
  transition: transform 0.45s ease;
}

.why-story-panel-right {
  right: 0;
  transform: translateX(102%);
}

.section-why.story-open .why-story-panel-right {
  transform: translateX(0);
  pointer-events: auto;
}

.why-story-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  min-height: 0;
  padding: 28px 72px 28px 28px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.why-story-close {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(24, 24, 24, 0.9);
  color: #ffffff;
  border-radius: 6px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.28s ease;
}

.why-story-close:hover {
  border-color: rgba(255, 107, 53, 0.9);
  color: #ff6b35;
}

.why-story-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-story-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.93);
}

@media (max-width: 720px) {
  .why-images {
    flex-direction: column;
    height: auto;
    gap: 18px;
    margin-top: 18px;
  }
  .why-img.img-left,
  .why-img.img-right,
  .why-img.img-center {
    width: min(86%, 360px);
    height: auto;
    margin: 0;
    transform: none;
  }

  .why-story-panel,
  .why-story-panel-right {
    top: 92px;
    bottom: 10px;
    width: min(640px, 96vw);
    left: auto;
    right: 0;
    border-radius: 10px;
    transform: translateX(105%);
  }

  .section-why.story-open .why-story-panel,
  .section-why.story-open .why-story-panel-right {
    transform: translateX(0);
    pointer-events: auto;
  }

  .why-story-content {
    padding: 20px 24px 22px 20px;
  }
}

/* ===== FLAVOURS THAT SET FIRES Section ===== */
.section-flavours {
  padding: 90px 20px 100px;
  color: #ffffff;
  text-align: center;
}

.flavours-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.shop-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 6px;
  background: rgba(0, 0, 0, 0.28);
}

.shop-tab {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.shop-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.shop-tab.is-active {
  background: #ff6b35;
  color: #ffffff;
}

.flavours-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.flavour-card.is-hidden,
.flavour-category-divider.is-hidden,
.flavours-grid.is-hidden,
.wors-builder-panel.is-hidden {
  display: none;
}

.flavours-empty {
  margin: 6px 0 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

/* Wors Builder panel */
.wors-builder-panel {
  width: 100%;
  margin-top: 8px;
}

.wors-builder-shell {
  width: min(1100px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.34);
  padding: 22px;
  text-align: left;
}

.wors-builder-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.wors-builder-title {
  margin: 0;
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: 1px;
}

.wors-builder-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.5;
  max-width: 760px;
}

.wors-builder-deadline {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 107, 53, 0.42);
  border-radius: 8px;
  background: rgba(255, 107, 53, 0.12);
  color: #ffffff;
  font-size: 13px;
}

.wors-builder-deadline small {
  color: rgba(255, 255, 255, 0.78);
}

.wors-builder-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wors-builder-top-row,
.wors-builder-bottom-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.wors-builder-bottom-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wors-builder-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wors-builder-label {
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.wors-builder-field select,
.wors-builder-field textarea {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(15, 15, 15, 0.85);
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  padding: 10px 12px;
}

.wors-builder-field textarea {
  resize: vertical;
  min-height: 92px;
}

.wors-builder-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
}

.wors-builder-ingredients {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wors-group h4,
.wors-builder-profile h4 {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.wors-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.wors-chip {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 15, 15, 0.85);
  color: rgba(255, 255, 255, 0.9);
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
}

.wors-chip:hover {
  border-color: rgba(255, 107, 53, 0.65);
  color: #ffffff;
}

.wors-chip.is-selected {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.92);
  color: #ffffff;
}

.wors-builder-profile {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 12px;
  background: rgba(15, 15, 15, 0.85);
}

.wors-selected-count {
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.76);
}

.wors-meter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wors-meter-row {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.wors-meter-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.wors-meter-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6b35 0%, #ff9d3d 100%);
  transition: width 0.3s ease;
}

.wors-profile-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.wors-builder-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.wors-builder-price {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.wors-builder-price strong {
  color: #ffffff;
  font-size: 18px;
}

.wors-builder-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 10px 16px;
  text-decoration: none;
  background: #1f8a45;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.wors-builder-whatsapp:hover {
  background: #24a956;
  transform: translateY(-1px);
}

/* Product card shell */
.flavour-card {
  width: calc(25% - 15px);
  min-width: 220px;
  height: 410px;
  perspective: 1000px;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  overflow: hidden;
}

/* Final 3D flip system (stable) */
.flavour-card-inner {
  width: 100%;
  flex: 1;
  position: relative;
  transition: transform 0.6s 0.08s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-origin: center;
  will-change: transform;
  border-radius: 8px;
  background-color: #111111;
}

.flavour-card:hover .flavour-card-inner,
.flavour-card:focus-within .flavour-card-inner {
  transform: rotateY(180deg);
}

/* Front/back faces use solid backgrounds to avoid blend ghosting during rotation */
.flavour-front,
.flavour-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 8px;
  background-color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.flavour-front {
  transform: rotateY(0deg);
  z-index: 2;
  padding: 12px;
}

.flavour-card:not(.flavour-card-landscape) .flavour-front {
  padding: 6px;
}

.flavour-card.flavour-card-landscape .flavour-front {
  padding: 12px 4px;
}

.flavour-back {
  transform: rotateY(180deg);
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px;
}

.flavour-name {
  margin: 0;
  font-size: 18px;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
}

.flavour-description {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 260px;
}

.flavour-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Creates a dedicated compositing layer on some GPUs */
  transform: translateZ(0);
}

.flavour-card.flavour-card-landscape .flavour-img {
  object-fit: contain;
  transform: scale(1.05);
}

.flavour-actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.flavour-qty {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(18, 18, 18, 0.8);
  color: #ffffff;
  padding: 0 10px;
  font-size: 13px;
}

.flavour-add-btn {
  height: 38px;
  border: none;
  border-radius: 6px;
  padding: 0 14px;
  background-color: #28a745;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.flavour-add-btn:hover {
  background-color: #34c759;
  transform: translateY(-2px);
}

.flavour-category-divider {
  width: min(760px, 92%);
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  margin: 6px 0 2px;
}

.flavours-grid-landscape {
  margin-top: 10px;
}

.flavour-card-landscape {
  width: calc(50% - 10px);
  min-width: 320px;
  height: 290px;
}

@media (max-width: 1080px) {
  .flavour-card {
    width: calc(33.333% - 14px);
    height: 390px;
  }

  .flavour-card-landscape {
    width: calc(50% - 10px);
    height: 280px;
  }
}

@media (max-width: 820px) {
  .flavour-card {
    width: calc(50% - 10px);
    height: 370px;
  }

  .flavour-card-landscape {
    width: 100%;
    max-width: 520px;
    min-width: 0;
    height: 270px;
  }

}

@media (max-width: 520px) {
  .flavour-card {
    width: 100%;
    min-width: 0;
    max-width: 300px;
    height: 350px;
  }

  .flavour-qty {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
  }

  .flavour-card-landscape {
    max-width: 340px;
    height: 250px;
  }

}

@media (max-width: 980px) {
  .wors-builder-grid {
    grid-template-columns: 1fr;
  }

  .wors-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wors-builder-shell {
    padding: 16px;
  }

  .wors-builder-bottom-row {
    grid-template-columns: 1fr;
  }

  .wors-builder-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .wors-builder-whatsapp {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .wors-chip-grid {
    grid-template-columns: 1fr;
  }

  .wors-meter-row {
    grid-template-columns: 60px 1fr;
  }
}

@media (max-width: 480px) {
  .navbar-brand {
    font-size: 20px;
  }

  .navbar-icons {
    gap: 10px;
  }

  .icon-btn {
    padding: 3px;
  }

  .navbar {
    padding: 0 10px;
  }
}

/* ===== EMBERPOS Section ===== */
.emberpos-section {
  padding: 90px 20px 100px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.ember-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.ember-left {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.ember-flip-card {
  perspective: 1200px;
}

.ember-left-inner {
  width: 100%;
  min-height: 560px;
  position: relative;
  transition: transform 0.65s ease;
  transform-style: preserve-3d;
}

.ember-flip-card.is-flipped .ember-left-inner {
  transform: rotateY(180deg);
}

.ember-left-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ember-left-front {
  justify-content: flex-start;
}

.ember-left-back {
  transform: rotateY(180deg);
  justify-content: flex-start;
  gap: 14px;
}

.ember-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
  color: #ffffff;
}

.ember-heading {
  font-size: clamp(30px, 6vw, 68px);
  line-height: 1.1;
  margin-bottom: 8px;
}

.ember-left p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 500px;
}

.ember-cta-group {
  display: flex;
  gap: 15px;
  margin-top: auto;
  flex-wrap: wrap;
}

.ember-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.ember-store-badge:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.ember-store-badge-img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 100%;
}

.ember-btn-secondary {
  padding: 12px 22px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: rgba(18, 18, 18, 0.7);
}

.ember-btn-secondary:hover {
  border-color: rgba(255, 107, 53, 0.8);
  color: #ff6b35;
}

.ember-features {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ember-back-title {
  margin: 0;
}

.ember-flip-back-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(18, 18, 18, 0.7);
  color: #ffffff;
  height: 36px;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ember-flip-back-btn:hover {
  border-color: rgba(255, 107, 53, 0.8);
  color: #ff6b35;
}

.ember-download-back {
  margin-top: auto;
}

.ember-features li {
  margin: 0;
}

.ember-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(18, 18, 18, 0.55);
  text-align: center;
  padding: 10px 6px;
}

.ember-feature-icon {
  display: inline-flex;
  color: #ff6b35;
}

.ember-feature-icon-svg {
  width: 28px;
  height: 28px;
}

.ember-feature-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
}

@media (max-width: 900px) {
  .ember-features {
    grid-template-columns: 1fr 1fr;
  }
}

.ember-right {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.phone-stack {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: auto;
}

.phone {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  position: absolute;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone.main {
  position: relative;
  z-index: 3;
}

.ember-carousel-main {
  transition: opacity 0.45s ease;
}

.ember-carousel-main.is-fading {
  opacity: 0.25;
}

@media (max-width: 960px) {
  .ember-container {
    flex-direction: column;
    align-items: center;
    gap: 34px;
  }

  .ember-left {
    text-align: center;
  }

  .ember-left-face {
    align-items: center;
  }

  .ember-left p {
    max-width: 640px;
  }

  .ember-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .ember-left-inner {
    min-height: 460px;
  }
}

/* ===== REVIEWS Section ===== */
.section-reviews {
  padding: 90px 20px 100px;
  color: #ffffff;
  text-align: center;
}

.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

#reviews .why-header {
  margin-block-end: 0;
  margin-bottom: 10px;
}

.reviews-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  min-height: 170px;
}

.review-stars {
  font-size: 16px;
  letter-spacing: 1px;
}

.review-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.review-author {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: #ff6b35;
}

.reviews-cta {
  margin-top: 6px;
}

.reviews-btn {
  display: inline-block;
  background-color: #ff6b35;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.reviews-btn:hover {
  background-color: #ff8c5a;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== LOCATIONS Section ===== */
.section-locations {
  padding: 90px 20px 100px;
  color: #ffffff;
  text-align: center;
  background-color: #121212;
  background-image: linear-gradient(180deg, rgba(24, 24, 24, 0.96) 0%, rgba(12, 12, 12, 0.98) 100%);
}

.locations-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

#locations .why-header {
  margin-block-end: 0;
  margin-bottom: 10px;
}

.locations-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.location-card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.location-card h3 {
  margin: 0;
  font-size: 22px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}

.location-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.location-card iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 8px;
  margin-top: 4px;
}

.location-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(18, 18, 18, 0.75);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.location-map-link::before {
  content: "📍";
  font-size: 14px;
  line-height: 1;
}

.location-map-link:hover {
  border-color: rgba(255, 107, 53, 0.9);
  color: #ff6b35;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== AUTH Sections ===== */
.section-auth,
.section-login {
  padding: 120px 20px 90px;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 122, 24, 0.18) 0%, rgba(255, 122, 24, 0) 44%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.96) 0%, rgba(10, 10, 10, 0.98) 100%);
}

.auth-inner,
.login-inner {
  max-width: 560px;
  margin: 0 auto;
}

.auth-card,
.login-card {
  position: relative;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
  padding: 34px 28px;
}

.auth-home-link,
.login-home-link {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(18, 18, 18, 0.72);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.auth-home-link:hover,
.login-home-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 24, 0.95);
  color: #ff7a18;
  background: rgba(24, 24, 24, 0.88);
}

.auth-home-link:focus-visible,
.login-home-link:focus-visible {
  outline: 2px solid rgba(255, 122, 24, 0.95);
  outline-offset: 2px;
}

#login .auth-title,
#login .login-title,
#reset-password .auth-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  text-align: left;
}

.auth-subtitle,
.login-subtitle {
  margin: 8px 0 20px;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.auth-form,
.login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-field,
.login-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-label,
.login-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.auth-input,
.login-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.92);
  color: #ffffff;
  padding: 12px 13px;
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.auth-input:focus,
.login-input:focus {
  outline: none;
  border-color: rgba(255, 122, 24, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.18);
}

.auth-submit,
.login-submit {
  width: 100%;
  margin-top: 8px;
}

.auth-alert,
.login-alert {
  border-radius: 8px;
  padding: 11px 13px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.4;
}

.auth-alert-success,
.login-alert-success {
  border: 1px solid rgba(108, 255, 160, 0.5);
  background: rgba(16, 64, 34, 0.7);
  color: #d8ffe3;
}

.auth-alert-error,
.login-alert-error {
  border: 1px solid rgba(255, 110, 110, 0.54);
  background: rgba(74, 12, 12, 0.72);
  color: #ffd7d7;
}

.auth-footer,
.login-footer {
  margin-top: 16px;
  text-align: center;
}

.auth-footer p,
.login-footer p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.auth-footer p + p,
.login-footer p + p {
  margin-top: 8px;
}

.auth-footer a,
.login-footer a {
  color: #ffb26b;
  text-decoration: none;
  font-weight: 700;
}

.auth-footer a:hover,
.login-footer a:hover {
  color: #ff7a18;
}

.auth-muted,
.login-muted {
  color: rgba(255, 255, 255, 0.7);
}

.auth-submit-link {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  margin-top: 4px;
}

.auth-divider {
  margin: 10px 0 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.65px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.auth-google-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.auth-google-form-hidden {
  display: none;
}

.auth-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.account-delete-inner {
  max-width: 720px;
}

.account-delete-card {
  display: grid;
  gap: 10px;
}

.account-delete-notice {
  margin-bottom: 16px;
  border: 1px solid rgba(255, 178, 107, 0.45);
  background: rgba(84, 46, 14, 0.55);
  color: #ffe6cf;
}

.account-delete-form {
  gap: 16px;
}

.account-delete-scope {
  margin: 2px 0 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.56);
  display: grid;
  gap: 10px;
}

.account-delete-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
}

.account-delete-option input[type="radio"] {
  margin-top: 3px;
  accent-color: #ff7a18;
}

.account-delete-option span {
  display: grid;
  gap: 3px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.account-delete-option small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.account-delete-option.is-disabled {
  opacity: 0.64;
  cursor: not-allowed;
}

.account-delete-scope-note {
  margin: 2px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.74);
}

.account-delete-note {
  min-height: 96px;
  resize: vertical;
  font-family: inherit;
}

.account-delete-contact-trigger {
  border: none;
  padding: 0;
  background: transparent;
  color: #ffb26b;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.account-delete-contact-trigger:hover {
  color: #ff7a18;
}

.account-delete-contact-trigger:focus-visible {
  outline: 2px solid rgba(255, 122, 24, 0.95);
  outline-offset: 2px;
  border-radius: 2px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 96px 18px 18px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1450;
}

.contact-modal.show {
  display: flex;
}

.contact-modal-dialog {
  width: min(100%, 560px);
  max-height: calc(100vh - 114px);
  overflow-y: auto;
}

.contact-modal-title {
  padding-right: 52px;
  color: #ffffff;
}

#contactUsModal .auth-input {
  background: rgba(15, 15, 15, 0.92);
  color: #ffffff;
  color-scheme: dark;
}

#contactUsModal .auth-input:-webkit-autofill,
#contactUsModal .auth-input:-webkit-autofill:hover,
#contactUsModal .auth-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(15, 15, 15, 0.96) inset;
  -webkit-text-fill-color: #ffffff;
}

.contact-modal-subtitle {
  margin-bottom: 22px;
}

.contact-select {
  appearance: none;
}

.contact-textarea {
  min-height: 136px;
  resize: vertical;
  font: inherit;
}

.contact-form-status {
  margin-bottom: 16px;
}

.contact-submit.is-submitting {
  opacity: 0.72;
  cursor: progress;
}

body.contact-modal-open {
  overflow: hidden;
}

@media (max-width: 620px) {
  .section-auth,
  .section-login {
    padding: 108px 14px 70px;
  }

  .auth-card,
  .login-card {
    padding: 26px 18px;
  }

  .account-delete-option {
    padding: 9px;
  }

  .auth-home-link,
  .login-home-link {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }

  .contact-modal {
    padding: 84px 12px 12px;
  }

  .contact-modal-dialog {
    max-height: calc(100vh - 96px);
  }
}

/* ===== Policy Pages ===== */
.policy-page {
  padding: 112px 20px 78px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 122, 24, 0.16) 0%, rgba(255, 122, 24, 0) 42%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.97) 0%, rgba(9, 9, 9, 0.99) 100%);
}

.policy-inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 4px;
}

.policy-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
}

.policy-updated {
  margin: 10px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.policy-content {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
  padding: 24px 22px;
}

.policy-list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 16px;
}

.policy-list > li {
  color: rgba(255, 255, 255, 0.92);
}

.policy-list h2 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #ffffff;
}

.policy-list h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #ffffff;
}

.policy-list p {
  margin: 0;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.87);
}

.policy-sublist {
  margin: 8px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.policy-sublist li {
  color: rgba(255, 255, 255, 0.87);
  line-height: 1.55;
}

@media (max-width: 620px) {
  .policy-page {
    padding: 100px 12px 64px;
  }

  .policy-content {
    padding: 20px 16px;
  }

  .policy-list {
    padding-left: 20px;
    gap: 14px;
  }

  .policy-list h2 {
    font-size: 17px;
  }
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  padding: 42px 20px 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0) 42%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.98) 0%, rgba(8, 8, 8, 1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/ui/embers.png');
  background-size: 380px auto;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
}

.site-footer-inner,
.footer-bottom-row {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 28px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  width: fit-content;
}

.footer-brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-brand-name {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: 1px;
}

.footer-tagline {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.footer-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-menu-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu-links {
  display: grid;
  gap: 9px;
}

.footer-menu-links a,
.footer-cookie-settings {
  width: fit-content;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  border: none;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-menu-links a:hover,
.footer-cookie-settings:hover {
  color: #ff8c5a;
  transform: translateX(2px);
}

.footer-menu-links a:focus-visible,
.footer-cookie-settings:focus-visible {
  outline: 2px solid rgba(255, 122, 24, 0.85);
  outline-offset: 2px;
  border-radius: 3px;
}

.footer-title {
  margin: 0;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.28s ease;
}

.footer-socials a:hover {
  border-color: rgba(255, 107, 53, 0.9);
  background: rgba(255, 107, 53, 0.18);
  transform: translateY(-2px);
}

.footer-bottom-row {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-credit {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-credit a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.28s ease;
}

.footer-credit a:hover {
  color: #ff6b35;
  border-bottom-color: rgba(255, 107, 53, 0.95);
}

@media (max-width: 760px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-menu-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-brand-name {
    font-size: clamp(24px, 9vw, 36px);
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Mobile Hardening ===== */
@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .section-why,
  .section-flavours,
  .emberpos-section,
  .section-reviews,
  .section-locations {
    padding: 72px 14px 78px;
  }

  .hero {
    min-height: 100svh;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero-overlay {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    height: auto;
    justify-content: flex-start;
    gap: 16px;
    padding-top: 88px;
    padding-bottom: 20px;
  }

  .hero-column {
    padding: 18px 14px;
  }

  .hero-column-left {
    min-height: 85svh;
  }

  .hero-left-inner {
    min-height: 100%;
    padding-top: 10px;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(34px, 11vw, 56px);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-titles {
    margin-top: 0;
  }

  .hero-column-right {
    max-width: 100%;
    padding: 20px 16px !important;
  }

  .hero-product-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .hero-scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    animation: hero-scroll-bounce 1.8s ease-in-out infinite;
  }

  .hero-scroll-cue-carat {
    font-size: 20px;
    line-height: 1;
    color: #ff6b35;
  }


@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}
  .hero-btn {
    white-space: normal;
    line-height: 1.3;
  }

  .hero-product-buttons {
    width: 75%;
    max-width: 360px;
    margin-inline: auto;
  }

  #why-braaiery .why-header,
  #flavours .why-header,
  #reviews .why-header,
  #locations .why-header,
  #emberpos .ember-section-title {
    white-space: normal;
    flex-wrap: wrap;
    gap: 10px;
  }

  #why-braaiery .why-header::before,
  #why-braaiery .why-header::after,
  #flavours .why-header::before,
  #flavours .why-header::after,
  #reviews .why-header::before,
  #reviews .why-header::after,
  #locations .why-header::before,
  #locations .why-header::after,
  #emberpos .ember-section-title::before,
  #emberpos .ember-section-title::after {
    flex-basis: clamp(70px, 18vw, 140px);
    height: 5px;
  }

  .shop-tabs {
    width: 100%;
    max-width: 560px;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .shop-tab {
    flex: 1 1 auto;
    min-width: 120px;
  }

  .ember-left,
  .ember-right {
    min-width: 0;
    width: 100%;
  }

  .ember-left-face {
    padding: 18px;
  }

  .ember-features {
    gap: 8px;
  }

  .ember-feature-card {
    min-height: 76px;
    padding: 8px 6px;
  }

  .ember-feature-icon-svg {
    width: 24px;
    height: 24px;
  }

  .ember-feature-label {
    font-size: 11px;
  }

  .ember-cta-group {
    width: 100%;
    justify-content: center;
  }

  .ember-btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .navbar {
    gap: 10px;
    padding: 0 10px;
  }

  .navbar-brand {
    padding-left: 6px;
    gap: 6px;
  }

  .navbar-logo-image {
    height: 40px;
  }

  .navbar-logo-text {
    font-size: 15px;
    letter-spacing: 1px;
  }

  .navbar-icons {
    display: none;
  }

  .location-card h3 {
    font-size: 20px;
    letter-spacing: 0.6px;
  }

  .location-map-link {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .flavour-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .flavour-qty,
  .flavour-add-btn {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .flavour-add-btn {
    height: 40px;
  }

  .footer-socials a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #why-braaiery .why-header::before,
  #why-braaiery .why-header::after,
  #flavours .why-header::before,
  #flavours .why-header::after,
  #reviews .why-header::before,
  #reviews .why-header::after,
  #locations .why-header::before,
  #locations .why-header::after,
  #emberpos .ember-section-title::before,
  #emberpos .ember-section-title::after {
    display: none;
  }

  .hero-buttons {
    width: 75%;
    max-width: 320px;
  }

  .flavour-card {
    max-width: 100%;
  }

  .ember-left-inner {
    min-height: 560px;
  }
}

@media (max-width: 414px) {
  .navbar-brand {
    gap: 4px;
    padding-left: 2px;
  }

  .navbar-logo-image {
    height: 34px;
  }

  .navbar-logo-text {
    font-size: 13px;
    letter-spacing: 0.6px;
  }

  .hero-column {
    padding-inline: 10px;
  }

  .hero-title {
    font-size: clamp(30px, 10.8vw, 44px);
  }

  .hero-product-buttons .hero-btn {
    font-size: 12px;
    padding: 10px 12px;
  }

  .shop-tab {
    min-width: 102px;
    font-size: 11px;
    padding: 9px 10px;
  }

  .flavour-card {
    height: 336px;
  }

  .flavour-name {
    font-size: 17px;
  }

  .flavour-description {
    font-size: 12px;
    line-height: 1.4;
  }

  .ember-left-face {
    padding: 14px;
  }

  .ember-left-inner {
    min-height: 600px;
  }

  .review-card,
  .location-card {
    padding: 16px;
  }
}

@media (max-width: 390px) {
  .section-why,
  .section-flavours,
  .emberpos-section,
  .section-reviews,
  .section-locations {
    padding-inline: 10px;
  }

  .hero-overlay {
    padding-top: 84px;
  }

  .why-subheader,
  .why-paragraph {
    font-size: 17px;
  }

  .shop-tab {
    min-width: 96px;
    font-size: 10px;
  }

  .flavour-card {
    height: 322px;
  }

  .flavour-actions {
    gap: 6px;
  }

  .ember-left-inner {
    min-height: 640px;
  }
}

@media (max-width: 360px) {
  .navbar {
    min-height: 64px;
  }

  .hero-overlay {
    padding-top: 78px;
  }

  .hero-title {
    font-size: clamp(28px, 10.5vw, 38px);
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .shop-tabs {
    gap: 5px;
    padding: 5px;
  }

  .shop-tab {
    min-width: 92px;
    padding: 8px 8px;
  }

  .flavour-card {
    height: 312px;
  }

  .ember-left-inner {
    min-height: 680px;
  }
}

/* ===== Store Partials ===== */

.store-category-nav {
  position: sticky;
  top: 70px;
  z-index: 900;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.95), rgba(10, 10, 10, 0.95));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.store-category-nav .container {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.store-category-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.store-category-nav-link:hover {
  color: #ff7a18;
  border-color: rgba(255, 122, 24, 0.85);
  transform: translateY(-1px);
}

.store-category-nav-link.active {
  background: #ff6b35;
  border-color: #ff6b35;
  color: #ffffff;
}

.store-categories {
  padding: 96px 20px 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 122, 24, 0.16) 0%, rgba(255, 122, 24, 0) 42%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.97) 0%, rgba(9, 9, 9, 0.99) 100%);
}

.store-title {
  margin: 0 0 20px;
  font-size: clamp(34px, 5vw, 52px);
}

.store-empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.store-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.store-category-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 208px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 0% 50%, rgba(255, 122, 24, 0.16) 0%, rgba(255, 122, 24, 0) 55%),
    linear-gradient(180deg, rgba(28, 28, 28, 0.96) 0%, rgba(13, 13, 13, 0.98) 100%);
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.store-category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 24, 0.8);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  background:
    radial-gradient(circle at 0% 50%, rgba(255, 122, 24, 0.2) 0%, rgba(255, 122, 24, 0) 58%),
    linear-gradient(180deg, rgba(32, 32, 32, 0.98) 0%, rgba(15, 15, 15, 0.99) 100%);
}

.store-category-card:focus-visible {
  outline: 2px solid rgba(255, 122, 24, 0.9);
  outline-offset: 2px;
}

.store-category-card-text {
  flex: 1;
  min-width: 0;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.store-category-card h3 {
  margin: 0;
  font-size: clamp(24px, 3.1vw, 30px);
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #ffffff;
}

.store-category-card p {
  margin: 10px 0 0;
  max-width: 44ch;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.store-category-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  color: #ffbf85;
  letter-spacing: 0.2px;
  font-weight: 700;
}

.store-category-card:hover .store-category-cta {
  color: #ff7a18;
}

.store-category-card-image-wrap {
  width: clamp(160px, 34%, 230px);
  min-width: 160px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.store-category-card-image {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center;
  clip-path: circle(100% at left center);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.store-category-card-image-fallback {
  background:
    radial-gradient(circle at 22% 42%, rgba(255, 122, 24, 0.65) 0%, rgba(255, 122, 24, 0) 48%),
    linear-gradient(145deg, #2c2c2c 0%, #161616 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: 1px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.category-products {
  padding: 62px 20px 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 122, 24, 0.14) 0%, rgba(255, 122, 24, 0) 44%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.97) 0%, rgba(9, 9, 9, 0.99) 100%);
}

.category-title {
  margin: 0;
  font-size: clamp(32px, 5vw, 50px);
}

.category-description {
  margin: 10px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.category-back-link {
  margin-top: 16px;
  display: inline-flex;
  color: #ffb26b;
  text-decoration: none;
  font-weight: 700;
}

.category-back-link:hover {
  color: #ff7a18;
}

.category-empty {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.category-product-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.store-product-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.92) 0%, rgba(14, 14, 14, 0.94) 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#category-products .store-product-card {
  width: 85%;
  margin: 0 auto;
}

.store-product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

#category-products .store-product-image {
  aspect-ratio: 4 / 3;
}

.store-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-product-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-product-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.store-product-price {
  margin: 0;
  color: #ffb26b;
  font-weight: 700;
}

.store-product-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.4;
}

.store-card-purchase-form {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.store-card-qty {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(18, 18, 18, 0.8);
  color: #ffffff;
  padding: 0 10px;
  font-size: 13px;
}

.store-card-qty:focus {
  outline: none;
  border-color: rgba(255, 122, 24, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.15);
}

.store-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.store-card-add-btn,
.store-card-view-btn {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 6px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.store-card-add-btn {
  border: 1px solid #28a745;
  background: #28a745;
  color: #ffffff;
}

.store-card-add-btn:hover {
  background: #34c759;
  border-color: #34c759;
  transform: translateY(-1px);
}

.cart-feedback-btn {
  position: relative;
}

.cart-feedback-btn.is-processing,
.cart-feedback-btn.is-success {
  pointer-events: none;
}

.cart-feedback-btn.is-processing::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  animation: cartBtnSpin 0.65s linear infinite;
}

.cart-feedback-btn.is-success::after {
  content: '✓';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  font-size: 12px;
  color: #ffffff;
}

@keyframes cartBtnSpin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.store-card-view-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.92);
}

.store-card-view-btn:hover {
  border-color: rgba(255, 178, 107, 0.7);
  background: rgba(255, 178, 107, 0.12);
  color: #ffe2c5;
  transform: translateY(-1px);
}

.store-product-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.store-toast-wrap {
  margin-top: 84px;
  margin-bottom: 12px;
}

.store-cart-toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(108, 255, 160, 0.5);
  background: rgba(16, 64, 34, 0.75);
  color: #e3ffe8;
}

.store-cart-toast a {
  color: #ffb26b;
  font-weight: 700;
  text-decoration: none;
}

.store-cart-toast a:hover {
  color: #ff7a18;
}

.product-detail {
  padding: 104px 20px 44px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 122, 24, 0.14) 0%, rgba(255, 122, 24, 0) 44%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.97) 0%, rgba(9, 9, 9, 0.99) 100%);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.product-gallery,
.product-info {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.9) 0%, rgba(14, 14, 14, 0.94) 100%);
}

.product-gallery {
  padding: 14px;
  display: grid;
  justify-items: center;
}

.product-main-image {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  aspect-ratio: 1 / 1;
  width: min(100%, 520px);
  margin: 0 auto;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumbs {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 520px);
}

.product-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.88;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.product-thumb.active,
.product-thumb:hover {
  border-color: #ff7a18;
  opacity: 1;
}

.product-placeholder {
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  min-height: 260px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.68);
}

.product-info {
  padding: 18px;
}

.product-title {
  margin: 12px 0 0;
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.06;
}

.product-category {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.product-price-large {
  margin: 10px 0 0;
  font-size: 28px;
  color: #ffb26b;
  font-weight: 700;
}

.product-description {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.product-actions {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.product-qty-row {
  display: inline-grid;
  gap: 6px;
  max-width: 140px;
}

.product-qty-row span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.product-qty-select {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.92);
  color: #ffffff;
  padding: 9px 10px;
  font-size: 14px;
}

.product-qty-select:focus {
  outline: none;
  border-color: rgba(255, 122, 24, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.15);
}

.product-add-btn {
  width: 100%;
  justify-content: center;
}

.related-products {
  padding: 0 20px 70px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.99) 0%, rgba(7, 7, 7, 1) 100%);
}

.related-products-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4.5vw, 40px);
  color: #ffffff;
}

.cart-page {
  padding: 120px 20px 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 4%, rgba(255, 122, 24, 0.14) 0%, rgba(255, 122, 24, 0) 42%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.97) 0%, rgba(9, 9, 9, 0.99) 100%);
}

.cart-title {
  margin: 0 0 20px;
  font-size: clamp(34px, 5vw, 52px);
}

.cart-empty {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(18, 18, 18, 0.85);
  padding: 24px;
  display: grid;
  gap: 12px;
  justify-items: start;
}

.cart-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cart-table {
  display: grid;
  gap: 10px;
}

.cart-row {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.92) 0%, rgba(14, 14, 14, 0.94) 100%);
  padding: 12px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-product img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-price {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.cart-price.is-estimated {
  color: #ffe1c2;
  display: inline-grid;
  gap: 2px;
}

.cart-price.is-estimated small {
  color: rgba(255, 178, 107, 0.88);
  font-size: 11px;
}

.cart-qty {
  display: grid;
  gap: 6px;
}

.cart-qty-input {
  width: 88px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(11, 11, 11, 0.9);
  color: #ffffff;
  padding: 8px 10px;
}

.cart-qty-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.cart-line {
  color: #ffb26b;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}

.cart-line.is-estimated {
  color: #ffd7b0;
}

.cart-remove-link {
  color: #ffb26b;
  text-decoration: none;
  font-weight: 700;
}

.cart-remove-link:hover {
  color: #ff7a18;
}

.cart-summary {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.9);
  padding: 14px;
}

.cart-total-group {
  display: grid;
  gap: 8px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
}

.cart-total.is-estimated {
  color: #ffd7b0;
}

.cart-total.is-projecting {
  margin-top: 2px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  font-size: 19px;
}

.cart-estimate-note {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.4;
}

.cart-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.cart-update-btn,
.cart-checkout-btn,
.cart-continue-link {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
  font-weight: 700;
}

.cart-checkout-btn {
  background: #28a745;
  border: 2px solid #28a745;
  color: #ffffff;
}

.cart-checkout-btn:hover {
  background: #34c759;
  border-color: #34c759;
}

.cart-continue-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffb26b;
  text-decoration: none;
  padding: 10px 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.cart-continue-link:hover {
  color: #ff7a18;
}

.checkout-page {
  padding: 120px 20px 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 6%, rgba(255, 122, 24, 0.16) 0%, rgba(255, 122, 24, 0) 45%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.97) 0%, rgba(9, 9, 9, 0.99) 100%);
}

.checkout-title {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 52px);
}

.checkout-alert {
  border-radius: 10px;
  border: 1px solid rgba(255, 110, 110, 0.52);
  background: rgba(74, 12, 12, 0.72);
  color: #ffd7d7;
  padding: 10px 12px;
  margin-bottom: 14px;
}

.checkout-alert ul {
  margin: 0;
  padding-left: 18px;
}

.checkout-steps {
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.checkout-steps button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(18, 18, 18, 0.85);
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}

.checkout-steps button.active {
  background: #ff6b35;
  border-color: #ff6b35;
}

.checkout-steps button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 16px;
}

.checkout-main,
.checkout-order-summary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.92) 0%, rgba(14, 14, 14, 0.94) 100%);
}

.checkout-main {
  padding: 16px;
}

.checkout-step {
  display: none;
}

.checkout-step.active {
  display: block;
}

.checkout-step h3 {
  margin: 0;
  font-size: 24px;
}

.checkout-fields-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
  align-items: start;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.checkout-field-sm {
  grid-column: span 1;
}

.checkout-field-lg {
  grid-column: span 1;
}

.checkout-field span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.checkout-input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.92);
  color: #ffffff;
  padding: 11px 12px;
  font-size: 14px;
}

select.checkout-input {
  -webkit-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #ffb26b 50%), linear-gradient(135deg, #ffb26b 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 1px), calc(100% - 12px) calc(50% + 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px;
}

.checkout-input:-webkit-autofill,
.checkout-input:-webkit-autofill:hover,
.checkout-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1000px rgba(15, 15, 15, 0.92) inset;
  transition: background-color 9999s ease-out 0s;
}

.checkout-input:focus {
  outline: none;
  border-color: rgba(255, 122, 24, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.15);
}

.checkout-switch {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.is-hidden {
  display: none !important;
}

.checkout-step-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.checkout-confirm-btn {
  min-width: 200px;
  justify-content: center;
}

.checkout-radio-group {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.checkout-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkout-radio.is-muted {
  color: rgba(255, 255, 255, 0.55);
}

.checkout-sidebar {
  position: relative;
}

.checkout-order-summary {
  position: sticky;
  top: 86px;
  padding: 16px;
}

.checkout-order-summary h3 {
  margin: 0;
  font-size: 24px;
}

.checkout-order-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.checkout-order-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.checkout-order-item small,
.checkout-note {
  color: rgba(255, 255, 255, 0.68);
}

.checkout-note-highlight {
  margin: 10px 0 2px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 122, 24, 0.45);
  border-radius: 10px;
  background: rgba(255, 122, 24, 0.1);
  color: rgba(255, 236, 220, 0.92);
}

.checkout-order-total {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 19px;
}

.order-confirmation {
  padding: 120px 20px 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 122, 24, 0.16) 0%, rgba(255, 122, 24, 0) 42%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.97) 0%, rgba(9, 9, 9, 0.99) 100%);
}

.order-confirmation-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.9) 0%, rgba(14, 14, 14, 0.94) 100%);
  padding: 30px 24px;
}

.order-confirmation-id {
  display: inline-block;
  margin-top: 6px;
  font-size: 28px;
  color: #ffb26b;
}

.order-confirmation-note {
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.84);
}

.orders-page {
  padding: 120px 20px 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 122, 24, 0.14) 0%, rgba(255, 122, 24, 0) 45%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.97) 0%, rgba(9, 9, 9, 0.99) 100%);
}

.orders-title {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 52px);
}

.orders-empty {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.9) 0%, rgba(14, 14, 14, 0.94) 100%);
  padding: 20px;
  display: grid;
  gap: 12px;
  justify-items: start;
}

.orders-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.orders-table-wrap {
  margin-top: 12px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: linear-gradient(180deg, rgba(25, 25, 25, 0.92) 0%, rgba(12, 12, 12, 0.95) 100%);
}

.orders-table th,
.orders-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.orders-table th {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.orders-table tr:last-child td {
  border-bottom: none;
}

.order-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 700;
}

.order-status.is-paid {
  background: rgba(32, 140, 64, 0.25);
  border: 1px solid rgba(108, 255, 160, 0.5);
  color: #d8ffe3;
}

.order-status.is-pending {
  background: rgba(138, 138, 138, 0.16);
  border: 1px solid rgba(210, 210, 210, 0.35);
  color: #f1f1f1;
}

.orders-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.orders-action-btn {
  min-width: 84px;
  justify-content: center;
}

#admin-products .admin-products-controls {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

#admin-products .admin-products-controls .admin-primary-btn {
  margin-bottom: 0;
  width: fit-content;
}

#admin-products .admin-products-controls .admin-filter-form {
  margin: 0;
}

#admin-products .orders-action-btn {
  min-width: 62px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#admin-categories .orders-action-btn {
  min-width: 62px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#my-orders .orders-action-btn {
  min-width: 62px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#admin-categories .admin-category-row {
  cursor: pointer;
}

#admin-categories .admin-category-row td {
  transition: background-color 0.2s ease;
}

#admin-categories .admin-category-row:hover td {
  background-color: rgba(255, 255, 255, 0.04);
}

#admin-categories .admin-category-row.is-selected td {
  background-color: rgba(255, 122, 24, 0.16);
}

.orders-retry-link {
  color: #ffb26b;
  text-decoration: none;
  font-weight: 700;
}

.orders-retry-link:hover {
  color: #ff7a18;
}

.order-details-page {
  padding: 120px 20px 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 122, 24, 0.14) 0%, rgba(255, 122, 24, 0) 44%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.97) 0%, rgba(9, 9, 9, 0.99) 100%);
}

.order-details-title {
  margin: 8px 0 0;
  font-size: clamp(32px, 4.8vw, 50px);
}

.order-details-date {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.order-details-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.order-details-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.9) 0%, rgba(14, 14, 14, 0.94) 100%);
  padding: 14px;
}

.order-details-card h4 {
  margin: 0;
  font-size: 19px;
}

.order-details-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.order-status.is-processing {
  background: rgba(52, 140, 198, 0.2);
  border: 1px solid rgba(118, 210, 255, 0.48);
  color: #ddf4ff;
}

.order-status.is-cancelled {
  background: rgba(160, 25, 25, 0.2);
  border: 1px solid rgba(255, 120, 120, 0.5);
  color: #ffdada;
}

.order-items-title {
  margin: 20px 0 10px;
  font-size: 24px;
}

.order-items-wrap {
  margin-top: 0;
}

.order-items-table {
  min-width: 620px;
}

.tracking-page {
  padding: 120px 20px 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 6%, rgba(255, 122, 24, 0.14) 0%, rgba(255, 122, 24, 0) 44%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.97) 0%, rgba(9, 9, 9, 0.99) 100%);
}

.tracking-card {
  max-width: 760px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.9) 0%, rgba(14, 14, 14, 0.94) 100%);
  padding: 26px 22px;
}

.tracking-subtitle {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.tracking-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-page {
  padding: 120px 20px 70px;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 6%, rgba(255, 122, 24, 0.14) 0%, rgba(255, 122, 24, 0) 44%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.97) 0%, rgba(9, 9, 9, 0.99) 100%);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: 96px;
}

.admin-side-menu {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.9) 0%, rgba(14, 14, 14, 0.94) 100%);
}

.admin-side-link {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 12px;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.admin-side-link:hover {
  border-color: rgba(255, 122, 24, 0.85);
  color: #ffb26b;
}

.admin-side-link.active {
  border-color: rgba(255, 122, 24, 0.95);
  background: rgba(255, 122, 24, 0.14);
  color: #ffd1a6;
}

.admin-side-link-cta {
  border-color: rgba(255, 122, 24, 0.65);
}

.admin-main {
  min-width: 0;
}

.admin-title {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 52px);
}

.admin-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 560px;
}

.admin-link-list a {
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.9) 0%, rgba(14, 14, 14, 0.94) 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 14px;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.admin-link-list a:hover {
  border-color: rgba(255, 122, 24, 0.85);
  color: #ffb26b;
  transform: translateY(-1px);
}

.admin-primary-btn {
  margin-bottom: 12px;
}

.admin-filter-form {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-input {
  min-width: 280px;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.92);
  color: #ffffff;
  padding: 11px 12px;
  font-size: 14px;
}

.admin-input:focus {
  outline: none;
  border-color: rgba(255, 122, 24, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.15);
}

.admin-table-wrap {
  margin-top: 6px;
}

.admin-table {
  min-width: 760px;
}

.admin-form {
  max-width: 760px;
  display: grid;
  gap: 12px;
}

.admin-form-spaced {
  margin-bottom: 24px;
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-checkbox-field span {
  margin: 0;
}

.admin-field span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.admin-subtitle {
  margin: 22px 0 12px;
  font-size: clamp(24px, 3.2vw, 34px);
}

.admin-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.admin-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.admin-image-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.9) 0%, rgba(14, 14, 14, 0.94) 100%);
  padding: 10px;
}

.admin-image-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.admin-image-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-mini-btn {
  padding: 8px 10px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-side-menu {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

.cookie-consent-overlay,
.request-success-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1400;
}

.cookie-consent-overlay.show,
.request-success-modal.show {
  display: flex;
}

.cookie-consent-modal,
.request-success-box {
  width: min(100%, 520px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.98), rgba(10, 10, 10, 0.98));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.45);
  padding: 24px 22px;
  color: #ffffff;
}

.cookie-consent-modal h3,
.request-success-box h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.15;
  color: #ff7a18;
}

.cookie-consent-desc,
.request-success-box p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.cookie-consent-options {
  margin-top: 16px;
  display: grid;
  gap: 9px;
}

.cookie-consent-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.cookie-consent-option input {
  accent-color: #ff7a18;
}

.cookie-consent-buttons,
.request-success-close {
  margin-top: 18px;
}

.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.request-success-icon {
  color: #ff7a18;
}

.request-success-close {
  min-width: 160px;
}

@media (max-width: 620px) {
  .store-category-nav {
    top: 64px;
  }

  .store-category-grid {
    grid-template-columns: 1fr;
  }

  .store-category-card {
    min-height: 180px;
  }

  .store-category-card-text {
    padding: 20px 18px;
  }

  .store-category-card h3 {
    font-size: clamp(20px, 7vw, 26px);
  }

  .store-category-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  .store-category-card-image-wrap {
    width: 132px;
    min-width: 132px;
  }

  .category-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-toast-wrap {
    margin-top: 74px;
  }

  .store-cart-toast {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-fields-grid {
    grid-template-columns: 1fr;
  }

  .checkout-field-sm,
  .checkout-field-lg {
    grid-column: span 1;
  }

  .checkout-order-summary {
    position: static;
  }

  .order-details-grid {
    grid-template-columns: 1fr;
  }

  .cart-row {
    grid-template-columns: 1fr;
  }

  .cart-line {
    text-align: left;
  }

  .cart-actions {
    grid-template-columns: 1fr;
  }

  .cart-qty-input {
    width: 100%;
    max-width: 140px;
  }
}

@media (max-width: 1100px) {
  .category-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .category-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pos-owner-subtitle {
  margin-bottom: 14px;
}

.pos-owner-business-switch {
  max-width: 460px;
}

.pos-owner-business-switch .admin-input {
  min-width: 0;
}

.pos-owner-card {
  margin-top: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.88) 0%, rgba(12, 12, 12, 0.92) 100%);
  padding: 16px;
}

.pos-owner-card .admin-subtitle {
  margin-top: 0;
}

.pos-owner-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 12px;
}

.pos-owner-import-form,
.pos-owner-product-form {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(10, 10, 10, 0.7);
  padding: 12px;
}

.pos-owner-template-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pos-owner-inline-form {
  margin: 0;
}

.pos-owner-inline-edit summary {
  cursor: pointer;
}

.pos-owner-inline-editor {
  margin-top: 8px;
  max-width: 320px;
}

.pos-owner-delete-button {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

@media (max-width: 980px) {
  .pos-owner-tools-grid {
    grid-template-columns: 1fr;
  }
}
