:root {
  --burgundy: #721927;
  --burgundy-dark: #3d0911;
  --burgundy-soft: #9d3342;
  --cream: #f7f0e4;
  --cream-deep: #eadcc7;
  --paper: #fffdf8;
  --ink: #201b18;
  --muted: #726b65;
  --gold: #d3a64f;
  --gold-light: #f1cf83;
  --green: #19704a;
  --line: rgba(56, 40, 31, 0.12);
  --shadow: 0 22px 60px rgba(54, 22, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Cairo", "Tajawal", Tahoma, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

::selection {
  color: white;
  background: var(--burgundy);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 24px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 50% 38%, rgba(211, 166, 79, 0.18), transparent 28%),
    linear-gradient(145deg, #25060b, #731927 58%, #3c0911);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.is-visible {
  opacity: 1;
  visibility: visible;
}

.site-loader__glow {
  position: absolute;
  width: 460px;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 203, 126, 0.2);
  border-radius: 50%;
  animation: loaderSpin 10s linear infinite;
}

.site-loader__glow::before,
.site-loader__glow::after {
  position: absolute;
  inset: 38px;
  content: "";
  border: 1px dashed rgba(240, 203, 126, 0.16);
  border-radius: inherit;
}

.site-loader__glow::after {
  inset: 85px;
  border-style: solid;
}

.site-loader .brand {
  position: relative;
  flex-direction: column;
  transform: none;
}

.site-loader .brand__logo {
  width: min(310px, 76vw);
  height: min(245px, 60vw);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(241, 207, 131, 0.22);
}

.site-loader .brand__copy {
  display: none;
}

.site-loader__bar {
  position: relative;
  width: 180px;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
}

.site-loader__bar span {
  position: absolute;
  inset-block: 0;
  right: 0;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #fff2c7);
  animation: loaderBar 1s ease-in-out infinite alternate;
}

.site-loader p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  letter-spacing: 0.02em;
}

@keyframes loaderSpin { to { transform: rotate(360deg); } }
@keyframes loaderBar { from { transform: translateX(120%); } to { transform: translateX(-190%); } }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--ink);
}

.brand__logo {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(211, 166, 79, 0.45);
  border-radius: 16px;
  background: #050505;
  box-shadow: 0 9px 22px rgba(61, 9, 17, 0.17);
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__copy strong {
  font-size: 19px;
  font-weight: 900;
}

.brand__copy small {
  margin-top: 4px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand--light,
.brand--light .brand__copy small {
  color: white;
}

.brand--light .brand__copy small {
  opacity: 0.7;
}

.announcement {
  display: flex;
  min-height: 37px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 22px;
  color: white;
  background: var(--burgundy-dark);
  font-size: 12px;
}

.announcement span {
  color: var(--gold-light);
}

.announcement p {
  margin: 0;
}

.announcement a {
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 800;
  direction: ltr;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 77px;
  align-items: center;
  gap: 24px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(65, 40, 27, 0.1);
  background: rgba(255, 253, 248, 0.93);
  box-shadow: 0 10px 30px rgba(56, 24, 19, 0.05);
  backdrop-filter: blur(18px);
}

.site-header > a {
  justify-self: start;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-header nav a {
  position: relative;
  color: #514943;
  font-size: 13px;
  font-weight: 800;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  content: "";
  background: var(--burgundy);
  transition: width 0.2s ease;
}

.site-header nav a:hover::after {
  width: 100%;
}

.cart-button {
  display: inline-flex;
  min-width: 104px;
  align-items: center;
  justify-content: space-between;
  justify-self: end;
  gap: 16px;
  padding: 11px 15px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: var(--burgundy);
  box-shadow: 0 9px 20px rgba(114, 25, 39, 0.2);
  font-size: 13px;
  font-weight: 800;
}

.cart-button b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--burgundy-dark);
  background: var(--gold-light);
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  color: white;
  background: #2b1611;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -2;
  background: url("../images/hero.webp") center / cover no-repeat;
  transform: scale(1.01);
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(24, 12, 9, 0.05) 22%, rgba(24, 12, 9, 0.78) 70%, rgba(31, 10, 9, 0.96) 100%),
    linear-gradient(0deg, rgba(12, 7, 5, 0.6), transparent 38%);
}

.hero__content {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 680px;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  padding: 70px 0 56px;
}

.hero__content > * {
  max-width: 610px;
}

.eyebrow {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--dark {
  color: var(--burgundy);
}

.hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero__content > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero__actions a,
.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__actions a:hover {
  transform: translateY(-2px);
}

.primary-action {
  color: var(--burgundy-dark);
  background: linear-gradient(135deg, #f4d58f, var(--gold));
  box-shadow: 0 12px 30px rgba(211, 166, 79, 0.2);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: white;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero__facts {
  display: flex;
  gap: 0;
  margin-top: 49px;
}

.hero__facts span {
  display: flex;
  min-width: 145px;
  flex-direction: column;
  gap: 5px;
  padding-inline: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__facts span:first-child {
  padding-right: 0;
}

.hero__facts span:last-child {
  border-left: 0;
}

.hero__facts b {
  font-size: 14px;
}

.hero__facts small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.quick-strip {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1060px, calc(100% - 40px));
  grid-template-columns: repeat(3, 1fr);
  margin: -40px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
}

.quick-strip > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 26px;
  border-left: 1px solid var(--line);
}

.quick-strip > div:last-child {
  border-left: 0;
}

.quick-strip > div > span {
  color: var(--gold);
  font-size: 23px;
  font-weight: 300;
}

.quick-strip p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
}

.quick-strip b {
  font-size: 13px;
}

.quick-strip small {
  color: var(--muted);
  font-size: 11px;
}

.offers-section {
  padding-top: 96px;
}

.section-label {
  width: max-content;
  margin: 0 auto 16px;
  padding: 7px 13px;
  border-radius: 99px;
  color: var(--burgundy);
  background: rgba(114, 25, 39, 0.09);
  font-size: 11px;
  font-weight: 900;
}

.offers-track {
  display: grid;
  grid-auto-columns: min(100%, 980px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(114, 25, 39, 0.35) transparent;
  scrollbar-width: thin;
}

.offer-banner {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border-radius: 30px;
  color: white;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.offer-banner__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(37, 12, 12, 0.08), rgba(59, 8, 15, 0.94) 80%);
}

.offer-banner__copy {
  position: relative;
  display: flex;
  width: min(540px, 80%);
  min-height: 350px;
  flex-direction: column;
  justify-content: center;
  padding: 45px 52px;
}

.offer-banner__copy > span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
}

.offer-banner h2 {
  margin: 10px 0;
  font-size: clamp(29px, 4vw, 45px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.offer-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.offer-banner a {
  width: max-content;
  margin-top: 22px;
  padding: 11px 18px;
  border-radius: 12px;
  color: var(--burgundy-dark);
  background: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
}

.products-section {
  padding-block: 110px 80px;
}

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

.section-heading h2,
.calculation-explainer h2,
.contact-section h2 {
  margin: 10px 0;
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.section-heading p,
.calculation-explainer__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.category-tabs,
.mode-switch,
.fulfillment-switch {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.55);
}

.category-tabs button,
.mode-switch button,
.fulfillment-switch button {
  padding: 9px 16px;
  border: 0;
  border-radius: 11px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.category-tabs button.active,
.mode-switch button.active,
.fulfillment-switch button.active {
  color: white;
  background: var(--burgundy);
  box-shadow: 0 6px 14px rgba(114, 25, 39, 0.16);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--paper);
  box-shadow: 0 14px 35px rgba(55, 34, 27, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card.is-unavailable {
  opacity: 0.78;
}

.product-card__visual {
  position: relative;
  display: grid;
  height: 155px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.86), transparent 46%),
    linear-gradient(135deg, #f0e1ce, #e5cdb4);
  background-position: center;
  background-size: cover;
}

.product-card__visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(transparent, rgba(50, 18, 12, 0.12));
}

.product-card__visual > span {
  font-size: 69px;
  filter: drop-shadow(0 12px 12px rgba(71, 38, 26, 0.15));
}

.product-card__visual > b,
.product-card__visual > em {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  padding: 6px 10px;
  border-radius: 99px;
  color: white;
  background: var(--burgundy);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.product-card__visual > em {
  inset: 50% auto auto 50%;
  width: max-content;
  transform: translate(-50%, -50%);
  background: rgba(43, 30, 24, 0.84);
}

.product-card__body {
  padding: 20px;
}

.product-card__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.product-card__heading > div > small {
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 900;
}

.product-card h3 {
  margin: 4px 0 0;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.product-card__heading > strong {
  min-width: max-content;
  color: var(--burgundy);
  font-size: 19px;
}

.product-card__heading > strong small {
  font-size: 10px;
}

.muted-price {
  color: var(--muted) !important;
  font-size: 12px !important;
}

.range-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding: 9px 11px;
  border-radius: 10px;
  color: #554c44;
  background: #f3eadf;
  font-size: 10px;
}

.range-note b {
  color: var(--burgundy-dark);
}

.mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 15px;
}

.calculator-field {
  display: block;
  margin-top: 14px;
}

.calculator-field > span:first-child,
.checkout-form label > span:first-child,
.admin-fields label > span,
.banner-form label > span,
.settings-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #5d554f;
  font-size: 10px;
  font-weight: 800;
}

.calculator-field__input {
  display: flex;
  height: 45px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.calculator-field__input input {
  width: 100%;
  height: 100%;
  padding: 0 13px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
}

.calculator-field__input b {
  padding: 0 13px;
  color: var(--muted);
  font-size: 10px;
}

.pieces-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
  font-size: 11px;
  font-weight: 800;
}

.pieces-row > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pieces-row button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  font-size: 17px;
}

.calculation-box {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(114, 25, 39, 0.1);
  border-radius: 13px;
  background: rgba(114, 25, 39, 0.045);
}

.calculation-box > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
}

.calculation-box > div b {
  color: var(--ink);
}

.calculation-box .cleaning-line {
  color: var(--burgundy);
}

.calculation-box .cleaning-line b {
  color: var(--burgundy);
}

