:root {
  --paper: #090909;
  --surface: #111111;
  --surface-2: #181818;
  --surface-3: #1f1f1f;
  --ink: #f6f1e8;
  --muted: #b8ae9b;
  --gold: #c7a15a;
  --gold-soft: rgba(199, 161, 90, 0.16);
  --gold-strong: #e1bc73;
  --brand: #c7a15a;
  --accent: #7caf9a;
  --line: rgba(199, 161, 90, 0.18);
  --line-strong: rgba(199, 161, 90, 0.32);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(199, 161, 90, 0.12), transparent 30%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 25%, #080808 100%);
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding-bottom: 82px;
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header {
  backdrop-filter: blur(20px);
  background: rgba(6, 6, 6, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1500;
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  margin: 0 auto;
  max-width: 1320px;
  padding: 16px 28px;
}

.logo {
  align-items: center;
  display: inline-flex;
  gap: 16px;
  min-height: 82px;
  min-width: 0;
  text-decoration: none;
}

.logo img,
.footer-logo img {
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  object-fit: contain;
  width: auto;
}

.brand-copy,
.footer-logo span {
  display: grid;
  gap: 4px;
}

.brand-copy strong,
.footer-logo strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-logo {
  display: inline-flex;
  align-items: center;
}

.text-logo strong {
  color: var(--gold-strong);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: none;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.brand-copy small,
.footer-logo small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.desktop-nav a,
.nav-link {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  padding: 11px 16px;
  text-decoration: none;
  transition: all 0.22s ease;
}

.desktop-nav a.active,
.desktop-nav a:hover,
.nav-dropdown:hover .nav-link {
  border-color: var(--line);
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
}

.dropdown-toggle {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.chevron {
  font-size: 12px;
}

.dropdown-panel {
  background: rgba(16, 16, 16, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  min-width: 220px;
  opacity: 0;
  padding: 12px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 2px);
  transform: translateY(10px);
  transition: all 0.22s ease;
}

.dropdown-panel a {
  border-radius: 12px;
  padding: 10px 12px;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-tools {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.header-icon-btn,
.menu-btn,
.link-btn,
.product-actions button,
.location-row a,
.gold-fill-btn,
.gold-outline-btn,
.order-btn,
.popup-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.header-icon-btn,
.menu-btn,
.link-btn,
.wishlist-btn,
.popup-btn.pickup {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  color: var(--ink);
}

.header-icon-btn:hover,
.menu-btn:hover,
.link-btn:hover,
.wishlist-btn:hover,
.popup-btn.pickup:hover,
.location-row a:hover {
  border-color: var(--line-strong);
  color: #fff;
  transform: translateY(-1px);
}

.gold-fill-btn,
.order-btn,
.product-actions button,
.popup-btn.delivery,
.delivery-btn {
  background: linear-gradient(135deg, #b48a46 0%, #d7b16b 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 30px rgba(199, 161, 90, 0.18);
  color: #17120a;
  font-weight: 700;
}

.gold-fill-btn:hover,
.order-btn:hover,
.product-actions button:hover,
.popup-btn.delivery:hover,
.delivery-btn:hover {
  box-shadow: 0 18px 36px rgba(199, 161, 90, 0.28);
  transform: translateY(-2px);
}

.gold-outline-btn,
.location-row a {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-strong);
}

.icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
}

.icon svg {
  height: 18px;
  width: 18px;
}

.header-count {
  align-items: center;
  background: var(--gold-soft);
  border-radius: 999px;
  color: var(--gold-strong);
  display: inline-flex;
  font-size: 12px;
  justify-content: center;
  min-width: 24px;
  padding: 4px 7px;
}

.mobile-only {
  display: none;
}

.mobile-menu {
  background: rgba(16, 16, 16, 0.98);
  border-top: 1px solid var(--line);
  display: none;
  padding: 10px 22px 18px;
}

.mobile-menu a {
  border-bottom: 1px solid rgba(199, 161, 90, 0.1);
  color: var(--muted);
  display: block;
  padding: 14px 2px;
  text-decoration: none;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.hero {
  border-bottom: 1px solid var(--line);
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-media img {
  height: 100%;
  min-height: inherit;
  width: 100%;
}

.hero-media img {
  display: block;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.72));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-copy {
  bottom: 72px;
  left: 50%;
  max-width: 1320px;
  padding: 0 28px;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}

.eyebrow {
  color: var(--gold-strong);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-copy h1,
.content-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.96;
  margin: 0 0 18px;
  max-width: 820px;
}

.hero-copy p,
.content-hero p {
  color: rgba(246, 241, 232, 0.88);
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
  max-width: 620px;
}

.mobile-copy {
  display: none;
}

.hero-actions {
  margin-top: 28px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-highlights span,
.catalog-hints span {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  padding: 10px 14px;
}

.section,
.content-page,
.policy-page {
  margin: 0 auto;
  max-width: 1320px;
  padding: 42px 28px;
}

.section-title {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title h2,
.section h2 {
  font-size: clamp(30px, 3vw, 42px);
  margin: 0;
}

.section-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
  text-align: right;
}

.trust-strip,
.review-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card,
.offer-card,
.product-card,
.location-row,
.story-grid article,
.contact-card,
.contact-form,
.policy-list article,
.closing-panel,
.review-card,
.empty-state,
.user-order-card,
.content-band > div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.trust-card {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  padding: 22px;
}

.icon-wrap {
  align-items: center;
  background: var(--gold-soft);
  border: 1px solid rgba(199, 161, 90, 0.22);
  border-radius: 18px;
  color: var(--gold-strong);
  display: inline-flex;
  flex: 0 0 auto;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.icon-wrap svg {
  height: 20px;
  width: 20px;
}

.trust-card b,
.review-card strong {
  color: #fff;
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.trust-card p,
.review-card p,
.footer p,
.story-grid p,
.content-band p,
.contact-layout p,
.policy-list p,
.location-row p,
.empty-state p,
.order-items-mini p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.offer-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.offer-card {
  min-width: 0;
  padding: 22px;
  position: relative;
}

.offer-card::before {
  background: linear-gradient(180deg, transparent, rgba(199, 161, 90, 0.16));
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.22s ease;
}

.offer-card:hover::before {
  opacity: 1;
}

.offer-card b {
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.product-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.featured-product-grid {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}

.catalog-toolbar {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.catalog-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.search-shell {
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  max-width: 540px;
  min-height: 56px;
  padding: 0 18px;
  width: 100%;
}

.search-shell input {
  background: transparent;
  border: 0;
  color: var(--ink);
  margin: 0;
  padding: 0;
}

.search-shell input:focus {
  outline: none;
}

.search-shell input::placeholder {
  color: rgba(184, 174, 155, 0.74);
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.44);
  transform: translateY(-6px);
}

.product-media {
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
}

.product-card img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-badges {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 16px;
  position: absolute;
  right: 0;
  top: 0;
}

.product-tag {
  background: rgba(6, 6, 6, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--gold-strong);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 9px 12px;
  text-transform: uppercase;
}

.wishlist-btn {
  min-height: 40px;
  padding: 9px 14px;
}

.wishlist-btn.active {
  background: var(--gold-soft);
  border-color: rgba(199, 161, 90, 0.34);
  color: var(--gold-strong);
}

.product-copy {
  flex: 1 1 auto;
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.product-card h3 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 10px;
}

.product-card p {
  color: var(--muted);
  margin: 0 0 16px;
  min-height: 0;
}

.product-meta,
.footer-badges,
.icon-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-meta {
  margin-bottom: 18px;
  min-height: 0;
}

.product-meta span,
.footer-badges span,
.icon-label-row span,
.icon-label-row a {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  gap: 8px;
  font-size: 13px;
  text-decoration: none;
}

.product-actions {
  align-items: end;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  margin-top: auto;
}

.product-card-cta {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-width: 150px;
  opacity: 1;
  visibility: visible;
  white-space: nowrap;
  width: 100%;
}

.price-block small {
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.price-block b {
  color: var(--gold-strong);
  font-size: 26px;
}

.review-card,
.location-row,
.contact-form,
.contact-card,
.story-grid article,
.policy-list article,
.closing-panel,
.empty-state,
.user-order-card,
.content-band > div {
  padding: 24px;
}

.location-row {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.location-row b,
.empty-state h3,
.closing-panel h2 {
  color: #fff;
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding: 42px 28px 120px;
}

.footer-grid,
.footer-lower,
.story-grid,
.content-band,
.contact-layout {
  display: grid;
  gap: 20px;
}

.footer-grid {
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1320px;
}

.footer-logo {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-logo img {
  height: 54px;
}

.footer a {
  color: var(--muted);
  display: block;
  margin-top: 10px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #fff;
}

.footer-lower {
  align-items: start;
  grid-template-columns: minmax(320px, 0.82fr) minmax(380px, 1.18fr);
  margin: 26px auto 0;
  max-width: 1320px;
}

.newsletter-card,
.footer-meta {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
}

.newsletter-card {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 0;
  padding: 20px 22px;
}

.newsletter-copy {
  max-width: 360px;
}

.footer-kicker {
  color: var(--gold-strong);
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.newsletter-card span,
.footer-copy,
.hint,
.user-order-head span,
.user-order-foot span,
.cart-row span,
.address-option span {
  color: var(--muted);
}

.newsletter-form {
  align-items: center;
  display: flex;
  gap: 12px;
  flex: 0 0 320px;
  min-width: 320px;
}

.newsletter-form input,
input,
select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  margin-top: 9px;
  padding: 14px 16px;
  width: 100%;
}

.newsletter-form input {
  margin-top: 0;
}

input::placeholder,
textarea::placeholder {
  color: rgba(184, 174, 155, 0.74);
}

input[readonly] {
  background: rgba(255, 255, 255, 0.045);
  color: rgba(246, 241, 232, 0.9);
  cursor: not-allowed;
}

select:disabled {
  background-color: rgba(255, 255, 255, 0.045);
  color: rgba(246, 241, 232, 0.9);
  cursor: not-allowed;
  opacity: 1;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(246, 241, 232, 0.82) 50%),
    linear-gradient(135deg, rgba(246, 241, 232, 0.82) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 42px;
}

select option {
  background: #171311;
  color: #f6f1e8;
}

#pincodeInput {
  color: #f6f1e8;
  min-height: 52px;
}

#pincodeInput:invalid,
#pincodeInput option[value=""] {
  color: rgba(184, 174, 155, 0.9);
}

.footer-meta {
  align-content: start;
  gap: 10px;
  padding: 18px 20px;
}

.footer-meta-top {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.footer-meta-title {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.4vw, 26px);
  line-height: 1.02;
  margin: 0 0 4px;
}

.footer-meta .icon-label-row {
  align-items: center;
}

.footer-meta .icon-label-row a,
.footer-meta .icon-label-row span {
  display: inline-flex;
  font-size: 12px;
  margin-top: 0;
}

.footer-meta .icon-label-row svg {
  flex: 0 0 auto;
  height: 13px;
  stroke-width: 1.6;
  width: 13px;
}

.footer-payments {
  border-top: 1px solid rgba(199, 161, 90, 0.12);
  padding-top: 12px;
}

.footer-bottom-row {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 2px;
}

.footer-contact-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(199, 161, 90, 0.2), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(199, 161, 90, 0.18);
  border-radius: 11px;
  color: var(--gold-strong);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.footer-contact-icon svg {
  height: 14px;
  width: 14px;
}

.footer-address-inline {
  align-items: start;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(199, 161, 90, 0.12);
  border-radius: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: 36px minmax(0, 1fr);
  padding: 9px 10px;
}

.footer-address-inline small {
  color: var(--muted);
  display: block;
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.footer-address-inline strong {
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-icon {
  align-items: center;
  display: inline-flex;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
  justify-content: center;
  margin-top: 0;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px) scale(1.03);
}

.social-icon svg {
  height: 34px;
  width: 34px;
}

.footer-socials-compact {
  align-items: center;
}

.footer-story {
  margin-top: 0;
  max-width: 380px;
}

.footer-credit {
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  gap: 7px;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-align: center;
  white-space: nowrap;
  width: fit-content;
}

.footer-credit a {
  color: #f4d46f;
  display: inline;
  font-weight: 700;
  margin: 0;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #fff;
}

.whatsapp-sticky {
  align-items: center;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  bottom: 28px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38), 0 0 0 8px rgba(37, 211, 102, 0.12);
  color: #fff;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  margin-bottom: 75px;
  position: fixed;
  right: 28px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 58px;
  z-index: 80;
}

.whatsapp-sticky svg {
  fill: none;
  height: 31px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 31px;
}

.whatsapp-sticky:hover {
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.46), 0 0 0 10px rgba(37, 211, 102, 0.16);
  transform: translateY(-3px);
}

.content-hero {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.55)),
    url('../images/slide1.png') center/cover;
  border: 1px solid var(--line);
  border-radius: 32px;
  margin-bottom: 22px;
  overflow: hidden;
  padding: 58px 34px;
  position: relative;
}

.content-hero > * {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.content-hero.compact {
  padding: 46px 30px;
}

.story-grid,
.contact-layout,
.content-band {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.clean-list {
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
  padding-left: 20px;
}

.closing-panel {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.contact-card {
  background: linear-gradient(180deg, rgba(199, 161, 90, 0.14), rgba(255, 255, 255, 0.03));
}

.email-link {
  color: #fff;
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  margin: 14px 0;
  text-decoration: none;
  word-break: break-word;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.success-box {
  background: rgba(199, 161, 90, 0.12);
  border: 1px solid rgba(199, 161, 90, 0.28);
  border-radius: 16px;
  color: #f0d298;
  margin-bottom: 12px;
  padding: 12px 14px;
}

.policy-list {
  display: grid;
  gap: 14px;
}

.policy-list a {
  color: var(--gold-strong);
}

.app-bar {
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 8, 0.96);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: flex;
  gap: 1px;
  left: 0;
  padding: 10px 14px;
  position: fixed;
  right: 0;
  z-index: 1500;
}

.app-btn {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 18px;
  color: var(--ink);
  display: inline-flex;
  flex: 1;
  gap: 8px;
  justify-content: center;
  min-height: 58px;
  padding: 10px 12px;
}

.account-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.popup {
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 2200;
}

.sweet-confirm-overlay {
  align-items: center;
  background: rgba(7, 5, 4, 0.78);
  backdrop-filter: blur(10px);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 2400;
}

.sweet-confirm-card {
  background: linear-gradient(180deg, #17110f 0%, #0f0b09 100%);
  border: 1px solid rgba(199, 161, 90, 0.28);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
  max-width: 520px;
  padding: 28px 24px 24px;
  position: relative;
  text-align: center;
  width: 100%;
}

.sweet-confirm-heart {
  align-items: center;
  background: rgba(199, 161, 90, 0.14);
  border: 1px solid rgba(199, 161, 90, 0.28);
  border-radius: 999px;
  color: var(--gold-strong);
  display: inline-flex;
  font-size: 24px;
  height: 56px;
  justify-content: center;
  margin-bottom: 14px;
  width: 56px;
}

.sweet-confirm-card h3 {
  color: #fff;
  font-size: 30px;
  margin: 0 0 14px;
}

.sweet-confirm-copy {
  color: rgba(246, 241, 232, 0.9);
  line-height: 1.8;
  margin: 0 auto;
  max-width: 430px;
}

.sweet-confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.sweet-confirm-btn {
  border-radius: 999px;
  font-weight: 700;
  min-height: 46px;
  min-width: 148px;
  padding: 11px 18px;
}

.sweet-confirm-btn.secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--ink);
}

.sweet-confirm-btn.primary {
  background: linear-gradient(135deg, #b48a46 0%, #d7b16b 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #17120a;
}

.popup-content {
  background: linear-gradient(180deg, #141414, #0d0d0d);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  max-width: 420px;
  padding: 24px;
  position: relative;
  width: 100%;
}

.popup-content.tall {
  max-height: 88vh;
  overflow-y: auto;
}

#addressPopup .popup-content.tall {
  max-width: 520px;
}

.form-field {
  margin-top: 12px;
}

.address-form-toggle-row {
  margin: 14px 0 4px;
}

.address-form-toggle {
  min-height: 42px;
}

.address-form-panel {
  display: none;
  margin-top: 8px;
}

.address-form-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 4px;
}

.form-field label {
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.field-help,
.field-error {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 6px;
  min-height: 18px;
}

.field-help {
  color: var(--muted);
}

.field-error {
  color: #ffaaa6;
}

.popup-content .field-invalid {
  border-color: rgba(255, 122, 122, 0.78);
  box-shadow: 0 0 0 4px rgba(255, 122, 122, 0.12);
}

.popup-content h3 {
  color: #fff;
  font-size: 28px;
  margin: 0 28px 12px 0;
}

.popup-btn {
  border: 1px solid transparent;
  margin-top: 12px;
  width: 100%;
}

.close-icon {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 22px;
  height: 32px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 32px;
}

.cart-row,
.address-option {
  align-items: center;
  border-bottom: 1px solid rgba(199, 161, 90, 0.12);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 12px 0;
}

.qty {
  align-items: center;
  display: flex;
  gap: 8px;
}

.qty button,
.address-option button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  min-height: 34px;
  min-width: 34px;
}

.address-option {
  align-items: flex-start;
}

.address-option-copy {
  display: block;
  flex: 1 1 auto;
  line-height: 1.6;
}

.address-option-copy b {
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.address-option-actions {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
}

.address-availability {
  display: block;
  font-size: 12px;
  line-height: 1.55;
  margin-top: 6px;
}

.address-availability.available {
  color: #9bd8ac;
}

.address-availability.unavailable {
  color: #ffb0a8;
}

.cart-total {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin: 16px 0 4px;
  text-align: right;
}

.checkbox-row {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.checkbox-row input,
.address-option input {
  width: auto;
}

.setup-notice {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 28px;
  margin: 60px auto;
  max-width: 620px;
  padding: 24px;
}

.my-orders-page {
  min-height: 60vh;
}

.profile-shell {
  display: grid;
  gap: 24px;
}

.profile-card,
.profile-detail-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.profile-card {
  padding: 24px;
}

.profile-head,
.profile-stats,
.profile-details {
  display: grid;
  gap: 16px;
}

.profile-head {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 18px;
}

.profile-head h3,
.profile-orders-title h2 {
  color: #fff;
  margin: 0;
}

.profile-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.profile-stats p {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(199, 161, 90, 0.14);
  border-radius: 18px;
  margin: 0;
  padding: 16px;
}

.profile-stats b {
  color: #fff;
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.profile-stats span,
.profile-detail-card small {
  color: var(--muted);
  display: block;
}

.profile-details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-detail-card {
  padding: 18px;
}

.profile-detail-card strong {
  color: #fff;
  display: block;
  line-height: 1.7;
  margin-top: 8px;
}

.profile-detail-wide {
  grid-column: 1 / -1;
}

.profile-orders-section .section-title {
  margin-bottom: 18px;
}

.section-title a,
.text-link-btn {
  text-decoration: none;
}

.order-card-list {
  display: grid;
  gap: 16px;
}

.user-order-head,
.user-order-foot {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.status-badge {
  border-radius: 999px;
  font-size: 12px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.status-placed,
.status-accepted,
.status-preparing {
  background: rgba(199, 161, 90, 0.18);
  color: #f0cf8d;
}

.status-ready,
.status-completed {
  background: rgba(94, 176, 125, 0.2);
  color: #8ce0a9;
}

.status-cancelled {
  background: rgba(255, 96, 96, 0.18);
  color: #ff9a9a;
}

.order-items-mini {
  border-bottom: 1px solid rgba(199, 161, 90, 0.14);
  border-top: 1px solid rgba(199, 161, 90, 0.14);
  margin: 14px 0;
  padding: 10px 0;
}

.order-progress {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, 1fr);
  margin: 14px 0;
}

.progress-step {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.progress-step span {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  display: block;
  height: 8px;
  margin-bottom: 6px;
  width: 100%;
}

.progress-step.done span {
  background: linear-gradient(90deg, #bb8f4b, #dfbf81);
}

.progress-step.done {
  color: #fff;
  font-weight: 700;
}

.cancelled-note {
  background: rgba(255, 96, 96, 0.14);
  border-radius: 16px;
  color: #ff9a9a;
  grid-column: 1 / -1;
  padding: 12px;
  text-align: center;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .trust-strip,
  .review-grid,
  .footer-grid,
  .footer-lower,
  .story-grid,
  .content-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .newsletter-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsletter-form {
    flex: initial;
    min-width: 0;
    width: 100%;
  }

  .featured-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-shell {
    max-width: none;
  }

  .catalog-hints {
    justify-content: flex-start;
  }

  .featured-product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 560px;
    width: 100%;
  }

  .featured-product-grid .product-card {
    justify-self: center;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .product-actions button {
    width: 100%;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 92px;
  }

  .header-inner,
  .section,
  .content-page,
  .policy-page,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-inner {
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo {
    gap: 8px;
    min-height: 54px;
    overflow: hidden;
  }

  .text-logo strong {
    font-size: clamp(26px, 7.6vw, 32px);
    line-height: 0.95;
    white-space: nowrap;
  }

  .brand-copy small,
  .brand-copy strong span,
  .header-icon-btn span:not(.icon):not(.header-count) {
    display: none;
  }

  .header-tools {
    gap: 6px;
  }

  .header-icon-btn,
  .menu-btn {
    min-height: 40px;
    min-width: 40px;
    padding: 9px;
  }

  .header-count {
    min-width: 20px;
    padding: 3px 6px;
  }

  .hero,
  .hero-media img {
    min-height: 520px;
  }

  .hero-copy {
    bottom: 48px;
    padding: 0 16px;
  }

  .hero-copy h1,
  .content-hero h1 {
    font-size: clamp(28px, 8.8vw, 40px);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .hero-copy p,
  .content-hero p {
    font-size: 14px;
    line-height: 1.55;
    max-width: 320px;
  }

  .hero-copy .desktop-copy {
    display: none;
  }

  .hero-copy .mobile-copy {
    display: inline;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-actions .gold-fill-btn {
    min-height: 42px;
    padding: 10px 16px;
  }

  .hero-highlights {
    gap: 8px;
    margin-top: 18px;
    max-width: 320px;
  }

  .hero-highlights span {
    font-size: 11px;
    padding: 8px 10px;
  }

  .section-title,
  .catalog-toolbar,
  .closing-panel,
  .location-row,
  .address-option,
  .product-actions,
  .newsletter-form,
  .user-order-head,
  .user-order-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-note {
    max-width: none;
    text-align: left;
  }

  .catalog-hints {
    justify-content: flex-start;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: none;
  }

  .profile-head,
  .profile-stats,
  .profile-details {
    grid-template-columns: 1fr;
  }

  .footer-meta-top {
    grid-template-columns: 1fr;
  }

  .footer-lower {
    gap: 14px;
    margin-top: 18px;
  }

  .product-card p {
    min-height: 0;
  }

  .newsletter-copy {
    max-width: none;
  }

  .newsletter-card,
  .footer-meta {
    padding: 16px;
  }

  .newsletter-card {
    gap: 14px;
  }

  .newsletter-form {
    flex: initial;
    gap: 10px;
  }

  .newsletter-form input,
  .newsletter-form .gold-outline-btn {
    width: 100%;
  }

  .footer-meta-title {
    font-size: 28px;
    line-height: 1.08;
  }

  .footer-story {
    margin-bottom: 2px;
  }

  .footer-address-inline {
    gap: 9px;
    padding: 8px 10px;
  }

  .footer-bottom-row {
    gap: 8px;
    margin-top: 0;
  }

  .footer-payments {
    padding-top: 10px;
  }

  .footer-credit {
    font-size: 12px;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-bottom-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-credit {
    white-space: normal;
  }

  .app-bar {
    padding: 10px;
  }

  .app-btn {
    border-radius: 16px;
    font-size: 13px;
    min-height: 56px;
    padding: 10px 8px;
  }

  .whatsapp-sticky {
    bottom: 92px;
    height: 50px;
    margin-bottom: 0;
    right: 16px;
    width: 50px;
  }

  .whatsapp-sticky svg {
    height: 27px;
    width: 27px;
  }

  .popup {
    padding: 12px;
  }

  .popup-content {
    border-radius: 22px;
    padding: 20px;
  }

  #addressPopup .popup-content.tall {
    max-height: calc(100vh - 24px);
    padding: 18px 16px 20px;
  }

  .form-field {
    margin-top: 10px;
  }

  .form-field label {
    font-size: 12px;
    letter-spacing: 0.03em;
    margin-bottom: 5px;
  }

  .field-help,
  .field-error {
    font-size: 11px;
    line-height: 1.45;
    min-height: 16px;
  }

  #addressPopup input {
    border-radius: 14px;
    font-size: 14px;
    margin-top: 0;
    padding: 13px 14px;
  }

  #addressPopup .checkbox-row {
    align-items: flex-start;
    font-size: 13px;
    margin-top: 14px;
  }

  #addressPopup .address-form-actions {
    grid-template-columns: 1fr;
  }

  #addressPopup .popup-btn {
    margin-top: 10px;
    min-height: 44px;
  }

  #addressList .address-option {
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
  }

  #addressList .address-option span {
    font-size: 12px;
    line-height: 1.5;
  }

  #addressList .address-option button {
    min-height: 32px;
    min-width: 72px;
    padding: 6px 10px;
  }

  .sweet-confirm-actions {
    flex-direction: column-reverse;
  }

  .sweet-confirm-btn {
    min-width: 0;
    width: 100%;
  }

  .content-hero {
    padding: 42px 20px;
  }

  .order-progress {
    grid-template-columns: 1fr;
  }

  .progress-step {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: 40px 1fr;
    text-align: left;
  }

  .progress-step span {
    margin: 0;
  }
}

@media (max-width: 420px) {
  .header-inner,
  .section,
  .content-page,
  .policy-page,
  .footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .logo {
    min-height: 48px;
  }

  .text-logo strong {
    font-size: 24px;
    letter-spacing: 0.01em;
  }

  .header-tools {
    gap: 4px;
  }

  .footer {
    padding-bottom: 104px;
  }

  .footer-lower {
    gap: 12px;
  }

  .newsletter-card,
  .footer-meta {
    padding: 14px;
  }

  .footer-meta-title {
    font-size: 24px;
  }

  .footer-address-inline strong {
    font-size: 12px;
    line-height: 1.4;
  }

  .footer-payments {
    gap: 8px;
  }

  .footer-payments span {
    font-size: 12px;
  }

  .footer-credit {
    font-size: 11px;
  }

  .header-icon-btn,
  .menu-btn {
    min-height: 38px;
    min-width: 38px;
    padding: 8px;
  }

  #addressPopup .popup-content.tall {
    border-radius: 18px;
    padding: 16px 14px 18px;
  }

  #addressPopup .popup-content h3 {
    font-size: 24px;
    margin-right: 24px;
  }

  #addressPopup input {
    font-size: 13px;
    padding: 12px 13px;
  }

  #addressList .address-option button {
    width: 100%;
  }

  .whatsapp-sticky {
    bottom: 88px;
    height: 46px;
    right: 12px;
    width: 46px;
  }

  .whatsapp-sticky svg {
    height: 25px;
    width: 25px;
  }
}

@media (max-width: 960px) {
  .admin-auth-shell {
    gap: 20px;
    grid-template-columns: 1fr;
    max-width: 620px;
    padding: 18px;
  }

  .admin-auth-hero {
    min-height: 0;
    padding: 28px 24px;
  }

  .admin-auth-card {
    padding: 24px 20px;
  }
}

.admin-body,
.receipt-body {
  background: #f6f1ec;
  color: #241713;
  padding-bottom: 0;
}

.admin-shell-body {
  background:
    linear-gradient(180deg, #f6f1ea 0%, #efe6dc 100%);
  color: #241713;
  display: flex;
  min-height: 100vh;
  padding-bottom: 0;
}

.admin-sidebar {
  background: linear-gradient(180deg, #221613 0%, #2f201b 100%);
  color: #fff8ef;
  flex: 0 0 250px;
  min-height: 100vh;
  padding: 18px 14px;
  position: sticky;
  top: 0;
  box-shadow: 14px 0 32px rgba(45, 28, 20, 0.16);
}

.admin-brand {
  color: #fff8ef;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 800;
  margin: 4px 8px 22px;
  text-decoration: none;
}

.admin-sidebar nav {
  display: grid;
  gap: 6px;
}

.admin-sidebar nav a {
  border-radius: 12px;
  color: #ead8cb;
  padding: 12px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  background: rgba(199, 161, 90, 0.16);
  color: #fff8ef;
  transform: translateX(2px);
}

.admin-content {
  flex: 1;
  min-width: 0;
}

.admin-topbar {
  align-items: center;
  background: rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid rgba(135, 98, 78, 0.16);
  box-shadow: 0 10px 24px rgba(61, 39, 28, 0.05);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 16px 22px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.admin-topbar h1 {
  color: #251813;
  font-size: 24px;
  margin: 0;
}

.admin-topbar span {
  color: #7a6458;
  font-size: 13px;
}

.admin-menu-toggle {
  background: #fff7f1;
  border: 1px solid rgba(135, 98, 78, 0.16);
  border-radius: 12px;
  color: #2f201b;
  display: none;
  min-height: 38px;
  padding: 9px 12px;
}

.admin-page {
  margin: 0 auto;
  max-width: 1240px;
  padding: 24px;
}

.admin-header {
  align-items: center;
  background: #fffaf4;
  border-bottom: 1px solid rgba(135, 98, 78, 0.16);
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
}

.admin-header span {
  color: #7a6458;
  display: block;
  font-size: 13px;
}

.admin-header a,
.admin-link {
  color: #9c6f31;
  font-weight: 700;
  margin-left: 12px;
  text-decoration: none;
}

.admin-main {
  margin: 0 auto;
  max-width: 1180px;
  padding: 18px;
}

.admin-login {
  background: #fffaf4;
  border: 1px solid rgba(135, 98, 78, 0.16);
  border-radius: 18px;
  box-shadow: 0 22px 40px rgba(61, 39, 28, 0.08);
  margin: 70px auto;
  max-width: 380px;
  padding: 24px;
}

.admin-auth-shell {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 420px);
  margin: 0 auto;
  max-width: 1120px;
  min-height: 100vh;
  padding: 28px;
}

.admin-auth-hero {
  background:
    radial-gradient(circle at top right, rgba(199, 161, 90, 0.22), transparent 34%),
    linear-gradient(180deg, #211614 0%, #2f1f19 100%);
  border: 1px solid rgba(199, 161, 90, 0.18);
  border-radius: 32px;
  box-shadow: 0 24px 50px rgba(34, 22, 20, 0.2);
  color: #fff8ef;
  min-height: 420px;
  padding: 40px;
}

.admin-auth-kicker {
  color: #e1bc73;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.admin-auth-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.95;
  margin: 0 0 18px;
}

.admin-auth-hero p {
  color: #ead8cb;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  max-width: 440px;
}

.admin-auth-card {
  margin: 0;
  max-width: none;
  padding: 28px;
}

.admin-auth-card h2 {
  color: #251813;
  font-size: 30px;
  margin: 0 0 8px;
}

.admin-auth-tabs {
  background: #f3e6d8;
  border: 1px solid rgba(135, 98, 78, 0.14);
  border-radius: 999px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
  padding: 6px;
}

.admin-auth-tabs a {
  border-radius: 999px;
  color: #6f5a50;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.admin-auth-tabs a.active {
  background: linear-gradient(135deg, #b3884a 0%, #d8b16b 100%);
  box-shadow: 0 10px 20px rgba(179, 136, 74, 0.22);
  color: #24160d;
}

.admin-auth-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.admin-auth-form label {
  color: #5f4a40;
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
}

.admin-auth-form .admin-primary {
  margin-top: 6px;
  min-height: 46px;
}

.admin-body input,
.admin-body select,
.admin-body textarea,
.admin-login input,
.admin-login select,
.admin-login textarea {
  background: #fff;
  border: 1px solid rgba(135, 98, 78, 0.18);
  border-radius: 12px;
  color: #241713;
}

.admin-body input::placeholder,
.admin-login input::placeholder {
  color: #937d72;
}

.alert {
  background: #fde9e9;
  border: 1px solid #f3b8b8;
  border-radius: 8px;
  color: #8f2020;
  margin: 12px 0;
  padding: 10px;
}

.admin-primary,
.inline-form button,
.status-form button,
.receipt-head button {
  background: linear-gradient(135deg, #b3884a 0%, #d8b16b 100%);
  border: 1px solid rgba(160, 111, 42, 0.18);
  border-radius: 12px;
  color: #24160d;
  font-weight: 700;
  margin-top: 10px;
  min-height: 40px;
  padding: 10px 14px;
}

.admin-primary:disabled,
.inline-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.danger-btn {
  background: #f7dddd;
  border: 0;
  border-radius: 8px;
  color: #9d1f1f;
  margin-top: 8px;
  min-height: 36px;
  padding: 8px 12px;
}

.admin-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 16px;
}

.admin-stats div,
.admin-panel {
  background: #fffaf5;
  border: 1px solid rgba(135, 98, 78, 0.14);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(61, 39, 28, 0.06);
  padding: 18px;
}

.admin-stat-card {
  overflow: hidden;
  position: relative;
}

.admin-stat-card::before {
  background: linear-gradient(135deg, rgba(196, 155, 87, 0.12), transparent 60%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.admin-stat-card > * {
  position: relative;
  z-index: 1;
}

.admin-stats-compact {
  gap: 10px;
}

.admin-stats span {
  color: #816b5f;
  display: block;
  font-size: 13px;
}

.admin-stats b {
  color: #251813;
  display: block;
  font-size: 24px;
  margin-top: 6px;
}

.admin-stat-card small {
  color: #8a7163;
  display: block;
  line-height: 1.5;
  margin-top: 8px;
}

.dashboard-hero {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  margin-bottom: 14px;
}

.dashboard-hero-main,
.dashboard-hero-side {
  background: #fffdf9;
  border: 1px solid rgba(135, 98, 78, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(61, 39, 28, 0.05);
}

.dashboard-hero-main {
  padding: 20px 22px;
}

.dashboard-hero-main h2 {
  color: #251813;
  font-size: 28px;
  margin: 0 0 8px;
}

.dashboard-hero-main p {
  color: #756052;
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}

.dashboard-hero-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.dashboard-hero-metrics div,
.dashboard-spotlight {
  background: #fff;
  border: 1px solid rgba(135, 98, 78, 0.1);
  border-radius: 14px;
  padding: 14px;
}

.dashboard-hero-metrics span,
.dashboard-spotlight span {
  color: #8a7163;
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-hero-metrics strong,
.dashboard-spotlight strong {
  color: #251813;
  display: block;
  font-size: 22px;
  line-height: 1.15;
  margin-top: 8px;
}

.dashboard-hero-side {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.dashboard-spotlight small {
  color: #7b665a;
  display: block;
  line-height: 1.55;
  margin-top: 6px;
}

.admin-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  margin-bottom: 16px;
}

.admin-panel {
  margin-bottom: 16px;
}

.admin-panel h2 {
  color: #251813;
  margin: 0 0 12px;
}

.admin-panel p,
.admin-panel label,
.admin-panel td,
.admin-panel th,
.admin-panel span,
.admin-login p,
.admin-login label {
  color: #5f4a40;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.inline-form input,
.inline-form select,
.status-form select {
  background: #fff;
  border: 1px solid rgba(135, 98, 78, 0.18);
  border-radius: 12px;
  color: #241713;
  margin-top: 9px;
  padding: 11px;
  width: 100%;
}

.admin-form input::placeholder,
.admin-form textarea::placeholder,
.inline-form input::placeholder {
  color: #937d72;
}

.admin-form textarea {
  min-height: 82px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
.inline-form input:focus,
.inline-form select:focus,
.status-form select:focus {
  border-color: #c49b57;
  box-shadow: 0 0 0 4px rgba(196, 155, 87, 0.12);
  outline: none;
}

.compact-form {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: 170px minmax(160px, 1fr) 120px 150px;
  margin-bottom: 14px;
}

.admin-table-shell {
  display: grid;
  gap: 14px;
}

.admin-table-toolbar,
.admin-table-footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.admin-table-toolbar p,
.admin-table-footer p {
  margin: 0;
}

.admin-table-toolbar label,
.admin-table-footer label {
  font-size: 13px;
  margin: 0;
}

.admin-table-search {
  flex: 1 1 260px;
  max-width: 380px;
}

.admin-table-search input,
.admin-table-toolbar select {
  background: #fff;
  border: 1px solid rgba(135, 98, 78, 0.18);
  border-radius: 12px;
  color: #241713;
  margin-top: 0;
  padding: 11px 12px;
}

.admin-table-search input:focus,
.admin-table-toolbar select:focus {
  border-color: #c49b57;
  box-shadow: 0 0 0 4px rgba(196, 155, 87, 0.12);
  outline: none;
}

.admin-table-meta {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-table-summary {
  color: #816b5f;
  font-size: 13px;
}

.admin-table-footer {
  border-top: 1px solid rgba(135, 98, 78, 0.12);
  padding-top: 12px;
}

.admin-table-pagination {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.admin-table-pagination button {
  background: #fff;
  border: 1px solid rgba(135, 98, 78, 0.18);
  border-radius: 12px;
  color: #3a2a23;
  min-height: 36px;
  min-width: 84px;
  padding: 8px 12px;
}

.admin-table-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.admin-table-page {
  color: #7b665a;
  font-size: 13px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid rgba(135, 98, 78, 0.12);
  color: #3a2a23;
  padding: 11px;
  text-align: left;
  vertical-align: top;
}

th {
  color: #7b665a;
  font-size: 13px;
}

th.is-sortable {
  cursor: pointer;
  padding-right: 24px;
  position: relative;
}

th.is-sortable::after {
  color: #b58b50;
  content: "↕";
  font-size: 11px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

th.sort-asc::after {
  content: "↑";
}

th.sort-desc::after {
  content: "↓";
}

.admin-empty-row td {
  color: #8a7163;
  padding: 24px 12px;
  text-align: center;
}

.admin-status-pill {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  text-transform: capitalize;
}

.admin-status-placed,
.admin-status-accepted,
.admin-status-preparing {
  background: rgba(212, 168, 94, 0.18);
  color: #8f5e1b;
}

.admin-status-ready,
.admin-status-completed {
  background: rgba(120, 190, 144, 0.2);
  color: #23643d;
}

.admin-status-cancelled {
  background: rgba(224, 94, 94, 0.16);
  color: #a13232;
}

.inline-form {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  min-width: 520px;
}

.pincode-form {
  grid-template-columns: 120px minmax(140px, 1fr) 90px 80px;
  min-width: 440px;
}

.inline-form label {
  align-items: center;
  color: #3a2a23;
  display: flex;
  gap: 6px;
}

.receipt {
  background: #fffaf4;
  color: #241713;
  margin: 26px auto;
  max-width: 820px;
  padding: 28px;
}

.receipt-head {
  align-items: flex-start;
  border-bottom: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
}

.receipt-head h1 {
  color: #251813;
  margin: 0;
}

.receipt-head p,
.receipt-meta p,
.receipt-total p {
  color: #5f4a40;
  margin: 0;
}

.receipt-meta {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 10px;
}

.receipt-address {
  background: #fff;
  border: 1px solid rgba(135, 98, 78, 0.14);
  border-radius: 14px;
  margin: 16px 0;
  padding: 14px;
}

.receipt-address h2 {
  color: #251813;
  font-size: 17px;
  margin: 0 0 8px;
}

.receipt-address pre {
  color: #3a2a23;
  font-family: inherit;
  line-height: 1.7;
  margin: 0;
  white-space: pre-wrap;
}

.receipt-total {
  margin-top: 16px;
  text-align: right;
}

.receipt-total b {
  font-size: 22px;
}

.summary-list {
  display: grid;
  gap: 12px;
}

.summary-list p,
.metric-row {
  background: #fff;
  border: 1px solid rgba(135, 98, 78, 0.14);
  border-radius: 14px;
  margin: 0;
  padding: 12px;
}

.summary-list b,
.metric-row b {
  color: #251813;
  display: block;
  font-size: 22px;
}

.summary-list span,
.metric-row span,
.metric-row small {
  color: #7a6458;
  display: block;
  margin-top: 3px;
}

.analytics-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.dashboard-analytics-grid {
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chart-card {
  display: grid;
  gap: 14px;
}

.chart-card-full {
  grid-column: 1 / -1;
}

.chart-card-head {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.chart-card-head h3,
.insight-card h3 {
  color: #251813;
  margin: 0;
}

.chart-card-head p,
.insight-card p {
  color: #7a6458;
  line-height: 1.6;
  margin: 4px 0 0;
}

.chart-canvas {
  min-height: 260px;
}

.chart-canvas.compact {
  min-height: 180px;
}

.admin-chart-svg {
  display: block;
  height: auto;
  width: 100%;
}

.admin-chart-svg text {
  fill: #7a6458;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 11px;
}

.chart-axis {
  stroke: rgba(135, 98, 78, 0.18);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: #70513a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.chart-area-fill {
  fill: url(#chartAreaFill);
}

.chart-point-ring {
  fill: #fff;
  opacity: 0;
}

.chart-point,
.chart-point-ring,
.admin-chart-svg path:hover {
  opacity: 0.9;
}

.chart-donut-track {
  stroke: rgba(135, 98, 78, 0.1);
  stroke-width: 20;
}

.chart-center-value {
  fill: #251813 !important;
  font-size: 15px !important;
  font-weight: 700;
}

.chart-center-label {
  fill: #8a7163 !important;
  font-size: 9px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-legend {
  display: grid;
  gap: 8px;
}

.chart-legend-item {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 10px minmax(0, 1fr) auto;
}

.chart-legend-dot {
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  width: 10px;
}

.chart-legend-item span {
  color: #6e584b;
  font-size: 12px;
}

.chart-legend-item strong {
  color: #251813;
  font-size: 12px;
}

.insight-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-card {
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
  border: 1px solid rgba(135, 98, 78, 0.1);
  border-radius: 14px;
  padding: 13px 14px;
}

.insight-card strong {
  color: #251813;
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.admin-highlight-list {
  display: grid;
  gap: 10px;
}

.admin-highlight-item {
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  border: 1px solid rgba(135, 98, 78, 0.1);
  border-radius: 14px;
  padding: 11px 13px;
}

.admin-highlight-item strong {
  color: #251813;
  display: block;
}

.admin-highlight-item span {
  color: #7a6458;
  display: block;
  margin-top: 4px;
}

.admin-chart-tooltip {
  background: rgba(37, 24, 19, 0.96);
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(61, 39, 28, 0.18);
  color: #fff9f2;
  font-size: 12px;
  line-height: 1.5;
  max-width: 260px;
  opacity: 0;
  padding: 10px 12px;
  pointer-events: none;
  position: absolute;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 3000;
}

.admin-chart-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-order-status {
  min-width: 132px;
}

.admin-grid-products {
  align-items: start;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.admin-hero-panel {
  padding: 22px;
}

.admin-panel-head {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.admin-kicker {
  color: #9c6f31 !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.admin-panel-note {
  color: #816b5f !important;
  font-size: 12px;
  line-height: 1.6;
  max-width: 280px;
  text-align: right;
}

.admin-feedback {
  display: none;
  margin-bottom: 14px;
  padding: 12px 14px;
}

.admin-feedback.success,
.admin-feedback.error {
  border-radius: 14px;
  display: block;
}

.admin-feedback.success {
  background: #e6f4ea;
  border: 1px solid #b8dfc3;
  color: #1f6a37;
}

.admin-feedback.error {
  background: #fde9e9;
  border: 1px solid #efc0c0;
  color: #9b2323;
}

.admin-form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-checkbox {
  color: #3a2a23;
}

.admin-checkbox input {
  accent-color: #b88e4d;
}

.admin-summary-list {
  gap: 14px;
}

.admin-products-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.admin-product-card {
  background: linear-gradient(180deg, #fffdfa 0%, #fff7ef 100%);
  border: 1px solid rgba(135, 98, 78, 0.14);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(61, 39, 28, 0.06);
  overflow: hidden;
}

.admin-product-preview {
  background: #f7eee5;
  min-height: 190px;
  position: relative;
}

.admin-product-preview img {
  display: block;
  height: 190px;
  object-fit: cover;
  width: 100%;
}

.admin-product-preview .status-badge {
  position: absolute;
  right: 14px;
  top: 14px;
}

.admin-product-form {
  padding: 18px;
}

.admin-product-head {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.admin-product-head h3 {
  color: #251813;
  font-size: 24px;
  margin: 0 0 4px;
}

.admin-product-head p {
  color: #816b5f !important;
  font-size: 13px;
  margin: 0;
}

.admin-price-tag {
  color: #9c6f31;
  font-size: 20px;
  white-space: nowrap;
}

.admin-product-actions {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

@media (max-width: 720px) {
  .admin-shell-body {
    display: block;
  }

  .admin-sidebar {
    bottom: 0;
    left: 0;
    min-height: 0;
    position: fixed;
    top: 0;
    transform: translateX(-105%);
    transition: transform 0.2s ease;
    width: 260px;
    z-index: 30;
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-menu-toggle {
    display: inline-block;
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .admin-header a {
    margin-left: 0;
    margin-right: 12px;
  }

  .admin-main,
  .admin-page,
  .receipt {
    padding: 12px;
  }

  .admin-grid,
  .analytics-grid,
  .admin-grid-products,
  .admin-form-grid,
  .admin-products-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-hero,
  .dashboard-analytics-grid,
  .dashboard-hero-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-hero-main {
    padding: 18px;
  }

  .dashboard-hero-main h2 {
    font-size: 24px;
  }

  .dashboard-hero-side {
    padding: 12px;
  }

  .admin-stats-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .receipt-head {
    flex-direction: column;
    gap: 10px;
  }

  .compact-form {
    grid-template-columns: 1fr;
  }

  .admin-panel-head,
  .chart-card-head,
  .admin-product-head,
  .admin-product-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-table-toolbar,
  .admin-table-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-table-search {
    max-width: none;
    width: 100%;
  }

  .admin-table-meta,
  .admin-table-pagination {
    width: 100%;
  }

  .admin-table-pagination button {
    flex: 1;
  }

  .chart-canvas {
    min-height: 220px;
  }

  .chart-canvas.compact {
    min-height: 190px;
  }

  .chart-card-full {
    grid-column: auto;
  }

  .admin-panel-note {
    max-width: none;
    text-align: left;
  }
}

@media print {
  .receipt-head button {
    display: none;
  }

  .receipt {
    margin: 0;
    max-width: none;
  }
}
