/* ============================================================
   Hart & Soil — styles
   Edit the variables below to retune colors, fonts & spacing.
   ============================================================ */

:root {
  /* --- Color palette (earthy, calm) --- */
  --cream: #f5efe1;
  --off-white: #fbf7ee;
  --beige: #e9dec7;
  --beige-deep: #ddd0b3;
  --green-dark: #2e4429;
  --green: #3f5a36;
  --olive: #7c8a52;
  --olive-soft: #9aa66f;
  --brown: #6b4a2e;
  --brown-soft: #8a6644;
  --ink: #2c2a23; /* off-black for text */
  --muted: #6f6a5c;

  /* --- Surfaces --- */
  --bg: var(--cream);
  --surface: var(--off-white);
  --surface-2: #fffdf7;
  --line: rgba(107, 74, 46, 0.16);

  /* --- Type --- */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Karla", system-ui, -apple-system, sans-serif;

  /* --- Shape & spacing --- */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(46, 68, 41, 0.06);
  --shadow: 0 18px 40px -22px rgba(46, 68, 41, 0.35);
  --maxw: 1140px;
  --gutter: clamp(1.2rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
}

/* ---------------- Reset ---------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--bg);
  /* subtle paper texture: layered soft gradients, no external asset */
  background-image:
    radial-gradient(circle at 18% 12%, rgba(124, 138, 82, 0.08), transparent 40%),
    radial-gradient(circle at 85% 8%, rgba(107, 74, 46, 0.06), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(63, 90, 54, 0.07), transparent 55%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------- Shared bits ---------------- */
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 0.85rem;
}
.section-head {
  max-width: 640px;
  margin: 0 auto clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
}
.section-head h2,
.about__copy h2,
.order__intro h2,
.contact__copy h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}
.section-sub {
  color: var(--muted);
  margin-top: 0.9rem;
  font-size: 1.05rem;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background-color 0.2s ease,
    box-shadow 0.2s ease, color 0.2s ease;
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn--primary {
  background: var(--green-dark);
  color: var(--off-white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -14px rgba(46, 68, 41, 0.6);
}
.btn--ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--ghost:hover {
  background: rgba(46, 68, 41, 0.07);
  transform: translateY(-2px);
}
.btn--soft {
  background: var(--olive);
  color: var(--off-white);
}
.btn--soft:hover {
  background: var(--green);
}
.btn--block {
  width: 100%;
  padding: 1.05rem;
  font-size: 1.05rem;
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem var(--gutter);
  background: rgba(245, 239, 225, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand__logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 38%;
  border: 1.5px solid var(--beige-deep);
  background: var(--off-white);
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-dark);
}
.brand__text small {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-soft);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.8rem);
}
.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 0.18s ease;
}
.site-nav a:hover {
  color: var(--olive);
}
.nav-cta {
  background: var(--green-dark);
  color: var(--off-white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
}
.nav-cta:hover {
  background: var(--green);
}

/* hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  background: var(--surface-2);
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--green-dark);
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------------- Layout helpers ---------------- */
.hero,
.about,
.products,
.order,
.how,
.contact {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.products,
.how {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

/* ---------------- Hero ---------------- */
.hero {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: var(--section-y);
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: 600;
}
.hero__lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--muted);
  margin-top: 1.2rem;
  max-width: 30ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.hero__marks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.hero__marks li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green);
}
.hero__marks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--olive);
}
.hero__media {
  position: relative;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 6px solid var(--surface-2);
}
.hero__media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(251, 247, 238, 0.92);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* graceful fallback if an image fails to load */
.img-fallback img {
  visibility: hidden;
}
.img-fallback {
  background: linear-gradient(135deg, var(--olive-soft), var(--green));
}

/* ---------------- About ---------------- */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.about__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--beige);
  rotate: -1.5deg;
}
.about__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.about__copy p {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.05rem;
}
.about__copy h2 {
  margin-bottom: 0.4rem;
}
.about__sign {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brown) !important;
  font-size: 1.2rem !important;
  margin-top: 1.4rem !important;
}

/* ---------------- Products ---------------- */
.products {
  background: linear-gradient(180deg, transparent, rgba(233, 222, 199, 0.5));
}
.product-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.product-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card__media {
  height: 200px;
  /* fixed pixel height (not aspect-ratio) so every card's photo box is
     identical regardless of viewport or the image's own proportions */
  flex: 0 0 200px;
  background: linear-gradient(135deg, var(--olive-soft), var(--green));
  position: relative;
  overflow: hidden;
}
.product-card__media img {
  /* fill the fixed media box; object-fit crops the artwork cleanly */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__tag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: rgba(251, 247, 238, 0.92);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}
.product-card__body {
  padding: 1.2rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}