.calculation-box .calculation-total {
  margin-top: 3px;
  padding-top: 8px;
  border-top: 1px dashed rgba(114, 25, 39, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.calculation-box .calculation-total b {
  color: var(--burgundy);
}

.calculation-box p {
  margin: 1px 0 0;
  color: #a46c13;
  font-size: 9px;
  line-height: 1.5;
}

.add-button {
  width: 100%;
  min-height: 45px;
  margin-top: 14px;
  border: 0;
  border-radius: 13px;
  color: white;
  background: var(--burgundy);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(114, 25, 39, 0.16);
}

.add-button:disabled {
  color: #8e8781;
  background: #e3ddd5;
  box-shadow: none;
  cursor: not-allowed;
}

.calculation-explainer {
  display: grid;
  grid-template-columns: 0.72fr 1.6fr;
  gap: 60px;
  padding-block: 70px 105px;
}

.formula-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.formula-cards article {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: end;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.formula-cards article:nth-child(2) {
  color: white;
  background: var(--burgundy);
}

.formula-cards span {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 26px;
  font-weight: 300;
}

.formula-cards b {
  font-size: 14px;
}

.formula-cards p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.formula-cards article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.63);
}

.contact-section {
  color: white;
  background:
    radial-gradient(circle at 15% 50%, rgba(211, 166, 79, 0.18), transparent 25%),
    var(--burgundy-dark);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 80px;
  padding-block: 75px;
}

.contact-section p {
  max-width: 630px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.9;
}

.contact-cards {
  display: grid;
  gap: 10px;
}

.contact-cards a,
.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-cards small,
.contact-hours small {
  color: var(--gold-light);
  font-size: 9px;
}

.contact-cards b,
.contact-hours b {
  direction: rtl;
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.58);
  background: #21080c;
  font-size: 10px;
}

.site-footer > div {
  justify-self: start;
}

.site-footer .brand {
  transform: scale(0.86);
  transform-origin: right;
}

.site-footer > p {
  margin: 0;
  text-align: center;
}

.site-footer > a {
  justify-self: end;
}

.developer-credit {
  direction: ltr;
}

.floating-whatsapp {
  position: fixed;
  z-index: 70;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px 10px 11px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 99px;
  color: white;
  background: var(--green);
  box-shadow: 0 14px 35px rgba(8, 77, 46, 0.32);
}

.floating-whatsapp span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.floating-whatsapp b {
  font-size: 11px;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 89;
  visibility: hidden;
  background: rgba(25, 12, 9, 0.6);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: 0.25s ease;
}

.cart-backdrop.is-open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 90;
  inset: 0 0 0 auto;
  width: min(540px, 100%);
  overflow: hidden;
  background: var(--paper);
  box-shadow: -25px 0 70px rgba(25, 10, 8, 0.24);
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  min-height: 91px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 23px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__head small {
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 900;
}

.cart-drawer__head h2 {
  margin: 3px 0 0;
  font-size: 26px;
}

.cart-drawer__head > button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  font-size: 23px;
}

.cart-drawer__content {
  height: calc(100dvh - 91px);
  overflow-y: auto;
  padding: 22px;
}

.empty-cart {
  display: grid;
  min-height: 60vh;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.empty-cart > span {
  font-size: 64px;
}

.empty-cart h3 {
  margin: 16px 0 6px;
}

.empty-cart p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.empty-cart button {
  margin-top: 20px;
  padding: 10px 18px;
  border: 0;
  border-radius: 11px;
  color: white;
  background: var(--burgundy);
  font-size: 11px;
  font-weight: 900;
}

.cart-items {
  display: grid;
  gap: 9px;
}

.cart-items article {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.cart-items article > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-items b {
  font-size: 12px;
}

.cart-items small {
  color: var(--muted);
  font-size: 9px;
}

.cart-items strong {
  color: var(--burgundy);
  font-size: 12px;
}

.cart-items button {
  border: 0;
  color: #9e948d;
  background: transparent;
  font-size: 18px;
}

.cart-summary {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  padding: 15px;
  border-radius: 14px;
  background: var(--cream);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

.cart-summary b {
  color: var(--ink);
}

.cart-summary__total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-size: 14px !important;
  font-weight: 900;
}

.cart-summary__total b {
  color: var(--burgundy);
}

.checkout-form {
  display: grid;
  gap: 14px;
  margin-top: 25px;
}

.checkout-form h3 {
  margin: 0;
  font-size: 18px;
}

.checkout-form label {
  display: block;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.admin-product-card input,
.admin-product-card textarea,
.admin-product-card select,
.banner-form input,
.banner-form textarea,
.banner-list input,
.banner-list textarea,
.settings-form input,
.settings-form textarea {
  width: 100%;
  min-height: 43px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  color: var(--ink);
  background: white;
  font-size: 11px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-form textarea,
.banner-form textarea,
.banner-list textarea,
.settings-form textarea {
  min-height: 78px;
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus,
.admin-main input:focus,
.admin-main textarea:focus,
.admin-main select:focus {
  border-color: rgba(114, 25, 39, 0.5);
  box-shadow: 0 0 0 3px rgba(114, 25, 39, 0.08);
}

.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fulfillment-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.delivery-note {
  margin: -3px 0 0;
  padding: 11px;
  border-radius: 10px;
  color: #7e5b18;
  background: #fff5d9;
  font-size: 9px;
  line-height: 1.6;
}

.checkout-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.checkout-form legend {
  padding: 0 7px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
}

.payment-option {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 9px;
  border-radius: 10px;
  background: #f7f3ed;
}

.payment-option input {
  width: 16px;
  min-height: auto;
  accent-color: var(--burgundy);
}

.payment-option > span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.payment-option b {
  font-size: 10px;
}

.payment-option small {
  color: var(--muted);
  font-size: 8px;
}

.form-error {
  margin: 0;
  padding: 10px;
  border-radius: 9px;
  color: #a11928;
  background: #fff0f2;
  font-size: 10px;
}

.checkout-button {
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(25, 112, 74, 0.22);
  font-size: 12px;
  font-weight: 900;
}

.checkout-button:disabled {
  opacity: 0.65;
}

.secure-note {
  margin: -4px 0 10px;
  color: var(--muted);
  text-align: center;
  font-size: 8px;
}

.toast {
  position: fixed;
  z-index: 120;
  bottom: 25px;
  left: 50%;
  padding: 11px 17px;
  border-radius: 99px;
  color: white;
  background: #25201d;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  font-size: 11px;
  font-weight: 800;
  transform: translateX(-50%);
  animation: toastIn 0.3s ease;
}

@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 15px); } }

/* Admin */
.admin-signin {
  display: grid;
  min-height: 100vh;
  place-content: center;
  justify-items: center;
  padding: 30px;
  text-align: center;
  background: radial-gradient(circle at 50% 25%, white, var(--cream));
}

.admin-signin h1 {
  margin: 28px 0 8px;
}

.admin-signin p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.admin-signin > a {
  margin-top: 22px;
  padding: 12px 24px;
  border-radius: 12px;
  color: white;
  background: var(--burgundy);
  font-size: 12px;
  font-weight: 900;
}

.admin-page {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 252px minmax(0, 1fr);
  background: #f4efe8;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  padding: 25px 19px;
  color: white;
  background:
    radial-gradient(circle at 50% 10%, rgba(211, 166, 79, 0.13), transparent 25%),
    var(--burgundy-dark);
}

.admin-sidebar .brand {
  margin-inline: 7px;
}

.admin-sidebar__owner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
}

.admin-sidebar__owner > span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 50%;
  color: var(--burgundy-dark);
  background: var(--gold-light);
  font-weight: 900;
}

.admin-sidebar__owner p {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
  margin: 0;
}

.admin-sidebar__owner small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
}

.admin-sidebar__owner b {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-sidebar nav {
  display: grid;
  gap: 5px;
  margin-top: 28px;
}

.admin-sidebar nav button {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  border: 0;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.63);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.admin-sidebar nav button span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}

.admin-sidebar nav button.active {
  color: white;
  background: rgba(255, 255, 255, 0.09);
}

.admin-sidebar nav button.active span {
  color: var(--burgundy-dark);
  background: var(--gold-light);
}

.admin-sidebar__store {
  margin-top: auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.admin-main {
  width: 100%;
  max-width: 1440px;
  min-width: 0;
  margin: 0 auto;
  padding: 31px 36px 60px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 27px;
}

.admin-header small {
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 900;
}

.admin-header h1 {
  margin: 3px 0 0;
  font-size: 29px;
  letter-spacing: -0.035em;
}

.admin-live {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(25, 112, 74, 0.14);
  border-radius: 99px;
  color: var(--green);
  background: rgba(25, 112, 74, 0.07);
  font-size: 9px;
  font-weight: 900;
}

.admin-live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #21a369;
  box-shadow: 0 0 0 4px rgba(33, 163, 105, 0.12);
}

.admin-notice {
  position: fixed;
  z-index: 200;
  top: 23px;
  left: 25px;
  padding: 12px 17px;
  border-radius: 12px;
  color: white;
  box-shadow: 0 14px 35px rgba(30, 16, 12, 0.2);
  font-size: 10px;
  font-weight: 800;
  animation: toastIn 0.3s ease;
}

.admin-notice.success { background: var(--green); }
.admin-notice.error { background: #a31f30; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.admin-stats article {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.admin-stats article.featured {
  color: white;
  background: var(--burgundy);
}

.admin-stats span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.admin-stats .featured span,
.admin-stats .featured small {
  color: rgba(255, 255, 255, 0.64);
}

.admin-stats b {
  margin: 13px 0 4px;
  font-size: 33px;
}

.admin-stats small {
  margin-top: auto;
  color: #9a928c;
  font-size: 8px;
}

.admin-welcome {
  display: grid;
  min-height: 300px;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 30px;
  margin-top: 16px;
  overflow: hidden;
  padding: 35px;
  border-radius: 22px;
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(211, 166, 79, 0.18), transparent 28%),
    linear-gradient(120deg, #31070d, #781928);
}

.admin-welcome > div:first-child > span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 900;
}

.admin-welcome h2 {
  margin: 9px 0;
  font-size: 32px;
}

.admin-welcome p {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.8;
}

.admin-welcome button {
  margin-top: 20px;
  padding: 10px 17px;
  border: 0;
  border-radius: 10px;
  color: var(--burgundy-dark);
  background: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
}

.admin-welcome__mark {
  display: grid;
  width: 180px;
  height: 180px;
  place-self: center;
  place-content: center;
  justify-items: center;
  border: 2px solid rgba(241, 207, 131, 0.4);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.03), inset 0 0 0 13px rgba(241, 207, 131, 0.12);
}

.admin-welcome__mark strong {
  color: var(--gold-light);
  font-size: 41px;
}

.admin-welcome__mark small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.recent-orders,
.new-banner-card,
.admin-settings {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--paper);
}

.admin-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}

.admin-section-title h2 {
  margin: 0;
  font-size: 17px;
}

.admin-section-title > span,
.admin-section-title > button {
  border: 0;
  color: var(--burgundy);
  background: transparent;
  font-size: 9px;
  font-weight: 900;
}

.recent-order {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr auto;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.recent-order:last-child { border-bottom: 0; }
.recent-order small { color: var(--muted); }
.recent-order em { color: var(--green); font-size: 9px; font-style: normal; font-weight: 900; }

.admin-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 12px 15px;
  border: 1px solid rgba(211, 166, 79, 0.23);
  border-radius: 12px;
  color: #72521c;
  background: #fff7e5;
  font-size: 9px;
}

.admin-products > section + section,
.admin-banners > section + section {
  margin-top: 36px;
}

