:root {
  --charcoal: #11100e;
  --deep: #210e09;
  --red: #e12d14;
  --red-dark: #82170c;
  --orange: #ff6b00;
  --flame: #ffc119;
  --gold: #c4892f;
  --cream: #fff4e2;
  --sand: #e8d3b5;
  --smoke: #f7f1e8;
  --green: #127a56;
  --ink: #22160e;
  --muted: #786b5e;
  --line: rgba(34, 22, 14, 0.12);
  --shadow: 0 26px 70px rgba(33, 14, 9, 0.14);
  --radius: 28px;
  --radius-lg: 42px;
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Cairo", "Tajawal", system-ui, sans-serif;
  background: var(--smoke);
  color: var(--ink);
  direction: rtl;
  line-height: 1.75;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}
.topbar {
  background: var(--charcoal);
  color: #f8ead0;
  font-size: 0.86rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 244, 226, 0.85);
  backdrop-filter: saturate(1.2) blur(18px);
  border-bottom: 1px solid rgba(196, 137, 47, 0.2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16));
}
.brand span {
  font-size: 1.3rem;
  letter-spacing: 0.2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #352218;
  font-weight: 700;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--charcoal);
  color: var(--cream);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn,
.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(34, 22, 14, 0.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff8ef;
  color: var(--charcoal);
  cursor: pointer;
}
.menu-toggle {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: 0 18px 40px rgba(17, 16, 14, 0.18);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(17, 16, 14, 0.25);
}
.btn.gold {
  background: linear-gradient(135deg, var(--flame), var(--orange));
  color: #2b140a;
}
.btn.outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(34, 22, 14, 0.18);
  box-shadow: none;
}
.btn.small {
  padding: 9px 15px;
  font-size: 0.9rem;
}
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(255, 193, 25, 0.15),
      transparent 35%
    ),
    linear-gradient(135deg, var(--charcoal), var(--deep));
  color: var(--cream);
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
}
.hero .container {
  min-height: 710px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 40px;
  padding: 70px 0 84px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 193, 25, 0.36);
  background: rgba(255, 244, 226, 0.08);
  border-radius: 999px;
  color: #ffd68c;
  font-weight: 800;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "\f06d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: clamp(2.4rem, 3vw, 5.6rem);
  line-height: 1.45;
  font-weight: 1000;
  letter-spacing: -1px;
}
.accent {
  color: var(--flame);
}
.hero p {
  font-size: 1.18rem;
  color: #f5dec2;
  max-width: 620px;
  margin: 22px 0 30px;
}
.hero-cta,
.split-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-visual {
  position: relative;
}
.hero-visual .hero-img {
  border-radius: 48px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 193, 25, 0.25);
}
.floating-card {
  position: absolute;
  bottom: 28px;
  right: -16px;
  max-width: 330px;
  background: rgba(255, 244, 226, 0.94);
  color: var(--ink);
  border: 1px solid rgba(196, 137, 47, 0.35);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 18px;
}
.floating-card strong {
  display: block;
  font-size: 1.05rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.stat {
  border: 1px solid rgba(255, 244, 226, 0.14);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 244, 226, 0.07);
}
.stat b {
  display: block;
  font-size: 1.45rem;
  color: var(--flame);
}
.section {
  padding: 84px 0;
}
.section.soft {
  background: #fffaf3;
}
.section.dark {
  background: linear-gradient(135deg, var(--charcoal), var(--deep));
  color: var(--cream);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}
