/* =========================================
   DESIGN VARIABLES
========================================= */

:root {

  --yellow: #f5c21c;
  --yellow-dark: #dda900;

  --navy: #202939;
  --navy-light: #2b3547;

  --white: #ffffff;
  --off-white: #f7f7f5;

  --text: #24262a;
  --muted: #6c7280;

  --border: #e5e6e8;

  --danger: #b42318;

  --shadow:
    0 18px 50px
    rgba(20, 27, 38, 0.10);

  --radius: 18px;
  --radius-small: 10px;

  --container: 1240px;

}


/* =========================================
   RESET
========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {

  margin: 0;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  color: var(--text);

  background: var(--white);

  line-height: 1.5;

}

body.locked {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}


/* =========================================
   GENERAL
========================================= */

.container {

  width:
    min(
      calc(100% - 40px),
      var(--container)
    );

  margin-inline: auto;

}

.section {
  padding: 90px 0;
}

.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;

}


.eyebrow {

  display: inline-block;

  margin-bottom: 13px;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  color: var(--yellow);

}

.eyebrow.dark {
  color: #a77e00;
}


.section-heading {

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 40px;

  margin-bottom: 42px;

}


.section-heading h2 {

  max-width: 680px;

  margin: 0;

  font-size:
    clamp(32px, 4vw, 50px);

  line-height: 1.05;

  letter-spacing: -0.04em;

}


.section-heading p {

  max-width: 470px;

  margin: 0;

  color: var(--muted);

}


/* =========================================
   BUTTONS
========================================= */

.btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 50px;

  padding: 0 24px;

  border: 0;

  border-radius:
    var(--radius-small);

  font-weight: 800;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;

}

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


.btn-yellow {

  color: var(--navy);

  background: var(--yellow);

}

.btn-yellow:hover {
  background: #ffd039;
}


.btn-dark {

  color: var(--white);

  background: var(--navy);

}

.btn-dark:hover {
  background: #111927;
}


.btn-outline-light {

  color: var(--white);

  background: transparent;

  border:
    1px solid
    rgba(255, 255, 255, 0.35);

}

.btn-outline-light:hover {

  color: var(--navy);

  background: var(--white);

}

.btn-full {
  width: 100%;
}


/* =========================================
   TOP BAR
========================================= */

.topbar {

  color: #dfe4ec;

  background: #161e2b;

  font-size: 13px;

}

.topbar-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  min-height: 37px;

  gap: 20px;

}

.topbar-contact {

  display: flex;

  align-items: center;

  gap: 10px;

}

.topbar a:hover {
  color: var(--yellow);
}

.topbar-divider {
  opacity: 0.35;
}


/* =========================================
   HEADER
========================================= */

.site-header {

  position: sticky;

  top: 0;

  z-index: 100;

  background: var(--white);

  box-shadow:
    0 4px 20px
    rgba(15, 20, 28, 0.06);

}


.header-main {

  display: grid;

  grid-template-columns:
    minmax(210px, 0.8fr)
    minmax(320px, 2fr)
    auto;

  align-items: center;

  gap: 32px;

  min-height: 96px;

}


/* Logo */

.brand {

  display: flex;

  align-items: center;

  width: fit-content;

}


.brand-logo {

  width: 220px;

  max-width: 100%;

  max-height: 72px;

  height: auto;

  object-fit: contain;

  object-position: left center;

}


/* =========================================
   HEADER SEARCH
========================================= */

.header-search {

  display: flex;

  overflow: hidden;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-small);

  background: var(--off-white);

}


.header-search input {

  width: 100%;

  min-height: 48px;

  padding: 0 17px;

  border: 0;

  outline: none;

  background: transparent;

}


.header-search input:focus {
  background: var(--white);
}


.header-search button {

  min-width: 96px;

  border: 0;

  color: var(--navy);

  background: var(--yellow);

  font-weight: 800;

}


/* =========================================
   CART BUTTON
========================================= */

.cart-button {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 9px 15px;

  border: 0;

  border-radius:
    var(--radius-small);

  color: var(--white);

  background: var(--navy);

}


.cart-icon {

  display: grid;

  place-items: center;

  width: 34px;

  height: 34px;

  border-radius: 8px;

  color: var(--navy);

  background: var(--yellow);

}


.cart-button span:last-child {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

}

.cart-button small {
  opacity: 0.7;
}

.cart-button strong {
  font-size: 13px;
}


/* =========================================
   CATEGORY NAVIGATION
========================================= */

.category-nav {

  color: var(--white);

  background: var(--navy);

}


