:root {
  --page-gutter: clamp(20px, 4.4vw, 84px);
  --green: #f8efda;
  --black: #0b0b0b;
  --white: #fff;
  --nav-height: 90px;
  --promo-height: 35px;
}

html,
body,
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}

html,
body {
  overflow-x: hidden;
}

@font-face {
  font-family: "Neue Haas Display";
  src: url("/fonts/NeueHaasDisplayBlack.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy Bold";
  src: url("/fonts/GilroyBold.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy Extra Bold";
  src: url("/fonts/GilroyExtraBold.otf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy Medium";
  src: url("/fonts/GilroyMedium.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  font-family: "Manrope", Arial, sans-serif;
}

button,
a {
  color: inherit;
}

.fs-7 {
  font-size: .875rem !important;
}

.fs-8 {
  font-size: .75rem !important;
}

.announcement {
  align-items: center;
  background: #f6ecc8 !important;
  display: flex;
  font-weight: 500;
  height: var(--promo-height);
  justify-content: center;
  padding: 0 30px;
}

.announcement p {
  margin: 0;
}

.announcement a {
  font-weight: 600;
  text-underline-offset: 3px;
}

.announcement button {
  background: transparent;
  border: 0;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
}

.main-nav {
  background: #3b5545;
  height: var(--nav-height);
  padding: 0;
  position: relative;
  z-index: 10;
}

.nav-shell {
  align-items: center;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  height: 100%;
  padding-inline: var(--page-gutter);
}

.nav-links {
  display: flex;
  gap: 65px;
}

.nav-links a {
  font-size: 15px;
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  background: currentColor;
  bottom: -5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 100%;
  transition: right .25s ease;
}

.nav-links a:hover::after {
  right: 0;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1;
  text-decoration: none;
}

.brand sup {
  font-family: Arial, sans-serif;
  font-size: 9px;
  margin-left: 2px;
  top: -2.1em;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 31px;
  justify-self: end;
}

.hero {
  background: #463729;
  min-height: calc(100svh - var(--promo-height) - var(--nav-height));
  overflow: hidden;
  position: relative;
}

.hero-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 45%;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(10, 10, 8, .65) 0%,
    rgba(16, 12, 9, .24) 52%,
    rgba(0, 0, 0, .16) 100%
  );
  inset: 0;
  position: absolute;
}

.hero-content {
  align-items: center;
  display: flex;
  min-height: calc(100svh - var(--promo-height) - var(--nav-height));
  padding: 7vh 5.6% 8vh;
  position: relative;
  z-index: 2;
}

.hero-copy {
  color: var(--white);
  max-width: 850px;
}

.hero-copy h1 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(58px, 5.1vw, 94px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.12;
  margin: 0 0 24px;
}

.hero-copy p {
  font-size: clamp(17px, 1.35vw, 24px);
  margin: 0 0 39px;
}

.hero-actions {
  display: flex;
  gap: 22px;
}

.hero-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 17px;
  font-weight: 600;
  gap: 9px;
  justify-content: center;
  min-width: 220px;
  padding: 18px 33px;
  text-decoration: none;
  transition: transform .25s, background-color .25s;
}

.hero-button:hover {
  transform: translateY(-3px);
}

.hero-button span {
  font-size: 23px;
  line-height: .7;
  transition: transform .25s;
}

.hero-button:hover span {
  transform: translateX(4px);
}

.primary-button {
  background: var(--green);
}

.light-button {
  background: var(--white);
}

.video-control {
  align-items: center;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  bottom: 28px;
  display: flex;
  height: 47px;
  justify-content: center;
  position: absolute;
  right: 28px;
  transition: transform .25s ease;
  width: 47px;
  z-index: 3;
}

.video-control:hover {
  transform: scale(1.08);
}

.video-control:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.pause-icon {
  border-left: 5px solid var(--black);
  border-right: 5px solid var(--black);
  height: 17px;
  width: 14px;
}

.play-icon {
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--black);
  border-top: 9px solid transparent;
  height: 0;
  margin-left: 4px;
  width: 0;
}

.menu-button {
  border: 0;
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 7px 2px;
}

.menu-button:focus {
  box-shadow: none;
}

