:root {
  --blue: #0ea5e9;
  --blue-hover: #0284c7;
  --blue-dark: #0369a1;
  --blue-soft: #eaf7ff;
  --blue-pale: #f4fbff;
  --navy: #0b1220;
  --navy-soft: #162033;
  --text: #111827;
  --text-muted: #5d6778;
  --line: #dfe5ec;
  --surface: #ffffff;
  --background: #f6f8fb;
  --green: #22c55e;
  --green-dark: #16a34a;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
  --shadow-blue: 0 18px 40px rgba(14, 165, 233, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  min-width: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--surface);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: "Inter", Arial, sans-serif;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

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

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.35);
  outline-offset: 3px;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(14px);
}

.store-notice {
  color: #dcecff;
  background: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.store-notice-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.store-notice p {
  display: flex;
  align-items: center;
  gap: 9px;
}

.store-notice a {
  color: #ffffff;
  transition: color 0.2s ease;
}

.store-notice a:hover {
  color: #7dd3fc;
}

.notice-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
}

.notice-dot {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.top-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: #111827;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.logo-blue {
  color: var(--blue);
}

.header-search {
  height: 46px;
  display: flex;
  flex: 1;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search:focus-within {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--text);
  background: transparent;
  font-size: 13px;
}

.header-search input::placeholder {
  color: #7b8798;
}

.header-search button {
  min-width: 86px;
  border: 0;
  padding: 0 18px;
  color: #ffffff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
  transition: background 0.2s ease;
}

.header-search button:hover {
  background: var(--blue-hover);
}

.header-cart {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  border: 1px solid #bde3f7;
  border-radius: 999px;
  padding: 5px 17px 5px 6px;
  color: var(--navy);
  background: linear-gradient(135deg, #ffffff, var(--blue-pale));
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 9px 24px rgba(14, 165, 233, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.header-cart:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.22);
}

.header-cart:active {
  transform: translateY(0) scale(0.97);
}

.header-cart-icon {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cart-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cart:hover .header-cart-icon {
  background: var(--blue-hover);
  transform: rotate(-6deg) scale(1.06);
}

.header-cart-label {
  line-height: 1;
}

.header-cart-count {
  position: absolute;
  top: -7px;
  right: -6px;
  min-width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 3px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  background: #94a3b8;
  box-shadow: 0 5px 13px rgba(15, 23, 42, 0.18);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.header-cart.has-items .header-cart-count {
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12), 0 6px 14px rgba(239, 68, 68, 0.28);
}

.header-cart-count.is-updated {
  animation: cart-notification-pop 0.42s ease both;
}

.header-whatsapp {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-whatsapp-icon {
  width: 25px;
  height: 25px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
}

.header-whatsapp-icon img {
  width: 17px;
  height: 17px;
  display: block;
  object-fit: contain;
}

.header-whatsapp:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.25);
}

.mobile-menu-toggle {
  display: none;
}

.category-nav {
  border-top: 1px solid #eef2f6;
  background: #ffffff;
}

.category-scroll {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-scroll a,
.category-scroll button {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  color: #4b5563;
  background: transparent;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.category-scroll a::after,
.category-scroll button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.category-scroll a:hover,
.category-scroll button:hover {
  color: var(--blue-dark);
}

.category-scroll a:hover::after,
.category-scroll button:hover::after {
  transform: scaleX(1);
}

/* Main slider */

.hero-slider {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: #ffffff;
  background: var(--navy);
}

.slider-track,
.slider-slide,
.slider-overlay {
  position: absolute;
  inset: 0;
}

.slider-slide {
  --slide-image: none;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0s linear 0.65s;
}

.slider-slide:nth-child(1) {
  --slide-image: url("Productos/vasos-acrilicos-7oz.jpg");
}

.slider-slide:nth-child(2) {
  --slide-image: url("Productos/cacer de 8oz.jpg");
}

.slider-slide:nth-child(3) {
  --slide-image: url("Productos/envase-deli-1l.jpg");
}

.slider-slide::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: 0;
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  filter: blur(18px) brightness(0.64) saturate(0.9);
  transform: scale(1.06);
}

.slider-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.slider-slide > img {
  position: absolute;
  top: 0;
  right: 3%;
  z-index: 1;
  width: 56%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000000 12%, #000000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000000 12%, #000000 88%, transparent 100%);
  transform: scale(1.02);
  transition: transform 6s ease;
}

.slider-slide.is-active > img {
  transform: scale(1.075);
}

.slider-overlay {
  z-index: 2;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 11, 22, 0.84) 0%, rgba(5, 11, 22, 0.58) 42%, rgba(5, 11, 22, 0.14) 72%, rgba(5, 11, 22, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 11, 22, 0.28), transparent 45%);
}

