:root {
  --kantham-sand: #c9a275;
  --kantham-clay: #5b2b18;
  --kantham-cream: #f8f3ee;
  --kantham-deep: #2b140a;
  --kantham-accent: #d8644b;
  --kantham-text: #3e2112;
  --kantham-radius: 32px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--kantham-cream);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

main {
  overflow: hidden;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 5vw;
  text-align: center;
}

.section--sand {
  background: var(--kantham-sand);
  color: var(--kantham-text);
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #ffff;
}

.section__eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffff;
    font-weight: bold;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  text-align: center;
}

.hero__image {
  border-radius: var(--kantham-radius);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.5rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--kantham-clay);
  color: #fff;
  box-shadow: 0 12px 25px rgba(91, 43, 24, 0.25);
}

.cta .btn--primary {
  background: #c8a17d;
  box-shadow: 0 12px 25px rgba(200, 161, 125, 0.35);
  border-color: transparent;
}

.btn--ghost {
  
  background-color: var(--kantham-clay);
  color: #ffff;
  
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  justify-items: center;
}

.stat-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.stat-card__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--kantham-clay);
}

.showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
}

.showcase__card {
  position: relative;
  background: linear-gradient(180deg, #fff7ef 0%, #fff 45%, #fff 100%);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.showcase__media {
  position: relative;
  padding: 1.4rem 1.4rem 2.6rem;
  overflow: hidden;
}

.showcase__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  background: #fff;
}

.showcase__quickview {
  position: absolute;
  left: 50%;
  bottom: 2.25rem;
  transform: translate(-50%, 12px);
  padding: 0.65rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: #2b1b13;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.showcase__badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  background: #1f1f1f;
  color: #fff;
}

.showcase__media:hover .showcase__quickview,
.showcase__card:focus-within .showcase__quickview {
  opacity: 1;
  transform: translate(-50%, -6px);
}

.showcase__body {
  padding: 1.5rem;
  text-align: center;
}

.showcase__pricing {
  text-align: center;
}

.showcase__pricing-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 0.35rem;
}

.showcase__price-line {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
}

.showcase__price-old {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.45);
  text-decoration: line-through;
}

.showcase__price-new {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--kantham-clay);
}

.showcase__price-save {
  font-size: 0.95rem;
  color: #c8461d;
  font-weight: 600;
}

.kantham-card__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "price price"
    "variant variant"
    "qty button";
  gap: 0.85rem 1.1rem;
  align-items: start;
}

.kantham-card__price {
  grid-area: price;
}

.kantham-card__price span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}

.kantham-card__price strong {
  font-size: 1.8rem;
  color: var(--kantham-clay);
}

.kantham-card__actions {
  display: contents;
}

.kantham-qty {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  min-width: 150px;
  height: 100%;
}

.kantham-variant {
  grid-area: variant;
  width: 100%;
}

.kantham-qty:not(.kantham-variant) {
  grid-area: qty;
}

.kantham-qty span {
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kantham-qty select {
  margin-top: 0.35rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--kantham-text);
  appearance: none;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  width: 100%;
}