.menu-button span {
  background: var(--black);
  height: 2px;
  width: 25px;
}

@media (max-width: 991.98px) {
  :root {
    --promo-height: 48px;
    --nav-height: 82px;
  }

  .announcement {
    font-size: 13px;
    padding: 0 14px;
    text-align: center;
  }

  .announcement button {
    font-size: 28px;
  }

  .nav-shell {
    padding-inline: var(--page-gutter);
  }

  .menu-button {
    display: flex;
  }

  .nav-links {
    background: #fafaf8;
    flex-direction: column;
    gap: 20px;
    left: 0;
    padding: 25px;
    position: absolute;
    right: 0;
    top: var(--nav-height);
  }

  .brand {
    font-size: 29px;
  }

  .nav-actions {
    gap: 19px;
  }

  .account-icon {
    display: none;
  }

  .hero-content {
    align-items: flex-end;
    padding: 60px 28px 100px;
  }

  .hero-copy h1 {
    font-size: clamp(45px, 10vw, 66px);
  }
}

@media (max-width: 575.98px) {
  .announcement {
    padding: 0 6px;
  }

  .announcement p {
    font-size: 11px;
    white-space: nowrap;
  }

  .nav-shell {
    padding-inline: var(--page-gutter);
  }

  .brand {
    font-size: 24px;
  }

  .nav-actions {
    gap: 12px;
  }

  .search-icon,
  .bag-icon {
    transform: scale(.88);
  }

  .hero-video {
    object-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(8, 7, 5, .74), rgba(8, 7, 5, .04) 75%);
  }

  .hero-content {
    padding: 45px 20px 92px;
  }

  .hero-copy h1 {
    font-size: 43px;
    line-height: 1.05;
    margin-bottom: 18px;
  }

  .hero-copy p {
    font-size: 16px;
    margin-bottom: 27px;
  }

  .hero-actions {
    gap: 11px;
  }

  .hero-button {
    flex: 1;
    font-size: 14px;
    min-width: 0;
    padding: 15px;
    white-space: nowrap;
  }

  .video-control {
    bottom: 20px;
    height: 43px;
    right: 18px;
    width: 43px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.fw-500{ font-weight: 500; }

.fw-600{ font-weight: 600; }

.fw-700{ font-weight: 700; }

.fw-800{ font-weight: 800; }

.fw-900{ font-weight: 900; }

.text-gray-100 {
  color: #f3f4f6 !important;
}

.text-gray-200 {
  color: #e5e7eb !important;
}

.text-gray-300 {
  color: #d1d5db !important;
}

.text-gray-400 {
  color: #9ca3af !important;
}

.text-gray-500 {
  color: #6b7280 !important;
}

.text-gray-600 {
  color: #4b5563 !important;
}

.text-gray-700 {
  color: #374151 !important;
}

.text-gray-800 {
  color: #1f2937 !important;
}



/* STORY *****************************************/


/* SECCIÓN DE COBERTURA */


/*********************************************************************/

/* CATÁLOGO DE PRODUCTOS */



/* FOOTER REVEAL */



/* CARRITO LATERAL */

.nav-cart-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  display: inline-flex;
  justify-content: center;
  padding: 0;
  position: relative;
}

