:root {
  --wine: #7a0911;
  --wine-2: #980f1a;
  --wine-3: #4b050b;
  --gold: #f5b72e;
  --gold-2: #ffcf5b;
  --cream: #fff8ea;
  --paper: #fffdf8;
  --ink: #211714;
  --muted: #726965;
  --line: #eadfd5;
  --green: #1e7f4f;
  --shadow: 0 22px 55px rgba(73, 25, 12, 0.12);
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
.shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.announcement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--wine-3);
  color: #fff;
  font-size: 12px;
}
.announcement__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.announcement strong {
  color: var(--gold-2);
}
.site-header {
  margin-top: 43px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(122, 9, 17, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--wine-2), var(--wine-3));
  color: var(--gold-2);
  font:
    800 25px/1 "Playfair Display",
    serif;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 8px 20px rgba(122, 9, 17, 0.2);
}
.brand__copy {
  display: grid;
  line-height: 1.15;
}
.brand__copy strong {
  font:
    800 21px/1.1 "Playfair Display",
    serif;
  color: var(--wine);
}
.brand__copy small {
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 13px;
  padding: 0 13px;
  height: 44px;
}
.search svg,
.icon-btn svg,
.cart-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search input {
  border: 0;
  outline: 0;
  background: transparent;
  min-width: 230px;
  color: var(--ink);
}
.icon-btn,
.cart-btn {
  border: 0;
  cursor: pointer;
}
.icon-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid var(--line);
  place-items: center;
  color: var(--wine);
}
.cart-btn {
  height: 44px;
  border-radius: 13px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wine);
  color: #fff;
  font-weight: 700;
}
.cart-btn b {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #411008;
  font-size: 11px;
}
.mobile-search {
  padding-bottom: 12px;
}
.mobile-search .search input {
  width: 100%;
  min-width: 0;
}
.hero {
  margin-top: 28px;
  min-height: 570px;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  background:
    radial-gradient(
      circle at 13% 15%,
      rgba(255, 207, 91, 0.14),
      transparent 22%
    ),
    linear-gradient(135deg, #5a080e 0%, #890d18 56%, #3c0409 100%);
  box-shadow: var(--shadow);
  position: relative;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16) 1px,
    transparent 1px
  );
  background-size: 29px 29px;
  opacity: 0.15;
  pointer-events: none;
}
.hero__content,
.hero__poster {
  position: relative;
  z-index: 1;
}
.hero__content {
  padding: 78px 64px;
  color: #fff;
}
.eyebrow {
  display: inline-flex;
  font-size: 11px;
  letter-spacing: 0.17em;
  font-weight: 800;
  color: var(--gold-2);
}
.eyebrow--dark {
  color: var(--wine);
}
.hero h1 {
  margin: 12px 0 18px;
  font:
    800 clamp(46px, 6vw, 76px)/0.98 "Playfair Display",
    serif;
  letter-spacing: -0.035em;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-2);
}
.hero__content > p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  min-height: 46px;
  border-radius: 13px;
  border: 0;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--gold {
  background: var(--gold);
  color: #3e1109;
}
.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn--primary {
  background: var(--wine);
  color: #fff;
}
.btn--secondary {
  background: #f5ede6;
  color: var(--wine);
  border: 1px solid #e8d5c6;
}
.btn--wide {
  width: 100%;
}
.hero__facts {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero__facts span {
  display: grid;
}
.hero__facts strong {
  font-size: 18px;
  color: #fff;
}
.hero__facts small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__poster {
  border: 1px solid rgba(255, 255, 255, 0.22);

  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 22%,
      rgba(255, 207, 91, 0.26),
      transparent 26%
    ),
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.04)
    );
  box-shadow: inset 0 0 60px rgba(255, 205, 75, 0.08);
  overflow: hidden;
  position: relative;
}
.poster__chip {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #4a1509;
  background: var(--gold-2);
  padding: 7px 11px;
  border-radius: 999px;
}
.poster__discount {
  display: flex;
  align-items: flex-start;
  margin-top: 14px;
  color: #fff;
}
.poster__discount b {
  font:
    800 125px/0.82 "Playfair Display",
    serif;
  letter-spacing: -0.07em;
}
.poster__discount > span {
  font-size: 34px;
  font-weight: 800;
  line-height: 0.85;
}
.poster__discount small {
  display: block;
  font-size: 15px;
  margin-top: 7px;
  color: var(--gold-2);
}
.hero__poster > p {
  margin: 10px 0 16px;
  font:
    700 22px/1.2 "Playfair Display",
    serif;
  color: #fff;
}
.hero__poster > small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}
.poster__cracker {
  height: 85px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 4px 0 20px;
}
.poster__cracker i {
  display: block;
  width: 34px;
  border-radius: 9px 9px 5px 5px;
  background: repeating-linear-gradient(
    45deg,
    var(--gold),
    var(--gold) 6px,
    #cf301c 6px,
    #cf301c 12px
  );
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  position: relative;
}
.poster__cracker i:before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  width: 1px;
  height: 24px;
  background: var(--gold-2);
  transform: rotate(15deg);
}
.poster__cracker i:nth-child(1) {
  height: 58px;
  transform: rotate(-8deg);
}
.poster__cracker i:nth-child(2) {
  height: 76px;
}
.poster__cracker i:nth-child(3) {
  height: 64px;
  transform: rotate(8deg);
}
.spark {
  position: absolute;
  width: 110px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    transparent 0 10deg,
    rgba(255, 207, 91, 0.8) 11deg 12deg,
    transparent 13deg 20deg
  );
  mask: radial-gradient(
    circle,
    transparent 0 32%,
    #000 33% 48%,
    transparent 49%
  );
  -webkit-mask: radial-gradient(
    circle,
    transparent 0 32%,
    #000 33% 48%,
    transparent 49%
  );
}
.spark--1 {
  top: 24px;
  right: 22px;
}
.spark--2 {
  bottom: 24px;
  left: 22px;
  scale: 0.7;
}
.spark--3 {
  top: 105px;
  left: 36px;
  scale: 0.4;
}
.about-banner {
  margin-top: 26px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 0.6fr 1.6fr 1fr;
  gap: 30px;
  align-items: center;
  background: #fff;
}
.about-banner__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--wine);
}
.about-banner h2 {
  font:
    800 26px/1.12 "Playfair Display",
    serif;
  margin: 0 0 7px;
}
.about-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.about-banner__badges {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #584d47;
}
.minimum-strip {
  margin-top: 26px;
  background: #fff2cf;
  border-block: 1px solid #efd48a;
}
.minimum-strip__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.minimum-strip__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--wine);
  color: var(--gold-2);
  font-weight: 800;
}
.minimum-strip__inner > div {
  display: grid;
}
.minimum-strip strong {
  color: var(--wine);
  font-size: 16px;
}
.minimum-strip small {
  color: #776344;
}
.minimum-strip a {
  margin-left: auto;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
}
.catalogue {
  padding-block: 72px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.section-head h2,
.checkout h2 {
  font:
    800 clamp(34px, 4vw, 50px)/1 "Playfair Display",
    serif;
  margin: 7px 0 10px;
}
.section-head p,
.checkout__form-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.catalogue__summary {
  min-width: 180px;
  border-radius: 18px;
  background: var(--wine);
  padding: 15px 18px;
  color: #fff;
  display: grid;
}
.catalogue__summary small {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e9b8bc;
}
.catalogue__summary strong {
  font-size: 26px;
  color: var(--gold-2);
}
.catalogue-toolbar {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 12px;
  margin-top: 30px;
  position: sticky;
  top: 92px;
  z-index: 12;
  background: var(--paper);
  padding: 10px 0;
}
.search--catalogue {
  width: 100%;
}
.search--catalogue input {
  min-width: 0;
  width: 100%;
}
.catalogue-toolbar select {
  height: 44px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 13px;
  outline: 0;
  color: var(--ink);
}
.price-list {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 40px rgba(52, 22, 9, 0.06);
}
.category {
  border-bottom: 1px solid var(--line);
}
.category:last-child {
  border-bottom: 0;
}
.category__head {
  padding: 10px 16px;
  background: linear-gradient(90deg, var(--wine), #a7101e);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.category__head strong {
  font-size: 13px;
  letter-spacing: 0.06em;
}
.category__head small {
  color: #f0c3c7;
}
.product-row {
  display: grid;
  grid-template-columns: 78px minmax(220px, 1fr) 110px 105px 138px 120px;
  min-height: 88px;
  align-items: center;
  border-top: 1px solid #f0e9e3;
}
.product-row:first-of-type {
  border-top: 0;
}
.product-row > div {
  padding: 10px 14px;
}
.product-row__image {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f1eb;
  border: 1px solid rgba(122, 9, 17, 0.1);
  padding: 0 !important;
}
.product-row__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-row__image--empty {
  color: #a89486;
  font-size: 24px;
}
.product-image-fallback {
  color: #a89486;
  font-size: 24px;
}
.product-row__info strong {
  display: block;
  font-size: 13px;
}
.product-row__info small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: #8b817c;
}
.product-row__mrp {
  text-decoration: line-through;
  color: #968b86;
  font-size: 12px;
}
.product-row__price strong {
  color: var(--wine);
  font-size: 14px;
}
.discount-pill {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff1d0;
  color: #8a5900;
  font-size: 10px;
  font-weight: 800;
}
.qty {
  display: flex;
  align-items: center;
  border: 1px solid #dfd7d1;
  border-radius: 10px;
  overflow: hidden;
  width: max-content;
}
.qty button {
  width: 32px;
  height: 32px;
  border: 0;
  background: #f8f4f0;
  cursor: pointer;
  color: var(--wine);
  font-weight: 900;
}
.qty input {
  width: 42px;
  height: 32px;
  border: 0;
  text-align: center;
  outline: 0;
  font-weight: 800;
  color: var(--ink);
}
.row-total {
  font-weight: 800;
  color: #413735;
  font-size: 13px;
}
.empty-state {
  padding: 30px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--muted);
}
.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
  padding-bottom: 80px;
}
.checkout__form-card,
.order-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(64, 27, 12, 0.06);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}
.form-grid label {
  display: grid;
  gap: 6px;
}
.form-grid label > span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6c5f59;
}
.form-grid__full {
  grid-column: 1/-1;
}
.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  outline: 0;
  background: #fffdfb;
  color: var(--ink);
  resize: vertical;
}
.form-grid input:focus,
.form-grid textarea:focus {
  border-color: #bd6c70;
  box-shadow: 0 0 0 3px rgba(122, 9, 17, 0.07);
}
.order-card {
  align-self: start;
  position: sticky;
  top: 158px;
}
.order-card__head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.order-card__head small {
  font-size: 10px;
  color: var(--wine);
  font-weight: 800;
  letter-spacing: 0.14em;
}
.order-card h3 {
  margin: 2px 0 0;
  font:
    800 24px/1.1 "Playfair Display",
    serif;
}
.order-card__head > span {
  font-size: 11px;
  background: #f5ede6;
  padding: 6px 9px;
  border-radius: 999px;
  color: #6b5a52;
}
.order-card__items {
  max-height: 275px;
  overflow: auto;
}
.summary-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #f2ece7;
}
.summary-item strong {
  font-size: 12px;
}
.summary-item small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.summary-item > span {
  font-size: 12px;
  font-weight: 800;
}
.summary-empty {
  padding: 24px 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.totals {
  padding-top: 15px;
}
.totals > div:not(.minimum-progress) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin: 8px 0;
}
.totals__grand {
  margin-top: 13px !important;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 15px !important;
}
.totals__grand strong {
  font-size: 25px;
  color: var(--wine);
}
.minimum-progress {
  margin: 17px 0;
}
.minimum-progress div {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 6px;
}
.minimum-progress progress {
  width: 100%;
  height: 7px;
  border: 0;
  border-radius: 99px;
  overflow: hidden;
}
.minimum-progress progress::-webkit-progress-bar {
  background: #eee6df;
}
.minimum-progress progress::-webkit-progress-value {
  background: var(--green);
}
.order-card__note {
  display: block;
  margin-top: 9px;
  text-align: center;
  color: #948983;
  font-size: 9px;
}