.admin-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-product-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.admin-product-card__image {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  background: linear-gradient(145deg, #f1dfca, #e0c3a6);
  background-position: center;
  background-size: cover;
}

.admin-product-card__image > span {
  font-size: 52px;
}

.admin-product-card__image > label,
.banner-upload > label {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  padding: 8px;
  border-radius: 8px;
  color: white;
  background: rgba(35, 24, 19, 0.78);
  font-size: 8px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.admin-product-card__image input[type="file"],
.banner-upload input[type="file"] {
  display: none;
}

.admin-product-card__body {
  padding: 15px;
}

.admin-product-card__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 9px;
}

.admin-product-card__top > input {
  min-height: 35px;
  padding: 6px 9px;
  border-color: transparent;
  background: #f7f3ee;
  font-size: 12px;
  font-weight: 900;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 8px;
  border-radius: 8px;
  color: var(--green);
  background: rgba(25, 112, 74, 0.08);
  font-size: 8px;
  font-weight: 900;
}

.availability input {
  width: 13px;
  min-height: auto;
  accent-color: var(--green);
}

.admin-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 12px;
}

.admin-fields input {
  min-height: 36px;
  padding: 7px 9px;
}

.admin-save,
.admin-delete {
  min-height: 38px;
  padding: 9px 14px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--burgundy);
  font-size: 9px;
  font-weight: 900;
}

.admin-product-card .admin-save {
  width: 100%;
  margin-top: 12px;
}

.admin-save:disabled { opacity: 0.6; }
.admin-delete { color: #a12131; background: #ffedf0; }

.banner-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 11px;
}

.banner-upload {
  position: relative;
  display: grid;
  min-height: 83px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(114, 25, 39, 0.28);
  border-radius: 12px;
  background: #f8f1e9;
}

.banner-upload > label {
  position: static;
  margin: 10px;
  background: var(--burgundy);
}

.banner-upload img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-upload img + * { position: relative; }

.banner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.banner-list article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
}

.banner-list__preview {
  position: relative;
  height: 165px;
  background-position: center;
  background-size: cover;
}

.banner-list__preview span {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  border-radius: 99px;
  color: white;
  background: var(--green);
  font-size: 8px;
  font-weight: 900;
}

.banner-list__fields {
  display: grid;
  gap: 8px;
  padding: 13px;
}

.banner-list__fields > input {
  font-weight: 900;
}

.banner-list__fields > div {
  display: flex;
  gap: 8px;
}

.admin-orders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-orders > .admin-section-title,
.admin-orders > .admin-empty {
  grid-column: 1 / -1;
}

.order-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
}

.order-card__head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.order-card__head small {
  color: var(--burgundy);
  font-size: 8px;
  font-weight: 900;
}

.order-card__head h3 {
  margin: 5px 0 2px;
  font-size: 15px;
}

.order-card__head a {
  color: var(--muted);
  font-size: 9px;
}

.order-card__head strong {
  color: var(--burgundy);
  font-size: 14px;
}

.order-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding: 9px;
  border-radius: 8px;
  color: var(--muted);
  background: #f5f0e9;
  font-size: 8px;
}

.order-card ul {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.order-card li {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
}

.order-card li span { color: var(--muted); }

.order-card__address {
  margin: 7px 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.6;
}

.status-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 900;
}

.status-select select {
  width: 150px;
  min-height: 35px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  font-size: 9px;
}

.admin-empty {
  margin: 0;
  padding: 25px;
  border: 1px dashed var(--line);
  border-radius: 13px;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
}

.admin-settings {
  margin-top: 0;
}

.settings-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.settings-form .wide {
  grid-column: 1 / -1;
}

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-header nav { justify-content: center; gap: 16px; }
  .calculation-explainer { grid-template-columns: 1fr; gap: 30px; }
  .admin-product-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .banner-form { grid-template-columns: 1fr 1fr; }
  .banner-list { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .announcement { justify-content: space-between; font-size: 10px; }
  .announcement p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .site-header { min-height: 67px; padding: 8px 15px; }
  .site-header nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .cart-button { min-width: auto; }
  .cart-button span { display: none; }
  .brand__logo { width: 48px; height: 48px; border-radius: 13px; }
  .brand__copy strong { font-size: 16px; }
  .hero, .hero__content { min-height: 610px; }
  .hero__image { background-position: 40% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(24, 12, 9, 0.18), rgba(24, 12, 9, 0.88) 72%, rgba(31, 10, 9, 0.96)); }
  .hero__content { padding-block: 70px 80px; }
  .hero__facts span { min-width: 0; flex: 1; padding-inline: 12px; }
  .quick-strip { grid-template-columns: 1fr; margin-top: -30px; }
  .quick-strip > div { padding: 17px 21px; border-bottom: 1px solid var(--line); border-left: 0; }
  .quick-strip > div:last-child { border-bottom: 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
  .category-tabs { width: 100%; }
  .category-tabs button { flex: 1; }
  .formula-cards { grid-template-columns: 1fr; }
  .formula-cards article { min-height: 160px; }
  .contact-section__inner { grid-template-columns: 1fr; gap: 25px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer > div, .site-footer > a { justify-self: center; }
  .admin-page { display: block; }
  .admin-sidebar { position: static; height: auto; padding: 15px; }
  .admin-sidebar .brand, .admin-sidebar__owner { display: none; }
  .admin-sidebar nav { grid-template-columns: repeat(5, 1fr); margin: 0; overflow-x: auto; }
  .admin-sidebar nav button { min-width: 100px; justify-content: center; padding: 8px; font-size: 8px; }
  .admin-sidebar nav button span { display: none; }
  .admin-sidebar__store { display: none; }
  .admin-main { padding: 22px 15px 50px; }
  .admin-product-card { grid-template-columns: 110px minmax(0, 1fr); }
  .admin-welcome { grid-template-columns: 1fr; }
  .admin-welcome__mark { display: none; }
  .admin-orders { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .section-shell, .hero__content { width: min(100% - 26px, 1180px); }
  .announcement a { font-size: 9px; }
  .brand__copy small { display: none; }
  .hero, .hero__content { min-height: 570px; }
  .hero__image { background-position: 37% center; }
  .hero h1 { font-size: 50px; }
  .hero__content > p { font-size: 14px; }
  .hero__actions a { flex: 1; padding-inline: 13px; }
  .hero__facts { margin-top: 34px; }
  .hero__facts span { padding-inline: 8px; }
  .hero__facts b { font-size: 10px; }
  .hero__facts small { font-size: 8px; }
  .quick-strip { width: calc(100% - 26px); }
  .offers-section { padding-top: 75px; }
  .offer-banner { min-height: 380px; background-position: 35% center; }
  .offer-banner__shade { background: linear-gradient(0deg, rgba(59, 8, 15, 0.96), rgba(37, 12, 12, 0.08) 75%); }
  .offer-banner__copy { width: 100%; min-height: 380px; justify-content: end; padding: 28px 24px; }
  .products-section { padding-block: 80px 45px; }
  .product-card__visual { height: 145px; }
  .calculation-explainer { padding-block: 40px 75px; }
  .contact-section__inner { padding-block: 55px; }
  .floating-whatsapp { right: 12px; bottom: 12px; }
  .two-fields { grid-template-columns: 1fr; }
  .cart-drawer__content { padding: 15px; }
  .admin-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .admin-stats article { min-height: 118px; padding: 13px; }
  .admin-stats b { font-size: 27px; }
  .admin-welcome { padding: 25px; }
  .admin-welcome h2 { font-size: 26px; }
  .admin-product-card { grid-template-columns: 1fr; }
  .admin-product-card__image { min-height: 150px; }
  .banner-form, .settings-form { grid-template-columns: 1fr; }
  .settings-form .wide { grid-column: auto; }
  .recent-order { grid-template-columns: 1fr 1fr; }
  .banner-list__preview { height: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* PHP / Namecheap installer and dashboard additions */
.installer-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
  background:
    radial-gradient(circle at 12% 10%, rgba(211, 166, 79, 0.2), transparent 30%),
    linear-gradient(145deg, #26060b, #731927 55%, #3d0911);
}

.installer-card {
  width: min(680px, 100%);
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.3);
}

.installer-logo,
.admin-login-logo {
  display: block;
  width: 180px;
  aspect-ratio: 19 / 15;
  object-fit: contain;
  margin: 0 auto 22px;
  border-radius: 22px;
  background: #050505;
}

.installer-card h1,
.admin-signin h1 {
  margin: 10px 0;
  color: var(--burgundy-dark);
  font-size: clamp(28px, 5vw, 42px);
}

.installer-card > p,
.admin-signin > p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.9;
}

.installer-badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 99px;
  color: var(--burgundy);
  background: #f5e5e7;
  font-size: 11px;
  font-weight: 900;
}

.installer-badge.success {
  color: var(--green);
  background: #e7f5ed;
}

.installer-error,
.admin-inline-notice {
  margin: 16px 0;
  padding: 13px 16px;
  border-radius: 13px;
  color: #97182d;
  background: #ffedf0;
  font-size: 13px;
  font-weight: 800;
}

.admin-inline-notice.success {
  color: #12613f;
  background: #e8f6ef;
}

.installer-form,
.admin-login-form {
  display: grid;
  gap: 14px;
}

.installer-form label,
.admin-login-form label,
.settings-form label {
  display: grid;
  gap: 7px;
}

.installer-form label > span,
.admin-login-form label > span,
.settings-form label > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.installer-form input,
.admin-login-form input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: white;
}

.installer-form input:focus,
.admin-login-form input:focus {
  border-color: var(--burgundy-soft);
  box-shadow: 0 0 0 3px rgba(114, 25, 39, 0.1);
}

.installer-form button,
.admin-login-form button,
.installer-actions a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: var(--burgundy);
  font-weight: 900;
}

.installer-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 2px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 900;
}

.installer-separator::before,
.installer-separator::after {
  height: 1px;
  flex: 1;
  content: "";
  background: var(--line);
}

.installer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.installer-actions a.secondary {
  color: var(--burgundy);
  background: #f4e8e8;
}

.admin-signin {
  min-height: 100vh;
}

.admin-login-logo {
  width: 150px;
}

.admin-back-link {
  margin-top: 18px;
}

.php-admin-brand {
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.php-admin-brand img {
  width: 128px;
  max-height: 100px;
  object-fit: contain;
  border-radius: 15px;
  background: #050505;
}

.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 47px;
  padding: 10px 13px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.admin-sidebar nav a span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-sidebar nav a.active {
  color: white;
  background: rgba(211, 166, 79, 0.17);
}

.admin-sidebar nav a.active span {
  color: var(--burgundy-dark);
  background: var(--gold-light);
}

.admin-logout {
  display: block;
  margin-top: 10px;
  padding: 11px;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}

.admin-welcome a,
.admin-section-title a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  background: var(--burgundy);
  font-size: 11px;
  font-weight: 900;
}

.admin-welcome a {
  width: max-content;
  margin-top: 20px;
  color: var(--burgundy-dark);
  background: var(--gold-light);
}