.nav-cart-count {
  align-items: center;
  background: #e0eccc;
  border: 2px solid #414f23;
  border-radius: 999px;
  color: #414f23;
  display: flex;
  font-size: 9px;
  font-weight: 800;
  height: 19px;
  justify-content: center;
  min-width: 19px;
  opacity: 0;
  padding-inline: 4px;
  position: absolute;
  right: -10px;
  top: -9px;
  transform: scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-cart-count.has-items {
  opacity: 1;
  transform: scale(1);
}

.cart-open {
  overflow: hidden;
}

.cart-drawer {
  inset: 0;
  pointer-events: none;
  position: fixed;
  visibility: hidden;
  z-index: 1200;
}

.cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.cart-drawer__backdrop {
  background: rgba(16, 29, 24, 0.48);
  border: 0;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.35s ease;
  width: 100%;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer__panel {
  background: #f7f6f2;
  box-shadow: -24px 0 70px rgba(10, 31, 23, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: auto;
  max-width: 470px;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  width: min(100%, 470px);
}

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

.cart-drawer__header {
  align-items: center;
  border-bottom: 1px solid rgba(39, 70, 58, 0.14);
  display: flex;
  justify-content: space-between;
  padding: 28px 30px 22px;
}

.cart-drawer__header p {
  color: #778078;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.cart-drawer__header h2 {
  color: #1f2937;
  font-family: "Neue Haas Display", Arial, sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.cart-drawer__close {
  align-items: center;
  background: #e7eadf;
  border: 0;
  border-radius: 50%;
  color: #414f23;
  display: flex;
  font-size: 25px;
  height: 44px;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  width: 44px;
}

.cart-drawer__close:hover {
  background: #e0eccc;
  transform: rotate(5deg);
}

.cart-drawer__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 22px 30px;
}

.cart-empty {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 45px 0;
  text-align: center;
}

.cart-empty[hidden],
.cart-drawer__footer[hidden] {
  display: none;
}

.cart-empty > span {
  align-items: center;
  background: #e0eccc;
  border-radius: 50%;
  color: #414f23;
  display: flex;
  font-size: 34px;
  height: 78px;
  justify-content: center;
  margin-bottom: 22px;
  width: 78px;
}

.cart-empty h3 {
  color: #1f2937;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}

.cart-empty p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 29ch;
}

.cart-empty__button {
  background: #414f23;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  margin-top: 24px;
  padding: 13px 22px;
}

.cart-items {
  display: grid;
  gap: 2px;
}

.cart-item {
  align-items: center;
  border-bottom: 1px solid rgba(39, 70, 58, 0.13);
  display: grid;
  gap: 15px;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  padding: 16px 0;
}

.cart-item__image {
  background: #ecebe6;
  border-radius: 14px;
  height: 82px;
  object-fit: cover;
  width: 82px;
}

.cart-item__copy h3 {
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 4px;
}

.cart-item__copy > p {
  color: #7b827d;
  font-size: 11px;
  margin: 0 0 12px;
}

.cart-item__controls {
  align-items: center;
  border: 1px solid rgba(39, 70, 58, 0.18);
  border-radius: 999px;
  display: inline-flex;
  overflow: hidden;
}

.cart-item__controls button {
  background: transparent;
  border: 0;
  color: #414f23;
  font-size: 16px;
  height: 28px;
  width: 30px;
}

.cart-item__controls span {
  color: #1f2937;
  font-size: 12px;
  font-weight: 800;
  min-width: 20px;
  text-align: center;
}

.cart-item__aside {
  align-self: stretch;
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item__price {
  color: #414f23;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.cart-item__remove {
  background: transparent;
  border: 0;
  color: #8b928d;
  font-size: 17px;
  padding: 4px;
}

.cart-drawer__footer {
  background: #ffffff;
  border-top: 1px solid rgba(39, 70, 58, 0.14);
  padding: 21px 30px 26px;
}

.cart-drawer__subtotal {
  align-items: center;
  color: #1f2937;
  display: flex;
  font-size: 15px;
  justify-content: space-between;
}

.cart-drawer__subtotal strong {
  color: #414f23;
  font-size: 22px;
}

.cart-drawer__footer > p {
  color: #7b827d;
  font-size: 10px;
  margin: 7px 0 18px;
}

.cart-checkout {
  align-items: center;
  background: #414f23;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: space-between;
  padding: 15px 20px;
  width: 100%;
}

.cart-checkout span {
  font-size: 20px;
}

@media (max-width: 575.98px) {
  .cart-drawer__panel {
    max-width: none;
    width: calc(100% - 18px);
  }

  .cart-drawer__header {
    padding: 22px 20px 18px;
  }

  .cart-drawer__body {
    padding: 16px 20px;
  }

  .cart-drawer__footer {
    padding: 18px 20px 22px;
  }

  .cart-item {
    gap: 11px;
    grid-template-columns: 68px minmax(0, 1fr) auto;
  }

  .cart-item__image {
    height: 68px;
    width: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-drawer__backdrop,
  .cart-drawer__panel,
  .nav-cart-count {
    transition: none;
  }
}