.slider-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 540px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 62px 90px;
}

.slider-content > span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: #bae6fd;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.slider-content > span::before {
  content: "";
  width: 27px;
  height: 2px;
  margin-right: 11px;
  border-radius: 999px;
  background: var(--blue);
}

.slider-content h1,
.slider-content h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(2.65rem, 5.4vw, 5rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.24);
}

.slider-content p {
  max-width: 570px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

.slider-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 27px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 24px;
  color: #ffffff;
  background: var(--blue);
  font-size: 11px;
  font-weight: 850;
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.3);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.slider-cta:hover {
  transform: translateY(-2px);
  background: var(--blue-hover);
  box-shadow: 0 20px 44px rgba(14, 165, 233, 0.38);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.36);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.slider-arrow span {
  display: block;
  margin-top: -3px;
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.slider-arrow:hover {
  color: var(--navy);
  background: #ffffff;
  transform: translateY(-50%) scale(1.06);
}

.slider-arrow-prev {
  left: max(20px, calc((100vw - 1320px) / 2));
}

.slider-arrow-next {
  right: max(20px, calc((100vw - 1320px) / 2));
}

.slider-dots {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.22);
  transition: width 0.25s ease, background 0.25s ease;
}

.slider-dot.is-active {
  width: 28px;
  background: #ffffff;
}

@media (max-width: 820px) {
  .hero-slider,
  .slider-content {
    min-height: 500px;
  }

  .slider-content {
    padding: 54px 60px;
  }

  .slider-overlay {
    background: linear-gradient(90deg, rgba(5, 11, 22, 0.79), rgba(5, 11, 22, 0.3));
  }

  .slider-content h1,
  .slider-content h2 {
    max-width: 590px;
    font-size: clamp(2.7rem, 9vw, 4.5rem);
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
  }

  .slider-arrow-prev {
    left: 14px;
  }

  .slider-arrow-next {
    right: 14px;
  }
}