.payment-info-box {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fafafa;
}

.payment-info-head {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.payment-info-head span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.65;
}

.payment-info-head strong {
  font-size: 17px;
}

.bank-details {
  display: grid;
  gap: 11px;
}

.bank-details div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.bank-details span {
  font-size: 13px;
  opacity: 0.65;
}

.bank-details strong {
  font-size: 13px;
  text-align: right;
}

.payment-status-note {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  font-size: 13px;
  line-height: 1.5;
}

.payment-status-note a {
  font-weight: 700;
  text-decoration: none;
}

.order-card .btn--wide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 14px;
  text-decoration: none;
}

.footer {
  background: #2d0508;
  color: #efe5df;
  padding: 54px 0 18px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr 1fr;
  gap: 46px;
}
.brand--footer .brand__copy strong {
  color: #fff;
}
.brand--footer .brand__copy small {
  color: #ba9ea0;
}
.footer p {
  max-width: 400px;
  color: #bda9a5;
  font-size: 12px;
}
.footer h4 {
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 13px;
}
.footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__grid a,
.footer__grid span {
  color: #c9b9b5;
  font-size: 12px;
  margin: 4px 0;
}
.footer__bottom {
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #917c78;
  font-size: 10px;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(25, 7, 5, 0.5);
  z-index: 90;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.cart-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: min(450px, 100%);
  height: 100dvh;
  background: #fff;
  transform: translateX(102%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -22px 0 50px rgba(28, 4, 3, 0.16);
}
.cart-drawer.is-open {
  transform: translateX(0);
}
.cart-drawer__head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer__head small {
  font-size: 9px;
  color: var(--wine);
  font-weight: 800;
  letter-spacing: 0.14em;
}
.cart-drawer__head h2 {
  font:
    800 30px/1 "Playfair Display",
    serif;
  margin: 3px 0;
}
.cart-drawer__head .icon-btn {
  display: grid;
  font-size: 28px;
}
.cart-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 0 24px;
}
.drawer-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.drawer-item strong {
  font-size: 12px;
}
.drawer-item small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.drawer-item__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.drawer-item__actions button {
  border: 0;
  background: #f4eee9;
  border-radius: 7px;
  width: 27px;
  height: 27px;
  cursor: pointer;
}
.drawer-item__actions .remove {
  width: auto;
  padding: 0 8px;
  color: var(--wine);
  font-size: 10px;
}
.drawer-item__total {
  font-weight: 800;
  color: var(--wine);
  font-size: 12px;
}
.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  background: #fffaf5;
}
.cart-drawer__footer > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.cart-drawer__footer strong {
  font-size: 25px;
  color: var(--wine);
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 3000;
  width: min(430px, calc(100% - 28px));
  min-height: 58px;
  display: grid;
  grid-template-columns: 36px 1fr 30px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(122, 9, 17, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: #2c2421;
  box-shadow: 0 18px 45px rgba(40, 16, 8, 0.18);
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.toast__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #f7efe9;
  color: var(--wine);
  font-size: 16px;
}
.toast__message {
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}
.toast__close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #8a7b74;
  cursor: pointer;
}
.toast__close:hover {
  background: #f5efeb;
  color: var(--wine);
}
.toast--success {
  border-color: rgba(30, 127, 79, 0.18);
}
.toast--success .toast__icon {
  color: #1e7f4f;
  background: #edf8f1;
}
.toast--error {
  border-color: rgba(198, 40, 40, 0.18);
}
.toast--error .toast__icon {
  color: #c62828;
  background: #fff0f0;
}
.toast--warning {
  border-color: rgba(211, 155, 0, 0.2);
}
.toast--warning .toast__icon {
  color: #9a6b00;
  background: #fff7df;
}
.toast--info .toast__icon {
  color: var(--wine);
  background: #f7efe9;
}