.category-nav-inner {

  display: flex;

  overflow-x: auto;

  scrollbar-width: none;

}


.category-nav-inner::-webkit-scrollbar {
  display: none;
}


.category-link {

  flex: 0 0 auto;

  padding: 15px 22px;

  border: 0;

  color: #d9dee7;

  background: transparent;

  font-weight: 700;

}


.category-link:hover,
.category-link.is-active {

  color: var(--navy);

  background: var(--yellow);

}


/* =========================================
   HERO
========================================= */

.hero {

  position: relative;

  overflow: hidden;

  color: var(--white);

  background: var(--navy);

}


.hero::after {

  content: "";

  position: absolute;

  top: -260px;

  right: -190px;

  width: 580px;

  height: 580px;

  border:
    90px solid
    rgba(255, 255, 255, 0.03);

  border-radius: 50%;

}


.hero-grid {

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    1.1fr
    0.9fr;

  min-height: 590px;

  align-items: center;

  gap: 50px;

}


.hero-content {
  padding: 80px 0;
}


.hero h1 {

  max-width: 700px;

  margin:
    0
    0
    25px;

  font-size:
    clamp(47px, 6.3vw, 82px);

  line-height: 0.96;

  letter-spacing: -0.055em;

}


.hero h1 span {

  display: block;

  color: var(--yellow);

}


.hero-content > p {

  max-width: 630px;

  margin:
    0
    0
    32px;

  color: #cbd2dd;

  font-size: 18px;

}


.hero-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

}


.hero-points {

  display: flex;

  flex-wrap: wrap;

  gap: 23px;

  margin-top: 34px;

  color: #d8dde5;

  font-size: 14px;

}


/* =========================================
   HERO DECORATION
========================================= */

.hero-visual {

  position: relative;

  min-height: 430px;

}


.hero-yellow-block {

  position: absolute;

  top: 36px;

  right: 0;

  width: 77%;

  height: 360px;

  background: var(--yellow);

  border-radius:
    110px
    0
    0
    0;

}


.hero-card {

  position: absolute;

  box-shadow: var(--shadow);

}


.hero-card-main {

  top: 90px;

  right: 55px;

  width: 310px;

  min-height: 190px;

  padding: 35px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  border-radius: 20px;

  color: var(--white);

  background: var(--navy-light);

}


.hero-card-main span {

  margin-bottom: 10px;

  color: var(--yellow);

  font-size: 12px;

  font-weight: 900;

  letter-spacing: 0.14em;

}


.hero-card-main strong {

  font-size: 29px;

  line-height: 1.05;

}


.hero-card-one,
.hero-card-two,
.hero-card-three {

  display: grid;

  place-items: center;

  min-width: 115px;

  height: 70px;

  padding: 15px;

  font-weight: 800;

  border-radius: 12px;

}


.hero-card-one {

  left: 15px;

  bottom: 65px;

  color: var(--navy);

  background: var(--white);

}


.hero-card-two {

  right: 5px;

  bottom: 30px;

  color: var(--navy);

  background: var(--white);

}


.hero-card-three {

  left: 125px;

  bottom: 5px;

  color: var(--navy);

  background: var(--yellow);

}


/* =========================================
   DEPARTMENTS
========================================= */

.category-showcase {
  background: var(--off-white);
}


.department-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 16px;

}


.department-card {

  min-height: 230px;

  padding: 28px;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  text-align: left;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius);

  background: var(--white);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;

}


.department-card:hover {

  transform: translateY(-5px);

  box-shadow: var(--shadow);

}


.department-number {

  margin-bottom: auto;

  font-size: 14px;

  font-weight: 900;

  color: #b18400;

}


.department-card strong {

  margin-bottom: 9px;

  font-size: 26px;

}


.department-card > span:last-child {

  color: var(--muted);

  font-size: 14px;

}


/* =========================================
   CATALOG TOOLBAR
========================================= */

.catalog-toolbar {

  display: grid;

  grid-template-columns:
    1fr
    270px;

  gap: 15px;

  margin-bottom: 30px;

}


.catalog-search-wrap input,
.catalog-filter-wrap select {

  width: 100%;

  min-height: 52px;

  padding: 0 16px;

  outline: none;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-small);

  background: var(--white);

}


.catalog-search-wrap input:focus,
.catalog-filter-wrap select:focus {

  border-color:
    var(--yellow-dark);

  box-shadow:
    0 0 0 3px
    rgba(245, 194, 28, 0.15);

}


.catalog-filter-wrap {
  position: relative;
}


