@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* END FONT IMPORT */


/* ROOT VARIABLES */
:root {
  --color-gray-50: #fafafa;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #eeeeee;
  --color-gray-300: #e0e0e0;
  --color-gray-400: #bdbdbd;
  --color-gray-500: #9e9e9e;
  --color-gray-600: #757575;
  --color-gray-700: #616161;
  --color-gray-800: #424242;
  --color-gray-900: #212121;

  --color-orange-50: #fffde8;
  --color-orange-100: #fff9c5;
  --color-orange-200: #fef59f;
  --color-orange-300: #fdf179;
  --color-orange-400: #fbec5a;
  --color-orange-500: #f9e73c;
  --color-orange-600: #fedb3e;
  --color-orange-700: #fcc335;
  --color-orange-800: #f9ab2d;
  --color-orange-900: #F5821F;
  --color-orange-950: #c96a17;


  --color-green-50: #eafce6;
  --color-green-100: #ccf5c2;
  --color-green-200: #a7ee99;
  --color-green-300: #7de66b;
  --color-green-400: #53e043;
  --color-green-500: #00d900;
  --color-green-600: #00c800;
  --color-green-700: #00b300;
  --color-green-800: #009f00;
  --color-green-900: #007b00;
}

/* END ROOT VARIABLES */


/* CSS RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  font-family: sans-serif;
  color: #000;
  font-family: "Poppins", sans-serif;
  background-color: var(--color-gray-200);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* END CSS RESET */

.container-box {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.header {
  display: flex;
  gap: 20px;
  padding: 20px 10px;
}

.header-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  border: var(--color-orange-900) 2px solid;
  border-left: none;
  border-right: none;
  padding: 0 10px;
}

.header-nav-links {
  display: flex;
  align-items: start;
  gap: 20px;
  flex: 1;
}

.header-nav-links__link {
  color: var(--color-orange-900);
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}

.header-nav-links__link #header-submenu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-nav-links__link svg {
  width: 20px;
  height: 20px;
}

.header-nav-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.header-nav-actions__action {
  color: var(--color-orange-900);
}

.header-nav-actions__action--relative {
  position: relative;
}

.header-nav-actions__action-icon {
  width: 32px;
  height: 32px;
}

.header__cart-item-counter {
  position: absolute;
  top: -4px;
  right: -8px;
  padding: 2px 5px;
  font-weight: 700;
  background-color: #fff;
  border-radius: 35%;
  font-size: .8rem;
  line-height: .8;
}

.header-search__wrap {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleX(0);
  transition: transform .75s ease;
  transform-origin: left;
}

.header-search__wrap.--active {
  transform: translateY(-50%) scaleX(1);
}

.header-search__input {
  width: 100%;
  height: 100%;
  padding: 6px 10px;
  outline-style: solid;
  outline-color: transparent;
}

.header-search__input:focus {
  border: 1px solid var(--color-orange-800);
}

.header-search__button {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.header-search__button svg {
  fill: var(--color-gray-600);
  height: 24px;
}

.header-submenu {
  position: absolute;
  width: 200px;
  background: #000000a3;
  top: 100%;
  left: 0;
  display: none;
  z-index: 20;
}

.header-submenu.--active {
  display: block;
}

.header-submenu__link {
  padding: 2px 10px;
  color: #fff;
  transition: all .45s ease;
  display: inline-block;
  width: 100%;
}
.header-submenu__link:hover {
  color: #000;
  background-color: var(--color-orange-900);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 40;
}

.mobile-menu-overlay.--active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .3s ease;
  z-index: 50;
  padding: 20px;
}

.mobile-menu.--active {
  transform: translateX(0);
}

.mobile-menu__close {
  background: none;
  border: none;
  margin-bottom: 20px;
}

.mobile-menu__nav h3 {
  margin: 16px 0 8px;
  font-size: 1rem;
  color: var(--color-orange-900);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu__list a {
  color: #333;
  font-weight: 600;
}

.mobile-menu__actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .header {
    justify-content: space-between;
    align-items: center;
  }

  .header-mobile-btn {
    background: none;
    border: none;
    cursor: pointer;
  }

  .header-mobile-btn svg {
    width: 32px;
    height: 32px;
    color: var(--color-orange-900);
  }
}

/* Footer */
.footer {
  padding: 40px 20px;
  border-top: 1px solid #ddd;
  color: #333;
}

.footer__container-box {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
}

.footer__col {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer__logo {
  width: 200px;
  margin-bottom: 20px;
}

/* NEWSLETTER */
.footer__newsletter-title {
  color: #ff7a00;
  font-weight: bold;
  font-size: 14px;
}

.footer__newsletter-text {
  font-size: 14px;
  margin: 6px 0 15px;
}

.footer__newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #999;
  padding-bottom: 6px;
  max-width: 250px;
}

.footer__newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 6px;
  outline: none;
}

.footer__newsletter-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.footer__links-title {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer__links-list {
  list-style: none;
  padding: 0;
}

.footer__link {
  display: block;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__col--payment-social>*:not(:first-child) {
  margin-top: 2.4rem;
}


.footer__payment-title,
.footer__social-title {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer__social-icons,
.footer__payment-icons {
  display: flex;
}

.footer__payment-icons img {
  height: 26px;
  margin-right: 10px;
}

.footer__social-icons svg {
  fill: var(--color-orange-900);
  height: 36px;
  margin-right: 12px;
}

.footer__bottom {
  text-align: center;
  font-size: 12px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  margin-top: 30px;
  color: #666;
}


/* Product Card section */
.product-cards-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  row-gap: 32px;
}

.product-card {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card__image {
  background: #ff7a00;
  height: 140px;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card__title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  color: #333;
  line-height: 1.3;
}

.product-card__divider {
  width: 100%;
  height: 1px;
  background: #bfbfbf;
  margin: 6px 0 8px;
}

.product-card__price {
  font-weight: bold;
  font-size: 18px;
  margin: 6px 0 20px 0;
  color: #000;
}

.product-card__button {
  width: 100%;
  padding: 8px 0;
  background: #32a852;
  border: none;
  border-radius: 6px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  margin-top: auto;
}

.product-card__button:hover {
  background: #279143;
}


/* Whatsapp flutuante */

.whatsapp__float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp__float svg {
  height: 3rem;
}