/* =========================
   Reset + base foundation
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:root {
  --color-red: #C21E23;
  --color-charcoal: #1A1A1A;
  --color-slate: #2F353B;
  --color-cream: #FAF3E0;
  --color-gold: #C9944D;
  --color-almond: #EEDCC6;

  --radius-button: 6px;
  --radius-card: 10px;
  --radius-pill: 20px;

  --navbar-height: 64px;
  --content-max: 1100px;

  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;

  --section-pad-y-mobile: 40px;
  --section-pad-y-desktop: 64px;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  background: var(--color-cream);
  color: var(--color-charcoal);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--color-charcoal);
}

p {
  margin: 0;
}

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

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-16);
}

.page-main {
  min-height: 0;
}

/* =========================
   Navbar
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  height: var(--navbar-height);
  background: var(--color-charcoal);
  border-bottom: 1px solid var(--color-slate);
}

.navbar__inner {
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
}

.navbar__logo {
  height: 48px;
  width: auto;
}

.navbar__toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  border-radius: var(--radius-button);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.navbar__toggle-icon {
  width: 28px;
  height: 28px;
  color: var(--color-cream);
}

.navbar__menu {
  position: absolute;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  background: var(--color-charcoal);
  border-bottom: 1px solid var(--color-slate);
  display: none;
}

.navbar.is-open .navbar__menu {
  display: block;
}

.navbar__links {
  list-style: none;
  padding: var(--space-16);
  margin: 0;
  display: grid;
  gap: var(--space-8);
}

.navbar__link {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-button);
  color: var(--color-cream);
}

.navbar__link:hover,
.navbar__link:focus-visible {
  background: rgba(250, 243, 224, 0.08);
  outline: none;
}

.navbar__link.is-active {
  color: var(--color-red);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
  padding: 8px 18px !important;
  border-radius: var(--radius-button);
  background: var(--color-red);
  color: var(--color-cream);
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.navbar__cta:hover,
.navbar__cta:focus-visible {
  filter: brightness(0.88);
  outline: none;
}

.navbar__cta.is-active {
  filter: brightness(0.88);
}

.navbar__lang {
  padding: 0 var(--space-16) var(--space-16);
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.lang-btn {
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-almond);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.lang-btn:not(.is-active):hover,
.lang-btn:not(.is-active):focus-visible {
  color: var(--color-cream);
  background: transparent;
  outline: none;
}

.lang-btn.is-active {
  color: var(--color-red);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.lang-btn.is-active:hover,
.lang-btn.is-active:focus-visible {
  color: var(--color-red);
  background: transparent;
  outline: none;
}

.lang-btn:not(.is-active) {
  text-decoration: none;
}

@media (min-width: 768px) {
  .navbar__toggle {
    display: none;
  }

  .navbar__menu {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: var(--space-16);
    border-bottom: none;
    background: transparent;
  }

  .navbar__links {
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--space-8);
    margin-left: auto;
  }

  .navbar__cta {
    margin: 0;
  }

  .navbar__lang {
    padding: 0;
    margin-left: var(--space-16);
  }

  .lang-btn {
    font-size: 15px;
  }
}

/* =========================
   Homepage — Hero
   ========================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-charcoal);
  background-image: url("https://images.unsplash.com/photo-1607623814075-e51df1bdc82f?w=1600&q=80");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.62);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: var(--space-24);
  padding-top: calc(var(--navbar-height) + var(--space-24));
}

.hero__content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-24);
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-24) var(--space-16) 0;
  flex: 1;
  margin-bottom: auto;
  box-sizing: border-box;
}

.hero__col--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__mascot {
  height: 160px;
  width: auto;
  display: block;
}

.hero__col--text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.hero__col--text .hero__content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero__col--text .hero__actions {
  justify-content: center;
}

.hero__content {
  max-width: 36rem;
  padding-top: 0;
}

@media (min-width: 1025px) {
  .hero__content-container {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 48px;
    padding: 0 40px;
  }

  .hero__col--logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero__mascot {
    height: 320px;
    width: auto;
  }

  .hero__col--text {
    align-items: flex-start;
  }

  .hero__col--text .hero__content {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: 100%;
  }

  .hero__col--text .hero__actions {
    justify-content: flex-start;
  }
}

.hero__eyebrow {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-8);
  white-space: nowrap;
  opacity: 0;
  animation: hero-fade-in 0.4s ease forwards;
}

.hero__title {
  font-size: 40px;
  line-height: 1.1;
  color: var(--color-cream);
  margin-bottom: var(--space-16);
  opacity: 0;
  animation: hero-fade-in 0.4s ease forwards;
  animation-delay: 0.03s;
  animation-fill-mode: forwards;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--color-almond);
  margin-bottom: var(--space-24);
  opacity: 0;
  animation: hero-fade-in 0.4s ease forwards;
  animation-delay: 0.06s;
  animation-fill-mode: forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  opacity: 0;
  animation: hero-fade-in 0.4s ease forwards;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow,
  .hero__title,
  .hero__subtitle,
  .hero__actions {
    animation: none;
    opacity: 1;
  }
}

@media (min-width: 1025px) {
  .hero__title {
    font-size: 68px;
  }
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-8) var(--space-16);
  margin-top: var(--space-24);
  padding-top: var(--space-16);
  border-top: 1px solid rgba(250, 243, 224, 0.25);
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: var(--color-almond);
}

.hero__stat-divider {
  width: 1px;
  height: 14px;
  background: rgba(250, 243, 224, 0.35);
  flex-shrink: 0;
}

@media (max-width: 479px) {
  .hero__stat-divider {
    display: none;
  }

  .hero__stat {
    flex: 1 1 100%;
  }
}

/* =========================
   Buttons (homepage + CTAs)
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-button);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-cream);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  filter: brightness(0.88);
  outline: none;
}

.btn--ghost-hero {
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid var(--color-cream);
  padding: 10px 26px;
}

.btn--ghost-hero:hover,
.btn--ghost-hero:focus-visible {
  background: rgba(250, 243, 224, 0.08);
  outline: none;
}

.btn--full {
  width: 100%;
}

/* =========================
   Homepage — sections
   ========================= */