.section-kicker {
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 8px;
}
.section h2 {
  font-size: clamp(1.5rem, 1.7vw, 3.25rem);
  line-height: 1.18;
  font-weight: 1000;
}
.section-head p,
.muted {
  color: var(--muted);
}
.dark .muted,
.dark .section-head p {
  color: #e9cfab;
}
.grid {
  display: grid;
  gap: 22px;
}
.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-body {
  padding: 22px;
}
.feature {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature .num {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  color: var(--flame);
  font-weight: 1000;
  margin-bottom: 18px;
}
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  transition: 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(33, 14, 9, 0.14);
}
.product-img {
  aspect-ratio: 1/1;
  background: #fff8ef;
  object-fit: cover;
  width: 100%;
}
.tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 11px;
}
.product-info {
  padding: 18px;
}
.product-info h3 {
  font-size: 1.06rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.price {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
}
.price strong {
  font-size: 1.18rem;
  color: var(--red);
}
.price del {
  color: #9b9188;
}
.spilt-layout,
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.media-frame {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 137, 47, 0.28);
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 193, 25, 0.35);
  border-radius: 34px;
  pointer-events: none;
}
.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(196, 137, 47, 0.25);
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
}
.brand-strip div {
  padding: 24px;
  border-inline-start: 1px solid rgba(196, 137, 47, 0.2);
}
.brand-strip b {
  display: block;
  color: var(--red);
  font-size: 1.05rem;
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding: 24px 76px 24px 24px;
  border: 1px solid rgba(255, 244, 226, 0.16);
  border-radius: 28px;
  background: rgba(255, 244, 226, 0.07);
  margin-bottom: 14px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  right: 22px;
  top: 24px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--flame);
  color: #2b140a;
  display: grid;
  place-items: center;
  font-weight: 1000;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.filter-btn.active {
  background: var(--charcoal);
  color: var(--cream);
}
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}
.sidebar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 20px;
  height: max-content;
  position: sticky;
  top: 105px;
}
.sidebar h3 {
  margin-bottom: 12px;
}
.check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0;
  color: #57493d;
}
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}
.gallery {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.main-product {
  border-radius: 30px;
  background: #140807;
  width: 100%;
  object-fit: cover;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.thumbs img {
  border: 1px solid var(--line);
  border-radius: 18px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.product-detail h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--charcoal);
  margin-bottom: 10px;
}
.rating {
  color: #ffad00;
  font-weight: 900;
}
.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  margin: 20px 0;
}
.quantity button {
  border: none;
  background: #fff2df;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 900;
}
.quantity input {
  width: 54px;
  text-align: center;
  border: none;
  background: white;
  padding: 10px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.benefit {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.tabs {
  margin-top: 44px;
}
.tab-list {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}
.tab-list button {
  border: none;
  background: transparent;
  padding: 14px 20px;
  font-weight: 900;
  cursor: pointer;
}
.tab-list button.active {
  color: var(--red);
  border-bottom: 3px solid var(--red);
}
.tab-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-top: none;
  padding: 26px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.recipe-card img {
  aspect-ratio: 1.25/1;
  object-fit: cover;
}
.quote {
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
}
.quote p {
  font-size: 1.1rem;
}
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--flame), var(--red));
  color: #fff;
  font-weight: 1000;
}
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}
.field label {
  font-weight: 800;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: #fffaf4;
}
.field textarea {
  min-height: 128px;
  resize: vertical;
}
.map-placeholder {
  min-height: 360px;
  border-radius: 32px;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 193, 25, 0.25),
      transparent 30%
    ),
    linear-gradient(135deg, #1b100c, #552014);
  color: #fff;
  padding: 32px;
  display: flex;
  align-items: end;
  border: 1px solid rgba(196, 137, 47, 0.35);
}
.footer {
  background: #120d0a;
  color: #fff1da;
  padding: 66px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}
