:root {
  --bg: #07090b;
  --bg-soft: #111418;
  --panel: #171b20;
  --panel-strong: #20252c;
  --text: #f6f7f8;
  --muted: #a8b0bb;
  --line: rgba(255, 255, 255, 0.12);
  --red: #ef1f2d;
  --red-dark: #b80f1b;
  --steel: #d7dde4;
  --gold: #f1c16d;
  --whatsapp: #25d366;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

section {
  scroll-margin-top: 92px;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(7, 9, 11, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 11, 0.94);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.cart-nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(239, 31, 45, 0.45);
  border-radius: 999px;
  background: rgba(239, 31, 45, 0.12);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.cart-nav-button strong {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 6vw, 72px) 34px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.94) 0%, rgba(7, 9, 11, 0.72) 38%, rgba(7, 9, 11, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 9, 11, 0.96) 0%, rgba(7, 9, 11, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-bottom: 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 12vw, 9.6rem);
  line-height: 0.82;
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
  font-weight: 900;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.15;
}

.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 28px;
  color: var(--steel);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-actions,
.catalog-toolbar,
.filter-tabs,
.hero-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible,
.mini-link:hover,
.mini-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  box-shadow: 0 16px 34px rgba(239, 31, 45, 0.28);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-strip {
  position: absolute;
  left: clamp(18px, 6vw, 72px);
  right: clamp(18px, 6vw, 72px);
  bottom: 28px;
  z-index: 1;
  justify-content: space-between;
  padding: 16px 18px;
  background: rgba(17, 20, 24, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-strip i {
  color: var(--red);
  font-size: 1.05rem;
}

.section {
  padding: clamp(72px, 10vw, 120px) clamp(18px, 6vw, 72px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.advantages-content > p,
.contact-section p {
  max-width: 620px;
  color: var(--muted);
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.featured-product,
.catalog-panel,
.benefits article,
.social-grid a {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
}

.featured-product {
  position: sticky;
  top: 96px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-product img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center top;
}

.featured-product div {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(241, 193, 109, 0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-product strong {
  display: block;
  margin: 18px 0;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.mini-link,
.cart-add-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  font-weight: 900;
  border-bottom: 2px solid var(--red);
  transition: transform 160ms ease;
  cursor: pointer;
}

.mini-link i,
.cart-add-link i {
  color: var(--whatsapp);
}

.featured-actions {
  display: grid;
  gap: 14px;
}

.quantity-control {
  width: max-content;
  display: inline-grid;
  grid-template-columns: 34px 54px 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.quantity-control button {
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.quantity-control input {
  width: 54px;
  height: 36px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 900;
  text-align: center;
  outline: 0;
}

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

.catalog-panel {
  padding: 18px;
}

.catalog-toolbar {
  justify-content: space-between;
  margin-bottom: 16px;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: min(100%, 270px);
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.search-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.search-wrap input::placeholder {
  color: #7e8793;
}

.filter-tabs {
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.filter-tabs button {
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.filter-tabs button.active {
  background: var(--text);
  color: #090b0f;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  display: grid;
  min-height: 156px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), #12161a);
}

.product-code {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(239, 31, 45, 0.12);
  color: var(--red);
  font-weight: 900;
}

.product-card h3 {
  min-height: 38px;
}

.product-card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.product-card strong {
  color: var(--gold);
  font-size: 1.25rem;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.quote-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(239, 31, 45, 0.18);
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}

.quote-button:hover,
.quote-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  outline: none;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 26px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.advantages-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  background: linear-gradient(180deg, #080a0c 0%, #111418 100%);
}

.advantages-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.advantages-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 9, 11, 0.42), rgba(7, 9, 11, 0.04));
}

.advantages-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.advantages-content h2 {
  max-width: 720px;
  font-size: clamp(2.25rem, 5vw, 5rem);
}

.advantages-content > p {
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.benefits {
  display: grid;
  gap: 12px;
}

.benefits article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 27, 32, 0.78);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.benefits article:hover {
  transform: translateX(4px);
  border-color: rgba(239, 31, 45, 0.48);
  background: var(--panel-strong);
}

.benefits article > i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(239, 31, 45, 0.12);
  color: var(--red);
  font-size: 1.35rem;
}

.benefits p {
  margin-bottom: 0;
  color: var(--muted);
}

.socials-section {
  background: var(--bg-soft);
}

.section-heading.compact {
  max-width: 720px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.social-grid a {
  position: relative;
  min-height: 138px;
  padding: 22px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-grid a:hover,
.social-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(239, 31, 45, 0.65);
  background: var(--panel-strong);
  outline: none;
}

.social-grid span {
  display: block;
  margin: 20px 0 26px;
  color: var(--muted);
  font-weight: 800;
}

.social-grid i {
  color: var(--red);
  font-size: 1.45rem;
}

.social-grid strong {
  font-size: 1.5rem;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: clamp(24px, 5vw, 54px) clamp(18px, 6vw, 72px);
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(239, 31, 45, 0.95), rgba(184, 15, 27, 0.92)),
    url("assets/1.jpeg") center / cover;
  box-shadow: var(--shadow);
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-section h2 {
  max-width: 760px;
  margin-bottom: 10px;
}

.contact-section .btn {
  flex: 0 0 auto;
  background: white;
  color: #090b0f;
  box-shadow: none;
}

.floating-cart {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 55;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 1.35rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32), 0 0 0 8px rgba(239, 31, 45, 0.16);
  transition: transform 160ms ease, filter 160ms ease;
  cursor: pointer;
}

.floating-cart span {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--whatsapp);
  color: #062611;
  font-size: 0.75rem;
  font-weight: 900;
}

.floating-cart:hover,
.floating-cart:focus-visible {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.04);
  outline: none;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  width: min(440px, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #0d1014;
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.42);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.cart-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
  font-size: 2rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.cart-items {
  overflow: auto;
  padding: 18px 24px;
}

.cart-empty {
  display: grid;
  place-items: center;
  min-height: 260px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.cart-item {
  display: grid;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item:first-child {
  padding-top: 0;
}

.cart-item-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.cart-item h3 {
  margin-bottom: 6px;
}

.cart-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item strong {
  color: var(--gold);
  white-space: nowrap;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.remove-item {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.remove-item:hover,
.remove-item:focus-visible {
  color: var(--red);
  outline: none;
}

.cart-footer {
  display: grid;
  gap: 14px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.cart-total strong {
  color: var(--gold);
  font-size: 1.45rem;
}

.cart-whatsapp {
  width: 100%;
}

.cart-whatsapp.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.clear-cart {
  min-height: 38px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 32px);
  padding: 12px 16px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 999px;
  background: rgba(13, 16, 20, 0.96);
  color: var(--text);
  font-weight: 900;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cart-toast i {
  color: var(--whatsapp);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 18px 92px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .catalog-layout,
  .advantages-section {
    grid-template-columns: 1fr;
  }

  .featured-product {
    position: static;
    display: grid;
    grid-template-columns: 0.8fr 1fr;
  }

  .featured-product img {
    height: 100%;
    aspect-ratio: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advantages-media,
  .advantages-media img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  section {
    scroll-margin-top: 76px;
  }

  .site-header {
    padding: 10px 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 9, 11, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    border-radius: 6px;
  }

  .cart-nav-button {
    width: 100%;
    justify-content: center;
    border-radius: 6px;
  }

  .hero {
    min-height: auto;
    padding: 108px 18px 20px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 9, 11, 0.95), rgba(7, 9, 11, 0.58)),
      linear-gradient(0deg, rgba(7, 9, 11, 0.98), rgba(7, 9, 11, 0.12));
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.6rem);
  }

  .hero-content {
    padding-bottom: 22px;
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .hero-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 26px;
    display: grid;
    justify-content: stretch;
    padding: 16px;
  }

  .section {
    padding: 58px 20px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.6rem);
  }

  .featured-product {
    grid-template-columns: 1fr;
  }

  .featured-product img {
    aspect-ratio: 4 / 3.15;
    max-height: 360px;
  }

  .featured-product div {
    padding: 20px;
  }

  .featured-product strong {
    font-size: 2.05rem;
  }

  .catalog-toolbar,
  .search-wrap,
  .filter-tabs {
    width: 100%;
  }

  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
    padding: 18px;
  }

  .product-card h3 {
    min-height: 0;
  }

  .product-actions {
    align-items: stretch;
  }

  .quote-button {
    flex: 1;
  }

  .advantages-section {
    gap: 24px;
  }

  .advantages-media,
  .advantages-media img {
    min-height: 300px;
  }

  .benefits article {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 16px;
  }

  .benefits article > i {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .contact-section {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-section .btn {
    width: 100%;
  }

  .floating-cart {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }

  .cart-drawer {
    width: 100%;
    border-left: 0;
  }

  .cart-header,
  .cart-items,
  .cart-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cart-header h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 420px) {
  .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .product-actions {
    display: grid;
  }

  .quote-button {
    width: 100%;
  }

  .quantity-control {
    width: 100%;
    grid-template-columns: 42px 1fr 42px;
  }

  .quantity-control input {
    width: 100%;
  }
}