.announcement i,
.search i,
.icon-btn i,
.cart-btn i,
.btn i,
.minimum-strip__icon i,
.about-banner__badges i {
  font-size: 0.95em;
}
.hero-slide--active {
  opacity: 1;
  visibility: visible;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
}
.hero-slide__content {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: min(700px, 70%);
  padding: 72px clamp(28px, 6vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.hero-slide__content h1 {
  margin: 14px 0 16px;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}
.hero-slide__content h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-slide__content p {
  max-width: 580px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}
.hero-banner__dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 30px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}
.hero-dot--active {
  background: var(--gold);
}
.product-row__image {
  cursor: zoom-in;
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(18, 10, 8, 0.94);
  display: grid;
  place-items: center;
  padding: 72px 24px 30px;
}
.image-lightbox[hidden] {
  display: none;
}
.image-lightbox img {
  width: auto;
  height: auto;
  max-width: min(94vw, 1600px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  background: #fff;
}
.image-lightbox__close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--wine);
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}
body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .shell {
    width: min(100% - 32px, 960px);
  }

  .header__inner {
    gap: 14px;
  }

  .search--desktop input {
    min-width: 160px;
  }

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

  .hero__content {
    padding: 54px 42px;
  }

  .hero__poster {
    margin: 0 24px 24px;
    min-height: 360px;
  }

  .about-banner {
    grid-template-columns: 1fr;
  }

  .about-banner__badges {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .order-card {
    position: static;
  }

  .product-row {
    grid-template-columns: 68px minmax(150px, 1fr) 80px 85px 100px 90px;
  }

  .product-row > div {
    padding: 8px;
  }

  .product-row__image {
    width: 54px;
    height: 54px;
  }

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

@media (max-width: 767px) {
  .shell {
    width: calc(100% - 20px);
  }

  .announcement__inner {
    min-height: 34px;
    justify-content: center;
    text-align: center;
  }

  .announcement__inner span {
    display: none;
  }

  .site-header {
    margin-top: 40px;
  }

  .header__inner {
    min-height: 64px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand__copy {
    min-width: 0;
  }

  .brand__copy strong {
    font-size: 17px;
    white-space: nowrap;
  }

  .brand__copy small {
    display: block;
    font-size: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .search--desktop {
    display: none;
  }

  .header__actions {
    flex-shrink: 0;
  }

  .icon-btn {
    display: grid;
  }

  .cart-btn {
    padding: 0 10px;
  }

  .cart-btn span {
    display: none;
  }

  .hero {
    margin-top: 14px;
    border-radius: 20px;
  }

  .hero__content {
    padding: 40px 20px 32px;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 50px);
  }

  .hero__content > p {
    font-size: 13px;
    line-height: 1.6;
  }

  .hero__actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__facts {
    gap: 16px;
    margin-top: 28px;
    padding-top: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero__facts::-webkit-scrollbar {
    display: none;
  }

  .hero__facts span {
    min-width: 90px;
  }

  .hero__poster {
    margin: 0 12px 12px;
    min-height: 300px;
    padding: 20px;
  }

  .poster__discount b {
    font-size: clamp(70px, 20vw, 90px);
  }

  .poster__discount > span {
    font-size: 25px;
  }

  .about-banner {
    padding: 20px;
    border-radius: 18px;
  }

  .about-banner__badges {
    grid-template-columns: 1fr;
  }

  .minimum-strip__inner {
    min-height: 0;
    padding-block: 13px;
  }

  .minimum-strip a {
    display: none;
  }

  .catalogue {
    padding-block: 48px;
  }

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

  .catalogue__summary {
    width: 100%;
  }

  .catalogue-toolbar {
    grid-template-columns: 1fr;
    top: 72px;
    gap: 8px;
  }

  .price-list {
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
  }

  .category {
    width: 100%;
    overflow: hidden;
  }

  .category__head {
    position: relative;
    top: auto;
    width: 100%;
    min-height: 40px;
    padding: 9px 10px;
  }

  .category__head strong {
    min-width: 0;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .category__head small {
    flex-shrink: 0;
    font-size: 9px;
  }

  .product-row {
    width: 100%;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 70px;
    grid-template-rows: auto auto;
    grid-template-areas:
      "image info price"
      "image qty total";
    column-gap: 7px;
    row-gap: 4px;
    align-items: center;
    min-height: 80px;
    padding: 8px 7px;
    overflow: hidden;
  }

  .product-row > div {
    min-width: 0;
    padding: 0;
  }

  .product-row__image {
    grid-area: image;
    width: 46px;
    height: 46px;
    min-width: 46px;
    max-width: 46px;
    padding: 0 !important;
    overflow: hidden;
  }

  .product-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-row__info {
    grid-area: info;
    min-width: 0;
    overflow: hidden;
  }

  .product-row__info strong,
  .product-row__info small {
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-row__info strong {
    font-size: 11px;
    line-height: 1.3;
  }

  .product-row__info small {
    font-size: 8px;
    line-height: 1.3;
  }

  .product-row__mrp,
  .discount-pill {
    display: none;
  }

  .product-row__price {
    grid-area: price;
    min-width: 70px;
    text-align: right;
    white-space: nowrap;
  }

  .product-row__price strong {
    font-size: 11px;
  }

  .product-row__qty {
    grid-area: qty;
    align-self: end;
  }

  .qty {
    width: max-content;
    max-width: 100%;
    height: 29px;
  }

  .qty button {
    width: 27px;
    height: 29px;
    flex: 0 0 27px;
  }

  .qty input {
    width: 32px;
    height: 29px;
    flex: 0 0 32px;
  }

  .product-row__total {
    grid-area: total;
    min-width: 70px;
    align-self: end;
    text-align: right;
    white-space: nowrap;
  }

  .row-total {
    font-size: 10px;
  }

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

  .form-grid__full {
    grid-column: auto;
  }

  .checkout__form-card,
  .order-card {
    padding: 18px 14px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }

  .cart-drawer {
    width: min(430px, 100%);
  }

  .cart-drawer__head,
  .cart-drawer__footer {
    padding: 16px;
  }

  .cart-drawer__body {
    padding-inline: 16px;
  }

  .hero-slide__content {
    width: 100%;
    padding: 28px 18px 50px;
  }

  .hero-slide__content h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1;
  }

  .hero-slide__content p {
    font-size: 12px;
    line-height: 1.5;
  }

  .hero-banner__dots {
    bottom: 12px;
    gap: 6px;
  }

  .hero-dot {
    width: 22px;
    height: 4px;
  }

  .image-lightbox {
    padding: 60px 10px 16px;
  }

  .image-lightbox img {
    max-width: 96vw;
    max-height: 82vh;
  }
}

@media (max-width: 1024px) {
}

@media (max-width: 767px) {
  .hero-slide__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
}

.hero-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: 500px;
  margin: 28px auto 0;
  overflow: hidden;
  background: #3c0409;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}

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

.hero-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-banner__dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-dot {
  display: block;
  width: 30px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  flex: 0 0 auto;
}

.hero-dot--active {
  background: var(--gold);
}

@media (max-width: 1024px) {
  .hero-banner {
    height: 30vh;
    min-height: 420px;
  }

  .hero-slide > img {
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 767px) {
  .hero-banner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 200px;
    min-height: 200px;
    margin-top: 14px;
    overflow: hidden;
    background: #3c0409;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero-slide > img {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: contain;
    object-position: right center;
  }

  .hero-slide__overlay {
    z-index: 2;
  }

  .hero-banner__dots {
    bottom: 12px;
    z-index: 5;
  }

  .hero-dot {
    width: 22px;
    height: 4px;
  }
}