.product-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green-dark);
  /* reserve two lines so one- and two-line names align across cards */
  min-height: 2.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__price {
  font-weight: 700;
  color: var(--brown);
  white-space: nowrap;
  font-size: 0.95rem;
}
.product-card__desc {
  color: var(--muted);
  font-size: 0.94rem;
  /* clamp to a fixed three lines so every description block is the same
     height and all cards end up identically sized */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.5rem;
}
.product-card__actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
  align-items: stretch;
}
/* quantity stepper */
.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  overflow: hidden;
}
.qty button {
  width: 36px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font-size: 1.2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}
.qty button:hover {
  background: rgba(124, 138, 82, 0.15);
}
.qty input {
  width: 34px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-card__add {
  flex: 1;
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
}

/* ---------------- Order ---------------- */
.order {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.order__intro {
  position: sticky;
  top: 100px;
}
.order__intro p {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.05rem;
}
.order__note {
  margin-top: 1.8rem;
  background: var(--beige);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--line);
}
.order__note strong {
  color: var(--green-dark);
  display: block;
  margin-bottom: 0.25rem;
}
.order__note p {
  margin-top: 0;
  font-size: 0.95rem;
}

.order-form {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.hp-field {
  position: absolute;
  left: -9999px;
}
.form-label {
  display: block;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field > span {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-dark);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(124, 138, 82, 0.18);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field--full {
  grid-column: 1 / -1;
}
.field--radios > span {
  margin-bottom: 0.4rem;
}
.radios {
  display: flex;
  gap: 1.2rem;
  padding-top: 0.4rem;
}
.radios label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.radios input {
  accent-color: var(--green);
}

/* selections list */
.selections {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.selections__empty {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}
.selection {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.7rem 0.55rem 0.9rem;
}
.selection__name {
  font-weight: 700;
  color: var(--green-dark);
  flex: 1;
  font-size: 0.95rem;
}
.selection__price {
  color: var(--brown);
  font-size: 0.85rem;
  font-weight: 600;
}
.selection__remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.selection__remove:hover {
  background: rgba(107, 74, 46, 0.12);
  color: var(--brown);
}

.quick-add {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem 1.2rem;
  background: var(--surface);
}
.quick-add legend {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.85rem;
  padding: 0 0.4rem;
}
.quick-add__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.7rem;
  align-items: end;
}
.field--qty input {
  width: 80px;
}

.form-status {
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 1.2em;
}
.form-status.is-error {
  color: #9a3b2e;
}
.form-status.is-success {
  color: var(--green);
}

/* success state */
.order-success {
  text-align: center;
  padding: 2rem 1rem;
}
.order-success h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.order-success p {
  color: var(--muted);
}

/* ---------------- How it works ---------------- */
.steps {
  max-width: var(--maxw);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  counter-reset: step;
}
.step {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.step__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--olive);
  font-weight: 600;
  display: block;
  margin-bottom: 0.6rem;
}
.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.step p {
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------------- Contact ---------------- */
.contact {
  padding-bottom: var(--section-y);
}
.contact__card {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--green-dark);
  color: var(--off-white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  box-shadow: var(--shadow);
}
.contact__card h2 {
  color: var(--off-white);
}
.contact__copy .eyebrow {
  color: var(--olive-soft);
}
.contact__copy p {
  color: rgba(251, 247, 238, 0.82);
  margin-top: 0.9rem;
}
.contact__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact__list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(251, 247, 238, 0.16);
}
.contact__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.contact__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-soft);
  font-weight: 700;
}
.contact__list a:hover {
  text-decoration: underline;
}
.contact__social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--brown);
  color: var(--off-white);
  padding: clamp(2.2rem, 5vw, 3rem) var(--gutter);
}
.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.site-footer__logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 38%;
  border: 2px solid rgba(251, 247, 238, 0.25);
}
.site-footer__text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.site-footer__text strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.site-footer__text span {
  font-size: 0.9rem;
  color: rgba(251, 247, 238, 0.78);
}
.site-footer__legal {
  margin-left: auto;
  font-size: 0.85rem;
  color: rgba(251, 247, 238, 0.7);
}

/* ---------------- Motion: gentle reveal ---------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .hero__inner,
  .about,
  .order,
  .contact__card {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
  }
  .hero__media img {
    aspect-ratio: 16 / 11;
  }
  .about__media {
    rotate: 0deg;
  }
  .order__intro {
    position: static;
  }
  .steps {
    grid-template-columns: 1fr;
  }

  /* mobile navigation: collapse links into a toggleable panel */
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem var(--gutter) 1rem;
    background: rgba(245, 239, 225, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    padding: 0.85rem 0.3rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a:last-child {
    border-bottom: 0;
  }
  .nav-cta {
    margin-top: 0.7rem;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .quick-add__row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .field--qty input {
    width: 100%;
  }
  .site-footer__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .site-footer__legal {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .hero__actions .btn {
    flex: 1;
  }
  .product-card__actions {
    flex-wrap: wrap;
  }
  .product-card__add {
    min-width: 100%;
  }
}