.qty-control {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  padding: 0.2rem 0.35rem;
  width: max-content;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.qty-control__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(250, 250, 250, 0.9);
  color: var(--kantham-clay);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.kantham-card__actions button {
  grid-area: button;
  justify-self: end;
  border-radius: 999px;
  align-self: end;
}

.qty-control__btn:hover {
  background: rgba(200, 161, 125, 0.12);
  color: var(--kantham-deep);
}

.qty-control input {
  width: 42px;
  border: none;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  background: transparent;
  color: var(--kantham-text);
  appearance: textfield;
  -moz-appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.step {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--kantham-text);
  text-align: center;
}

.step__index {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--kantham-accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  color: var(--kantham-deep);
}

.step p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.gallery img {
  border-radius: 24px;
  height: 220px;
  object-fit: cover;
}

.cta {
  padding: clamp(3rem, 5vw, 4.5rem);
  border-radius: var(--kantham-radius);
  background: linear-gradient(135deg, var(--kantham-clay), var(--kantham-accent));
  color: #fff;
  text-align: center;
  margin-top: 4rem;
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0.75rem auto 1.5rem;
}

.cta .btn--ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.section--sand .step__index {
  background: var(--kantham-accent);
}

.section--sand .step h3 {
  color: var(--kantham-deep);
}

.section--sand .step p {
  color: rgba(59, 34, 17, 0.85);
}

.section--sand .section__title {
  color: var(--kantham-deep);
}

.section--sand .section__eyebrow {
  color: rgba(59, 34, 17, 0.75);
}

.section--sand .showcase__card {
  background: rgba(255, 255, 255, 0.98);
}

@media (max-width: 640px) {
  .hero__cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.plan-card {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.plan-card__price {
  font-size: 2.25rem;
  color: var(--kantham-clay);
  font-weight: 700;
}

.plan-card ul {
  padding-left: 1.2rem;
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.plan-card ul li + li {
  margin-top: 0.4rem;
}

.accordion {
  margin-top: 2rem;
  border-radius: var(--kantham-radius);
  background: #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.accordion details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion details:last-of-type {
  border-bottom: none;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

.accordion summary::marker,
.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}

.accordion details[open] summary::after {
  content: '–';
}

.accordion details > div {
  padding: 0 2rem 1.5rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

.kantham-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-card__label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
}

.contact-card h3 {
  margin: 0.4rem 0 0.6rem;
}

.contact-form {
  margin-top: 3rem;
  background: #fff;
  border-radius: var(--kantham-radius);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.contact-form form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.timeline {
  margin-top: 3rem;
  border-left: 2px solid rgba(0, 0, 0, 0.08);
  padding-left: 2rem;
  display: grid;
  gap: 1.5rem;
}

.timeline__item {
  position: relative;
  padding-left: 1.5rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--kantham-accent);
  left: -2.6rem;
  top: 0.4rem;
}

.timeline__year {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.kantham-card img {
  width: 100%;
  height: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.blog-card__meta {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
}

.blog-card__body a {
  color: var(--kantham-clay);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.auth-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.auth-panel,
.auth-aside {
  background: #fff;
  border-radius: var(--kantham-radius);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.auth-panel form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-panel label {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-panel input {
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-family: inherit;
}

.auth-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
}

.auth-meta a {
  color: var(--kantham-clay);
  text-decoration: none;
  font-weight: 600;
}

.cart-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.cart-panel,
.cart-summary {
  background: #fff;
  border-radius: var(--kantham-radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 120px;
}

.cart-summary .btn {
  width: 100%;
  margin-top: 1.5rem;
  display: block;
  text-align: center;
}

.cart-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cart-panel__header h2 {
  margin: 0.2rem 0 0;
  font-size: 1.6rem;
}

.cart-empty {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  padding: 3rem 1rem;
  border: 1px dashed rgba(0, 0, 0, 0.12);
  border-radius: 24px;
}

.cart-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-item {
  display: flex;
  gap: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  padding: 1.25rem;
  align-items: stretch;
  background: radial-gradient(circle at top left, rgba(200, 161, 125, 0.12), rgba(255, 255, 255, 0.95));
}

.cart-item__media img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cart-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-item__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

.cart-item__details h3 {
  margin: 0.25rem 0 0;
  font-size: 1.2rem;
}

.cart-item__descriptor {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.58);
}

.cart-item__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cart-item__text {
  flex: 1;
  min-width: 220px;
}

.cart-item__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-weight: 600;
  color: var(--kantham-clay);
  flex-direction: column;
  min-width: 160px;
}

.cart-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.cart-item__actions label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}

.cart-item__actions input[type="number"] {
  margin-top: 0.4rem;
  width: 110px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 0.5rem 0.75rem;
  font-weight: 600;
}

.cart-item__buttons {
  display: flex;
  gap: 0.5rem;
}

.btn--text {
  border: none;
  padding: 0.65rem 1rem;
  color: var(--kantham-clay);
  background: rgba(200, 161, 125, 0.12);
  box-shadow: inset 0 0 0 1px rgba(200, 161, 125, 0.4);
}

.kantham-cart__totals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.kantham-cart__row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.kantham-cart__row--total {
  font-size: 1.25rem;
  color: var(--kantham-clay);
}

.cart-note {
  margin-top: 1rem;
  color: rgba(0, 0, 0, 0.6);
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: flex-start;
}

.checkout-panel {
  position: static;
}

.checkout-form {
  display: grid;
  gap: 1rem;
}

.checkout-label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}

.checkout-label span {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.checkout-label input,
.checkout-label textarea {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.checkout-label textarea {
  resize: vertical;
  min-height: 120px;
}

.checkout-label input:focus,
.checkout-label textarea:focus {
  outline: none;
  border-color: var(--kantham-accent);
  box-shadow: 0 0 0 3px rgba(200, 161, 125, 0.2);
}

.checkout-note {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}

.checkout-summary {
  position: sticky;
  top: 120px;
}

.checkout-success {
  background: #fff;
  border-radius: var(--kantham-radius);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.checkout-success__badge {
  display: inline-flex;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(54, 179, 126, 0.15);
  color: #0f7a55;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.checkout-success__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 1rem;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  background: rgba(248, 242, 236, 0.6);
}

.checkout-success__label {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

.checkout-success p {
  margin: 0;
  color: rgba(0, 0, 0, 0.75);
}

.checkout-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-weight: 600;
}

.checkout-items li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.btn-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cart-flash {
  margin-top: 1.5rem;
}

.flash {
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
}

.flash-success {
  background: rgba(54, 179, 126, 0.12);
  color: #0f7a55;
}

.flash-error {
  background: rgba(214, 69, 65, 0.12);
  color: #a02922;
}

@media (max-width: 768px) {
  .cart-grid {
    grid-template-columns: 1fr;
  }

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

  .cart-summary {
    position: static;
  }

  .cart-panel {
    order: 2;
  }

  .cart-summary {
    order: 1;
  }

  .cart-item {
    flex-direction: column;
    padding: 1rem;
  }

  .cart-item__media img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .cart-item__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    width: 100%;
  }

  .cart-item__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-item__actions input[type="number"] {
    width: 100%;
  }

  .cart-item__buttons {
    justify-content: flex-start;
  }

  .cart-panel__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-panel__header form {
    width: 100%;
  }

  .cart-panel__header .btn {
    width: 100%;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero__cta {
    flex-direction: column;
  }
}
