@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Fjalla+One&display=swap);
:root {
  scroll-behavior: auto;
  /* El mockup de referencia no usa esquinas redondeadas en ningún lado */
  --bs-border-radius: 0;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
  --bs-border-radius-xl: 0;
  --bs-border-radius-xxl: 0;
  --bs-border-radius-pill: 0;
  --text-main: #1c1c1c;
  --text-sub: #555555;
  --bg-page: #ffffff;
  --bg-secondary: #f9f9f9;
  --border: #e2e2e2;
  --accent: #4bac52;
  --header-bg: #1b1b1b;
  --header-text: #ffffff;
  --header-nav-hover: #fdfa22;
  --color-accent: #05aa73;
  --color-accent-hover: #3ae6db;
  --color-primary: #0d6efd;
  --color-secondary: #6c757d;
  --color-success: #198754;
  --color-info: #0dcaf0;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  --color-light: #f8f9fa;
  --color-dark: #111827;
  --color-text: #2d2d2d;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-secondary: #f9fafb;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --text-primary: #000;
  --announcement-height: 38px;
  --header-height: 80px;
  --heading-font-weight: 500;
  --heading-font-style: normal;
  --heading-text-transform: uppercase;
  --heading-letter-spacing: 0.2em;
  --text-font-weight: 400;
  --text-font-style: normal;
  --text-letter-spacing: 0.15em;
  --button-text-transform: uppercase;
  --button-letter-spacing: 0.2em;
  /* Font sizes */
  --text-heading-size-factor: 1;
  --text-h1: max(
    0.6875rem,
    clamp(1.375rem, 1.146341463414634rem + 0.975609756097561vw, 2rem) *
      var(--text-heading-size-factor)
  );
  --text-h2: max(
    0.6875rem,
    clamp(1.25rem, 1.0670731707317074rem + 0.7804878048780488vw, 1.75rem) *
      var(--text-heading-size-factor)
  );
  --text-h3: max(
    0.6875rem,
    clamp(1.125rem, 1.0335365853658536rem + 0.3902439024390244vw, 1.375rem) *
      var(--text-heading-size-factor)
  );
  --text-h4: max(
    0.6875rem,
    clamp(1rem, 0.9542682926829268rem + 0.1951219512195122vw, 1.125rem) *
      var(--text-heading-size-factor)
  );
  --text-h5: calc(0.875rem * var(--text-heading-size-factor));
  --text-h6: calc(0.75rem * var(--text-heading-size-factor));
  --text-xs: 0.6875rem;
  --text-sm: 0.75rem;
  --text-base: 0.6875rem;
  --text-lg: 0.8125rem;
  --text-xl: 0.9375rem;
}

body {
  line-height: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  font-family: "Fjalla One", sans-serif;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-weight: 400;
  margin-top: 0;
}

a {
  text-decoration: none;
  color: #000;
}

.bg-none {
  background: none !important;
}

.wrapper-dark {
  background-color: #242424;
}

.btn {
  border-radius: 0;
}

.btn-link {
  text-decoration: none;
}