.catalog-filter-wrap label {

  position: absolute;

  top: -9px;

  left: 12px;

  padding: 0 5px;

  color: var(--muted);

  background: var(--white);

  font-size: 11px;

  font-weight: 800;

}


/* =========================================
   PRODUCTS
========================================= */

.product-grid {

  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  gap: 22px;

}


.product-card {

  position: relative;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius);

  background: var(--white);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;

}


.product-card:hover {

  transform: translateY(-4px);

  box-shadow: var(--shadow);

}


.product-image-shell {

  position: relative;

  display: grid;

  place-items: center;

  aspect-ratio: 1 / 0.78;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #fbfbfa,
      #eeeeea
    );

}


.product-image-shell img {

  width: 100%;

  height: 100%;

  object-fit: contain;

  padding: 18px;

}


.product-image-shell.image-missing img {
  display: none;
}


.product-image-fallback {

  display: none;

  padding: 25px;

  color: var(--muted);

  text-align: center;

  font-weight: 800;

}


.product-image-shell.image-missing
.product-image-fallback {
  display: block;
}


.product-body {

  flex: 1;

  display: flex;

  flex-direction: column;

  padding: 22px;

}


.product-category {

  margin:
    0
    0
    8px;

  color: #a47b00;

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 0.12em;

  text-transform: uppercase;

}


.product-body h3 {

  margin:
    0
    0
    11px;

  font-size: 20px;

  line-height: 1.15;

}


.product-description {

  flex: 1;

  margin:
    0
    0
    22px;

  color: var(--muted);

  font-size: 14px;

}


.product-card-footer {

  display: flex;

  flex-direction: column;

  gap: 12px;

}


.product-price {

  font-size: 13px;

  font-weight: 800;

}


.add-to-cart {
  width: 100%;
}


/* =========================================
   EMPTY STATE
========================================= */

.empty-state {

  padding: 70px 20px;

  text-align: center;

  border:
    1px dashed
    var(--border);

  border-radius:
    var(--radius);

  color: var(--muted);

}


.empty-state h3 {
  color: var(--text);
}


/* =========================================
   BENEFITS
========================================= */

.benefit-strip {

  padding: 30px 0;

  color: var(--white);

  background: var(--navy);

}


.benefit-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

}


.benefit {

  padding: 14px 30px;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.12);

}


.benefit:last-child {
  border-right: 0;
}


.benefit strong,
.benefit span {
  display: block;
}


.benefit strong {

  margin-bottom: 5px;

  color: var(--yellow);

}


.benefit span {

  color: #cbd1db;

  font-size: 13px;

}


/* =========================================
   ABOUT
========================================= */

.about-section {
  background: var(--white);
}


.about-grid {

  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 80px;

  align-items: center;

}


.about-panel {

  padding: 55px;

  border-radius:
    0
    90px
    0
    0;

  color: var(--white);

  background: var(--navy);

}


.about-panel h2 {

  margin: 0;

  font-size:
    clamp(35px, 4vw, 55px);

  line-height: 1.02;

  letter-spacing: -0.04em;

}


.about-panel h2 span {

  display: block;

  margin-top: 16px;

  color: var(--yellow);

}


.about-copy {

  color: var(--muted);

  font-size: 17px;

}


.about-copy p {

  margin:
    0
    0
    18px;

}


.text-link {

  display: inline-block;

  margin-top: 15px;

  color: var(--navy);

  font-weight: 900;

}


/* =========================================
   QUOTE CTA
========================================= */

.quote-cta {

  padding: 70px 0;

  background: var(--yellow);

}


.quote-cta-inner {

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 60px;

}


.quote-cta h2 {

  margin:
    0
    0
    12px;

  font-size:
    clamp(34px, 4vw, 50px);

  letter-spacing: -0.04em;

}


.quote-cta p {

  max-width: 670px;

  margin: 0;

  color: #554400;

}


/* =========================================
   FOOTER
========================================= */

.site-footer {

  padding:
    70px
    0
    25px;

  color: #cdd2da;

  background: #161e2b;

}


.footer-grid {

  display: grid;

  grid-template-columns:
    1.5fr
    1fr
    1.2fr
    1fr;

  gap: 50px;

}


/*
  The white background ensures the
  uploaded logo remains readable
  even if its text is dark.
*/

.footer-logo-wrap {

  display: inline-flex;

  align-items: center;

  padding: 10px 14px;

  margin-bottom: 18px;

  background: var(--white);

  border-radius: 10px;

}


.footer-logo {

  width: 210px;

  max-width: 100%;

  height: auto;

  max-height: 70px;

  object-fit: contain;

}