.banner-list form {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
}

.php-file-field input[type="file"] {
  padding: 10px;
  border: 1px dashed rgba(114, 25, 39, 0.28);
  border-radius: 12px;
  background: #fffaf5;
}

.product-card[hidden] {
  display: none !important;
}

.calculation-box.is-adjusted p {
  display: block;
}

.cart-drawer[aria-hidden="true"] {
  pointer-events: none;
}

@media (max-width: 820px) {
  .admin-sidebar nav a { min-width: 105px; justify-content: center; padding: 8px; font-size: 9px; }
  .admin-sidebar nav a span { display: none; }
  .php-admin-brand, .admin-logout { display: none; }
}

/* Premium storefront refresh */
.store-page {
  min-height: 100vh;
  overflow: clip;
  background:
    radial-gradient(circle at 88% 23%, rgba(211, 166, 79, 0.09), transparent 24%),
    linear-gradient(180deg, #f7f1e7 0%, #fffdf9 34%, #f4ede2 100%);
}
.store-page :is(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(211, 166, 79, 0.72);
  outline-offset: 3px;
}
.announcement {
  min-height: 39px;
  justify-content: space-between;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: #1a080a;
}
.announcement__message,
.announcement__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.announcement__message > span {
  color: #4fdb91;
  font-size: 9px;
  filter: drop-shadow(0 0 5px rgba(79, 219, 145, 0.7));
  animation: livePulse 1.8s ease-in-out infinite;
}
.announcement__meta {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
}
.announcement__meta b {
  font-weight: 700;
}
.announcement__hours {
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}
.announcement__meta a {
  padding-right: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
}
.site-header {
  min-height: 86px;
  border-bottom-color: rgba(64, 27, 22, 0.08);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 14px 42px rgba(55, 23, 18, 0.07);
  backdrop-filter: blur(22px) saturate(145%);
}
.site-header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}
.site-header nav a {
  font-size: 12px;
  letter-spacing: -0.01em;
}
.cart-button {
  position: relative;
  min-width: 142px;
  gap: 12px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, #8e2031, var(--burgundy-dark));
  box-shadow: 0 12px 26px rgba(83, 13, 23, 0.22);
}
.cart-button > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: start;
  gap: 2px;
}
.cart-button small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
}
.cart-button strong {
  max-width: 85px;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-button > b {
  width: 29px;
  height: 29px;
}
.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}
.mobile-menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--burgundy-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 75;
  visibility: hidden;
  border: 0;
  background: rgba(25, 10, 8, 0.48);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.nav-backdrop.is-open {
  visibility: visible;
  opacity: 1;
}
.hero {
  min-height: 735px;
  background: #1a0a0c;
}
.hero__image {
  background-position: 42% center;
  transform: scale(1.035);
  animation: heroSettle 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero__overlay {
  background:
    radial-gradient(circle at 19% 45%, rgba(224, 167, 68, 0.08), transparent 25%),
    linear-gradient(90deg, rgba(14, 6, 5, 0.13) 20%, rgba(22, 8, 8, 0.74) 60%, rgba(30, 6, 10, 0.98) 100%),
    linear-gradient(0deg, rgba(13, 5, 5, 0.67), transparent 44%);
}
.hero__content {
  display: grid;
  min-height: 735px;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.62fr);
  align-items: center;
  gap: clamp(50px, 8vw, 118px);
  padding-block: 78px 88px;
}
.hero__content > * {
  max-width: none;
}
.hero__copy {
  max-width: 650px;
  animation: riseIn 0.75s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero__status {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  font-size: 10px;
  font-weight: 800;
}
.hero__status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #50e091;
  box-shadow: 0 0 0 5px rgba(80, 224, 145, 0.13);
}
.hero h1 {
  max-width: 710px;
  margin-top: 20px;
  font-size: clamp(62px, 6.8vw, 94px);
  text-wrap: balance;
}
.hero__copy > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.9;
}
.hero__actions .primary-action {
  gap: 15px;
}
.hero__actions .primary-action span,
.hero__price-card > a span {
  transition: transform 0.2s ease;
}
.hero__actions .primary-action:hover span,
.hero__price-card > a:hover span {
  transform: translateX(-4px);
}
.hero__price-card {
  align-self: end;
  margin-bottom: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  color: var(--ink);
  background: rgba(255, 251, 242, 0.94);
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(140%);
  animation: riseIn 0.8s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero__price-card::before {
  display: block;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--gold), #ffda69, var(--burgundy));
}
.hero__price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 21px 21px 16px;
}
.hero__price-card-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__price-card-head > div span {
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 900;
}
.hero__price-card-head > div b {
  font-size: 14px;
}
.hero__price-card-head > i {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 99px;
  color: var(--green);
  background: rgba(25, 112, 74, 0.08);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.hero__price-card-head > i span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27b971;
  animation: livePulse 1.8s ease-in-out infinite;
}
.hero__price-list {
  display: grid;
  padding-inline: 21px;
}
.hero__price-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 12px;
  border-top: 1px solid rgba(61, 30, 19, 0.09);
  font-size: 11px;
}
.hero__price-list > div > span {
  color: #554b44;
  font-weight: 800;
}
.hero__price-list b {
  min-width: max-content;
  color: var(--burgundy);
  font-size: 15px;
}
.hero__price-list small {
  font-size: 8px;
}
.hero__price-card > a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  margin: 10px;
  padding: 12px 14px;
  border-radius: 13px;
  color: white;
  background: var(--burgundy-dark);
  font-size: 10px;
  font-weight: 900;
}
.quick-strip {
  width: min(1100px, calc(100% - 40px));
  margin-top: -43px;
  border: 0;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 26px 65px rgba(52, 20, 16, 0.14);
  backdrop-filter: blur(16px);
}
.quick-strip > div {
  min-height: 94px;
}
.quick-strip > div > span {
  font-size: 29px;
  opacity: 0.8;
}
.offers-section {
  padding-top: 112px;
}
.offers-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 28px;
}
.offers-section__head h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4.8vw, 56px);
  letter-spacing: -0.05em;
}
.offers-section__head > p {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}
.offer-banner {
  min-height: 410px;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(58, 25, 20, 0.16);
}
.offer-banner__copy {
  min-height: 410px;
  padding-inline: 58px;
}
.offer-banner a,
.contact-cards a,
.product-card,
.formula-cards article {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.offer-banner a:hover,
.contact-cards a:hover {
  transform: translateY(-3px);
}
.products-section {
  padding-block: 120px 90px;
}
.section-heading {
  margin-bottom: 28px;
}
.menu-meta {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 5px;
  padding: 13px 16px;
  border: 1px solid rgba(25, 112, 74, 0.12);
  border-radius: 15px;
  color: var(--green);
  background: rgba(25, 112, 74, 0.055);
}
.menu-meta span {
  font-size: 11px;
  font-weight: 800;
}
.menu-meta span b {
  font-size: 16px;
}
.menu-meta small {
  color: var(--muted);
  font-size: 8px;
}
.menu-toolbar {
  position: sticky;
  top: 96px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding: 12px;
  border: 1px solid rgba(73, 45, 32, 0.09);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 14px 38px rgba(57, 25, 18, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
}
.product-search {
  display: flex;
  width: min(360px, 100%);
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding-inline: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}
.product-search > span {
  color: var(--burgundy);
  font-size: 23px;
  line-height: 1;
}
.product-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}
.product-search button {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #82766d;
  background: #f1ece5;
}
.category-tabs {
  flex: 0 0 auto;
  background: #f3ece4;
}
.category-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
}
.category-tabs button small {
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 99px;
  color: #776c64;
  background: rgba(255, 255, 255, 0.72);
  font-size: 8px;
}
.category-tabs button.active small {
  color: var(--burgundy-dark);
  background: var(--gold-light);
}
.products-grid {
  gap: 24px;
}
.product-card {
  border-color: rgba(71, 42, 27, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(55, 28, 21, 0.08);
}
.product-card:hover {
  border-color: rgba(114, 25, 39, 0.16);
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(55, 25, 20, 0.14);
}
.product-card__visual {
  height: 220px;
  place-items: end start;
  background-color: #ead9c9;
  background-position: center;
  transition: background-size 0.45s ease, filter 0.3s ease;
}
.product-card__visual--poultry {
  background-position: 27% 47%;
  background-size: 188%;
}
.product-card__visual--cuts {
  background-position: center;
  background-size: 125%;
}
.product-card:hover .product-card__visual--poultry {
  background-size: 198%;
}
.product-card:hover .product-card__visual--cuts {
  background-size: 132%;
}
.product-card__visual::after {
  height: 65%;
  background: linear-gradient(transparent, rgba(25, 8, 7, 0.58));
}
.product-card__emoji {
  position: relative;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 16px 15px 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  font-size: 21px !important;
  backdrop-filter: blur(10px);
  filter: none !important;
}
.product-card__visual > b {
  top: 14px;
  right: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(83, 11, 22, 0.88);
  backdrop-filter: blur(10px);
}
.availability-pill {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 99px;
  color: white;
  background: rgba(12, 80, 50, 0.82);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.availability-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #67f1aa;
}
.product-card__body {
  padding: 22px;
}
.product-card h3 {
  font-size: 21px;
}
.product-card__heading > strong {
  font-size: 22px;
}
.range-note {
  border: 1px solid rgba(114, 25, 39, 0.06);
  background: #f5ede4;
}
.mode-switch {
  min-height: 45px;
  align-items: stretch;
}
.mode-switch button {
  min-height: 35px;
}
.add-button {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: linear-gradient(135deg, #8d2132, var(--burgundy-dark));
  box-shadow: 0 13px 26px rgba(96, 18, 31, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.add-button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 32px rgba(96, 18, 31, 0.27);
}
.products-empty {
  display: grid;
  min-height: 360px;
  place-content: center;
  justify-items: center;
  border: 1px dashed rgba(114, 25, 39, 0.23);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.54);
  text-align: center;
}
.products-empty > span {
  color: var(--burgundy);
  font-size: 54px;
}
.products-empty h3 {
  margin: 12px 0 5px;
}
.products-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.products-empty button {
  margin-top: 18px;
  padding: 10px 16px;
  border: 0;
  border-radius: 11px;
  color: white;
  background: var(--burgundy);
  font-size: 10px;
  font-weight: 900;
}
.calculation-explainer {
  position: relative;
}
.formula-cards article {
  box-shadow: 0 16px 42px rgba(50, 24, 18, 0.06);
}
.formula-cards article:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(50, 24, 18, 0.11);
}
.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 55%, rgba(211, 166, 79, 0.22), transparent 25%),
    linear-gradient(120deg, #22070c, #5f101d 65%, #30080f);
}
.contact-section::after {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(240, 203, 126, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(240, 203, 126, 0.035), 0 0 0 140px rgba(240, 203, 126, 0.02);
}
.contact-section__inner {
  position: relative;
  z-index: 2;
  padding-block: 88px;
}
.contact-cards a:hover {
  border-color: rgba(241, 207, 131, 0.3);
  background: rgba(255, 255, 255, 0.1);
}
.floating-whatsapp {
  right: 24px;
  bottom: 22px;
  min-width: 184px;
  justify-content: start;
  padding: 9px 11px 9px 9px;
  border-width: 1px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1d9a64, #116642);
  box-shadow: 0 18px 45px rgba(8, 77, 46, 0.32);
}
.floating-whatsapp.has-items {
  background: linear-gradient(135deg, #8f2133, var(--burgundy-dark));
  box-shadow: 0 18px 45px rgba(96, 17, 30, 0.32);
}
.floating-whatsapp__copy {
  display: flex;
  min-width: 94px;
  flex-direction: column;
  align-items: start;
  gap: 2px;
}
.floating-whatsapp__copy small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 8px;
}
.floating-whatsapp > i {
  margin-right: auto;
  padding-inline: 7px 2px;
  font-size: 16px;
  font-style: normal;
}
.cart-drawer {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 100% 0, rgba(211, 166, 79, 0.11), transparent 22%),
    var(--paper);
}
.checkout-button {
  background: linear-gradient(135deg, #1d9b65, #0d5f3c);
}
@keyframes livePulse {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes heroSettle {
  from { opacity: 0.65; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.035); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1100px) {
  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
    gap: 40px;
  }
  .hero h1 {
    font-size: clamp(58px, 7.4vw, 78px);
  }
  .menu-toolbar {
    top: 89px;
  }
}

/* Namecheap production polish */
.offer-banner__image,
.product-card__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-banner__shade {
  z-index: 1;
}

.offer-banner__copy {
  z-index: 2;
}

.product-card {
  content-visibility: auto;
  contain-intrinsic-size: 620px;
}

.product-card__visual::after {
  z-index: 1;
}

.product-card__emoji,
.product-card__visual > b,
.product-card__visual > em,
.availability-pill {
  z-index: 2;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.installer-requirements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0 0 22px;
}

.installer-requirements > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(32, 27, 24, 0.09);
  border-radius: 13px;
  background: #f8f6f1;
}