.section {
  padding: var(--section-pad-y-mobile) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--section-pad-y-desktop) 0;
  }
}

.section--cream {
  background: var(--color-cream);
}

.section--almond {
  background: var(--color-almond);
}

.section__title {
  font-size: 28px;
  margin-bottom: var(--space-24);
}

.section__title--center {
  text-align: center;
}

section h2::after {
  content: "";
  width: 48px;
  height: 3px;
  background: var(--color-red);
  display: block;
  margin-top: 8px;
}

section h2.section__title--center::after {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section__title {
    font-size: 36px;
  }
}

.section__cta-link-wrap {
  text-align: center;
  margin: var(--space-24) 0 0;
}

.section__cta-center {
  text-align: center;
  margin-top: var(--space-24);
}

.text-link {
  font-weight: 700;
  color: var(--color-red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-charcoal);
  outline: none;
}

.card-grid {
  display: grid;
  gap: var(--space-24);
}

@media (min-width: 768px) {
  .card-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: #ffffff;
  border-top: 3px solid var(--color-red);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
}

.value-card__icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-16);
  color: var(--color-red);
}

.value-card__title {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-8);
}

.value-card__text {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: var(--space-16);
}

.value-card__proof {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-style: italic;
  color: var(--color-gold);
  margin: 0;
}

/* Featured product cards (homepage static) */

.product-card--home {
  background: var(--color-cream);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.section--almond .product-card--home {
  background: var(--color-cream);
}

.product-card__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.product-card__body {
  padding: var(--space-24);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-8);
}

.product-card__badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-gold);
  color: var(--color-charcoal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.product-card__name {
  font-size: 18px;
}

.product-card__desc {
  font-size: 13px;
  color: var(--color-charcoal);
  opacity: 0.9;
  flex: 1;
}

.product-preview-grid .btn--full {
  margin-top: var(--space-8);
}

/* How it works */

.steps {
  display: grid;
  gap: var(--space-24);
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-16);
  }
}

.step {
  text-align: center;
}

@media (min-width: 768px) {
  .step {
    text-align: left;
  }
}

.step__num {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--color-red);
  margin-bottom: var(--space-8);
}

.step__title {
  font-size: 18px;
  margin-bottom: var(--space-8);
}

.step__text {
  font-size: 15px;
  color: var(--color-charcoal);
}

/* =========================
   Footer
   ========================= */

.site-footer {
  background: var(--color-charcoal);
  border-top: 1px solid var(--color-slate);
  color: var(--color-cream);
  padding: var(--section-pad-y-mobile) 0 0;
}

.site-footer__grid {
  display: grid;
  gap: var(--space-24);
  padding-bottom: var(--space-24);
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.1fr 1fr 1.2fr;
    gap: var(--space-24);
    align-items: start;
  }
}

.site-footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: var(--space-8);
}

.site-footer__tagline {
  font-size: 14px;
  color: var(--color-almond);
}

.site-footer__heading {
  font-size: 18px;
  color: var(--color-cream);
  margin-bottom: var(--space-16);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-8);
}