.footer h3 {
  margin-bottom: 14px;
  color: var(--flame);
}
.footer a {
  display: block;
  color: #efd5b4;
  margin: 8px 0;
}
.footer .brand img {
  width: 72px;
  height: 72px;
}
.copyright {
  border-top: 1px solid rgba(255, 244, 226, 0.12);
  margin-top: 30px;
  padding-top: 18px;
  color: #d5b996;
  font-size: 0.9rem;
}
.whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 12px 17px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
}
.toast {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 120;
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: translateY(120px);
  transition: 0.28s ease;
}
.toast.show {
  transform: translateY(0);
}
.page-hero {
  background: linear-gradient(135deg, var(--charcoal), var(--deep));
  color: var(--cream);
  padding: 82px 0;
  border-bottom-left-radius: 58px;
  border-bottom-right-radius: 58px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/brand-pattern.webp") center/360px;
  opacity: 0.08;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  max-width: 760px;
}
.breadcrumb {
  color: #f3c985;
  margin-bottom: 12px;
  font-weight: 800;
}
.palette {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.swatch {
  border-radius: 22px;
  padding: 68px 14px 14px;
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.swatch.light {
  color: #23160e;
}
.logo-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.logo-box {
  border-radius: 32px;
  padding: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  min-height: 310px;
}
.logo-box.dark {
  background: #12100d;
}
.logo-box.light {
  background: #fff4e2;
}
.logo-box img {
  width: 260px;
}
@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }
  .nav-links {
    position: fixed;
    inset: 75px 18px auto 18px;
    background: #fffaf3;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 16px;
    display: none;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    text-align: center;
  }
  .hero .container,
  .split-layout,
  .product-page {
    grid-template-columns: 1fr;
  }
  .hero .container {
    min-height: auto;
  }
  .grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.cols-3,
  .shop-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .hero {
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
  }
  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
  }
  .brand-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-head {
    display: block;
  }
  .palette {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-showcase {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .topbar .container {
    display: block;
    text-align: center;
  }
  .nav-actions .btn {
    display: none;
  }
  h1 {
    font-size: 2.45rem;
  }
  .stats,
  .benefits,
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }
  .brand-strip {
    grid-template-columns: 1fr;
  }
  .footer {
    padding-bottom: 70px;
  }
  .section {
    padding: 58px 0;
  }
  .page-hero {
    padding: 58px 0;
  }
  .hero .container {
    padding: 48px 0;
  }
  .logo-box img {
    width: 200px;
  }
  .hero p {
    font-size: 1rem;
  }
}

.product-category {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 4px;
}
.inline-form {
  margin-top: 14px;
}
.cart-dot {
  position: absolute;
  margin-top: -24px;
  margin-inline-start: -4px;
  background: var(--red);
  color: white;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  font-size: 0.7rem;
}
.icon-btn {
  position: relative;
}
.invert {
  color: var(--cream) !important;
  border-color: rgba(255, 244, 226, 0.35) !important;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.full {
  width: 100%;
}
.wide {
  min-width: 210px;
}
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 15px;
}
.xl strong {
  font-size: 2rem;
}
.product-section {
  padding-top: 54px;
}
.purchase-box {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin: 18px 0;
}
.thumb-button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.tab-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.tab-panel dt {
  font-weight: 900;
}
.tab-panel dd {
  margin: 0;
  color: var(--muted);
}
.meta-line {
  display: flex;
  gap: 10px;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.stars {
  color: #ffad00;
  margin-bottom: 12px;
}
.quote-person {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}
.quote-person small {
  grid-column: 2;
  color: var(--muted);
  margin-top: -12px;
}
.cta-section {
  padding-top: 0;
}
.cta-card {
  border-radius: 42px;
  background: linear-gradient(135deg, var(--charcoal), var(--deep));
  color: var(--cream);
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}
.footer-payments {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 244, 226, 0.12);
  border-radius: 18px;
  color: #efcf9e;
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.empty-state {
  padding: 34px;
  border: 1px dashed var(--gold);
  border-radius: 24px;
  background: #fff8ef;
  text-align: center;
  font-weight: 900;
}
.pagination-wrap {
  margin-top: 28px;
}
.pagination-wrap nav {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.pagination-wrap a,
.pagination-wrap span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.align-start {
  align-items: start;
}
.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.error {
  color: var(--red);
  font-weight: 800;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto auto;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 16px;
  margin-bottom: 14px;
}
.cart-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 20px;
}
.cart-update {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.cart-update input {
  width: 82px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
}
.remove {
  border: none;
  background: #ffe3db;
  color: var(--red);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 900;
}
.cart-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 112px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin: 18px 0;
}
.recipe-large h4 {
  margin-top: 18px;
}
.main-product {
  aspect-ratio: 1/1;
}
.footer .muted {
  color: #efd5b4;
}
@media (max-width: 980px) {
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
  .cta-card {
    display: block;
  }
  .cta-card .btn {
    margin-top: 20px;
  }
  .cart-item {
    grid-template-columns: 90px 1fr;
  }
  .cart-item strong,
  .cart-item form:last-child {
    grid-column: 2;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .purchase-box .wide {
    width: 100%;
  }
  .shop-toolbar {
    display: block;
  }
  .cart-item {
    grid-template-columns: 1fr;
  }
  .cart-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .cart-item strong,
  .cart-item form:last-child {
    grid-column: 1;
  }
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
}