@media (max-width: 560px) {
  .hero-slider,
  .slider-content {
    min-height: 470px;
  }

  .slider-slide > img {
    right: 0;
    width: 100%;
    object-position: center;
    object-fit: cover;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .slider-overlay {
    align-items: flex-end;
    background: linear-gradient(0deg, rgba(5, 11, 22, 0.9) 0%, rgba(5, 11, 22, 0.46) 58%, rgba(5, 11, 22, 0.12) 100%);
  }

  .slider-content {
    justify-content: flex-end;
    padding: 52px 24px 70px;
  }

  .slider-content > span {
    margin-bottom: 10px;
    font-size: 9px;
  }

  .slider-content h1,
  .slider-content h2 {
    max-width: 380px;
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .slider-content p {
    max-width: 380px;
    margin-top: 12px;
    font-size: 12px;
  }

  .slider-cta {
    min-height: 44px;
    margin-top: 20px;
    padding: 0 19px;
  }

  .slider-arrow {
    top: 42%;
    width: 38px;
    height: 38px;
  }

  .slider-arrow span {
    font-size: 29px;
  }

  .slider-dots {
    bottom: 20px;
  }
}

/* Shared sections */

.section {
  padding: 88px 0;
}

.section-gray {
  background: var(--background);
}

.section-title {
  margin-bottom: 30px;
}

.section-title small {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-title h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-title p {
  max-width: 650px;
  margin-top: 13px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Catalog */

.catalog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 26px;
}

.catalog-title {
  margin-bottom: 0;
}

.catalog-tools {
  width: min(100%, 390px);
}

.product-count {
  display: block;
  margin-bottom: 9px;
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.catalog-search {
  position: relative;
}

.catalog-search::before {
  content: "⌕";
  position: absolute;
  top: 50%;
  left: 16px;
  color: #64748b;
  font-size: 19px;
  transform: translateY(-52%);
  pointer-events: none;
}

.catalog-search input {
  width: 100%;
  height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  outline: 0;
  padding: 0 18px 0 45px;
  color: var(--text);
  background: #ffffff;
  font-size: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid #d5dde7;
  border-radius: 999px;
  padding: 0 15px;
  color: #445063;
  background: #ffffff;
  font-size: 11px;
  font-weight: 800;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.filter-button:hover {
  border-color: #7dd3fc;
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.filter-button.active {
  border-color: var(--navy);
  color: #ffffff;
  background: var(--navy);
}

.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dde4ec;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.025);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product:hover {
  border-color: #b5dff5;
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1), var(--shadow);
}

.product-image {
  position: relative;
  height: 245px;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid #edf1f5;
  background:
    linear-gradient(135deg, rgba(240, 249, 255, 0.85), rgba(248, 250, 252, 0.9)),
    #f8fafc;
}

.product-photo {
  width: 100%;
  height: 100%;
  display: block;
  padding: 20px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.35s ease;
}

.product:hover .product-photo {
  transform: scale(1.045);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  border: 1px solid #c9eafa;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.94);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.image-placeholder {
  width: calc(100% - 40px);
  height: 175px;
  display: grid;
  place-items: center;
  border: 1px dashed #8ecfee;
  border-radius: 14px;
  padding: 20px;
  color: var(--blue-dark);
  background: var(--blue-pale);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  flex: 1;
  min-height: 226px;
  flex-direction: column;
  padding: 20px;
}

.product-category {
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product h3 {
  margin-top: 6px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.product-description {
  margin: 9px 0 18px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.6;
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.product-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  padding: 8px 11px;
  color: #ffffff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.25;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.product-action-icon {
  width: 21px;
  height: 21px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
}

.product-whatsapp-icon {
  background: #ffffff;
}

.product-whatsapp-icon img {
  width: 15px;
  height: 15px;
  display: block;
  object-fit: contain;
}

.product-cart-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-action-label {
  min-width: 0;
}

.product-whatsapp-button {
  background: var(--green);
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.2);
}

.product-whatsapp-button:hover {
  background: var(--green-dark);
  box-shadow: 0 13px 26px rgba(34, 197, 94, 0.28);
  transform: translateY(-2px);
}

.product-cart-button {
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.2);
}

.product-cart-button:hover {
  background: var(--blue-hover);
  box-shadow: 0 13px 26px rgba(14, 165, 233, 0.28);
  transform: translateY(-2px);
}

/* Product detail modal */

body.interface-locked {
  overflow: hidden;
}

body.interface-locked .whatsapp-chat,
body.interface-locked .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.product-modal {
  width: min(920px, calc(100% - 32px));
  max-width: none;
  max-height: min(720px, calc(100dvh - 32px));
  overflow-x: hidden;
  overflow-y: auto;
  border: 0;
  border-radius: 25px;
  padding: 0;
  color: var(--text);
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(2, 8, 23, 0.3);
}

.product-modal[open] {
  animation: modal-enter 0.25s ease both;
}

.product-modal::backdrop {
  background: rgba(5, 11, 22, 0.68);
  backdrop-filter: blur(5px);
}

@keyframes modal-enter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cart-notification-pop {
  0% {
    transform: scale(0.72);
  }

  55% {
    transform: scale(1.24);
  }

  100% {
    transform: scale(1);
  }
}

.product-modal-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 570px;
}

.product-modal-close,
.cart-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #64748b;
  background: #f1f5f9;
  font-size: 23px;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease;
}

.product-modal-close:hover,
.cart-close:hover {
  color: var(--navy);
  background: #e2e8f0;
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
}

.product-modal-image {
  min-height: 570px;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-right: 1px solid #e7edf3;
  padding: 34px;
  background: linear-gradient(145deg, #f1f9fd, #f8fafc);
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-modal-image img[hidden] {
  display: none;
}

.product-modal-placeholder {
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.product-modal-image.has-placeholder .product-modal-placeholder {
  display: flex;
}

.product-modal-placeholder strong {
  color: #111827;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.product-modal-placeholder strong b {
  color: var(--blue);
}

.product-modal-placeholder small {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 700;
}

.product-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px 42px;
}

.product-modal-category {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-modal-content h2 {
  padding-right: 24px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.product-modal-content > p {
  margin: 15px 0 25px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.product-modal-field {
  margin-top: 16px;
}

.product-modal-field label,
.cart-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-modal-field select,
.product-modal-field input,
.cart-form input,
.cart-form select,
.cart-form textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 12px;
  outline: 0;
  color: var(--text);
  background: #ffffff;
  font-size: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-modal-field select,
.product-modal-field input {
  height: 46px;
  padding: 0 13px;
}

.product-modal-field select:focus,
.product-modal-field input:focus,
.cart-form input:focus,
.cart-form select:focus,
.cart-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.quantity-control {
  width: 150px;
  height: 44px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  overflow: hidden;
  border: 1px solid #cfd8e3;
  border-radius: 12px;
  background: #ffffff;
}

.quantity-control button {
  border: 0;
  color: var(--blue-dark);
  background: #f3f9fc;
  font-size: 18px;
  font-weight: 750;
}

.quantity-control button:hover {
  background: var(--blue-soft);
}

.quantity-control input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--navy);
  background: #ffffff;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  -moz-appearance: textfield;
}

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

.add-to-cart-button {
  min-height: 48px;
  margin-top: 26px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  font-size: 11px;
  font-weight: 900;
  box-shadow: var(--shadow-blue);
  transition: transform 0.2s ease, background 0.2s ease;
}

.add-to-cart-button:hover {
  transform: translateY(-2px);
  background: var(--blue-hover);
}

.product-modal-content > small {
  margin-top: 11px;
  color: #7b8798;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

/* Order drawer */

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  border: 0;
  background: rgba(5, 11, 22, 0.58);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  backdrop-filter: blur(3px);
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.cart-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2100;
  width: min(430px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background: #ffffff;
  box-shadow: -24px 0 65px rgba(2, 8, 23, 0.2);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
}

.cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}

.cart-drawer-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 20px 24px;
}

.cart-drawer-header span {
  display: block;
  margin-bottom: 2px;
  color: var(--blue-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-drawer-header h2 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 22px;
  overscroll-behavior: contain;
}

.cart-empty {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 34px;
  color: var(--text-muted);
  text-align: center;
}

.cart-empty strong,
.cart-empty span {
  display: block;
}

.cart-empty strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 17px;
}

.cart-empty span {
  font-size: 11px;
  line-height: 1.6;
}

.cart-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 12px;
  border-bottom: 1px solid #e8edf2;
  padding: 16px 0;
}

.cart-item-image {
  width: 68px;
  height: 76px;
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px solid #e3e9ef;
  border-radius: 11px;
  padding: 5px;
  background: #f8fafc;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.cart-item-image .cart-item-brand {
  color: #111827;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.cart-item-image .cart-item-brand b {
  color: var(--blue);
}

.cart-item-info {
  min-width: 0;
}

.cart-item-info strong {
  display: block;
  overflow: hidden;
  color: var(--navy);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-info > span {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 9px;
}

.cart-item-controls {
  height: 36px;
  display: inline-grid;
  grid-template-columns: 36px 40px 36px;
  margin-top: 9px;
  overflow: hidden;
  border: 1px solid #d8e0e8;
  border-radius: 9px;
}

.cart-item-controls button {
  border: 0;
  color: var(--blue-dark);
  background: #f4f9fc;
  font-weight: 850;
}

.cart-item-controls button:hover:not(:disabled) {
  background: var(--blue-soft);
}

.cart-item-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.cart-item-controls span {
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #ffffff;
  font-size: 10px;
  font-weight: 850;
}

.cart-item-remove {
  align-self: start;
  border: 0;
  padding: 3px;
  color: #94a3b8;
  background: transparent;
  font-size: 9px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-item-remove:hover {
  color: #dc2626;
}

.cart-form {
  border-top: 1px solid var(--line);
  padding: 18px 22px 4px;
  background: #fbfcfd;
}

.cart-form label:not(:first-child) {
  margin-top: 13px;
}

.product-modal-field label span,
.cart-form label span {
  color: #8a96a6;
  font-size: 8px;
  font-weight: 650;
  text-transform: none;
}

.cart-form input,
.cart-form select {
  height: 42px;
  padding: 0 12px;
}

.cart-form textarea {
  min-height: 62px;
  resize: vertical;
  padding: 10px 12px;
  line-height: 1.5;
}

.cart-footer {
  padding: 17px 22px 20px;
  background: #fbfcfd;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  color: var(--text-muted);
  font-size: 10px;
}

.cart-summary strong {
  color: var(--navy);
  font-size: 11px;
}

.send-order-button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.send-order-button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: var(--green-dark);
}

.send-order-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.cart-footer > small {
  display: block;
  margin-top: 9px;
  color: #7b8798;
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.cart-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  z-index: 3000;
  max-width: calc(100% - 32px);
  border-radius: 999px;
  padding: 11px 18px;
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 16px 38px rgba(2, 8, 23, 0.25);
  font-size: 10px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.empty-state {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius);
  padding: 40px;
  color: var(--text-muted);
  background: #ffffff;
  text-align: center;
}

.empty-state strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 17px;
}

/* Wholesale */

.wholesale {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: 0 28px 70px rgba(11, 18, 32, 0.18);
}

.wholesale-blue {
  padding: 58px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 4%, rgba(14, 165, 233, 0.28), transparent 32%),
    var(--navy);
}

.section-eyebrow-light {
  color: #7dd3fc;
}

.wholesale-blue h2 {
  max-width: 520px;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.wholesale-blue p {
  max-width: 520px;
  margin-top: 20px;
  color: #bdc9d9;
  font-size: 14px;
  line-height: 1.75;
}

.wholesale-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.wholesale-box {
  min-height: 230px;
  padding: 35px;
  background: var(--navy-soft);
}

.wholesale-box > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 11px;
  color: #7dd3fc;
  background: rgba(14, 165, 233, 0.1);
  font-size: 9px;
  font-weight: 900;
}

.wholesale-box strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
}

.wholesale-box p {
  margin-top: 10px;
  color: #9fadc0;
  font-size: 11px;
  line-height: 1.65;
}

/* Biodegradable */

.bio {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  border: 1px solid #d5ead8;
  border-radius: var(--radius-lg);
  padding: 55px 62px;
  background:
    radial-gradient(circle at 90% 12%, rgba(34, 197, 94, 0.12), transparent 32%),
    linear-gradient(135deg, #f8fff9, #effaf1);
}

.bio > div:first-child {
  max-width: 710px;
}

.bio .section-eyebrow {
  color: #16813a;
}

.bio h2 {
  color: #102c1a;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.bio p {
  max-width: 650px;
  margin-top: 17px;
  color: #496253;
  font-size: 14px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: #137232;
  font-size: 12px;
  font-weight: 850;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.bio-icon {
  width: 145px;
  height: 145px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(22, 129, 58, 0.16);
  border-radius: 50%;
  color: #16813a;
  background: rgba(255, 255, 255, 0.65);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
  box-shadow: 0 18px 40px rgba(22, 129, 58, 0.09);
}

/* Location */

.map-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.location-info {
  padding: 46px;
  background: #fbfcfe;
}

.location-info h2 {
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.location-info > p {
  margin: 12px 0 25px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.location-detail {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  border-top: 1px solid #e7ecf1;
  padding: 15px 0;
}

.location-detail strong {
  color: var(--navy);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.location-detail span {
  color: var(--text-muted);
  font-size: 11px;
}

.location-primary-button {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4px 0 6px;
  border-radius: 16px;
  padding: 14px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  box-shadow: var(--shadow-blue);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.location-primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 133, 199, 0.24);
}

.location-primary-button:focus-visible,
.google-maps-button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.34);
  outline-offset: 3px;
}

.location-primary-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.location-primary-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-primary-copy {
  min-width: 0;
  flex: 1;
}

.location-primary-copy strong,
.location-primary-copy small {
  display: block;
}

.location-primary-copy strong {
  font-size: 14px;
  letter-spacing: 0.02em;
}

.location-primary-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  line-height: 1.45;
}

.location-primary-arrow {
  flex: 0 0 auto;
  font-size: 20px;
  transition: transform 0.2s ease;
}

.location-primary-button:hover .location-primary-arrow,
.google-maps-button:hover .google-maps-arrow {
  transform: translateX(3px);
}

.map {
  min-height: 455px;
  display: flex;
  flex-direction: column;
  background: #e7edf3;
}

.map iframe {
  width: 100%;
  min-height: 390px;
  flex: 1;
  display: block;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.map-action-bar {
  border-top: 1px solid #e0e7ef;
  padding: 13px 16px;
  background: #ffffff;
}

.google-maps-button {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #d8e2ec;
  border-radius: 14px;
  padding: 9px 14px;
  color: var(--navy);
  background: #ffffff;
  box-shadow: 0 7px 18px rgba(10, 42, 67, 0.08);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.google-maps-button:hover {
  transform: translateY(-2px);
  border-color: #80c6f0;
  box-shadow: 0 12px 24px rgba(10, 42, 67, 0.12);
}

.google-maps-button img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.google-maps-copy {
  min-width: 0;
  flex: 1;
}

.google-maps-copy strong,
.google-maps-copy small {
  display: block;
}

.google-maps-copy strong {
  font-size: 12px;
  letter-spacing: 0.02em;
}

.google-maps-copy small {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.4;
}

.google-maps-arrow {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 18px;
  transition: transform 0.2s ease;
}

/* Final CTA */

.cta {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 20%, rgba(56, 189, 248, 0.28), transparent 28%),
    linear-gradient(125deg, var(--navy), #0f3555);
  box-shadow: 0 26px 65px rgba(11, 18, 32, 0.2);
}

.cta::after {
  content: "";
  position: absolute;
  top: -100px;
  right: 16%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 50%;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.cta p {
  max-width: 650px;
  margin-top: 12px;
  color: #bdc9d9;
  font-size: 13px;
  line-height: 1.7;
}

.cta .btn {
  flex: 0 0 auto;
  color: var(--navy);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.cta .btn:hover {
  color: var(--blue-dark);
  background: #f5fbff;
}

/* Footer */

footer {
  border-top: 1px solid var(--line);
  color: #4e5a6c;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.75fr 0.75fr;
  gap: 70px;
  padding: 65px 0 46px;
}

.footer-about {
  max-width: 430px;
}

.footer-about p {
  margin-top: 19px;
  color: #657184;
  font-size: 12px;
  line-height: 1.8;
}

.footer-links strong {
  display: block;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin-bottom: 11px;
  color: #657184;
  font-size: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue-dark);
  transform: translateX(3px);
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: #7a8698;
  font-size: 10px;
  font-weight: 650;
}

/* WhatsApp */

.whatsapp-chat {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 1190;
  width: min(320px, calc(100% - 44px));
  border: 1px solid #dce4eb;
  border-radius: 20px;
  padding: 21px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  transform-origin: bottom right;
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
}

.whatsapp-chat::after {
  content: "";
  position: absolute;
  right: 21px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  border-right: 1px solid #dce4eb;
  border-bottom: 1px solid #dce4eb;
  background: #ffffff;
  transform: rotate(45deg);
}

.whatsapp-chat.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
  transition-delay: 0s;
}

.whatsapp-chat-close {
  position: absolute;
  top: 10px;
  right: 11px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #687588;
  background: #f1f5f9;
  font-size: 19px;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease;
}

.whatsapp-chat-close:hover {
  color: var(--navy);
  background: #e2e8f0;
}

.whatsapp-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 24px;
}

.whatsapp-chat-avatar {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.22);
}

.whatsapp-chat-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.whatsapp-chat-header strong,
.whatsapp-chat-header small {
  display: block;
}

.whatsapp-chat-header strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.whatsapp-chat-header small {
  margin-top: 1px;
  color: #738094;
  font-size: 9px;
  line-height: 1.35;
}

.whatsapp-chat > p {
  margin: 17px 0;
  border-radius: 13px;
  padding: 13px 14px;
  color: #445063;
  background: #f1f5f9;
  font-size: 11px;
  line-height: 1.6;
}

.whatsapp-chat-action {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-size: 11px;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-chat-action:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  display: grid;
  overflow: visible;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 16px 35px rgba(34, 197, 94, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before {
  content: "1";
  position: absolute;
  top: -2px;
  right: -2px;
  z-index: 2;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: #ef4444;
  font-size: 9px;
  font-weight: 900;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 42px rgba(34, 197, 94, 0.4);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive */

@media (max-width: 1080px) {
  .container {
    width: min(100% - 32px, 960px);
  }

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

  .wholesale-blue {
    padding: 46px;
  }

  .wholesale-box {
    min-height: 215px;
    padding: 28px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 132px;
  }

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

  .store-notice-inner {
    min-height: 31px;
  }

  .top-header {
    min-height: 70px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .logo {
    font-size: 23px;
  }

  .header-whatsapp {
    min-height: 40px;
    margin-left: auto;
  }

  .header-search {
    height: 42px;
    order: 3;
    flex-basis: 100%;
  }

  .category-scroll {
    min-height: 42px;
  }

  .section {
    padding: 68px 0;
  }

  .catalog-header {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .catalog-tools {
    width: 100%;
  }

  .product-count {
    text-align: left;
  }

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

  .product-modal-shell {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .product-modal-image {
    padding: 24px;
  }

  .product-modal-content {
    padding: 54px 34px 38px;
  }

  .product-image {
    height: 230px;
  }

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

  .wholesale-data {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .bio {
    padding: 48px;
  }

  .bio-icon {
    width: 115px;
    height: 115px;
    font-size: 23px;
  }

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

  .map {
    min-height: 0;
  }

  .map iframe {
    min-height: 320px;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 45px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.75fr 0.75fr;
    gap: 35px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 116px;
  }

  .container {
    width: min(100% - 24px, 520px);
  }

  .store-notice {
    display: none;
  }

  .top-header {
    min-height: auto;
    gap: 8px;
    padding: 10px 0;
  }

  .logo {
    font-size: 21px;
  }

  .header-whatsapp {
    display: none;
  }

  .header-cart {
    min-height: 42px;
    margin-left: auto;
    gap: 7px;
    padding: 4px 13px 4px 4px;
    font-size: 9px;
  }

  .header-cart-icon {
    width: 32px;
    height: 32px;
  }

  .header-cart-icon svg {
    width: 18px;
    height: 18px;
  }

  .header-cart-count {
    top: -6px;
    right: -5px;
    min-width: 22px;
    height: 22px;
    font-size: 8px;
  }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
    display: grid;
    flex: 0 0 auto;
    place-content: center;
    gap: 4px;
    border: 1px solid #d7e0e9;
    border-radius: 50%;
    color: var(--navy);
    background: #f8fafc;
  }

  .mobile-menu-toggle span {
    width: 15px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header-search input {
    padding-left: 14px;
    font-size: 11px;
  }

  .header-search button {
    min-width: 72px;
    padding: 0 13px;
    font-size: 10px;
  }

  .category-nav {
    max-height: 0;
    overflow: hidden;
    border-top: 0;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.2s ease, border-color 0.2s ease;
  }

  .category-nav.is-open {
    max-height: 190px;
    border-top: 1px solid #eef2f6;
    opacity: 1;
  }

  .category-scroll {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 10px 0 12px;
    overflow: visible;
  }

  .category-scroll a,
  .category-scroll button {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e3e9ef;
    border-radius: 10px;
    padding: 0 10px;
    background: #f8fafc;
    text-align: center;
  }

  .category-scroll a::after,
  .category-scroll button::after {
    display: none;
  }

  .category-scroll > :last-child {
    grid-column: 1 / -1;
    color: #ffffff;
    background: var(--green);
  }

  .section-eyebrow {
    font-size: 9px;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .section-title h2 {
    font-size: 2.25rem;
  }

  .filters {
    flex-wrap: nowrap;
    margin-right: -12px;
    margin-left: -12px;
    padding: 0 12px 7px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .products {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .product-modal {
    width: 100%;
    max-height: 92dvh;
    margin: auto 0 0;
    overflow-y: auto;
    border-radius: 22px 22px 0 0;
  }

  .product-modal-shell {
    display: block;
    min-height: 0;
  }

  .product-modal-close {
    position: fixed;
    top: calc(8dvh + 12px);
    right: 12px;
  }

  .product-modal-image {
    min-height: 245px;
    height: 245px;
    border-right: 0;
    border-bottom: 1px solid #e7edf3;
    padding: 22px;
  }

  .product-modal-image img {
    max-height: 210px;
  }

  .product-modal-content {
    padding: 28px 22px 30px;
  }

  .product-modal-content h2 {
    font-size: 2rem;
  }

  .product-modal-content > p {
    margin: 11px 0 17px;
    font-size: 11px;
  }

  .product-modal-field {
    margin-top: 13px;
  }

  .add-to-cart-button {
    position: sticky;
    bottom: 0;
    z-index: 2;
  }

  .cart-drawer {
    width: 100%;
  }

  .cart-drawer-header {
    min-height: 78px;
    padding: 15px 16px;
  }

  .cart-items {
    padding: 5px 16px;
  }

  .cart-form,
  .cart-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .cart-toast {
    bottom: 16px;
  }

  .product-image {
    height: auto;
    min-height: 210px;
    border-right: 1px solid #edf1f5;
    border-bottom: 0;
  }

  .product-photo {
    padding: 13px;
  }

  .product-tag {
    top: 10px;
    left: 9px;
    max-width: calc(100% - 18px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-body {
    min-height: 210px;
    padding: 17px 15px;
  }

  .product h3 {
    font-size: 13px;
  }

  .product-description {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .product-action {
    min-height: 40px;
    padding: 7px 9px;
    font-size: 9px;
  }

  .product-actions {
    gap: 7px;
  }

  .wholesale {
    border-radius: 20px;
  }

  .wholesale-blue {
    padding: 38px 25px;
  }

  .wholesale-blue h2 {
    font-size: 2.7rem;
  }

  .wholesale-data {
    grid-template-columns: 1fr;
  }

  .wholesale-box {
    min-height: auto;
    padding: 28px 25px;
  }

  .wholesale-box > span {
    margin-bottom: 18px;
  }

  .bio {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 20px;
    padding: 36px 26px;
  }

  .bio h2 {
    font-size: 2.45rem;
  }

  .bio-icon {
    width: 85px;
    height: 85px;
    font-size: 18px;
  }

  .location-info {
    padding: 32px 24px;
  }

  .location-detail {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .location-primary-button {
    min-height: 76px;
    padding: 12px;
  }

  .map iframe {
    min-height: 285px;
  }

  .map-action-bar {
    padding: 12px;
  }

  .google-maps-button {
    padding-inline: 12px;
  }

  .cta {
    border-radius: 20px;
    padding: 38px 25px;
  }

  .cta h2 {
    font-size: 2.35rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
    padding: 50px 0 36px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 16px 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-chat {
    right: 14px;
    bottom: 82px;
    width: min(294px, calc(100% - 28px));
    border-radius: 17px;
    padding: 18px;
  }

  .whatsapp-chat > p {
    margin: 14px 0;
  }
}

@media (max-height: 680px) {
  .cart-drawer {
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .cart-drawer-header,
  .cart-form,
  .cart-footer {
    flex-shrink: 0;
  }

  .cart-drawer-header {
    position: sticky;
    top: 0;
    z-index: 3;
    background: #ffffff;
  }

  .cart-items {
    min-height: 120px;
    flex: 0 0 min(38dvh, 220px);
  }
}

@media (max-width: 380px) {
  .header-cart {
    width: 42px;
    padding: 4px;
    gap: 0;
    justify-content: center;
  }

  .header-cart-label {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