.installer-requirements > div > span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-weight: 950;
}

.installer-requirements > .is-error > span {
  background: var(--burgundy);
}

.installer-requirements p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.installer-requirements b {
  font-size: 10px;
}

.installer-requirements small {
  color: var(--muted);
  font-size: 9px;
}

.installer-form button:disabled {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.58;
}

.admin-logout-form {
  margin: 0;
}

.admin-logout-form .admin-logout {
  display: block;
  width: 100%;
  border: 0;
  font: inherit;
}

.admin-order-tools {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(250px, 1fr) 180px auto;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 35px rgba(40, 22, 19, 0.05);
}

.new-product-card {
  margin: 15px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(114, 25, 39, 0.15);
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 239, 229, 0.92));
  box-shadow: 0 16px 40px rgba(54, 22, 19, 0.06);
}

.new-product-card summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.new-product-card summary::-webkit-details-marker {
  display: none;
}

.new-product-card summary > span {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: var(--burgundy);
  font-size: 20px;
}

.new-product-card summary > div {
  display: grid;
  gap: 2px;
}

.new-product-card summary b {
  font-size: 13px;
}

.new-product-card summary small {
  color: var(--muted);
  font-size: 9px;
}

.new-product-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.new-product-form label {
  display: grid;
  gap: 6px;
}

.new-product-form label > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
}

.new-product-form :is(input, select) {
  width: 100%;
  min-height: 43px;
  padding-inline: 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: white;
}

.new-product-form :is(input, select):focus {
  border-color: var(--burgundy-soft);
  box-shadow: 0 0 0 3px rgba(114, 25, 39, 0.08);
}

.new-product-availability {
  align-self: end;
  padding-bottom: 10px;
}

.new-product-form > .admin-save {
  min-height: 43px;
  align-self: end;
}

.admin-product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 12px;
}

.admin-product-actions .admin-save {
  width: 100%;
  margin: 0;
}

.admin-product-actions .admin-delete {
  min-width: 62px;
}

.admin-order-tools label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 43px;
  padding-inline: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.admin-order-tools input,
.admin-order-tools select {
  width: 100%;
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: white;
}

.admin-order-tools label input {
  min-height: 0;
  border: 0;
}

.admin-order-tools select {
  padding-inline: 12px;
}

.admin-order-tools > a {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding-inline: 17px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  font-size: 10px;
  font-weight: 950;
}

.admin-settings {
  display: grid;
  gap: 17px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.admin-settings-card,
.admin-security-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(42, 21, 18, 0.06);
}

.admin-backup-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-bottom: 18px;
}

.admin-backup-actions a {
  display: grid;
  gap: 4px;
  padding: 15px;
  border: 1px solid rgba(114, 25, 39, 0.12);
  border-radius: 15px;
  background: rgba(114, 25, 39, 0.055);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.admin-backup-actions a:hover {
  border-color: rgba(114, 25, 39, 0.3);
  transform: translateY(-2px);
}

.admin-backup-actions b {
  color: var(--burgundy-dark);
  font-size: 12px;
}

.admin-backup-actions small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
}

.password-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 10px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.password-form label {
  display: grid;
  gap: 6px;
}

.password-form label > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
}

.password-form input {
  width: 100%;
  min-height: 43px;
  padding-inline: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: white;
}

.password-form input:focus,
.admin-order-tools input:focus,
.admin-order-tools select:focus {
  border-color: var(--burgundy-soft);
  box-shadow: 0 0 0 3px rgba(114, 25, 39, 0.08);
}

.password-form .admin-save {
  min-height: 43px;
  white-space: nowrap;
}