.footer-grid h3 {

  margin:
    0
    0
    17px;

  color: var(--white);

  font-size: 15px;

}


.footer-grid p {
  color: #9ea7b4;
}


.footer-grid a {

  display: block;

  margin-bottom: 10px;

  color: #aeb6c0;

  font-size: 14px;

}


.footer-grid a:hover {
  color: var(--yellow);
}


.footer-bottom {

  display: flex;

  justify-content: space-between;

  gap: 20px;

  margin-top: 55px;

  padding-top: 22px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.1);

  color: #7f8997;

  font-size: 13px;

}


/* =========================================
   BACKDROP
========================================= */

.drawer-backdrop {

  position: fixed;

  inset: 0;

  z-index: 300;

  background:
    rgba(10, 15, 23, 0.55);

  backdrop-filter: blur(2px);

}


/* =========================================
   CART DRAWER
========================================= */

.cart-drawer {

  position: fixed;

  top: 0;

  right: 0;

  z-index: 310;

  width:
    min(480px, 100%);

  height: 100dvh;

  display: flex;

  flex-direction: column;

  background: var(--white);

  box-shadow:
    -20px 0 60px
    rgba(10, 15, 23, 0.18);

  transform: translateX(105%);

  transition:
    transform 0.25s ease;

}


.cart-drawer.is-open {
  transform: translateX(0);
}


.cart-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 26px;

  border-bottom:
    1px solid
    var(--border);

}


.cart-header h2 {

  margin: 0;

  font-size: 30px;

}


.icon-button {

  display: grid;

  place-items: center;

  width: 43px;

  height: 43px;

  border:
    1px solid
    var(--border);

  border-radius: 50%;

  background: var(--white);

  font-size: 26px;

}


.cart-items {

  flex: 1;

  overflow-y: auto;

  padding: 20px;

}


.empty-cart {

  padding: 55px 15px;

  text-align: center;

  color: var(--muted);

}


.empty-cart strong {

  display: block;

  margin-bottom: 8px;

  color: var(--text);

  font-size: 20px;

}


/* =========================================
   CART PRODUCT
========================================= */

.cart-item {

  display: grid;

  grid-template-columns:
    82px
    1fr;

  gap: 15px;

  padding:
    18px
    0;

  border-bottom:
    1px solid
    var(--border);

}


.cart-item-image {

  width: 82px;

  height: 82px;

  overflow: hidden;

  border-radius: 10px;

  background: var(--off-white);

}


.cart-item-image img {

  width: 100%;

  height: 100%;

  object-fit: contain;

  padding: 5px;

}


.cart-item-info h3 {

  margin:
    0
    0
    5px;

  font-size: 16px;

}


.cart-item-category {

  color: var(--muted);

  font-size: 12px;

}


.cart-controls {

  display: flex;

  align-items: center;

  gap: 8px;

  margin:
    12px
    0;

}


.qty-button {

  width: 31px;

  height: 31px;

  border:
    1px solid
    var(--border);

  border-radius: 7px;

  background: var(--white);

  font-weight: 900;

}


.qty-number {

  min-width: 28px;

  text-align: center;

  font-weight: 800;

}


.cart-spec {

  width: 100%;

  min-height: 40px;

  padding: 8px 10px;

  border:
    1px solid
    var(--border);

  border-radius: 7px;

  outline: none;

  font-size: 12px;

}


.cart-spec:focus {
  border-color: var(--yellow-dark);
}


.remove-item {

  padding: 0;

  margin-top: 9px;

  border: 0;

  color: var(--danger);

  background: transparent;

  font-size: 12px;

  font-weight: 700;

}


.cart-footer {

  padding: 20px;

  border-top:
    1px solid
    var(--border);

  background: var(--white);

}


.cart-price-note {

  margin:
    0
    0
    13px;

  color: var(--muted);

  text-align: center;

  font-size: 12px;

}


.clear-cart-button {

  display: block;

  margin:
    14px
    auto
    0;

  border: 0;

  color: var(--muted);

  background: transparent;

  font-size: 12px;

  text-decoration: underline;

}


/* =========================================
   MODAL
========================================= */

.modal {

  position: fixed;

  inset: 0;

  z-index: 400;

  display: grid;

  place-items: center;

  padding: 20px;

}


.modal-backdrop {

  position: absolute;

  inset: 0;

  background:
    rgba(10, 15, 23, 0.70);

  backdrop-filter: blur(3px);

}