.text-accent {
  color: var(--color-accent);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-outline-accent {
  background-color: transparent;
  border: 1px solid var(--color-accent) !important;
}

.form-control {
  box-shadow: none !important;
  outline: none !important;
}

.bg-gray {
  background: #f5f5f5;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

.breadcrumbs {
  padding: 20px 40px;
  font-size: 12px;
  text-transform: uppercase;
  background: var(--bg-secondary);
}
.breadcrumbs ol {
  margin-bottom: 0;
}

.section-title {
  text-transform: uppercase;
  display: block;
  border-bottom: 3px solid #c9caca;
}
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
  font-size: 20px;
  line-height: 22px;
  color: #1c1c1c;
  text-transform: uppercase;
}

.password-form input {
  border-color: #dee2e6 !important;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  box-shadow: none !important;
}
.password-form button {
  border-color: #dee2e6 !important;
  border-left: none;
  background: none !important;
}
.password-form.is-invalid input {
  border-color: #dc3545 !important;
}
.password-form.is-invalid button {
  border-color: #dc3545 !important;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  .custom-row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .custom-row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .custom-row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .custom-row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
.custom-col-5 {
  flex: 0 0 20%;
  max-width: 20%;
  padding-right: 15px;
  padding-left: 15px;
  position: relative;
  width: 100%;
  min-height: 1px;
}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  .custom-col-5 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .custom-col-5 {
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .custom-col-5 {
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .custom-col-5 {
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-col-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.accordion-button {
  border-radius: 0 !important;
}

.header-area {
  background: #fff;
}
.header-area .header-links {
  font-family: "Fjalla One", sans-serif;
  font-size: 1rem;
}
.header-area .header-top {
  background: var(--header-bg);
  font-size: 13px;
}
.header-area .header-top button {
  font-size: inherit;
}
.header-area .header-middle .logo {
  font-family: "Fjalla One", sans-serif;
  text-transform: uppercase;
}
.header-area .header-middle .logo img {
  max-width: 400px;
  max-height: 80px;
}
.header-area .header-middle .header-links li {
  border-color: var(--border) !important;
}
.header-area .header-middle .header-links li > a,
.header-area .header-middle .header-links li .login,
.header-area .header-middle .header-links li .cart-button {
  font-family: inherit;
  font-size: inherit;
  color: var(--text-sub);
}
.header-area .header-middle .header-links li > a:hover, .header-area .header-middle .header-links li > a:focus,
.header-area .header-middle .header-links li .login:hover,
.header-area .header-middle .header-links li .login:focus,
.header-area .header-middle .header-links li .cart-button:hover,
.header-area .header-middle .header-links li .cart-button:focus {
  color: var(--text-main);
}
.header-area .header-middle .header-links li .cart-button .cart-icon {
  fill: var(--color-accent);
  stroke: var(--color-accent);
}
.header-area .header-nav-bar {
  background: var(--header-bg);
  font-family: "Fjalla One", sans-serif;
}
.header-area .header-nav-bar .nav-link {
  font-size: 20px;
  position: relative;
  color: var(--header-text);
  border-color: rgba(255, 255, 255, 0.15) !important;
  transition: color 0.3s ease;
}
.header-area .header-nav-bar .nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 5px;
  background: var(--color-accent-hover);
  transition: all 0.3s ease;
}
.header-area .header-nav-bar .nav-link:hover, .header-area .header-nav-bar .nav-link:focus {
  color: var(--header-nav-hover);
}
.header-area .header-nav-bar .nav-link:hover::before, .header-area .header-nav-bar .nav-link:focus::before {
  width: 100%;
  left: 0;
}

.nav-drawer .btn-close {
  color: #fff !important;
}

.footer {
  background: #2e2e2e;
  padding: 48px 0 30px;
  color: #787878;
  text-transform: uppercase;
  font-size: 14px;
}
.footer h4 {
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 27px;
}
.footer ul li a {
  text-transform: uppercase;
  color: #787878;
  text-decoration: none;
}
.footer .tel {
  display: block;
  font-size: 20px;
  margin-top: 15px;
  color: #05aa73;
}

.homepage .section {
  float: left;
  width: 100%;
}
.homepage .hero-container {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 12px;
}
.homepage .hero-row .carousel-item img {
  object-fit: cover;
}
.homepage .brand-banner {
  display: block;
  margin-top: 3px;
  overflow: hidden;
}
.homepage .brand-banner img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}
.homepage .brand-banner:hover img {
  transform: scale(1.1);
}
.homepage .categories-diagonal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  aspect-ratio: 1/1;
}
.homepage .categories-diagonal-grid .category-tile {
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #242424 0px, #242424 18px, #2e2e2e 18px, #2e2e2e 20px);
}
.homepage .categories-diagonal-grid .category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(55% 0, 100% 0, 100% 100%, 30% 100%, 0 55%);
}
.homepage .categories-diagonal-grid .category-tile .category-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  color: var(--header-nav-hover);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.homepage .categories-diagonal-grid .category-tile .category-cta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
  text-transform: var(--button-text-transform);
  letter-spacing: var(--button-letter-spacing);
  text-decoration: none;
}
.homepage .categories-diagonal-grid .category-tile .category-cta svg {
  color: var(--header-nav-hover);
}
.homepage .product-section .slick-track {
  display: flex;
}
.homepage .product-section .slick-slide {
  height: auto;
}
.homepage .product-section .slick-slide > div {
  height: 100%;
}
.homepage .product-section .px-2 {
  height: 100%;
}
.homepage .brands-slider .brand-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  outline: none;
}
.homepage .brands-slider .brand-slide img {
  max-height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.homepage .brands-slider .brand-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.homepage .brands-slider .brand-slide span {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-align: center;
}
.homepage .mb-50 {
  margin-bottom: 50px;
}
.homepage .mb-80 {
  margin-bottom: 80px;
}
.homepage .ptb-150 {
  padding: 150px 0;
}

.status-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border: 1.5px solid;
  white-space: nowrap;
}

.status-pill-submitted {
  border-color: #0d6efd;
  color: #0d6efd;
}

.status-pill-paid {
  border-color: #198754;
  color: #198754;
}

.status-pill-in_progress {
  border-color: #0dcaf0;
  color: #0dcaf0;
}

.status-pill-pending_payment {
  border-color: #fd7e14;
  color: #fd7e14;
}

.status-pill-ready {
  border-color: #6f42c1;
  color: #6f42c1;
}

.status-pill-delivered {
  border-color: #6c757d;
  color: #6c757d;
}

.status-pill-cancelled {
  border-color: #dc3545;
  color: #dc3545;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card .image-wrap {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card .image-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.product-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.product-card .title-price-wrap a {
  font-size: 16px;
  color: var(--color-accent);
  text-transform: uppercase;
}
.product-card .actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.product-card .btn-add-to-cart {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--header-bg);
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  text-transform: var(--button-text-transform);
  letter-spacing: var(--button-letter-spacing);
  cursor: pointer;
  transition: background 0.2s;
}
.product-card .btn-add-to-cart svg {
  color: var(--color-accent);
  transition: color 0.2s;
}
.product-card .btn-add-to-cart:hover:not(:disabled) {
  background: var(--color-accent);
}
.product-card .btn-add-to-cart:hover:not(:disabled) svg {
  color: var(--header-nav-hover);
}
.product-card .btn-add-to-cart:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.product-card .fav-btn {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
}
.product-card .fav-btn.is-active {
  color: #ff2d95;
}

.category-accordion .accordion-item {
  border: none;
}
.category-accordion .accordion-button {
  background-color: #383838;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 20px;
  box-shadow: none;
}
.category-accordion .accordion-button::after {
  filter: invert(1);
}
.category-accordion .accordion-button:not(.collapsed) {
  background-color: #383838;
  color: #fff;
  box-shadow: none;
}
.category-accordion .accordion-button:focus {
  box-shadow: none;
}
.category-accordion .accordion-body {
  padding: 0;
  border: 1px solid var(--border);
  border-top: none;
}

.category-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.category-link svg {
  color: var(--color-accent);
}
.category-link:last-child {
  border-bottom: none;
}
.category-link:hover {
  background-color: var(--bg-secondary);
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 16px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-main);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}
.brand-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-card:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.toolbar-pagination .text-success {
  display: none;
}
