: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 {
  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 {
  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 {
  margin: 46px 46px 46px 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  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: 52px 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__no {
  color: #8d827d;
  font-size: 12px;
  text-align: center;
}
.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;
}
.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: 25px;
  z-index: 200;
  transform: translate(-50%, 20px);
  padding: 11px 14px;
  border-radius: 12px;
  background: #1f1715;
  color: #fff;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero__poster {
    margin: 0 32px 32px;
    min-height: 380px;
  }
  .about-banner {
    grid-template-columns: 1fr;
  }
  .about-banner__badges {
    grid-template-columns: repeat(3, 1fr);
  }
  .checkout {
    grid-template-columns: 1fr;
  }
  .order-card {
    position: static;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .announcement__inner span {
    display: none;
  }
  .announcement__inner {
    justify-content: center;
  }
  .search--desktop {
    display: none;
  }
  .icon-btn {
    display: grid;
  }
  .brand__copy strong {
    font-size: 18px;
  }
  .brand__mark {
    width: 42px;
    height: 42px;
  }
  .hero {
    margin-top: 15px;
    border-radius: 23px;
  }
  .hero__content {
    padding: 50px 24px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero__facts {
    gap: 18px;
    overflow: auto;
  }
  .hero__facts span {
    min-width: 100px;
  }
  .hero__poster {
    margin: 0 16px 16px;
    padding: 28px;
  }
  .poster__discount b {
    font-size: 96px;
  }
  .about-banner {
    padding: 23px 20px;
  }
  .about-banner__badges {
    grid-template-columns: 1fr;
  }
  .minimum-strip__inner {
    padding-block: 14px;
  }
  .minimum-strip a {
    display: none;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .catalogue__summary {
    width: 100%;
  }
  .catalogue-toolbar {
    grid-template-columns: 1fr;
    top: 82px;
  }
  .price-list {
    border-radius: 15px;
  }
  .category__head {
    position: sticky;
    top: 186px;
    z-index: 3;
  }
  .discount-pill {
    display: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid__full {
    grid-column: auto;
  }
  .checkout__form-card,
  .order-card {
    padding: 22px 18px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
  }
  .cart-btn span {
    display: none;
  }
}
@media (max-width: 430px) {
  .shell {
    width: min(100% - 20px, 1180px);
  }
  .header__inner {
    min-height: 70px;
  }
  .brand__copy small {
    font-size: 8px;
  }
  .hero__content {
    padding: 42px 20px;
  }
  .hero h1 {
    font-size: 41px;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__poster {
    min-height: 330px;
  }
  .poster__discount b {
    font-size: 80px;
  }
  .catalogue {
    padding-block: 54px;
  }
  .category__head {
    top: 177px;
  }
  .qty button {
    width: 29px;
  }
  .qty input {
    width: 34px;
  }
}
@media (max-width: 980px) {
  .product-row {
    grid-template-columns: 44px 68px minmax(170px, 1fr) 90px 95px 130px 105px;
  }
  .product-row > div {
    padding: 9px;
  }
  .product-row__image {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 760px) {
  .product-row {
    grid-template-columns: 42px 58px 1fr 92px;
    grid-template-areas:
      "no image info price"
      "no image qty total";
    padding: 5px 0;
    min-height: 82px;
  }
  .product-row__no {
    grid-area: no;
  }
  .product-row__image {
    grid-area: image;
    width: 50px;
    height: 50px;
  }
  .product-row__info {
    grid-area: info;
  }
  .product-row__mrp {
    display: none;
  }
  .product-row__price {
    grid-area: price;
    text-align: right;
  }
  .product-row__qty {
    grid-area: qty;
  }
  .product-row__total {
    grid-area: total;
    text-align: right;
  }
  .discount-pill {
    display: none;
  }
}
@media (max-width: 430px) {
  .product-row {
    grid-template-columns: 32px 50px 1fr 80px;
    grid-template-areas:
      "no image info price"
      "no image qty total";
  }
  .product-row__image {
    width: 44px;
    height: 44px;
  }
  .product-row__info strong {
    font-size: 12px;
  }
  .qty button {
    width: 29px;
  }
  .qty input {
    width: 34px;
  }
}