.modal-card {

  position: relative;

  z-index: 1;

  width:
    min(700px, 100%);

  max-height: 92dvh;

  overflow-y: auto;

  padding: 30px;

  border-radius: 20px;

  background: var(--white);

  box-shadow: var(--shadow);

}


.modal-header {

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 25px;

}


.modal-header h2 {

  margin: 0;

  font-size: 32px;

}


.quote-summary {

  margin-bottom: 24px;

  padding: 15px;

  border-radius: 10px;

  background: var(--off-white);

  font-size: 13px;

}


.quote-summary strong {

  display: block;

  margin-bottom: 7px;

}


.quote-summary-line {

  display: flex;

  justify-content: space-between;

  gap: 15px;

  padding: 4px 0;

  color: var(--muted);

}


/* =========================================
   FORM
========================================= */

.form-grid {

  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 16px;

}


.field {
  margin-bottom: 17px;
}


.field label {

  display: block;

  margin-bottom: 6px;

  font-size: 13px;

  font-weight: 800;

}


.field input,
.field textarea {

  width: 100%;

  padding: 12px 13px;

  outline: none;

  border:
    1px solid
    var(--border);

  border-radius: 8px;

  background: var(--white);

}


.field input:focus,
.field textarea:focus {

  border-color:
    var(--yellow-dark);

  box-shadow:
    0 0 0 3px
    rgba(245, 194, 28, 0.13);

}


.field textarea {
  resize: vertical;
}


.form-error {

  margin-bottom: 15px;

  padding: 11px 13px;

  border-radius: 7px;

  color: #8b1e16;

  background: #fff1f0;

  font-size: 13px;

}


.form-help {

  margin:
    13px
    0
    0;

  color: var(--muted);

  text-align: center;

  font-size: 11px;

}


/* =========================================
   NOSCRIPT
========================================= */

.noscript-message {

  position: fixed;

  bottom: 0;

  left: 0;

  right: 0;

  z-index: 9999;

  padding: 15px;

  color: var(--white);

  background: var(--danger);

  text-align: center;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

  .header-main {

    grid-template-columns:
      1fr
      auto;

  }


  .header-search {

    grid-column:
      1 / -1;

    order: 3;

    margin-bottom: 17px;

  }


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


  .hero-visual {
    display: none;
  }


  .product-grid {

    grid-template-columns:
      repeat(3, 1fr);

  }


  .department-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .footer-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 760px) {

  .container {

    width:
      min(
        calc(100% - 28px),
        var(--container)
      );

  }


  .section {
    padding: 65px 0;
  }


  .topbar-location {
    display: none;
  }


  .topbar-inner {
    justify-content: center;
  }


  .topbar-contact {

    gap: 7px;

    font-size: 11px;

  }


  .topbar-contact
  a:nth-of-type(2),

  .topbar-contact
  a:nth-of-type(3),

  .topbar-divider {
    display: none;
  }


  .header-main {

    min-height: 78px;

    gap: 12px;

  }


  .brand-logo {

    width: 165px;

    max-height: 56px;

  }


  .cart-button {
    padding: 8px;
  }


  .cart-button small {
    display: none;
  }


  .cart-icon {

    width: 30px;

    height: 30px;

  }


  .hero-grid {
    min-height: auto;
  }


  .hero-content {

    padding:
      72px
      0;

  }


  .hero h1 {

    font-size:
      clamp(45px, 14vw, 65px);

  }


  .section-heading {
    display: block;
  }


  .section-heading p {
    margin-top: 18px;
  }


  .department-grid,
  .product-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .catalog-toolbar {
    grid-template-columns: 1fr;
  }


  .benefit-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .benefit {

    border-right: 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.1);

  }


  .about-grid {

    grid-template-columns: 1fr;

    gap: 35px;

  }


  .about-panel {
    padding: 35px;
  }


  .quote-cta-inner {
    display: block;
  }


  .quote-cta .btn {
    margin-top: 25px;
  }


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

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 520px) {

  .department-grid,
  .product-grid,
  .benefit-grid,
  .footer-grid {

    grid-template-columns: 1fr;

  }


  .department-card {
    min-height: 180px;
  }


  .hero-actions {
    flex-direction: column;
  }


  .hero-actions .btn {
    width: 100%;
  }


  .hero-points {

    flex-direction: column;

    gap: 8px;

  }


  .footer-bottom {
    flex-direction: column;
  }


  .modal-card {
    padding: 22px;
  }


  .cart-drawer {
    width: 100%;
  }


  .brand-logo {
    width: 145px;
  }


  .footer-logo {
    width: 180px;
  }

}