.site-footer__list a {
  color: var(--color-cream);
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible {
  color: var(--color-gold);
  outline: none;
}

.site-footer__text {
  font-size: 15px;
  color: var(--color-cream);
  margin-bottom: var(--space-8);
}

.site-footer__text a {
  color: var(--color-gold);
}

.site-footer__text a:hover,
.site-footer__text a:focus-visible {
  filter: brightness(1.1);
  outline: none;
}

.site-footer__wa-btns {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.site-footer__wa {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: 10px 14px;
  background: var(--color-slate);
  color: var(--color-cream);
  border-radius: var(--radius-button);
  max-width: 100%;
}

.site-footer__wa:hover,
.site-footer__wa:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

.site-footer__wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-cream);
}

.site-footer__bottom {
  border-top: 1px solid var(--color-slate);
  padding: var(--space-16) 0;
}

.site-footer__copyright {
  font-size: 12px;
  color: var(--color-almond);
  margin: 0;
}

/* =========================
   Shared utility
   ========================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   Cart icon + sidebar
   ========================= */

.cart-icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 8px;
  color: var(--color-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-red);
  color: var(--color-cream);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 320px;
  max-width: 100%;
  background: var(--color-cream);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.cart-open .cart-sidebar {
  transform: translateX(0);
}

body.cart-open .cart-overlay {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-almond);
}

.cart-sidebar__header h3 {
  font-size: 24px;
}

.cart-sidebar__close {
  border: none;
  background: transparent;
  color: var(--color-charcoal);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-sidebar__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-almond);
}

.cart-sidebar__count {
  color: var(--color-charcoal);
}

.cart-sidebar__checkout {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-16);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-almond);
}

.cart-item__name {
  font-weight: 700;
  color: var(--color-charcoal);
}

.cart-item__qty {
  color: #4a4a4a;
  font-size: 14px;
}

.cart-item__remove {
  border: none;
  background: transparent;
  color: var(--color-red);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-empty {
  color: #4a4a4a;
}

.cart-empty a {
  color: var(--color-red);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .cart-sidebar {
    width: 100%;
  }
}

/* =========================
   Products page
   ========================= */

.products-page {
  background: var(--color-almond);
}

.products-page #products-list {
  background: var(--color-almond);
}

.products-header {
  background: var(--color-gold);
  padding: 48px 0;
}

.products-header__title {
  font-size: 40px;
  text-align: center;
  margin-bottom: var(--space-8);
  color: var(--color-cream);
}

.products-header__title::after {
  content: "";
  width: 48px;
  height: 3px;
  background: var(--color-red);
  display: block;
  margin: 8px auto 0;
}

.products-header__subtitle {
  text-align: center;
  color: var(--color-cream);
  margin-bottom: var(--space-24);
}

.products-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.products-page .filter-tab {
  border: 1px solid var(--color-charcoal);
  background: transparent;
  color: var(--color-charcoal);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 700;
}

.products-page .filter-tab {
  border-color: var(--color-cream);
  color: var(--color-cream);
}

.products-page .filter-tab.is-active {
  background: var(--color-red);
  color: var(--color-cream);
  border-color: var(--color-red);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.products-grid--skeleton[hidden] {
  display: none;
}

.products-grid#productsGrid[hidden] {
  display: none;
}

.products-empty-state {
  text-align: center;
  color: #4a4a4a;
}

.products-empty-state[hidden] {
  display: none;
}

.skeleton-card {
  background: var(--color-almond);
  border-radius: 10px;
  height: 380px;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.products-grid .product-card {
  background: var(--color-cream);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.products-grid .product-card__image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.products-grid .product-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.products-grid .product-card__image-placeholder {
  opacity: 1;
}

.products-grid .product-card__image-final {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.products-grid .product-card__image-final.is-ready {
  opacity: 1;
}

.products-grid .product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-8);
}

.products-grid .product-card__badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-gold);
  color: var(--color-charcoal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.products-grid .product-card__name {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  color: var(--color-charcoal);
  margin: 8px 0 4px;
}

.products-grid .product-card__desc {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: var(--color-charcoal);
  line-height: 1.5;
  flex: 1;
}

.products-grid .product-card__price {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: var(--color-red);
  margin: 12px 0;
}

.product-card__qty-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-almond);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal);
}

.qty-btn:hover,
.qty-btn:focus-visible {
  background: var(--color-red);
  color: var(--color-cream);
  outline: none;
}

.qty-value {
  font-size: 16px;
  font-weight: 600;
  min-width: 32px;
  text-align: center;
  color: var(--color-charcoal);
}

.qty-unit {
  font-size: 13px;
  color: #4a4a4a;
}

.product-card__add {
  width: 100%;
  margin-top: auto;
  padding: 12px;
}

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