.flc-host {
  display: block !important;
  width: 100%;
}

.flc-host > [data-widget_type="slides.default"] {
  display: none !important;
}

.flc-carousel {
  --flc-orange: #f58220;
  position: relative;
  width: 100%;
  height: clamp(360px, 31vw, 500px);
  overflow: hidden;
  background: #171717;
  color: #fff;
  isolation: isolate;
}

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

.flc-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease;
}

.flc-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.flc-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.flc-image-promo,
.flc-image-delivery {
  object-position: 68% center;
}

.flc-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.72) 38%, rgba(10,10,10,.12) 67%, rgba(10,10,10,.03) 100%);
}

.flc-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(50%, 650px);
  height: 100%;
  padding: 42px clamp(70px, 8vw, 128px);
}

.flc-kicker {
  margin: 0 0 10px !important;
  color: var(--flc-orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
}

.flc-content h1,
.flc-content h2 {
  margin: 0 !important;
  color: #fff;
  font-size: clamp(34px, 3.6vw, 58px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.flc-content > p:not(.flc-kicker) {
  max-width: 520px;
  margin: 18px 0 24px !important;
  color: rgba(255,255,255,.92);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.4;
}

.flc-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 4px;
  background: var(--flc-orange);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease;
}

.flc-button:hover,
.flc-button:focus-visible {
  background: #dc6c0b;
  transform: translateY(-2px);
}

.flc-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: flex;
  width: 44px;
  height: 52px;
  padding: 0 !important;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 4px;
  background: rgba(12,12,12,.55);
  color: #fff;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.flc-arrow:hover,
.flc-arrow:focus-visible {
  background: var(--flc-orange);
  border-color: var(--flc-orange);
}

.flc-prev { left: 16px; }
.flc-next { right: 16px; }

.flc-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.flc-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.flc-dot.is-active {
  width: 30px;
  border-radius: 8px;
  background: var(--flc-orange);
  border-color: var(--flc-orange);
}

.flc-original-offers {
  display: none !important;
}

.flc-offers {
  --flc-orange: #f58220;
  padding: 44px 24px 50px;
  background: #f4f4f2;
  color: #202020;
}

.flc-offers-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.flc-offers-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.flc-offers-kicker {
  margin: 0 0 5px !important;
  color: var(--flc-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.flc-offers h2 {
  margin: 0 !important;
  color: #1d1d1d;
  font-size: clamp(27px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.flc-offers-all {
  color: #282828 !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--flc-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

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

.flc-offer-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  border: 1px solid #e1e1dd;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.flc-offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(0,0,0,.1);
}

.flc-offer-media {
  position: relative;
  display: flex;
  min-height: 235px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(145deg, #fff, #f0f0ed);
}

.flc-offer-media img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .25s ease;
}

.flc-offer-card-apolo .flc-offer-media {
  padding: 0;
  background: #191919;
}

.flc-offer-card-apolo .flc-offer-media img {
  height: 100%;
  min-height: 235px;
  object-fit: cover;
  object-position: right center;
  mix-blend-mode: normal;
}

.flc-offer-card:hover .flc-offer-media img {
  transform: scale(1.035);
}

.flc-offer-badge {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 4px;
  background: var(--flc-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.flc-offer-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 20px;
}

.flc-offer-body h3 {
  margin: 0 0 14px !important;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.25;
}

.flc-offer-body h3 a {
  color: #232323 !important;
  text-decoration: none !important;
}

.flc-offer-price {
  margin-bottom: 20px;
  color: #181818;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.flc-offer-price del {
  display: block;
  margin-bottom: 3px;
  color: #777;
  font-size: 13px;
  font-weight: 500;
}

.flc-offer-price ins {
  color: var(--flc-orange);
  text-decoration: none;
}

.flc-offer-link {
  color: #262626 !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  text-transform: uppercase;
}

.flc-offer-link span {
  color: var(--flc-orange);
  font-size: 18px;
}

.flc-shop-old-hero,
.flc-shop-top-pagination,
.flc-shop-hidden-control {
  display: none !important;
}

body.flc-shop-ready {
  background: #f5f5f3;
}

body.flc-shop-ready #cuponDescuento {
  display: none !important;
}

.flc-shop-hero {
  --flc-orange: #f58220;
  padding: 38px 24px 0;
  background: linear-gradient(135deg, #1b1b1b 0%, #2c2c2c 70%, #3d2817 100%);
  color: #fff;
}

.flc-shop-hero-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.flc-shop-breadcrumb {
  display: flex;
  gap: 9px;
  margin-bottom: 25px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.flc-shop-breadcrumb a {
  color: rgba(255,255,255,.8) !important;
  text-decoration: none !important;
}

.flc-shop-hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 60px;
  align-items: center;
}

.flc-shop-kicker {
  margin: 0 0 7px !important;
  color: var(--flc-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
}

.flc-shop-copy h1 {
  margin: 0 !important;
  color: #fff;
  font-size: clamp(38px, 4.3vw, 62px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.flc-shop-copy > p:not(.flc-shop-kicker) {
  max-width: 640px;
  margin: 16px 0 11px !important;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.45;
}

.flc-shop-total {
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.flc-shop-search label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
}

.flc-shop-search > div {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 7px;
  background: #fff;
}

.flc-shop-search input[type="search"] {
  min-width: 0;
  flex: 1;
  height: 52px;
  padding: 0 17px;
  border: 0;
  outline: 0;
  background: #fff;
  color: #222;
  font-size: 15px;
}

.flc-shop-search button {
  min-width: 105px;
  padding: 0 20px !important;
  border: 0;
  border-radius: 0;
  background: var(--flc-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.flc-shop-categories {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  margin-top: 31px;
  padding: 0 0 22px;
  scrollbar-width: thin;
}

.flc-shop-categories a {
  flex: 0 0 auto;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none !important;
  transition: background-color .2s ease, border-color .2s ease;
}

.flc-shop-categories a:hover,
.flc-shop-categories a[aria-current="page"] {
  border-color: var(--flc-orange);
  background: var(--flc-orange);
}

.flc-shop-toolbar {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 -24px;
  padding: 14px max(24px, calc((100vw - 1280px) / 2));
  background: #fff;
  color: #333;
  box-shadow: 0 7px 24px rgba(0,0,0,.07);
}

.flc-shop-toolbar .woocommerce-result-count,
.flc-shop-toolbar .woocommerce-ordering {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.flc-shop-toolbar .woocommerce-result-count {
  color: #666;
  font-size: 14px;
}

.flc-shop-toolbar select {
  min-width: 230px;
  height: 43px;
  padding: 0 38px 0 13px;
  border: 1px solid #d9d9d5;
  border-radius: 6px;
  background-color: #fff;
  color: #303030;
  font-size: 14px;
}

body.flc-shop-ready .elementor-element-0e4308f {
  padding: 34px 24px 64px !important;
  background: #f5f5f3 !important;
}

body.flc-shop-ready .elementor-element-7638f1d,
body.flc-shop-ready .elementor-element-c8dba2c {
  width: min(1280px, 100%) !important;
  max-width: 1280px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.flc-shop-ready .elementor-element-c8dba2c ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
  margin: 0 !important;
}

body.flc-shop-ready .elementor-element-c8dba2c li.product {
  display: flex !important;
  width: auto !important;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  margin: 0 !important;
  padding: 15px 15px 18px !important;
  overflow: hidden;
  border: 1px solid #e0e0db;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,.045);
  text-align: left !important;
  transition: transform .2s ease, box-shadow .2s ease;
}

body.flc-shop-ready .elementor-element-c8dba2c li.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 11px 28px rgba(0,0,0,.09);
}

body.flc-shop-ready li.product .woocommerce-LoopProduct-link {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  color: #242424 !important;
  text-decoration: none !important;
}

body.flc-shop-ready li.product img {
  width: 100% !important;
  height: 218px !important;
  margin: 0 0 15px !important;
  object-fit: contain;
  object-position: center;
}

body.flc-shop-ready li.product .woocommerce-loop-product__title {
  display: -webkit-box;
  min-height: 46px;
  margin: 0 0 12px !important;
  overflow: hidden;
  color: #292929;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.42 !important;
  text-align: left !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.flc-shop-ready li.product .onsale {
  position: absolute !important;
  top: 13px !important;
  right: auto !important;
  left: 13px !important;
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 6px 9px !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: var(--flc-orange, #f58220) !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  text-transform: uppercase;
}

body.flc-shop-ready li.product .woocommerce-LoopProduct-link {
  position: relative;
}

body.flc-shop-ready li.product .price {
  min-height: 29px;
  margin: auto 0 16px !important;
  color: #202020 !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  text-align: left !important;
}

body.flc-shop-ready li.product .price del {
  display: block;
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 500;
}

body.flc-shop-ready li.product .price ins {
  color: #e56e09;
  text-decoration: none;
}

.flc-consult-price {
  color: #b4560a;
  font-size: 15px;
  font-weight: 800;
}

body.flc-shop-ready li.product .button {
  width: 100%;
  min-height: 43px;
  margin: 0 !important;
  padding: 12px 14px !important;
  border-radius: 5px;
  background: #f58220 !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-align: center;
}

body.flc-shop-ready .woocommerce-pagination {
  margin-top: 36px;
}

body.flc-shop-ready .woocommerce-pagination ul {
  display: flex !important;
  justify-content: center;
  gap: 6px;
  border: 0 !important;
}

body.flc-shop-ready .woocommerce-pagination li {
  border: 0 !important;
}

body.flc-shop-ready .woocommerce-pagination a,
body.flc-shop-ready .woocommerce-pagination span {
  display: flex !important;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #fff !important;
  color: #333 !important;
}

body.flc-shop-ready .woocommerce-pagination .current {
  background: #f58220 !important;
  color: #fff !important;
}

@media (max-width: 1024px) {
  body.flc-shop-ready .elementor-element-c8dba2c ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .flc-shop-hero-main { gap: 34px; }
}

@media (max-width: 767px) {
  .flc-carousel { height: 430px; }
  .flc-image { object-position: 67% center; }
  .flc-shade {
    background: linear-gradient(90deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.7) 64%, rgba(8,8,8,.35) 100%);
  }
  .flc-content {
    width: 88%;
    padding: 38px 48px 48px 28px;
  }
  .flc-content h1,
  .flc-content h2 { font-size: clamp(30px, 9vw, 40px); }
  .flc-content > p:not(.flc-kicker) { font-size: 16px; }
  .flc-arrow { width: 34px; height: 44px; font-size: 30px; }
  .flc-prev { left: 5px; }
  .flc-next { right: 5px; }

  .flc-offers { padding: 34px 0 38px; }
  .flc-offers-header { align-items: flex-start; padding: 0 20px; }
  .flc-offers-all { display: none; }
  .flc-offers-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 20px 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .flc-offer-card {
    min-width: min(86vw, 360px);
    grid-template-columns: 43% 57%;
    scroll-snap-align: start;
  }
  .flc-offer-media { min-height: 220px; padding: 14px; }
  .flc-offer-media img { height: 175px; }
  .flc-offer-card-apolo .flc-offer-media img { min-height: 220px; }
  .flc-offer-body { padding: 18px 15px; }
  .flc-offer-body h3 { font-size: 16px; }
  .flc-offer-price { font-size: 19px; }

  .flc-shop-hero { padding: 27px 18px 0; }
  .flc-shop-breadcrumb { margin-bottom: 18px; }
  .flc-shop-hero-main { display: block; }
  .flc-shop-copy h1 { font-size: 38px; }
  .flc-shop-copy > p:not(.flc-shop-kicker) { font-size: 15px; }
  .flc-shop-search { margin-top: 24px; }
  .flc-shop-search button { min-width: 88px; padding: 0 13px !important; }
  .flc-shop-categories { margin-top: 25px; }
  .flc-shop-toolbar {
    min-height: 0;
    margin: 0 -18px;
    padding: 15px 18px;
    align-items: stretch;
    flex-direction: column;
  }
  .flc-shop-toolbar select { width: 100%; min-width: 0; }
  body.flc-shop-ready .elementor-element-0e4308f { padding: 24px 14px 45px !important; }
  body.flc-shop-ready .elementor-element-c8dba2c ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 11px !important;
  }
  body.flc-shop-ready .elementor-element-c8dba2c li.product {
    min-height: 365px;
    padding: 10px 10px 13px !important;
  }
  body.flc-shop-ready li.product img { height: 155px !important; margin-bottom: 11px !important; }
  body.flc-shop-ready li.product .woocommerce-loop-product__title { min-height: 42px; font-size: 14px !important; }
  body.flc-shop-ready li.product .price { font-size: 16px !important; }
  body.flc-shop-ready li.product .button { min-height: 40px; padding: 10px 8px !important; font-size: 12px !important; }
}

@media (prefers-reduced-motion: reduce) {
  .flc-slide,
  .flc-button { transition: none; }
}

.flc-contact-assistance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin: 22px 0 0;
  padding: 16px 20px;
  border-left: 4px solid #e47820;
  background: #f7f7f7;
  color: #202020;
  font-size: 16px;
  line-height: 1.5;
}
.flc-contact-assistance a {
  color: #9c490a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