.admin-inline-notice {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.admin-inline-notice.is-leaving {
  opacity: 0;
  transform: translateY(-8px);
}

@media (max-width: 900px) {
  .new-product-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-order-tools {
    grid-template-columns: 1fr 160px;
  }

  .admin-order-tools > a {
    grid-column: 1 / -1;
  }

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

@media (max-width: 620px) {
  .installer-requirements,
  .admin-backup-actions,
  .password-form,
  .admin-order-tools {
    grid-template-columns: 1fr;
  }

  .admin-order-tools > a {
    grid-column: auto;
  }

  .admin-settings-card,
  .admin-security-card {
    padding: 17px;
    border-radius: 17px;
  }

  .new-product-form {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .store-page {
    padding-bottom: 86px;
  }
  .announcement {
    min-height: 36px;
    padding-inline: 13px;
  }
  .announcement__message {
    min-width: 0;
  }
  .announcement__message p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .announcement__meta b {
    display: none;
  }
  .announcement__meta a {
    padding-right: 0;
    border-right: 0;
  }
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 8px 13px;
  }
  .site-header nav {
    position: fixed;
    z-index: 100;
    top: 116px;
    right: 13px;
    left: 13px;
    display: grid;
    gap: 4px;
    visibility: hidden;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 20px;
    background: rgba(255, 253, 249, 0.97);
    box-shadow: 0 28px 70px rgba(32, 13, 10, 0.24);
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    backdrop-filter: blur(22px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }
  .site-header.nav-is-open nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .site-header nav a {
    padding: 14px 15px;
    border-radius: 12px;
    color: var(--ink);
    background: #f7f1e9;
    font-size: 12px;
  }
  .site-header nav a::after {
    display: none;
  }
  .mobile-menu-button {
    display: grid;
  }
  .nav-is-open .mobile-menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-is-open .mobile-menu-button span:nth-child(2) {
    opacity: 0;
  }
  .nav-is-open .mobile-menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .cart-button {
    min-width: 46px;
    height: 44px;
    padding: 7px;
  }
  .cart-button::before {
    content: "🛒";
    font-size: 16px;
  }
  .cart-button > span {
    display: none;
  }
  .cart-button > b {
    position: absolute;
    top: -6px;
    left: -5px;
    width: 20px;
    height: 20px;
    font-size: 8px;
  }
  .hero,
  .hero__content {
    min-height: 820px;
  }
  .hero__image {
    background-position: 39% center;
  }
  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(23, 7, 10, 0.98) 3%, rgba(23, 7, 10, 0.82) 61%, rgba(18, 7, 5, 0.35) 100%),
      linear-gradient(90deg, rgba(20, 8, 7, 0.2), rgba(31, 7, 11, 0.76));
  }
  .hero__content {
    display: grid;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 25px;
    padding-block: 88px 72px;
  }
  .hero__copy {
    max-width: 610px;
  }
  .hero h1 {
    font-size: clamp(50px, 12vw, 72px);
  }
  .hero__price-card {
    width: min(100%, 520px);
    justify-self: start;
    margin: 0;
  }
  .hero__price-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 14px;
  }
  .quick-strip {
    display: grid;
    width: 100%;
    grid-auto-columns: min(80vw, 335px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 10px;
    margin-top: -34px;
    padding: 0 13px 18px;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .quick-strip::-webkit-scrollbar {
    display: none;
  }
  .quick-strip > div {
    min-height: 85px;
    padding: 18px 20px;
    border: 1px solid rgba(67, 37, 24, 0.09);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 16px 35px rgba(50, 23, 17, 0.09);
    scroll-snap-align: center;
  }
  .offers-section__head {
    align-items: start;
    flex-direction: column;
    gap: 13px;
  }
  .offer-banner,
  .offer-banner__copy {
    min-height: 390px;
  }
  .menu-meta {
    align-items: start;
  }
  .menu-toolbar {
    top: 80px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-inline: -4px;
    padding: 9px;
    border-radius: 17px;
  }
  .product-search {
    width: 100%;
  }
  .category-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .category-tabs button {
    justify-content: center;
    padding-inline: 7px;
  }
  .product-card__visual {
    height: 230px;
  }
  .floating-whatsapp {
    right: 12px;
    bottom: 11px;
    width: calc(100% - 24px);
    min-height: 62px;
    border-radius: 18px;
  }
  .floating-whatsapp__copy {
    flex: 1;
  }
  .floating-whatsapp > i {
    margin-right: 0;
    margin-left: 7px;
  }
}
@media (max-width: 540px) {
  .brand__logo {
    width: 48px;
    height: 48px;
  }
  .brand__copy strong {
    font-size: 15px;
  }
  .hero,
  .hero__content {
    min-height: 800px;
  }
  .hero__content {
    width: calc(100% - 26px);
    gap: 22px;
    padding-block: 72px 62px;
  }
  .hero__status {
    margin-bottom: 16px;
  }
  .hero h1 {
    margin-block: 15px;
    font-size: clamp(47px, 14vw, 59px);
  }
  .hero__copy > p {
    font-size: 13px;
    line-height: 1.8;
  }
  .hero__actions {
    margin-top: 23px;
  }
  .hero__actions a {
    min-width: 0;
    min-height: 49px;
    font-size: 10px;
  }
  .hero__facts {
    margin-top: 28px;
  }
  .hero__price-card-head {
    padding: 16px 16px 11px;
  }
  .hero__price-list {
    padding-inline: 16px;
  }
  .hero__price-list > div {
    gap: 7px;
    padding-block: 9px;
    font-size: 9px;
  }
  .hero__price-list b {
    font-size: 12px;
  }
  .hero__price-card > a {
    min-height: 42px;
  }
  .offers-section {
    padding-top: 78px;
  }
  .offers-section__head h2 {
    font-size: 35px;
  }
  .offer-banner__copy {
    padding: 28px 23px;
  }
  .products-section {
    padding-block: 85px 48px;
  }
  .section-heading h2 {
    font-size: 37px;
  }
  .menu-toolbar {
    top: 78px;
  }
  .category-tabs button {
    gap: 4px;
    font-size: 9px;
  }
  .category-tabs button small {
    min-width: 18px;
    height: 18px;
  }
  .product-card {
    border-radius: 24px;
  }
  .product-card__visual {
    height: 205px;
  }
  .product-card__body {
    padding: 18px;
  }
  .contact-section__inner {
    padding-block: 65px;
  }
  .cart-drawer__content {
    padding-bottom: 95px;
  }
}

/* Granite identity */
.store-page {
  --granite-950: #0f1012;
  --granite-900: #181a1e;
  --granite-850: #202226;
  --granite-800: #2b2d31;
  --granite-300: #c8c8c4;
  --granite-150: #e3e3de;
  --granite-100: #efefeb;
  --granite-50: #f8f7f3;
  background:
    linear-gradient(132deg, transparent 0 44%, rgba(69, 70, 73, 0.06) 44.15%, transparent 44.65%),
    linear-gradient(28deg, transparent 0 72%, rgba(255, 255, 255, 0.78) 72.2%, transparent 72.8%),
    radial-gradient(circle at 14% 18%, rgba(114, 25, 39, 0.08), transparent 19%),
    #e7e7e2;
}

.announcement {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(118deg, transparent 0 42%, rgba(255, 255, 255, 0.045) 42.2%, transparent 43%),
    #0d0e10;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(122deg, transparent 0 54%, rgba(255, 255, 255, 0.045) 54.2%, transparent 55%),
    rgba(19, 20, 23, 0.94);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.site-header .brand__copy strong,
.site-header nav a {
  color: #f4f3ee;
}

.site-header .brand__copy small {
  color: var(--gold-light);
}

.site-header nav a::after {
  background: linear-gradient(90deg, var(--burgundy-soft), var(--gold));
}

.site-header .brand__logo {
  border-color: rgba(241, 207, 131, 0.48);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
}

.mobile-menu-button {
  border-color: rgba(255, 255, 255, 0.14);
  background: #27292d;
}

.mobile-menu-button span {
  background: #f4f3ee;
}

.hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__overlay {
  background:
    linear-gradient(126deg, transparent 0 37%, rgba(255, 255, 255, 0.055) 37.15%, transparent 37.55%),
    radial-gradient(circle at 19% 45%, rgba(224, 167, 68, 0.1), transparent 25%),
    linear-gradient(90deg, rgba(9, 10, 12, 0.18) 20%, rgba(16, 17, 20, 0.76) 60%, rgba(13, 14, 17, 0.98) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.72), transparent 44%);
}

.hero__price-card {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(128deg, transparent 0 38%, rgba(51, 52, 55, 0.09) 38.2%, transparent 38.8%),
    linear-gradient(25deg, transparent 0 76%, rgba(255, 255, 255, 0.82) 76.3%, transparent 77%),
    rgba(239, 239, 235, 0.96);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.hero__price-card > a {
  background:
    linear-gradient(122deg, transparent 0 58%, rgba(255, 255, 255, 0.07) 58.3%, transparent 59%),
    var(--granite-900);
}

.quick-strip {
  color: #f1f0eb;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(118deg, transparent 0 31%, rgba(255, 255, 255, 0.055) 31.2%, transparent 32%),
    linear-gradient(24deg, transparent 0 73%, rgba(255, 255, 255, 0.035) 73.2%, transparent 74%),
    #1b1d20;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.quick-strip > div {
  border-left-color: rgba(255, 255, 255, 0.08);
}

.quick-strip small {
  color: rgba(255, 255, 255, 0.56);
}

.quick-strip > div > span {
  color: var(--gold-light);
}

.offers-section__head h2,
.section-heading h2,
.calculation-explainer h2 {
  color: #17181b;
}

.offer-banner {
  border: 1px solid rgba(31, 32, 35, 0.18);
  box-shadow: 0 30px 78px rgba(19, 20, 23, 0.2);
}

.products-section {
  width: min(1240px, calc(100% - 32px));
  margin-block: 112px 86px;
  padding: 58px 36px 64px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 42px;
  color: #f3f2ed;
  background:
    linear-gradient(128deg, transparent 0 33%, rgba(255, 255, 255, 0.045) 33.15%, transparent 33.7%),
    linear-gradient(25deg, transparent 0 72%, rgba(255, 255, 255, 0.035) 72.2%, transparent 72.8%),
    radial-gradient(circle at 82% 8%, rgba(114, 25, 39, 0.18), transparent 23%),
    #17191c;
  box-shadow: 0 32px 85px rgba(18, 19, 22, 0.22);
}

.products-section .section-heading h2 {
  color: #f5f4ef;
}

.products-section .section-heading p {
  color: rgba(255, 255, 255, 0.58);
}

.products-section .eyebrow--dark {
  color: var(--gold-light);
}

.products-section .menu-meta {
  border-color: rgba(92, 227, 158, 0.17);
  color: #62dda0;
  background: rgba(44, 169, 109, 0.09);
}

.products-section .menu-meta small {
  color: rgba(255, 255, 255, 0.48);
}

.menu-toolbar {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(120deg, transparent 0 60%, rgba(255, 255, 255, 0.045) 60.2%, transparent 61%),
    rgba(42, 44, 48, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.product-search {
  border-color: rgba(37, 38, 41, 0.12);
  background:
    linear-gradient(128deg, transparent 0 72%, rgba(49, 50, 53, 0.06) 72.2%, transparent 73%),
    #f2f2ed;
}

.category-tabs {
  border-color: rgba(255, 255, 255, 0.09);
  background: #1d1f22;
}

.category-tabs button {
  color: rgba(255, 255, 255, 0.61);
}

.category-tabs button small {
  color: #d7d7d1;
  background: rgba(255, 255, 255, 0.09);
}

.category-tabs button.active {
  background: linear-gradient(135deg, #922236, #520d18);
}

.product-card {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(128deg, transparent 0 67%, rgba(43, 44, 47, 0.04) 67.2%, transparent 68%),
    #f5f4ef;
  box-shadow: 0 19px 48px rgba(0, 0, 0, 0.23);
}

.product-card:hover {
  border-color: rgba(241, 207, 131, 0.42);
  box-shadow: 0 33px 76px rgba(0, 0, 0, 0.34);
}

.product-card__body {
  color: #1b1c1f;
}

.range-note {
  border-color: rgba(38, 39, 42, 0.08);
  background:
    linear-gradient(124deg, transparent 0 69%, rgba(40, 41, 44, 0.07) 69.2%, transparent 70%),
    #e3e3de;
}

.mode-switch {
  border-color: rgba(37, 38, 41, 0.11);
  background: #deded9;
}

.calculator-field__input {
  border-color: rgba(39, 40, 43, 0.13);
  background: #faf9f5;
}

.calculation-box {
  border-color: rgba(37, 38, 41, 0.1);
  background:
    linear-gradient(125deg, transparent 0 63%, rgba(43, 44, 47, 0.05) 63.2%, transparent 64%),
    #e9e8e3;
}

.products-empty {
  border-color: rgba(255, 255, 255, 0.2);
  color: #f1f0ec;
  background: rgba(255, 255, 255, 0.055);
}

.products-empty p {
  color: rgba(255, 255, 255, 0.56);
}

.calculation-explainer {
  padding: 92px 0 112px;
}

.formula-cards article {
  border-color: rgba(29, 30, 33, 0.11);
  background:
    linear-gradient(126deg, transparent 0 62%, rgba(43, 44, 47, 0.05) 62.2%, transparent 63%),
    #f3f2ed;
}

.formula-cards article:nth-child(2) {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(125deg, transparent 0 55%, rgba(255, 255, 255, 0.055) 55.2%, transparent 56%),
    #1b1d20;
}

.contact-section {
  background:
    linear-gradient(126deg, transparent 0 40%, rgba(255, 255, 255, 0.045) 40.2%, transparent 41%),
    radial-gradient(circle at 14% 55%, rgba(157, 51, 66, 0.22), transparent 25%),
    linear-gradient(120deg, #111215, #222429 65%, #111215);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(120deg, transparent 0 72%, rgba(255, 255, 255, 0.04) 72.2%, transparent 73%),
    #090a0b;
}

.cart-drawer {
  background:
    linear-gradient(126deg, transparent 0 68%, rgba(45, 46, 49, 0.05) 68.2%, transparent 69%),
    #f1f0eb;
}

@media (max-width: 820px) {
  .site-header nav {
    border-color: rgba(255, 255, 255, 0.12);
    background:
      linear-gradient(122deg, transparent 0 60%, rgba(255, 255, 255, 0.05) 60.2%, transparent 61%),
      rgba(25, 27, 30, 0.98);
  }

  .site-header nav a {
    color: #f2f1ec;
    background: #292b2f;
  }

  .hero__overlay {
    background:
      linear-gradient(128deg, transparent 0 42%, rgba(255, 255, 255, 0.05) 42.2%, transparent 43%),
      linear-gradient(0deg, rgba(13, 14, 17, 0.99) 3%, rgba(16, 17, 20, 0.84) 61%, rgba(11, 12, 14, 0.4) 100%);
  }

  .quick-strip > div {
    color: #f1f0eb;
    border-color: rgba(255, 255, 255, 0.09);
    background:
      linear-gradient(124deg, transparent 0 60%, rgba(255, 255, 255, 0.055) 60.2%, transparent 61%),
      #1b1d20;
    box-shadow: 0 17px 38px rgba(0, 0, 0, 0.22);
  }

  .products-section {
    width: calc(100% - 16px);
    margin-block: 82px 48px;
    padding: 42px 12px 48px;
    border-radius: 28px;
  }

  .menu-toolbar {
    top: 80px;
  }
}

@media (max-width: 540px) {
  .products-section {
    width: calc(100% - 12px);
    padding-inline: 9px;
    border-radius: 24px;
  }

  .product-card {
    border-color: rgba(255, 255, 255, 0.15);
  }
}

/* High-impact luxury hierarchy */
.hero::after {
  position: absolute;
  z-index: 0;
  bottom: -22px;
  left: -28px;
  content: "HAMDY SHAMS";
  color: rgba(255, 255, 255, 0.035);
  font-family: Arial, sans-serif;
  font-size: clamp(92px, 13vw, 205px);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.76;
  pointer-events: none;
  white-space: nowrap;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  position: relative;
  margin-block: 22px 24px;
  color: #fff;
  font-size: clamp(68px, 7.2vw, 106px);
  font-weight: 950;
  letter-spacing: -0.072em;
  line-height: 0.9;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.38);
}

.hero h1 em {
  display: inline-block;
  color: #ffd66e;
  filter: drop-shadow(0 9px 24px rgba(211, 166, 79, 0.18));
}

.hero h1::after {
  position: absolute;
  right: 2px;
  bottom: -16px;
  width: 112px;
  height: 5px;
  border-radius: 99px;
  content: "";
  background: linear-gradient(90deg, #a51f36 0 62%, #f2c65d 62%);
  box-shadow: 0 0 25px rgba(205, 55, 79, 0.42);
}

.hero__copy > p {
  max-width: 625px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 650;
}

.hero__clarity-line {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
}

.hero__clarity-line b {
  font-weight: 900;
}

.hero__clarity-line span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(241, 207, 131, 0.1);
}

.hero__actions {
  margin-top: 29px;
}

.hero__actions a {
  min-height: 58px;
  padding-inline: 26px;
  border-radius: 17px;
  font-size: 12px;
  letter-spacing: -0.01em;
}

.primary-action {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: linear-gradient(135deg, #ffe28f, #d4a33a);
  box-shadow: 0 16px 40px rgba(211, 166, 79, 0.28);
}

.secondary-action {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(12, 13, 15, 0.42);
}

.hero__price-card {
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 30px;
  box-shadow: 0 38px 95px rgba(0, 0, 0, 0.52), 0 0 0 7px rgba(255, 255, 255, 0.045);
  transform: rotate(-0.8deg);
}

.hero__price-brand {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(34, 35, 38, 0.1);
  background: rgba(255, 255, 255, 0.36);
}

.hero__price-brand .brand__logo {
  width: 49px;
  height: 49px;
  border-radius: 13px;
}

.hero__price-brand .brand__copy strong {
  font-size: 15px;
}

.hero__price-brand > span {
  padding: 7px 9px;
  border-radius: 99px;
  color: var(--burgundy);
  background: rgba(114, 25, 39, 0.08);
  font-size: 8px;
  font-weight: 900;
}

.hero__price-card-head {
  padding-top: 17px;
}

.hero__price-card-head > div span {
  font-size: 10px;
}

.hero__price-card-head > div b {
  font-size: 16px;
}

.hero__price-list > div {
  min-height: 48px;
  font-size: 12px;
}

.hero__price-list b {
  font-size: 18px;
}

.hero__price-card > a {
  min-height: 55px;
  padding-inline: 17px;
  font-size: 11px;
}

.quick-strip {
  overflow: visible;
  border-top: 4px solid #9c2034;
}

.quick-strip::before {
  position: absolute;
  top: -4px;
  right: 0;
  width: 32%;
  height: 4px;
  content: "";
  background: var(--gold-light);
}

.quick-strip > div {
  position: relative;
  padding-inline: 30px;
}

.quick-strip > div > span {
  color: rgba(241, 207, 131, 0.92);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.quick-strip b {
  color: #fff;
  font-size: 15px;
}

.quick-strip small {
  font-size: 10px;
}

.clarity-statement {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(35px, 6vw, 88px);
  margin-top: 104px;
  overflow: hidden;
  padding: 58px;
  border: 1px solid rgba(241, 207, 131, 0.2);
  border-radius: 36px;
  color: white;
  background:
    linear-gradient(128deg, transparent 0 36%, rgba(255, 255, 255, 0.055) 36.2%, transparent 36.8%),
    radial-gradient(circle at 5% 10%, rgba(186, 41, 65, 0.33), transparent 26%),
    linear-gradient(120deg, #111215, #25272b 57%, #151619);
  box-shadow: 0 34px 85px rgba(18, 19, 22, 0.25);
}

.clarity-statement::after {
  position: absolute;
  top: -80px;
  left: -55px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(241, 207, 131, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 44px rgba(241, 207, 131, 0.035), 0 0 0 88px rgba(241, 207, 131, 0.018);
  pointer-events: none;
}

.clarity-statement__lead,
.clarity-statement__points {
  position: relative;
  z-index: 2;
}

.clarity-statement__lead > span {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(241, 207, 131, 0.22);
  border-radius: 99px;
  color: var(--gold-light);
  background: rgba(241, 207, 131, 0.06);
  font-size: 9px;
  font-weight: 950;
}

.clarity-statement h2 {
  margin: 17px 0 18px;
  font-size: clamp(45px, 5.4vw, 72px);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.clarity-statement h2 em {
  color: var(--gold-light);
  font-style: normal;
}

.clarity-statement__lead > p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 12px;
  line-height: 1.9;
}

.clarity-statement__lead > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 24px;
  margin-top: 23px;
  padding: 11px 17px;
  border-radius: 13px;
  color: #23170b;
  background: linear-gradient(135deg, #ffe69c, #d3a64f);
  box-shadow: 0 14px 32px rgba(211, 166, 79, 0.2);
  font-size: 10px;
  font-weight: 950;
}

.clarity-statement__lead > a b {
  font-size: 16px;
}

.clarity-statement__points {
  display: grid;
  gap: 10px;
}

.clarity-statement__points article {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 17px;
  min-height: 105px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.clarity-statement__points article:hover {
  border-color: rgba(241, 207, 131, 0.29);
  background: rgba(255, 255, 255, 0.095);
  transform: translateX(-5px);
}

.clarity-statement__points article > b {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(241, 207, 131, 0.2);
  border-radius: 15px;
  color: var(--gold-light);
  background: rgba(241, 207, 131, 0.07);
  font-size: 21px;
  letter-spacing: -0.06em;
}

.clarity-statement__points h3 {
  margin: 0;
  font-size: 15px;
}

.clarity-statement__points p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 9px;
  line-height: 1.65;
}

.offers-section {
  padding-top: 122px;
}

.offers-section__head h2 {
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 950;
}

.offer-banner {
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 35px 85px rgba(19, 20, 23, 0.24), 0 0 0 7px rgba(24, 25, 28, 0.04);
}

.offer-banner h2 {
  max-width: 620px;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 950;
}

.offer-banner a {
  min-height: 47px;
  padding: 13px 20px;
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.18);
}

.products-section {
  padding: 70px 42px 72px;
  border-color: rgba(241, 207, 131, 0.17);
  box-shadow: 0 38px 105px rgba(11, 12, 14, 0.32), inset 0 1px rgba(255, 255, 255, 0.06);
}

.products-section::before {
  position: absolute;
  top: 0;
  right: 42px;
  width: 120px;
  height: 6px;
  border-radius: 0 0 99px 99px;
  content: "";
  background: linear-gradient(90deg, #a72138, var(--gold-light));
  box-shadow: 0 0 32px rgba(167, 33, 56, 0.4);
}

.products-section .section-heading h2 {
  font-size: clamp(43px, 5.4vw, 68px);
  font-weight: 950;
}

.products-section .section-heading p {
  max-width: 610px;
  font-size: 13px;
}

.menu-toolbar {
  padding: 13px;
  border: 1px solid rgba(241, 207, 131, 0.16);
  box-shadow: 0 19px 48px rgba(0, 0, 0, 0.34);
}

.product-card {
  border-width: 2px;
  border-radius: 30px;
}

.product-card__visual {
  height: 235px;
}

.product-card__body {
  padding: 23px;
}

.product-card__heading {
  align-items: center;
}

.product-card__heading > div > small {
  display: inline-flex;
  margin-bottom: 3px;
  padding: 5px 8px;
  border-radius: 99px;
  color: var(--burgundy);
  background: rgba(114, 25, 39, 0.075);
  font-size: 8px;
}

.product-card h3 {
  margin-top: 7px;
  font-size: 24px;
  font-weight: 950;
}

.product-price {
  display: grid;
  min-width: 93px !important;
  grid-template-columns: auto auto;
  align-items: end;
  column-gap: 4px;
  padding: 10px 11px;
  border-radius: 15px;
  color: white !important;
  background: linear-gradient(135deg, #9a2438, #4c0b15);
  box-shadow: 0 11px 24px rgba(87, 12, 24, 0.2);
}

.product-price > small {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 7px !important;
  font-weight: 800;
}

.product-price > span {
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.product-price > em {
  padding-bottom: 2px;
  color: var(--gold-light);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.range-note {
  min-height: 43px;
  margin-top: 17px;
  padding-inline: 13px;
  font-size: 10px;
}

.mode-switch {
  margin-top: 17px;
  border-radius: 14px;
}

.mode-switch button {
  font-size: 11px;
}

.calculator-field > span:first-child {
  margin-bottom: 8px;
  color: #3d3e41;
  font-size: 10px;
}

.calculator-field__input {
  height: 50px;
  border-width: 2px;
}

.calculator-field__input input {
  font-size: 16px;
}

.calculation-box {
  gap: 9px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 15px;
}

.calculation-box > div {
  font-size: 10px;
}

.calculation-box .calculation-total {
  margin: 5px -5px -5px;
  padding: 13px 7px 7px;
  border-top: 1px solid rgba(114, 25, 39, 0.15);
  font-size: 13px;
}

.calculation-box .calculation-total b {
  padding: 6px 8px;
  border-radius: 9px;
  color: white;
  background: var(--burgundy);
  font-size: 13px;
}

.add-button {
  display: flex;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 19px;
  font-size: 13px;
}

.add-button i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 16px;
  font-style: normal;
}

.floating-whatsapp {
  min-width: 215px;
  min-height: 65px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 22px 60px rgba(8, 77, 46, 0.42), 0 0 0 6px rgba(25, 112, 74, 0.08);
}

.floating-whatsapp.has-items {
  box-shadow: 0 22px 60px rgba(96, 17, 30, 0.45), 0 0 0 6px rgba(143, 33, 51, 0.09);
}

.floating-whatsapp__copy b {
  font-size: 12px;
}

@media (max-width: 820px) {
  .hero::after {
    bottom: 8px;
    left: -10px;
    font-size: 82px;
    opacity: 0.65;
  }

  .hero h1 {
    font-size: clamp(54px, 13.5vw, 76px);
  }

  .hero__copy > p {
    font-size: 14px;
  }

  .hero__price-card {
    transform: none;
  }

  .quick-strip {
    border-top: 0;
  }

  .quick-strip::before {
    display: none;
  }

  .clarity-statement {
    width: calc(100% - 26px);
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 72px;
    padding: 35px 26px;
    border-radius: 27px;
  }

  .clarity-statement h2 {
    font-size: 50px;
  }

  .products-section {
    padding: 48px 14px 52px;
  }

  .products-section::before {
    right: 20px;
  }
}

@media (max-width: 540px) {
  .hero h1 {
    font-size: clamp(49px, 14.5vw, 62px);
    line-height: 0.93;
  }

  .hero h1::after {
    bottom: -12px;
    width: 84px;
    height: 4px;
  }

  .hero__clarity-line {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 8px;
  }

  .hero__price-brand {
    min-height: 66px;
    padding: 10px 14px;
  }

  .hero__price-brand > span {
    font-size: 7px;
  }

  .clarity-statement {
    width: calc(100% - 18px);
    padding: 30px 19px;
  }

  .clarity-statement h2 {
    font-size: 44px;
  }

  .clarity-statement__points article {
    grid-template-columns: 49px 1fr;
    min-height: 94px;
    padding: 13px;
  }

  .clarity-statement__points article > b {
    width: 47px;
    height: 47px;
    font-size: 18px;
  }

  .clarity-statement__points h3 {
    font-size: 12px;
  }

  .clarity-statement__points p {
    font-size: 8px;
  }

  .offers-section__head h2 {
    font-size: 39px;
  }

  .products-section {
    padding: 43px 9px 48px;
  }

  .products-section .section-heading h2 {
    font-size: 42px;
  }

  .product-card__visual {
    height: 220px;
  }

  .product-card__body {
    padding: 17px;
  }

  .product-card h3 {
    font-size: 21px;
  }

  .product-price {
    min-width: 84px !important;
  }

  .product-price > span {
    font-size: 21px;
  }
}


/* Smart ordering and mobile conversion layer */
.hero__status b {
  font: inherit;
}

.hero__status.is-closed {
  border-color: rgba(255, 199, 116, 0.24);
  color: #ffe1a9;
  background: rgba(91, 55, 13, 0.24);
}

.hero__status.is-closed > span {
  background: #f2ad4f;
  box-shadow: 0 0 0 5px rgba(242, 173, 79, 0.12);
  animation: none;
}

.contact-hours > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #71dfa8;
  font-size: 9px;
  font-weight: 900;
}

.contact-hours > span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(113, 223, 168, 0.1);
}

.contact-hours > span.is-closed {
  color: #ffd18a;
}

.results-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 4px 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.results-summary > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.results-summary b {
  display: grid;
  min-width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(241, 207, 131, 0.25);
  border-radius: 9px;
  color: var(--gold-light);
  background: rgba(241, 207, 131, 0.07);
  font-size: 12px;
}

.results-summary small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.cart-steps {
  display: grid;
  min-height: 54px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 8px 18px;
  border-bottom: 1px solid var(--line);
  color: #85827d;
  background: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 900;
  text-align: center;
}

.cart-steps span {
  padding: 7px 5px;
  border-left: 1px solid var(--line);
}

.cart-steps span:last-child {
  border-left: 0;
}

.cart-steps .active {
  color: var(--burgundy);
}

.cart-steps .done {
  color: #178457;
}

.cart-drawer__content {
  height: calc(100dvh - 145px);
}

.pickup-hours-note {
  margin: -5px 0 3px;
  padding: 9px 11px;
  border: 1px solid rgba(114, 25, 39, 0.1);
  border-radius: 10px;
  color: #6c5a42;
  background: #fff8e7;
  font-size: 9px;
  font-weight: 800;
}

.mobile-action-dock {
  display: none;
}

@media (max-width: 820px) {
  .store-page {
    padding-bottom: 82px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-action-dock {
    position: fixed;
    z-index: 80;
    right: 10px;
    bottom: max(9px, env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    min-height: 66px;
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    overflow: hidden;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 21px;
    background: rgba(18, 19, 22, 0.94);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
  }

  .mobile-action-dock :is(a, button) {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 0;
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.74);
    background: transparent;
  }

  .mobile-action-dock small {
    font-size: 7px;
  }

  .mobile-action-dock b {
    color: #fff;
    font-size: 11px;
  }

  .mobile-action-dock__whatsapp {
    color: #fff !important;
    background: linear-gradient(135deg, #1b9d66, #0d6340) !important;
    box-shadow: 0 10px 28px rgba(12, 104, 65, 0.32);
  }

  .mobile-action-dock button i {
    position: absolute;
    top: 6px;
    left: 9px;
    display: grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 99px;
    color: #211408;
    background: var(--gold-light);
    font-size: 8px;
    font-style: normal;
    font-weight: 950;
  }
}

@media (max-width: 540px) {
  .results-summary {
    align-items: start;
    flex-direction: column;
    gap: 7px;
    margin-inline: 8px;
  }

  .cart-steps {
    padding-inline: 9px;
    font-size: 8px;
  }
}


/* Cinematic storefront motion */
.hero {
  isolation: isolate;
  box-shadow: inset 0 -90px 120px rgba(0, 0, 0, 0.28);
}

.hero__overlay {
  overflow: hidden;
}

.hero__overlay::after {
  position: absolute;
  inset: -45%;
  content: "";
  background: linear-gradient(112deg, transparent 41%, rgba(255, 220, 126, 0.12) 49%, transparent 57%);
  mix-blend-mode: screen;
  transform: translateX(-42%);
  animation: heroLightSweep 8s ease-in-out infinite;
}

.real-chicken-world {
  position: fixed;
  z-index: 60;
  inset: 0;
  contain: layout paint;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.real-chicken {
  --chicken-size: 142px;
  position: absolute;
  left: -330px;
  width: var(--chicken-size);
  height: calc(var(--chicken-size) + 54px);
  will-change: transform;
  animation: realChickenAcross 18s linear infinite;
}

.real-chicken--ground {
  bottom: 72px;
  animation-delay: -4s;
}

.real-chicken--middle {
  --chicken-size: 112px;
  top: 44%;
  right: -300px;
  left: auto;
  opacity: 0.88;
  animation: realChickenAcrossReverse 23s -11s linear infinite;
}

.real-chicken--high {
  --chicken-size: 92px;
  top: 16%;
  opacity: 0.68;
  animation-duration: 29s;
  animation-delay: -19s;
}

.real-chicken__body {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 0;
  display: block;
  width: var(--chicken-size);
  transform-origin: 50% 88%;
  animation: realChickenStep 0.34s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.real-chicken__body img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 11px rgba(0, 0, 0, 0.34));
}

.real-chicken--middle .real-chicken__body img {
  transform: scaleX(-1);
}

.real-chicken__shadow {
  position: absolute;
  z-index: 1;
  bottom: 4px;
  left: 9%;
  width: 83%;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.42), transparent 70%);
  filter: blur(2px);
  animation: realChickenShadow 0.34s ease-in-out infinite alternate;
}

.real-chicken__bubble {
  position: absolute;
  z-index: 3;
  bottom: calc(var(--chicken-size) - 2px);
  left: -74px;
  padding: 9px 13px;
  border: 2px solid rgba(241, 207, 131, 0.82);
  border-radius: 15px 15px 4px 15px;
  color: #171719;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.26);
  font-size: 10px;
  font-weight: 950;
  white-space: nowrap;
}

.real-chicken__bubble::after {
  position: absolute;
  right: -8px;
  bottom: -2px;
  width: 15px;
  height: 15px;
  border-right: 2px solid rgba(241, 207, 131, 0.82);
  border-bottom: 2px solid rgba(241, 207, 131, 0.82);
  content: "";
  background: white;
  transform: rotate(-18deg) skew(-10deg);
}

.power-ticker {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
  border-block: 1px solid rgba(241, 207, 131, 0.45);
  color: white;
  background:
    linear-gradient(122deg, transparent 0 42%, rgba(255, 255, 255, 0.07) 42.2%, transparent 43%),
    linear-gradient(90deg, #4b0d17, #9e2036 48%, #4b0d17);
  box-shadow: 0 18px 45px rgba(91, 16, 28, 0.22);
  transform: rotate(-0.45deg) scale(1.01);
}

.power-ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  padding-block: 13px;
  will-change: transform;
  animation: powerTicker 31s linear infinite;
}

.power-ticker:hover .power-ticker__track {
  animation-play-state: paused;
}

.power-ticker__track span {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-inline: 22px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.power-ticker__track span::after {
  color: var(--gold-light);
  content: "✦";
  filter: drop-shadow(0 0 9px rgba(241, 207, 131, 0.55));
}

.primary-action {
  position: relative;
  overflow: hidden;
}

.primary-action::before {
  position: absolute;
  inset: -65% auto -65% -45%;
  width: 30%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: skewX(-20deg);
  animation: buttonShine 3.6s ease-in-out infinite;
}

.hero__price-card {
  animation:
    riseIn 0.8s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both,
    premiumFloat 4.8s 1.2s ease-in-out infinite;
}

.product-card::before {
  position: absolute;
  z-index: 8;
  top: 0;
  right: 15%;
  left: 15%;
  height: 3px;
  border-radius: 0 0 99px 99px;
  content: "";
  background: linear-gradient(90deg, transparent, #d6a94f, #9d2137, transparent);
  box-shadow: 0 0 22px rgba(211, 166, 79, 0.55);
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.product-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

@keyframes realChickenAcross {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(100vw + 520px), 0, 0); }
}

@keyframes realChickenAcrossReverse {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-100vw - 500px), 0, 0); }
}

@keyframes realChickenStep {
  from { transform: translateY(2px) rotate(-1.4deg); }
  to { transform: translateY(-6px) rotate(1.2deg); }
}

@keyframes realChickenShadow {
  from { opacity: 0.38; transform: scaleX(0.82); }
  to { opacity: 0.62; transform: scaleX(1); }
}

@keyframes powerTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes heroLightSweep {
  0%, 22% { transform: translateX(-42%) rotate(0.01deg); opacity: 0; }
  42% { opacity: 1; }
  65%, 100% { transform: translateX(42%) rotate(0.01deg); opacity: 0; }
}

@keyframes buttonShine {
  0%, 62% { left: -45%; opacity: 0; }
  72% { opacity: 1; }
  88%, 100% { left: 125%; opacity: 0; }
}

@keyframes premiumFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@media (max-width: 820px) {
  .real-chicken--ground {
    --chicken-size: 100px;
    bottom: 84px;
    animation-duration: 13s;
  }

  .real-chicken--middle {
    --chicken-size: 82px;
    top: 38%;
    animation-duration: 18s;
  }

  .real-chicken--high {
    display: none;
  }

  .real-chicken__bubble {
    left: -58px;
    padding: 7px 10px;
    font-size: 8px;
  }

  .power-ticker {
    margin-top: 20px;
    transform: rotate(-0.65deg) scale(1.02);
  }

  .power-ticker__track {
    animation-duration: 24s;
  }

  .power-ticker__track span {
    padding-inline: 16px;
    font-size: 9px;
  }
}

@media (max-width: 540px) {
  .real-chicken--middle {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .real-chicken-world {
    display: none !important;
  }

  .power-ticker__track,
  .hero__price-card,
  .hero__overlay::after,
  .primary-action::before {
    animation: none !important;
  }
}

@media (max-width: 820px) {
  .offer-banner__image {
    object-position: 35% center;
  }
}
