﻿:root {
  --fl-primary: #153663;
  --fl-primary-dark: #0e2444;
  --fl-primary-light: #1e4a8a;
  --fl-accent: #d84f35;
  --fl-accent-light: #e8714f;
  --fl-accent-dark: #b8402a;
  --fl-warm-gray: #6c757d;
  --fl-surface: #f8f9fa;
  --fl-surface-alt: #f0f2f5;
  --fl-text: #1a1a2e;
  --fl-header-h: 0px;
  --fl-radius: 0.75rem;
  --fl-radius-sm: 0.5rem;
  --fl-shadow: 0 8px 30px rgba(13, 38, 69, 0.12);
  --fl-shadow-sm: 0 2px 14px rgba(13, 38, 69, 0.07);
  --fl-shadow-lg: 0 14px 38px rgba(13, 38, 69, 0.22);
}
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: #1a1a2e;
}
a {
  text-decoration: none;
}
.skip-link {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2000;
  background: var(--fl-primary);
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
}
.site-header {
  background: #fff;
}
.site-header--sticky {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 14px rgba(13, 38, 69, 0.07);
}
.header-topbar {
  background: var(--fl-primary);
  color: hsla(0, 0%, 100%, 0.85);
  font-size: 0.82rem;
}
.header-topbar__inner {
  min-height: 38px;
}
.header-topbar a,
.header-topbar__link {
  color: hsla(0, 0%, 100%, 0.85);
  transition: color 0.15s ease;
}
.header-topbar a:hover,
.header-topbar__link:hover {
  color: #fff;
}
.header-topbar .dropdown-menu {
  font-size: 0.85rem;
}
.header-main {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--fl-surface-alt);
}
.header-main__logo .logo {
  max-height: 48px;
  width: auto;
}
.header-main__logo .logo-text {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--fl-primary);
}
.header-main__search {
  max-width: 560px;
  margin: 0 1.5rem;
}
.header-toggler,
.header-search-toggle {
  font-size: 1.5rem;
  color: var(--fl-primary);
  line-height: 1;
}
.header-trust__item {
  color: var(--fl-primary);
}
.header-trust__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--fl-surface);
  color: var(--fl-accent);
  font-size: 1.15rem;
}
.header-trust__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header-trust__text strong {
  font-size: 0.82rem;
  font-weight: 700;
}
.header-trust__text small {
  font-size: 0.72rem;
  color: var(--fl-warm-gray);
}
.header-nav {
  background: var(--fl-surface);
  border-bottom: 1px solid var(--fl-surface-alt);
}
.header-nav__list {
  gap: 0.25rem;
}
.header-nav__item {
  position: static;
}
.header-nav__item--mega {
  position: relative;
}
.header-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--fl-primary);
  background: none;
  border: 0;
  cursor: pointer;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}
.header-nav__link:hover,
.header-nav__link.is-active {
  color: var(--fl-accent);
}
.header-nav__link--accent {
  color: var(--fl-accent);
}
.header-nav__link--accent:hover {
  color: var(--fl-accent-dark);
}
.header-nav__caret {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}
.header-nav__item--mega.is-open .header-nav__caret {
  transform: rotate(180deg);
}
.megamenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  box-shadow: var(--fl-shadow);
  border-top: 3px solid var(--fl-accent);
  border-radius: 0 0 var(--fl-radius) var(--fl-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
  z-index: 1040;
}
.header-nav__item--mega.is-open .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.megamenu__inner {
  padding: 1.5rem 0 1.25rem;
}
.megamenu__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 1rem 0.5rem;
  border: 1px solid var(--fl-surface-alt);
  border-radius: var(--fl-radius);
  background: var(--fl-surface);
  color: var(--fl-primary);
  height: 100%;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.megamenu__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fl-shadow);
  border-color: var(--fl-accent);
  color: var(--fl-accent);
}
.megamenu__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--fl-accent);
  font-size: 1.5rem;
  box-shadow: inset 0 0 0 1px var(--fl-surface-alt);
}
.megamenu__card:hover .megamenu__icon {
  background: var(--fl-accent);
  color: #fff;
}
.megamenu__label {
  font-size: 0.85rem;
  font-weight: 600;
}
.megamenu__footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--fl-surface-alt);
  gap: 0.75rem;
}
.megamenu__viewall {
  font-weight: 700;
  color: var(--fl-primary);
}
.megamenu__viewall:hover {
  color: var(--fl-accent);
}
.megamenu__promo {
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  background: var(--fl-accent);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}
.megamenu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 38, 69, 0.45);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    visibility 0.22s;
  z-index: 1029;
}
.megamenu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.megamenu-mobile {
  padding-left: 1rem;
}
.megamenu-mobile__link {
  color: var(--fl-primary);
  font-weight: 500;
}
.megamenu-mobile__link:hover {
  color: var(--fl-accent);
}
.header-offcanvas__nav .nav-link {
  color: var(--fl-primary);
  font-weight: 600;
  padding: 0.65rem 0.25rem;
}
.header-offcanvas__nav .nav-link:hover {
  color: var(--fl-accent);
}
.breadcrumb-wrapper {
  background: var(--fl-surface);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--fl-surface-alt);
}
.breadcrumb-wrapper .breadcrumb {
  font-size: 0.85rem;
}
.breadcrumb-wrapper .breadcrumb-item a {
  color: var(--fl-primary-light);
}
.breadcrumb-wrapper .breadcrumb-item.active {
  color: var(--fl-warm-gray);
}
.notifications {
  padding-top: 1rem;
}
.notifications .alert ul {
  list-style: none;
  padding-left: 0;
}
.notifications .alert ul li + li {
  margin-top: 0.25rem;
}
.site-footer {
  margin-top: auto;
}
.footer-main {
  background: var(--fl-primary-dark);
  color: hsla(0, 0%, 100%, 0.82);
  padding: 3rem 0 2rem;
}
.footer-col__title {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.footer-col__list li + li {
  margin-top: 0.55rem;
}
.footer-col__list--contact li {
  display: flex;
  align-items: flex-start;
}
.footer-link {
  color: hsla(0, 0%, 100%, 0.78);
  transition:
    color 0.15s ease,
    padding 0.15s ease;
}
.footer-link:hover {
  color: var(--fl-accent-light);
  padding-left: 3px;
}
.footer-bottom {
  background: #0a1c33;
  color: hsla(0, 0%, 100%, 0.6);
  padding: 1rem 0;
  font-size: 0.82rem;
}
.footer-bottom__payments {
  font-size: 1.35rem;
  color: hsla(0, 0%, 100%, 0.7);
}
@media (max-width: 991.98px) {
  .header-main__search--mobile {
    width: 100%;
  }
}
.fl-section {
  padding: 3rem 0;
}
.fl-section:nth-of-type(even) {
  background: var(--fl-surface);
}
.fl-section__head {
  text-align: center;
  margin-bottom: 2rem;
}
.fl-section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  gap: 1rem;
  flex-wrap: wrap;
}
.fl-section__title {
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--fl-primary-dark);
  margin: 0 0 0.35rem;
  position: relative;
}
.fl-section__head:not(.fl-section__head--row) .fl-section__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--fl-accent);
  border-radius: 3px;
  margin: 0.65rem auto 0;
}
.fl-section__subtitle {
  color: var(--fl-warm-gray);
  margin: 0;
  font-size: 1rem;
}
.fl-section__link {
  white-space: nowrap;
  border-radius: 999px;
  font-weight: 600;
}
.btn-accent {
  background: var(--fl-accent);
  border-color: var(--fl-accent);
  color: #fff;
  font-weight: 600;
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.btn-accent:hover,
.btn-accent:focus {
  background: var(--fl-accent-dark);
  border-color: var(--fl-accent-dark);
  color: #fff;
  box-shadow: 0 6px 18px rgba(216, 79, 53, 0.35);
}
.fl-hero {
  background: var(--fl-primary-dark);
}
.fl-hero__slide {
  position: relative;
  min-height: clamp(340px, 46vw, 560px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.fl-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 38, 69, 0.85) 0%,
    rgba(14, 38, 69, 0.55) 45%,
    rgba(14, 38, 69, 0.15) 100%
  );
}
.fl-hero__caption {
  position: relative;
  max-width: 560px;
  color: #fff;
  padding: 1rem 0;
}
.fl-hero__caption--center {
  margin: 0 auto;
  text-align: center;
}
.fl-hero__caption--end {
  margin-left: auto;
  text-align: right;
}
.fl-hero__badge {
  display: inline-block;
  background: var(--fl-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.fl-hero__title {
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.fl-hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: hsla(0, 0%, 100%, 0.88);
  margin-bottom: 1.5rem;
}
.fl-hero__cta {
  border-radius: 999px;
  padding-inline: 1.6rem;
}
.fl-hero .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
}
.fl-hero .carousel-control-prev,
.fl-hero .carousel-control-next {
  width: 6%;
  opacity: 0.7;
}
.fl-hero .carousel-control-prev:hover,
.fl-hero .carousel-control-next:hover {
  opacity: 1;
}
.fl-trust {
  background: #fff;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--fl-surface-alt);
}
.fl-trust__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.fl-trust__icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: var(--fl-surface);
  color: var(--fl-primary);
  transition: all 0.2s ease;
}
.fl-trust__item:hover .fl-trust__icon {
  background: var(--fl-primary);
  color: #fff;
  transform: translateY(-2px);
}
.fl-trust__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.fl-trust__title {
  font-weight: 700;
  color: var(--fl-primary-dark);
  font-size: 0.95rem;
}
.fl-trust__text {
  color: var(--fl-warm-gray);
  font-size: 0.82rem;
}
.fl-cat-card {
  display: block;
  position: relative;
  border-radius: var(--fl-radius);
  overflow: hidden;
  box-shadow: var(--fl-shadow);
  background: #000;
}
.fl-cat-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.fl-cat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.fl-cat-card:hover .fl-cat-card__img {
  transform: scale(1.08);
}
.fl-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 38, 69, 0) 35%,
    rgba(14, 38, 69, 0.78) 100%
  );
  transition: background 0.3s ease;
}
.fl-cat-card:hover .fl-cat-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(14, 38, 69, 0.1) 20%,
    rgba(14, 38, 69, 0.85) 100%
  );
}
.fl-cat-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}
.fl-cat-card__arrow {
  font-size: 1.3rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
}
.fl-cat-card:hover .fl-cat-card__arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--fl-accent-light);
}
.fl-home-products__scroller {
  position: relative;
}
@media (max-width: 767.98px) {
  .fl-home-products__scroller > .products,
  .fl-home-products__scroller .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .fl-home-products__scroller > .products > *,
  .fl-home-products__scroller .row > * {
    flex: 0 0 78%;
    max-width: 78%;
    scroll-snap-align: start;
  }
}
.fl-promo {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--fl-radius);
  min-height: 230px;
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: var(--fl-shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.fl-promo:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(13, 38, 69, 0.22);
}
.fl-promo--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(14, 38, 69, 0.88) 0%,
    rgba(14, 38, 69, 0.45) 100%
  );
}
.fl-promo--accent {
  background: linear-gradient(
    120deg,
    var(--fl-accent) 0%,
    var(--fl-accent-dark) 100%
  );
}
.fl-promo__body {
  position: relative;
  z-index: 2;
  padding: 1.75rem 2rem;
  max-width: 70%;
}
.fl-promo__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.fl-promo__title {
  font-weight: 800;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  margin: 0.35rem 0 0.5rem;
}
.fl-promo__text {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}
.fl-promo__cta {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.fl-promo__cta i {
  transition: transform 0.2s ease;
}
.fl-promo:hover .fl-promo__cta i {
  transform: translateX(4px);
}
@media (max-width: 575.98px) {
  .fl-promo__body {
    max-width: 100%;
  }
}
.product-miniature {
  display: flex;
}
.product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border: 1px solid var(--fl-surface-alt);
  border-radius: var(--fl-radius);
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}
.product-card:hover {
  box-shadow: var(--fl-shadow);
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0);
}
.product-card__thumb {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fff;
}
.product-card__thumb-link {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.product-card__img--secondary {
  opacity: 0;
}
.product-card:hover .product-card__img--primary {
  opacity: 0;
}
.product-card:hover .product-card__img--secondary {
  opacity: 1;
}
.product-card__thumb:not(:has(.product-card__img--secondary)):hover
  .product-card__img--primary {
  transform: scale(1.07);
  opacity: 1;
}
.product-card__flags {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 3;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.product-flag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.22rem 0.5rem;
  border-radius: 5px;
  color: #fff;
  background: var(--fl-primary);
}
.product-flag--new {
  background: var(--fl-primary);
}
.product-flag--on-sale,
.product-flag--discount {
  background: var(--fl-accent);
}
.product-flag--online-only {
  background: var(--fl-warm-gray);
}
.product-card__discount {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 3;
  background: var(--fl-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}
.product-card__actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0.65rem;
  display: flex;
  justify-content: center;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.25s ease;
}
.product-card:hover .product-card__actions {
  transform: translateY(0);
  opacity: 1;
}
.product-card__add {
  border-radius: 999px;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  box-shadow: 0 6px 16px rgba(216, 79, 53, 0.3);
}
@media (hover: none) {
  .product-card__actions {
    position: static;
    transform: none;
    opacity: 1;
    padding-top: 0;
  }
}
.product-card__body {
  padding: 0.85rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1 1 auto;
}
.product-card__details {
  display:none;
  padding:.85rem 1rem 1.1rem;
  flex: 1 0 60%;
}
.product-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.product-card__title-link {
  color: var(--fl-primary-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__title-link:hover {
  color: var(--fl-accent);
}
.product-card__variants {
  display: flex;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-card__variant {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-size: cover;
}
.product-card__variant:hover {
  box-shadow: 0 0 0 2px var(--fl-accent);
}
.product-card__price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-card__price-now {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fl-accent);
}
.product-card__price-old {
  font-size: 0.9rem;
  color: var(--fl-warm-gray);
  text-decoration: line-through;
}
.fl-listing {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.fl-listing__toolbar {
  background: #fff;
  border: 1px solid var(--fl-surface-alt);
  border-radius: var(--fl-radius);
  padding: 0.65rem 1rem;
}
.fl-listing__count {
  font-size: 0.9rem;
}
.fl-view-toggle .btn.active {
  background: var(--fl-primary);
  border-color: var(--fl-primary);
  color: #fff;
}
.fl-products--list {
  row-gap: 1rem;
}
.fl-products--list .fl-products__col {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.fl-products--list .product-card {
  flex-direction: row;
}
.fl-products--list .product-card .product-card__details {
  display:block;
      padding: 1rem;
    border-top: 1px solid #eef2f7;
    background: #fafbfd;


}
.product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: .75rem;
}

.product-spec {
    background: #fff;
    border: 1px solid #e6edf5;
    border-radius: 12px;
    padding: .75rem;
    transition: all .2s ease;
}

.product-spec:hover {
    border-color: #1d3f72;
    transform: translateY(-2px);
}

.product-spec__label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #6b7280;
    margin-bottom: .25rem;
}

.product-spec__value {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: #0f172a;
}
.fl-products--list .product-card .product-card__price {
  margin-top:unset;
}
.fl-products--list .product-card__thumb {
  width: 200px;
  flex: 0 0 200px;
  aspect-ratio: 1/1;
}
.fl-products--list .product-card__actions {
  position: static;
  transform: none;
  opacity: 1;
  justify-content: flex-start;
}
@media (max-width: 575.98px) {
  .fl-products--list .product-card {
    flex-direction: column;
  }
  .fl-products--list .product-card__thumb {
    width: 100%;
    flex: none;
  }
}
.fl-category-header {
  margin-bottom: 0.5rem;
}
.fl-category-header__title {
  font-weight: 800;
  color: var(--fl-primary-dark);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.5rem;
}
.fl-category-header__desc {
  color: var(--fl-warm-gray);
  font-size: 0.95rem;
}
.fl-category-header--has-image {
  position: relative;
  border-radius: var(--fl-radius);
  overflow: hidden;
  color: #fff;
}
.fl-category-header--has-image .fl-category-header__media {
  position: absolute;
  inset:0;
}
.fl-category-header--has-image .fl-category-header__img {
  width: 100%;
  height: clamp(160px, 22vw, 260px);
  object-fit: cover;
  display: block;
}
.fl-category-header--has-image .fl-category-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 38, 69, 0.82),
    rgba(14, 38, 69, 0.35)
  );
}
.fl-category-header--has-image .fl-category-header__content {
  position: relative;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2rem;
}
.fl-category-header--has-image .fl-category-header__title {
  color: #fff;
}
.fl-search-header {
  margin-bottom: 0.5rem;
}
.fl-search-header__title {
  font-weight: 800;
  color: var(--fl-primary-dark);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 0.25rem;
}
.fl-listing__empty {
  background: #fff;
  border: 1px dashed var(--fl-surface-alt);
  border-radius: var(--fl-radius);
}
.fl-pagination .page-link {
  color: var(--fl-primary);
  border-color: var(--fl-surface-alt);
  margin: 0 2px;
  border-radius: 8px;
  font-weight: 600;
}
.fl-pagination .page-link:hover {
  background: var(--fl-surface);
  color: var(--fl-accent);
}
.fl-pagination .page-item.active .page-link {
  background: var(--fl-primary);
  border-color: var(--fl-primary);
  color: #fff;
}
.fl-pagination .page-item.disabled .page-link {
  color: var(--fl-warm-gray);
}
.fl-product-page {
  padding-top: 0.5rem;
}
.fl-gallery__main {
  background: #fff;
  border: 1px solid var(--fl-surface-alt);
  border-radius: var(--fl-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}
.fl-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
}
.fl-gallery__thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.fl-gallery__thumb {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  border: 2px solid var(--fl-surface-alt);
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.fl-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fl-gallery__thumb:hover {
  border-color: var(--fl-primary-light);
}
.fl-gallery__thumb.is-active {
  border-color: var(--fl-accent);
}
.fl-product-flags {
  margin: 0;
}
.fl-product-flag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--fl-surface);
  color: var(--fl-primary);
}
.fl-product-flag--new {
  background: var(--fl-primary);
  color: #fff;
}
.fl-product-flag--discount,
.fl-product-flag--on-sale {
  background: var(--fl-accent);
  color: #fff;
}
.fl-product-title {
  font-weight: 800;
  color: var(--fl-primary-dark);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.fl-product-reference {
  letter-spacing: 0.02em;
}
.fl-product-prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.fl-product-price__current {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--fl-accent);
}
.fl-product-price__regular {
  font-size: 1.1rem;
  color: var(--fl-warm-gray);
  text-decoration: line-through;
}
.fl-product-price__badge {
  background: var(--fl-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
}
.fl-variant-group__label {
  font-weight: 600;
  color: var(--fl-primary-dark);
  font-size: 0.9rem;
}
.fl-variant-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid var(--fl-surface-alt);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  transition: all 0.18s ease;
  background: #fff;
  margin: 0;
}
.fl-variant-pill:hover {
  border-color: var(--fl-primary-light);
}
.fl-variant-pill.is-active {
  border-color: var(--fl-accent);
  background: rgba(216, 79, 53, 0.06);
}
.fl-variant-pill__color {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-block;
}
.fl-variant-pill__text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fl-primary-dark);
}
.fl-variant-select {
  max-width: 280px;
}
.fl-availability__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
}
.fl-availability__badge--ok {
  color: #1c7a4a;
}
.fl-availability__badge--low {
  color: #b8860b;
}
.fl-availability__badge--out {
  color: var(--fl-accent-dark);
}
.fl-qty {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid var(--fl-surface-alt);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.fl-qty__btn {
  width: 42px;
  border: none;
  background: var(--fl-surface);
  color: var(--fl-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
  text-decoration: none;
}
.fl-qty__btn:hover {
  background: var(--fl-surface-alt);
  color: var(--fl-accent);
}
.fl-qty__input {
  width: 56px;
  border: none;
  text-align: center;
  font-weight: 700;
  color: var(--fl-primary-dark);
  -moz-appearance: textfield;
}
.fl-qty__input::-webkit-outer-spin-button,
.fl-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.fl-qty__input:focus {
  outline: none;
}
.fl-qty--sm .fl-qty__btn {
  width: 32px;
}
.fl-qty--sm .fl-qty__input {
  width: 40px;
}
.fl-add-to-cart__btn {
  min-height: 48px;
  font-weight: 700;
}
.fl-product-reassurance .block-reassurance ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.fl-product-tabs__nav .nav-link {
  color: var(--fl-warm-gray);
  font-weight: 600;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
}
.fl-product-tabs__nav .nav-link:hover {
  color: var(--fl-primary);
  border-color: var(--fl-surface-alt);
}
.fl-product-tabs__nav .nav-link.active {
  color: var(--fl-accent);
  border-color: var(--fl-accent);
  background: rgba(0, 0, 0, 0);
}
.fl-features-table th {
  width: 35%;
  color: var(--fl-primary-dark);
  font-weight: 600;
}
.fl-features-table td {
  color: #4a5260;
}
.fl-product-description {
  color: #3a424f;
  line-height: 1.7;
}
.fl-cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto auto auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--fl-surface-alt);
}
.fl-cart-item:last-child {
  border-bottom: none;
}
.fl-cart-item__media img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border: 1px solid var(--fl-surface-alt);
  border-radius: 8px;
  background: #fff;
}
.fl-cart-item__name {
  font-weight: 700;
  color: var(--fl-primary-dark);
  display: block;
}
.fl-cart-item__name:hover {
  color: var(--fl-accent);
}
.fl-cart-item__attrs {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--fl-warm-gray);
}
.fl-cart-item__attrs span {
  font-weight: 600;
}
.fl-cart-item__unit {
  color: #4a5260;
  font-weight: 600;
}
.fl-cart-item__subtotal {
  font-weight: 800;
  color: var(--fl-primary-dark);
  min-width: 80px;
  text-align: right;
}
.fl-cart-item__remove-link {
  color: var(--fl-warm-gray);
  font-size: 1.1rem;
  transition: color 0.15s ease;
}
.fl-cart-item__remove-link:hover {
  color: var(--fl-accent);
}
.fl-cart-summary__title,
.fl-checkout-summary__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fl-primary-dark);
  margin-bottom: 1rem;
}
.fl-cart-summary__line,
.fl-checkout-summary__lines .fl-cart-summary__line {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  color: #4a5260;
  font-size: 0.92rem;
}
.fl-cart-summary__line--discount {
  color: #1c7a4a;
}
.fl-cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid var(--fl-surface-alt);
  margin-top: 0.5rem;
  padding-top: 0.8rem;
  font-weight: 800;
  color: var(--fl-primary-dark);
}
.fl-cart-summary__total-value {
  font-size: 1.35rem;
  color: var(--fl-accent);
}
.fl-cart-summary__checkout {
  min-height: 48px;
  font-weight: 700;
}
.fl-link-accent {
  color: var(--fl-primary);
  font-weight: 600;
}
.fl-link-accent:hover {
  color: var(--fl-accent);
}
.fl-cart-empty__icon {
  font-size: 4rem;
  color: var(--fl-surface-alt);
}
.fl-cart-empty__title {
  font-weight: 800;
  color: var(--fl-primary-dark);
}
.fl-checkout-progress {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  counter-reset: step;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.fl-checkout-progress__step {
  flex: 1 1 0;
  min-width: 130px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--fl-surface-alt);
  border-radius: var(--fl-radius);
  color: var(--fl-warm-gray);
  font-weight: 600;
}
.fl-checkout-progress__num {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--fl-surface-alt);
  color: var(--fl-warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.fl-checkout-progress__step.is-current {
  border-color: var(--fl-accent);
  color: var(--fl-primary-dark);
}
.fl-checkout-progress__step.is-current .fl-checkout-progress__num {
  background: var(--fl-accent);
  color: #fff;
}
.fl-checkout-progress__step.is-complete {
  color: var(--fl-primary-dark);
}
.fl-checkout-progress__step.is-complete .fl-checkout-progress__num {
  background: var(--fl-primary);
  color: #fff;
}
.fl-checkout-progress__step.is-disabled {
  opacity: 0.6;
}
.fl-checkout-progress__label {
  font-size: 0.9rem;
}
.fl-checkout-steps .checkout-step {
  background: #fff;
  border: 1px solid var(--fl-surface-alt);
  border-radius: var(--fl-radius);
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
}
.fl-checkout-steps .step-title {
  font-weight: 700;
  color: var(--fl-primary-dark);
}
.fl-checkout-steps .form-control,
.fl-checkout-steps .form-select {
  border-radius: 8px;
}
.fl-checkout-steps .btn-primary {
  background: var(--fl-primary);
  border-color: var(--fl-primary);
}
.fl-checkout-steps .btn-primary:hover {
  background: var(--fl-primary-dark);
  border-color: var(--fl-primary-dark);
}
.fl-checkout-summary__products {
  margin: 0 0 1rem;
  display: grid;
  gap: 0.75rem;
}
.fl-checkout-summary__product {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.fl-checkout-summary__thumb {
  position: relative;
  flex: 0 0 auto;
}
.fl-checkout-summary__thumb img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border: 1px solid var(--fl-surface-alt);
  border-radius: 6px;
  background: #fff;
}
.fl-checkout-summary__qty {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--fl-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.fl-checkout-summary__name {
  flex: 1;
  font-size: 0.85rem;
  color: #3a424f;
}
.fl-checkout-summary__line-total {
  font-weight: 700;
  color: var(--fl-primary-dark);
  font-size: 0.88rem;
}
@media (max-width: 767.98px) {
  .fl-cart-item {
    grid-template-columns: 70px 1fr auto;
    grid-template-areas: "media info remove" "media qty subtotal";
    row-gap: 0.5rem;
  }
  .fl-cart-item__media {
    grid-area: media;
  }
  .fl-cart-item__info {
    grid-area: info;
  }
  .fl-cart-item__remove {
    grid-area: remove;
  }
  .fl-cart-item__price {
    display: none;
  }
  .fl-cart-item__qty {
    grid-area: qty;
  }
  .fl-cart-item__subtotal {
    grid-area: subtotal;
  }
  .fl-cart-item__media img {
    width: 70px;
    height: 70px;
  }
}
.btn-accent {
  background: #d84f35;
  border-color: #d84f35;
  color: #fff;
  font-weight: 700;
  border-radius: 0.5rem;
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.btn-accent:hover,
.btn-accent:focus {
  background: #b8402a;
  border-color: #b8402a;
  color: #fff;
  box-shadow: 0 6px 18px rgba(216, 79, 53, 0.35);
}
.btn-accent:active {
  transform: translateY(1px);
}
.btn-accent:disabled,
.btn-accent.disabled {
  background: #e8714f;
  border-color: #e8714f;
  box-shadow: none;
  cursor: not-allowed;
}
.btn-outline-accent {
  background: rgba(0, 0, 0, 0);
  border: 1.5px solid #d84f35;
  color: #d84f35;
  font-weight: 700;
  border-radius: 0.5rem;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}
.btn-outline-accent:hover,
.btn-outline-accent:focus {
  background: #d84f35;
  border-color: #d84f35;
  color: #fff;
  box-shadow: 0 6px 18px rgba(216, 79, 53, 0.25);
}
.btn-pill {
  border-radius: 999px;
}
.fl-card {
  background: #fff;
  border: 1px solid #f0f2f5;
  border-radius: 0.75rem;
  overflow: hidden;
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease;
}
.fl-card:hover {
  box-shadow: 0 8px 30px rgba(13, 38, 69, 0.12);
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0);
}
.badge-soft,
.badge-new,
.badge-sale {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.22rem 0.5rem;
  border-radius: 0.5rem;
  color: #fff;
  line-height: 1.2;
}
.badge-sale {
  background: #d84f35;
}
.badge-new {
  background: #153663;
}
.badge-soft {
  background: #f8f9fa;
  color: #153663;
}
.badge-discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d84f35;
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}
.form-control,
.form-select {
  border-radius: 0.5rem;
  border-color: #f0f2f5;
  color: #1a1a2e;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.form-control:focus,
.form-select:focus {
  border-color: #1e4a8a;
  box-shadow: 0 0 0 0.2rem rgba(21, 54, 99, 0.15);
}
.form-control::placeholder,
.form-select::placeholder {
  color: #6c757d;
}
.form-label {
  font-weight: 700;
  color: #0e2444;
  font-size: 0.9rem;
}
.fl-input-group {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #f0f2f5;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
}
.fl-input-group .form-control {
  border: 0;
  border-radius: 0;
}
.fl-trust-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: #f8f9fa;
  color: #153663;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}
.fl-trust-icon:hover {
  background: #153663;
  color: #fff;
  transform: translateY(-2px);
}
.fl-icon-chip {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8f9fa;
  color: #d84f35;
  font-size: 1.15rem;
}
.fl-divider {
  height: 3px;
  width: 56px;
  background: #d84f35;
  border: 0;
  border-radius: 3px;
  opacity: 1;
}
.fl-page-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fl-text);
}
.fl-cms__eyebrow {
  letter-spacing: 0.08em;
  font-weight: 600;
}
.fl-contact-page__head .lead {
  font-size: 1.125rem;
}
.fl-contact__form-card,
.fl-contact__info-card {
  border-radius: var(--fl-radius);
  overflow: hidden;
}
.fl-contact-page .form-floating > label {
  color: var(--fl-warm-gray);
}
.fl-contact-page .form-floating > .form-control:focus,
.fl-contact-page .form-floating > .form-select:focus {
  border-color: var(--fl-accent);
  box-shadow: 0 0 0 0.2rem rgba(216, 79, 53, 0.15);
}
.fl-contact__info-list li {
  font-size: 0.95rem;
}
.fl-contact__info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--fl-surface-alt);
  color: var(--fl-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fl-contact__hours {
  background: var(--fl-surface);
  border-left: 3px solid var(--fl-accent);
}
.fl-contact__map-placeholder {
  overflow: hidden;
  height: 180px;
}
.fl-contact__map-inner {
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--fl-primary) 0%,
    var(--fl-primary-light) 100%
  );
  position: relative;
}
.fl-contact__map-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04) 0 1px,
      transparent 1px 24px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.04) 0 1px,
      transparent 1px 24px
    );
  pointer-events: none;
}
.fl-cms {
  max-width: 820px;
  line-height: 1.75;
  color: var(--fl-text);
  font-size: 1.0625rem;
}
.fl-cms h1,
.fl-cms h2,
.fl-cms h3,
.fl-cms h4 {
  color: var(--fl-primary);
  font-weight: 700;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.fl-cms h2 {
  font-size: 1.65rem;
}
.fl-cms h3 {
  font-size: 1.35rem;
}
.fl-cms h4 {
  font-size: 1.15rem;
}
.fl-cms p {
  margin-bottom: 1.15rem;
}
.fl-cms a {
  color: var(--fl-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.fl-cms a:hover {
  color: var(--fl-accent-dark);
}
.fl-cms ul,
.fl-cms ol {
  padding-left: 1.5rem;
  margin-bottom: 1.15rem;
}
.fl-cms ul li,
.fl-cms ol li {
  margin-bottom: 0.4rem;
}
.fl-cms blockquote {
  border-left: 4px solid var(--fl-accent);
  padding: 0.5rem 1rem 0.5rem 1.25rem;
  background: var(--fl-surface);
  border-radius: 0 var(--fl-radius-sm) var(--fl-radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--fl-warm-gray);
}
.fl-cms img {
  max-width: 100%;
  height: auto;
  border-radius: var(--fl-radius-sm);
  box-shadow: var(--fl-shadow-sm);
  margin: 1rem 0;
}
.fl-cms table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
}
.fl-cms table th,
.fl-cms table td {
  border: 1px solid #e5e7eb;
  padding: 0.625rem 0.75rem;
}
.fl-cms table th {
  background: var(--fl-surface);
  font-weight: 600;
  color: var(--fl-primary);
}
.fl-cms__share {
  border-color: rgba(0, 0, 0, 0.08) !important;
}
.fl-cms-category__card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  color: inherit;
}
.fl-cms-category__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--fl-shadow-lg) !important;
}
.fl-cms-category__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--fl-radius-sm);
  background: var(--fl-surface);
  color: var(--fl-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.fl-cms-category__title {
  color: var(--fl-primary);
  font-weight: 700;
}
.fl-cms-category__pages {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.fl-cms-category__page-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-block: 0.25rem;
}
.fl-store-card {
  border-radius: var(--fl-radius);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.fl-store-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fl-shadow-lg) !important;
}
.fl-store-card__media--placeholder {
  background: linear-gradient(
    135deg,
    var(--fl-primary) 0%,
    var(--fl-primary-light) 100%
  );
  position: relative;
}
.fl-store-card__media--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04) 0 1px,
      transparent 1px 24px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.04) 0 1px,
      transparent 1px 24px
    );
}
.fl-store-card__title {
  color: var(--fl-primary);
  font-weight: 700;
}
.fl-store-card__list li {
  line-height: 1.5;
}
.fl-store-card__hours summary {
  cursor: pointer;
  color: var(--fl-primary);
  list-style: none;
}
.fl-store-card__hours summary::-webkit-details-marker {
  display: none;
}
.fl-store-card__hours summary::after {
  content: "▾";
  margin-left: 0.25rem;
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  display: inline-block;
}
.fl-store-card__hours[open] summary::after {
  transform: rotate(180deg);
}
.fl-sitemap__col {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--fl-radius);
  padding: 1.25rem;
  height: 100%;
}
.fl-sitemap__title {
  color: var(--fl-primary);
  letter-spacing: 0.06em;
  padding-bottom: 0.625rem;
  margin-bottom: 0.875rem;
  border-bottom: 2px solid var(--fl-surface);
}
.fl-sitemap__list li {
  padding-block: 0.25rem;
}
.fl-sitemap__list a {
  text-decoration: none;
}
.fl-sitemap__list a:hover {
  color: var(--fl-accent-dark);
}
.fl-sitemap__sublink:hover {
  color: var(--fl-accent) !important;
}
.fl-sitemap__tag {
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.fl-sitemap__tag:hover {
  background: var(--fl-accent) !important;
  color: #fff !important;
  border-color: var(--fl-accent) !important;
}
.fl-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fl-404__inner,
.fl-not-found__inner {
  max-width: 720px;
}
.fl-404__visual {
  position: relative;
  display: inline-block;
}
.fl-404__code {
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(
    135deg,
    var(--fl-primary) 0%,
    var(--fl-accent) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  color: rgba(0, 0, 0, 0);
  text-shadow: 0 6px 24px rgba(21, 54, 99, 0.15);
}
.fl-404__bulb {
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-55%) rotate(15deg);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--fl-accent);
  opacity: 0.85;
}
.fl-404__title,
.fl-not-found__title {
  color: var(--fl-primary);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.fl-404__search {
  max-width: 560px;
}
.fl-404__actions .btn {
  min-width: 180px;
}
.fl-not-found__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto;
  background: var(--fl-surface);
  color: var(--fl-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--fl-shadow-sm);
}
.fl-not-found__suggestions {
  border-radius: var(--fl-radius);
  max-width: 560px;
  margin: 0 auto;
}
.fl-form-field {
  position: relative;
}
.fl-form-field .form-label {
  color: var(--fl-text);
  margin-bottom: 0.4rem;
}
.fl-form-field .form-control,
.fl-form-field .form-select {
  border-radius: var(--fl-radius-sm);
  border-color: #d8dde3;
  padding: 0.65rem 0.875rem;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.fl-form-field .form-control:focus,
.fl-form-field .form-select:focus {
  border-color: var(--fl-accent);
  box-shadow: 0 0 0 0.2rem rgba(216, 79, 53, 0.15);
}
.fl-form-field--invalid .form-control,
.fl-form-field--invalid .form-select,
.fl-form-field .is-invalid {
  border-color: #dc3545 !important;
}
.fl-form-field__help {
  color: var(--fl-warm-gray);
  font-size: 0.8125rem;
  margin-top: 0.3rem;
}
.fl-form-field .invalid-feedback {
  font-size: 0.8125rem;
  font-weight: 500;
}
.fl-form-field .form-check-input:checked {
  background-color: var(--fl-accent);
  border-color: var(--fl-accent);
}
.fl-form-field .form-check-input:focus {
  border-color: var(--fl-accent);
  box-shadow: 0 0 0 0.2rem rgba(216, 79, 53, 0.15);
}
.fl-form-field fieldset legend {
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
}
.text-accent {
  color: var(--fl-accent) !important;
}
@media (max-width: 767.98px) {
  .fl-contact-page .col-lg-7,
  .fl-contact-page .col-lg-5 {
    width: 100%;
  }
  .fl-404__bulb {
    right: -0.5rem;
  }
  .fl-404__actions .btn {
    flex: 1 1 100%;
    min-width: 0;
  }
}
.fl-auth-page__head .fl-page-title {
  color: var(--fl-primary);
  font-weight: 800;
}
.fl-auth-card {
  border-radius: var(--fl-radius, 12px);
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease;
  background: #fff;
}
.fl-auth-card--accent {
  background: linear-gradient(
    135deg,
    rgba(216, 79, 53, 0.06),
    rgba(21, 54, 99, 0.04)
  );
}
.fl-auth-card--soft {
  background: var(--fl-surface-alt, #f5f7fa);
}
.fl-auth-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(21, 54, 99, 0.08);
  color: var(--fl-primary, #153663);
  font-size: 1.35rem;
  flex-shrink: 0;
}
.fl-auth-card__icon--accent {
  background: rgba(216, 79, 53, 0.12);
  color: var(--fl-accent, #d84f35);
}
.fl-auth-benefits li {
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(21, 54, 99, 0.08);
}
.fl-auth-benefits li:last-child {
  border-bottom: 0;
}
.fl-link-accent {
  color: var(--fl-accent, #d84f35);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}
.fl-link-accent:hover,
.fl-link-accent:focus {
  color: var(--fl-primary, #153663);
  text-decoration: underline;
}
.fl-account__header .fl-page-title {
  color: var(--fl-primary);
  font-weight: 800;
  margin: 0;
}
.fl-account-menu {
  background: #fff;
  border-radius: var(--fl-radius, 12px);
  box-shadow: var(--fl-shadow, 0 2px 8px rgba(0, 0, 0, 0.05));
  overflow: hidden;
  position: sticky;
  top: 1.5rem;
}
.fl-account-menu__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--fl-primary, #153663), #0f2649);
  color: #fff;
}
.fl-account-menu__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.15);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.fl-account-menu__greet {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.fl-account-menu__hi {
  font-size: 0.75rem;
  opacity: 0.8;
}
.fl-account-menu__name {
  font-size: 0.95rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fl-account-menu__list {
  padding: 0.5rem 0;
}
.fl-account-menu__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem;
  color: var(--fl-text-primary, #1a2233);
  text-decoration: none;
  font-weight: 500;
  border-left: 3px solid rgba(0, 0, 0, 0);
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.fl-account-menu__link:hover,
.fl-account-menu__link:focus {
  background: var(--fl-surface-alt, #f5f7fa);
  color: var(--fl-primary, #153663);
}
.fl-account-menu__link--active {
  background: rgba(216, 79, 53, 0.07);
  color: var(--fl-accent, #d84f35);
  border-left-color: var(--fl-accent, #d84f35);
  font-weight: 600;
}
.fl-account-menu__icon {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.fl-account-menu__foot {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.fl-account-menu__logout {
  display: inline-flex;
  align-items: center;
  color: var(--fl-text-secondary, #5a6678);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}
.fl-account-menu__logout:hover,
.fl-account-menu__logout:focus {
  color: var(--fl-accent, #d84f35);
}
.fl-account-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--fl-radius, 12px);
  box-shadow: var(--fl-shadow, 0 2px 8px rgba(0, 0, 0, 0.05));
  color: var(--fl-text-primary, #1a2233);
  text-decoration: none;
  height: 100%;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  border: 1px solid rgba(0, 0, 0, 0);
}
.fl-account-card:hover,
.fl-account-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(21, 54, 99, 0.1);
  border-color: rgba(216, 79, 53, 0.2);
  color: var(--fl-primary, #153663);
}
.fl-account-card:hover .fl-account-card__arrow,
.fl-account-card:focus .fl-account-card__arrow {
  color: var(--fl-accent, #d84f35);
  transform: translateX(3px);
}
.fl-account-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #fff;
  background: var(--fl-primary, #153663);
}
.fl-account-card__icon--blue {
  background: #153663;
}
.fl-account-card__icon--orange {
  background: #d84f35;
}
.fl-account-card__icon--green {
  background: #2a9d63;
}
.fl-account-card__icon--purple {
  background: #6f42c1;
}
.fl-account-card__icon--accent {
  background: linear-gradient(135deg, #d84f35, #b13f28);
}
.fl-account-card__icon--navy {
  background: linear-gradient(135deg, #153663, #0f2649);
}
.fl-account-card__body {
  flex: 1;
  min-width: 0;
}
.fl-account-card__title {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
  color: inherit;
}
.fl-account-card__text {
  display: block;
  font-size: 0.86rem;
  color: var(--fl-text-secondary, #5a6678);
  line-height: 1.4;
}
.fl-account-card__arrow {
  color: var(--fl-text-secondary, #5a6678);
  font-size: 1.1rem;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
  flex-shrink: 0;
}
.fl-account-tip {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(216, 79, 53, 0.06),
    rgba(21, 54, 99, 0.04)
  );
  border-left: 4px solid var(--fl-accent, #d84f35);
  border-radius: var(--fl-radius, 12px);
}
.fl-account-tip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(216, 79, 53, 0.15);
  color: var(--fl-accent, #d84f35);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.fl-account-panel {
  border-radius: var(--fl-radius, 12px);
}
.fl-order-table thead th {
  background: var(--fl-surface-alt, #f5f7fa);
  color: var(--fl-text-secondary, #5a6678);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 0;
  padding: 0.9rem 1rem;
}
.fl-order-table tbody td {
  padding: 1rem;
  vertical-align: middle;
  border-color: rgba(0, 0, 0, 0.05);
}
.fl-order-table__ref {
  color: var(--fl-primary, #153663);
}
.fl-order-table__ref:hover {
  color: var(--fl-accent, #d84f35);
}
.fl-order-table__totals td {
  padding: 0.6rem 1rem;
  background: var(--fl-surface-alt, #f5f7fa);
}
.fl-order-table__grand td {
  background: rgba(21, 54, 99, 0.04);
  border-top: 2px solid var(--fl-primary, #153663);
  font-size: 1.05rem;
}
.fl-order-status {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--fl-primary, #153663);
  color: #fff;
}
.fl-order-product__img {
  border-radius: 8px;
  object-fit: cover;
  background: var(--fl-surface-alt, #f5f7fa);
}
.fl-order-detail .fl-order-meta {
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--fl-shadow, 0 2px 8px rgba(0, 0, 0, 0.05));
}
.fl-order-detail .fl-order-meta__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fl-text-secondary, #5a6678);
  margin-bottom: 0.25rem;
}
.fl-order-detail .fl-order-meta__value {
  font-weight: 600;
  color: var(--fl-primary, #153663);
}
.fl-order-messages__item {
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}
.fl-order-messages__item:last-child {
  border-bottom: 0;
}
.fl-order-messages__meta {
  margin-bottom: 0.3rem;
}
.fl-address-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--fl-radius, 12px);
  box-shadow: var(--fl-shadow, 0 2px 8px rgba(0, 0, 0, 0.05));
  padding: 1.25rem;
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.fl-address-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(21, 54, 99, 0.1);
}
.fl-address-card__head {
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.fl-address-card__alias {
  color: var(--fl-primary, #153663);
  font-weight: 700;
}
.fl-address-card__body {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--fl-text-secondary, #5a6678);
  font-style: normal;
}
.fl-address-card__actions {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.fl-voucher-table thead th {
  background: var(--fl-surface-alt, #f5f7fa);
  color: var(--fl-text-secondary, #5a6678);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 0;
  padding: 0.9rem 1rem;
}
.fl-voucher-table tbody td {
  padding: 1rem;
  vertical-align: middle;
  border-color: rgba(0, 0, 0, 0.05);
}
.fl-voucher-code {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(216, 79, 53, 0.1);
  color: var(--fl-accent, #d84f35);
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 8px;
  font-size: 0.85rem;
  border: 1px dashed rgba(216, 79, 53, 0.35);
  cursor: copy;
  user-select: all;
}
.fl-empty-state__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto;
  background: #fff;
  color: var(--fl-primary, #153663);
  font-size: 1.85rem;
  box-shadow: var(--fl-shadow, 0 2px 8px rgba(0, 0, 0, 0.05));
}
@media (max-width: 991.98px) {
  .fl-account-menu {
    position: static;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .fl-account-card {
    flex-wrap: wrap;
    text-align: left;
  }
  .fl-account-card__icon {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  .fl-order-meta {
    margin-bottom: 0.5rem;
  }
}
@keyframes fl-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fl-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fl-slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fl-scaleUp {
  from {
    transform: scale(0.96);
  }
  to {
    transform: scale(1);
  }
}
@keyframes fl-shimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.fl-animate-fade {
  animation: fl-fadeIn 0.35s ease both;
}
.fl-animate-fade-up {
  animation: fl-fadeInUp 0.45s ease both;
}
.fl-animate-slide {
  animation: fl-slideDown 0.22s ease both;
}
.fl-animate-scale {
  animation: fl-scaleUp 0.22s ease both;
}
.fl-stagger > * {
  animation: fl-fadeInUp 0.45s ease both;
}
.fl-stagger > *:nth-child(1) {
  animation-delay: 0.06s;
}
.fl-stagger > *:nth-child(2) {
  animation-delay: 0.12s;
}
.fl-stagger > *:nth-child(3) {
  animation-delay: 0.18s;
}
.fl-stagger > *:nth-child(4) {
  animation-delay: 0.24s;
}
.fl-stagger > *:nth-child(5) {
  animation-delay: 0.3s;
}
.fl-stagger > *:nth-child(6) {
  animation-delay: 0.36s;
}
.fl-stagger > *:nth-child(7) {
  animation-delay: 0.42s;
}
.fl-stagger > *:nth-child(8) {
  animation-delay: 0.48s;
}
.fl-hover-lift {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.fl-hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(13, 38, 69, 0.22);
}
.fl-skeleton {
  position: relative;
  background: linear-gradient(90deg, #f0f2f5 0%, #f8f9fa 20%, #f0f2f5 40%);
  background-size: 800px 100%;
  animation: fl-shimmer 1.4s ease-in-out infinite;
  border-radius: 0.5rem;
}
@media (prefers-reduced-motion: reduce) {
  .fl-animate-fade,
  .fl-animate-fade-up,
  .fl-animate-slide,
  .fl-animate-scale,
  .fl-stagger > *,
  .fl-skeleton {
    animation: none !important;
  }
  .fl-hover-lift {
    transition: none;
  }
}
@media (min-width: 992px) {
  .header-nav__item--mega .megamenu {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .header-nav,
  .header-trust {
    display: none !important;
  }
  .header-toggler,
  .header-search-toggle {
    display: inline-flex !important;
  }
  .header-main__search {
    margin: 0.75rem 0 0;
    max-width: 100%;
    flex: 0 0 100%;
    order: 3;
  }
  .header-main__search--mobile {
    width: 100%;
  }
  .header-nav__item--mega .megamenu {
    display: none !important;
  }
  .fl-product-page .row > [class*="col-"] {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .fl-checkout-summary,
  .fl-cart-summary {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .fl-section {
    padding: 2rem 0;
  }
  .fl-section__head--row {
    flex-direction: column;
    align-items: flex-start;
  }
  .fl-trust .row > [class*="col-"] {
    margin-bottom: 1rem;
  }
  .fl-cat-card__media {
    aspect-ratio: 16/10;
  }
  .footer-main {
    padding: 2.25rem 0 1.5rem;
  }
  .footer-col {
    margin-bottom: 1.5rem;
  }
  .fl-gallery__thumb {
    width: 58px;
    height: 58px;
  }
  .fl-listing__toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .fl-hero__caption {
    max-width: 100%;
  }
  .fl-promo__body {
    max-width: 100%;
  }
  .fl-products--list .product-card {
    flex-direction: column;
  }
  .fl-products--list .product-card__thumb {
    width: 100%;
    flex: none;
  }
  .fl-add-to-cart__row {
    flex-direction: column;
    align-items: stretch;
  }
  .fl-checkout-progress {
    flex-direction: column;
  }
  .fl-checkout-progress__step {
    min-width: 0;
  }
}

/* =====================================================================
   Phase C — Order confirmation, Brands/Suppliers, Listing variants,
            Category & Brand miniatures
   ===================================================================== */

/* ── Order confirmation hero ─────────────────────────────────────── */
.fl-order-confirmation__hero {
  background: linear-gradient(135deg, #e6f7ee 0%, #d4f0e0 100%);
  border-left: 6px solid #1f9d55 !important;
  border-radius: var(--fl-radius);
}
.fl-order-confirmation__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #1f9d55;
  color: #fff;
  font-size: 3rem;
  box-shadow: 0 8px 24px rgba(31, 157, 85, 0.35);
  animation: fl-pop 0.6s ease-out;
}
.fl-order-confirmation__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fl-text);
}
.fl-order-confirmation__lead {
  font-size: 1.125rem;
  color: var(--fl-text);
}

/* ── Order metadata cards ────────────────────────────────────────── */
.fl-meta-card {
  border-radius: var(--fl-radius-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.fl-meta-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--fl-shadow) !important;
}
.fl-meta-card__icon {
  font-size: 1.5rem;
  color: var(--fl-accent);
  margin-bottom: 0.5rem;
  display: inline-block;
}
.fl-meta-card__label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.7rem;
}
.fl-meta-card__value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fl-primary);
  word-break: break-word;
}

/* ── Order products table ────────────────────────────────────────── */
.fl-order-products {
  border-radius: var(--fl-radius);
  overflow: hidden;
}
.fl-order-products__title {
  font-weight: 700;
  color: var(--fl-primary);
}
.fl-order-table thead th {
  background: var(--fl-surface);
  font-weight: 600;
  color: var(--fl-text);
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fl-order-table tbody td {
  padding: 1rem;
  vertical-align: middle;
}
.fl-order-table__img {
  border-radius: var(--fl-radius-sm);
  object-fit: cover;
  background: var(--fl-surface);
}
.fl-order-table__name {
  font-weight: 600;
  color: var(--fl-text);
}

/* ── Order totals block ──────────────────────────────────────────── */
.fl-order-totals__line {
  padding: 0.35rem 0;
  font-size: 0.95rem;
}
.fl-order-totals__grand {
  font-size: 1.25rem;
  color: var(--fl-primary);
}
.fl-order-totals__grand-value {
  color: var(--fl-accent);
  font-weight: 800;
  font-size: 1.5rem;
}

/* ── Address cards in order-confirmation sidebar ─────────────────── */
.fl-address-card {
  border-radius: var(--fl-radius-sm);
}
.fl-address-card__title {
  color: var(--fl-primary);
  font-weight: 700;
}
.fl-address-card__body {
  color: var(--fl-text);
  font-style: normal;
  line-height: 1.6;
}

/* ── Order confirmation CTA bar ──────────────────────────────────── */
.fl-order-confirmation__cta .btn {
  min-width: 200px;
}

@keyframes fl-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* ── Brand / Supplier grids ──────────────────────────────────────── */
.fl-brand-grid .fl-brand-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.fl-brand-grid .fl-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fl-shadow) !important;
}

.fl-brand-card {
  border-radius: var(--fl-radius-sm);
  overflow: hidden;
  background: #fff;
}
.fl-brand-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  padding: 1rem;
  background: var(--fl-surface);
}
.fl-brand-card__logo {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.2s ease;
}
.fl-brand-card:hover .fl-brand-card__logo {
  filter: grayscale(0);
}

.fl-brand-card__placeholder {
  font-size: 2.5rem;
  color: var(--fl-warm-gray);
}
.fl-brand-card__name {
  font-weight: 600;
  color: var(--fl-primary);
}
.fl-brand-card__link {
  color: inherit;
  text-decoration: none;
}
.fl-brand-card__link:hover {
  color: var(--fl-accent);
}
.fl-brand-card__count {
  font-size: 0.78rem;
}

/* ── Brand / Supplier page header ────────────────────────────────── */
.fl-brand-header {
  border-radius: var(--fl-radius);
}
.fl-brand-header__media {
  flex: 0 0 auto;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fl-surface);
  border-radius: var(--fl-radius-sm);
  overflow: hidden;
}
.fl-brand-header__media--placeholder {
  font-size: 3rem;
  color: var(--fl-warm-gray);
}
.fl-brand-header__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.fl-brand-header__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fl-primary);
}
.fl-brand-header__desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Listing variant headers (best-sellers / new / sale) ─────────── */
.fl-listing-header {
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  border-radius: var(--fl-radius);
  background: linear-gradient(135deg, var(--fl-surface) 0%, #fff 100%);
  border-left: 4px solid var(--fl-accent);
}
.fl-listing-header__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fl-primary);
}
.fl-listing-header__subtitle {
  font-size: 0.95rem;
}
.fl-listing-header--best {
  border-left-color: #f59e0b;
}
.fl-listing-header--new {
  border-left-color: #10b981;
}
.fl-listing-header--sale {
  border-left-color: var(--fl-accent);
}

/* ── Category miniature card ─────────────────────────────────────── */
.fl-category-card {
  border-radius: var(--fl-radius);
  overflow: hidden;
  position: relative;
  background: var(--fl-surface);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.fl-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fl-shadow) !important;
}
.fl-category-card__media {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  height: 220px;
  overflow: hidden;
}
.fl-category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.fl-category-card:hover .fl-category-card__img {
  transform: scale(1.08);
}

.fl-category-card__placeholder {
  width: 100%;
  height: 100%;
  font-size: 3rem;
  color: var(--fl-warm-gray);
  background: var(--fl-surface-alt);
}
.fl-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 54, 99, 0) 40%,
    rgba(21, 54, 99, 0.85) 100%
  );
  pointer-events: none;
}
.fl-category-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.fl-category-card__name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.fl-category-card__cta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}
.fl-category-card:hover .fl-category-card__cta {
  color: var(--fl-accent-light);
}

/* ── Helper: accent text colour ──────────────────────────────────── */
.text-accent {
  color: var(--fl-accent) !important;
}

/* ── Responsive tweaks ───────────────────────────────────────────── */
@media (max-width: 575.98px) {
  .fl-order-confirmation__check {
    width: 64px;
    height: 64px;
    font-size: 2.25rem;
  }
  .fl-meta-card__icon {
    font-size: 1.25rem;
  }
  .fl-meta-card__value {
    font-size: 0.85rem;
  }
  .fl-order-table tbody td {
    padding: 0.65rem;
  }
  .fl-brand-header__media {
    width: 140px;
    height: 90px;
  }
  .fl-category-card__media {
    height: 180px;
  }
}

/* ================================================================
   Language & Currency selector dropdown
   Targets: <div class="language-selector|currency-selector">
              <span>Current</span>
              <ul><li [class="current"]><a>…</a></li>…</ul>
            </div>
   ================================================================ */

.language-selector,
.currency-selector {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* ── Trigger ────────────────────────────────────────────────────── */
.language-selector > span,
.currency-selector > span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.28rem 0.6rem;
  border: 1px solid hsla(0, 0%, 100%, 0.22);
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  color: hsla(0, 0%, 100%, 0.85);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

/* CSS chevron — no font-family dependency */
.language-selector > span::after,
.currency-selector > span::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid currentColor;
  opacity: 0.8;
  margin-left: 0.1rem;
  transition: transform 0.2s ease;
}

.language-selector > span:hover,
.language-selector.is-open > span,
.currency-selector > span:hover,
.currency-selector.is-open > span {
  background: hsla(0, 0%, 100%, 0.14);
  color: #fff;
  border-color: hsla(0, 0%, 100%, 0.42);
}

.language-selector.is-open > span::after,
.currency-selector.is-open > span::after {
  transform: rotate(180deg);
}

/* ── Dropdown panel ─────────────────────────────────────────────── */
.language-selector ul,
.currency-selector ul {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  min-width: 168px;
  padding: 0.4rem 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow:
    0 8px 28px rgba(13, 38, 69, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s 0.18s;
  z-index: 1060;
}

.language-selector.is-open ul,
.currency-selector.is-open ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

/* Arrow caret pointing up toward the trigger */
.language-selector ul::before,
.currency-selector ul::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 13px;
  width: 9px;
  height: 9px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 1px;
  box-shadow: -1px -1px 3px rgba(0, 0, 0, 0.06);
}

/* ── Items ──────────────────────────────────────────────────────── */
.language-selector ul li a,
.currency-selector ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.1rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: #1a1a2e;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.12s ease,
    color 0.12s ease;
}

.language-selector ul li a:hover,
.currency-selector ul li a:hover {
  background: #f8f9fa;
  color: #153663;
}

.language-selector ul li + li,
.currency-selector ul li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Active / current item */
.language-selector ul li.current a,
.currency-selector ul li.current a {
  color: #d84f35;
  font-weight: 700;
  background: rgba(216, 79, 53, 0.06);
}

.language-selector ul li.current a::after,
.currency-selector ul li.current a::after {
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
  margin-left: 0.65rem;
  color: #d84f35;
  flex-shrink: 0;
}

/* ── CSS-only hover fallback (desktop) ─────────────────────────
   Opens the dropdown on hover so it works even without JS.
   JS-toggled .is-open provides click support and keyboard access. */
@media (hover: hover) and (pointer: fine) {
  .language-selector:hover ul,
  .currency-selector:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }
  .language-selector:hover > span::after,
  .currency-selector:hover > span::after {
    transform: rotate(180deg);
  }
  .language-selector:hover > span,
  .currency-selector:hover > span {
    background: hsla(0, 0%, 100%, 0.14);
    color: #fff;
    border-color: hsla(0, 0%, 100%, 0.42);
  }
}

/* ================================================================
   Mini-cart  (ps_shoppingcart / #blockcart-wrapper)
   HTML contract:
     #blockcart-wrapper
       .blockcart.cart-preview[.is-open]
         .header > a > span("Carrito") + span("N artículos")
         .body
           ul > li*                   (cart items)
           .cart-subtotals
             .products | .shipping | .taxes | .discount
               .label + .value
           .cart-total > .label + .value
   ================================================================ */

#blockcart-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.blockcart {
  position: relative;
}

/* ── Trigger ────────────────────────────────────────────────────── */
.blockcart .header a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.6rem;
  border: 1px solid hsla(0, 0%, 100%, 0.22);
  border-radius: 6px;
  color: hsla(0, 0%, 100%, 0.85);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

/* "Carrito" text — visually hidden (icon injected by JS replaces it) */
.blockcart .header a span:first-child {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Count badge — JS adds .cart-products-count and strips text to number */
.blockcart .header .cart-products-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: #d84f35;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

/* Hover + open states */
.blockcart .header a:hover,
.blockcart.is-open .header a {
  background: hsla(0, 0%, 100%, 0.14);
  color: #fff;
  border-color: hsla(0, 0%, 100%, 0.42);
}

/* ── Dropdown body ──────────────────────────────────────────────── */
.blockcart .body {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow:
    0 8px 28px rgba(13, 38, 69, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s 0.18s;
  overflow: hidden; /* keeps border-radius on inner children */
}

/* Arrow caret */
.blockcart .body::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 14px;
  width: 9px;
  height: 9px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 1px;
  box-shadow: -1px -1px 3px rgba(0, 0, 0, 0.06);
  z-index: 1;
}

/* JS-toggled open */
.blockcart.is-open .body {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

/* CSS hover fallback (desktop) */
@media (hover: hover) and (pointer: fine) {
  .blockcart:hover .body {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }
  .blockcart:hover .header a {
    background: hsla(0, 0%, 100%, 0.14);
    color: #fff;
    border-color: hsla(0, 0%, 100%, 0.42);
  }
}

/* ── Items list ─────────────────────────────────────────────────── */
.blockcart .body > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
}

/* Empty-cart message (JS adds .is-empty class + p.blockcart-empty) */
.blockcart .body > ul.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1rem;
  min-height: 72px;
}

.blockcart-empty {
  margin: 0;
  font-size: 0.84rem;
  color: #6c757d;
  text-align: center;
}

/* Generic item row — covers varying PS module markup */
.blockcart .body > ul li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #f0f2f5;
  align-items: start;
}

.blockcart .body > ul li img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border: 1px solid #f0f2f5;
  border-radius: 6px;
  background: #fafafa;
  display: block;
}

.blockcart .body > ul li .product_name,
.blockcart .body > ul li .product-name,
.blockcart .body > ul li .cart-product-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #153663;
  display: block;
  margin-bottom: 0.2rem;
}

.blockcart .body > ul li .price,
.blockcart .body > ul li .product-price {
  font-size: 0.8rem;
  color: #6c757d;
}

.blockcart .body > ul li .remove_from_cart,
.blockcart .body > ul li .remove-from-cart {
  color: #adb5bd;
  font-size: 0.85rem;
  line-height: 1;
  transition: color 0.12s ease;
}

.blockcart .body > ul li .remove_from_cart:hover,
.blockcart .body > ul li .remove-from-cart:hover {
  color: #d84f35;
}

/* ── Subtotals ──────────────────────────────────────────────────── */
.blockcart .cart-subtotals {
  padding: 0.65rem 1rem 0.3rem;
  border-top: 1px solid #f0f2f5;
}

/* Hide unnamed/empty subtotal rows */
.blockcart .cart-subtotals > div {
  display: none;
}

.blockcart .cart-subtotals > div.products,
.blockcart .cart-subtotals > div.shipping,
.blockcart .cart-subtotals > div.taxes,
.blockcart .cart-subtotals > div.discount {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.22rem 0;
  font-size: 0.81rem;
}

.blockcart .cart-subtotals .label {
  color: #6c757d;
  font-weight: 500;
}
.blockcart .cart-subtotals .value {
  color: #1a1a2e;
  font-weight: 600;
}

/* ── Grand total ────────────────────────────────────────────────── */
.blockcart .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  border-top: 2px solid #f0f2f5;
}

.blockcart .cart-total .label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #153663;
}

.blockcart .cart-total .value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #d84f35;
}

/* ── Checkout CTA (injected by JS) ─────────────────────────────── */
.blockcart-cta {
  display: block;
  margin: 0.65rem 1rem 0.9rem;
  padding: 0.6rem 1rem;
  background: #d84f35;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  border-radius: 0.5rem;
  text-decoration: none !important;
  transition: background 0.15s ease;
}

.blockcart-cta:hover {
  background: #b8402a;
}

/* ── Overlay pointer-events fix ────────────────────────────────
   pointer-events:none until is-visible prevents the overlay from
   intercepting the same click that opened the mega menu.          */
.megamenu-overlay {
  pointer-events: none;
}
.megamenu-overlay.is-visible {
  pointer-events: auto;
}

/* ── Mega-menu containing-block fix ────────────────────────────
   .megamenu is position:absolute with left:0;right:0;width:100%.
   Its containing block must be .header-nav (full-width bar), NOT
   the <li> trigger (which is only as wide as its text content).  */
.header-nav {
  position: relative;
}
.header-nav__item--mega {
  position: static !important;
}

/* ── Logo container fix ─────────────────────────────────────────
   flex: 0 0 auto prevents the flex algorithm from shrinking the
   logo to 0 when .header-main__search (flex-grow-1) expands.    */
.header-main__logo {
  flex: auto;
}
.header-main__logo .logo {
  display: block;
  max-height: 30px;
  width: auto;
}

/* ================================================================
   Search widget  (ps_searchbar / #search_widget)
   Sits inside .header-main__search (white header section).
   ================================================================ */

/* Scoped to the ID (#search_widget) because the module markup does not
   always include the .search-widget class. */
#search_widget {
  width: 100%;
}

/* Form = styled input-group container */
#search_widget form {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1.5px solid #d8dde3;
  border-radius: 0.5rem;
  overflow: hidden;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

#search_widget form:focus-within {
  border-color: #153663;
  box-shadow: 0 0 0 0.2rem rgba(21, 54, 99, 0.12);
}

/* Text input */
#search_widget input[name="s"] {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.58rem 0.85rem;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  font-family: inherit;
  color: #1a1a2e;
  -webkit-appearance: none;
}

#search_widget input[name="s"]::placeholder {
  color: #6c757d;
  font-size: 0.88rem;
}

/* Submit button */
#search_widget button[type="submit"] {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.95rem;
  min-width: 44px;
  background: #153663;
  color: #fff;
  border: none;
  border-left: 1.5px solid #d8dde3;
  cursor: pointer;
  font-size: 0; /* hides the bare "Buscar" text node */
  line-height: 1;
  transition: background 0.15s ease;
}

#search_widget button[type="submit"]:hover {
  background: #0e2444;
}
#search_widget button[type="submit"]:active {
  background: #d84f35;
}

/* Hide any child markup the module might emit
   (a <span>Buscar</span>, a <i class="material-icons">, or a JS-injected <i>) */
#search_widget button[type="submit"] > * {
  display: none !important;
}

/* Magnifier icon — pure CSS via the Bootstrap Icons font, no JS needed */
#search_widget button[type="submit"]::before {
  font-family: "bootstrap-icons";
  content: "\F52A"; /* bi-search glyph */
  font-size: 1.05rem;
  line-height: 1;
}

/* ================================================================
   Mega Menu — column layout
   Replaces the icon-card grid with a 5-column links panel.
   ================================================================ */

/* ── Column row ─────────────────────────────────────────────────── */
.megamenu-cols {
  border-bottom: 1px solid #f0f2f5;
}

/* ── Individual column ──────────────────────────────────────────── */
.megamenu-col {
  padding: 1.25rem 1.1rem 1rem;
  border-right: 1px solid #f0f2f5;
}

.megamenu-col--last,
.megamenu-col:last-child {
  border-right: none;
}

/* ── Column header (main category link) ────────────────────────── */
.megamenu-col__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  color: #153663;
  text-decoration: none;
  margin-bottom: 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid #d84f35;
  transition: color 0.15s ease;
}

.megamenu-col__head:hover {
  color: #d84f35;
}

/* Icon chip next to column header */
.megamenu-col__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(21, 54, 99, 0.08);
  color: #d84f35;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.megamenu-col__head:hover .megamenu-col__icon {
  background: rgba(216, 79, 53, 0.1);
}

/* ── Subcategory list ───────────────────────────────────────────── */
.megamenu-col__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.35rem;
}

.megamenu-col__link {
  display: block;
  padding: 0.22rem 0;
  font-size: 0.82rem;
  color: #4a5260;
  text-decoration: none;
  transition:
    color 0.12s ease,
    padding-left 0.12s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.megamenu-col__link:hover {
  color: #d84f35;
  padding-left: 4px;
}

/* ── Sub-group (secondary category within a column) ────────────── */
.megamenu-col__group {
  margin-top: 0.7rem;
  padding-top: 0.65rem;
  border-top: 1px solid #f0f2f5;
}

.megamenu-col__sub-head {
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #153663;
  text-decoration: none;
  margin-bottom: 0.35rem;
  transition: color 0.12s ease;
}

.megamenu-col__sub-head:hover {
  color: #d84f35;
}

.megamenu-col__sub-head .bi {
  font-size: 0.8rem;
  opacity: 0.75;
}

/* ── "Ver todo" link at column footer ───────────────────────────── */
.megamenu-col__viewall {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e4a8a;
  text-decoration: none;
  margin-top: 0.3rem;
  transition: color 0.12s ease;
}

.megamenu-col__viewall:hover {
  color: #d84f35;
}
.megamenu-col__viewall .bi {
  font-size: 0.7rem;
}

/* ── Footer bar links ───────────────────────────────────────────── */
.megamenu__footer-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #153663;
  text-decoration: none;
  transition: color 0.12s ease;
}

.megamenu__footer-link:hover {
  color: #d84f35;
}

.megamenu__footer-link--sale {
  color: #d84f35;
  font-weight: 800;
}

.megamenu__footer-link--sale:hover {
  color: #b8402a;
}

/* Mobile accent link */
.megamenu-mobile__link--sale {
  color: #d84f35 !important;
  font-weight: 700;
}

/* ── Responsive: stack to 2 col on md, 1 col on sm ─────────────── */
@media (max-width: 991.98px) {
  .megamenu-col {
    border-right: none;
    border-bottom: 1px solid #f0f2f5;
    padding: 1rem;
  }
  .megamenu-col:last-child {
    border-bottom: none;
  }

  /* 2-column grid on tablet */
  .megamenu-cols {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }

  /* Truncation off on wider cards */
  .megamenu-col__link {
    white-space: normal;
  }
}

@media (max-width: 575.98px) {
  .megamenu-cols {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   Contact form  (contactform module widget output)
   The module renders:
     section.login-form > form
       > header (h1 + p)
       > section.form-fields
           > label > span(label) + input|select|textarea
           > .gdpr_consent (psgdpr checkbox)
           > .cf-turnstile
       > footer.form-footer > button[submit]
   ================================================================ */

.fl-contact-page .login-form {
  margin: 0;
}
.fl-contact-page .login-form form {
  margin: 0;
}

/* ── Header ─────────────────────────────────────────────────────── */
.fl-contact-page .login-form header {
  margin-bottom: 1.5rem;
}
.fl-contact-page .login-form header h1,
.fl-contact-page .login-form header .h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #153663;
  margin-bottom: 0.5rem;
}
.fl-contact-page .login-form header p {
  color: #6c757d;
  font-size: 0.92rem;
  margin: 0;
}

/* ── Field rows ─────────────────────────────────────────────────── */
.fl-contact-page .form-fields > label {
  display: block;
  margin-bottom: 1.1rem;
}
.fl-contact-page .form-fields > label > span {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0e2444;
  margin-bottom: 0.4rem;
}

/* ── Controls ───────────────────────────────────────────────────── */
.fl-contact-page .form-fields input[type="email"],
.fl-contact-page .form-fields input[type="text"],
.fl-contact-page .form-fields select,
.fl-contact-page .form-fields textarea {
  display: block;
  width: 100%;
  padding: 0.65rem 0.875rem;
  font-size: 0.95rem;
  font-family: inherit;
  line-height: 1.4;
  color: #1a1a2e;
  background: #fff;
  border: 1.5px solid #d8dde3;
  border-radius: 0.5rem;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.fl-contact-page .form-fields input[type="email"]:focus,
.fl-contact-page .form-fields input[type="text"]:focus,
.fl-contact-page .form-fields select:focus,
.fl-contact-page .form-fields textarea:focus {
  border-color: #d84f35;
  box-shadow: 0 0 0 0.2rem rgba(216, 79, 53, 0.15);
  outline: none;
}

.fl-contact-page .form-fields textarea {
  min-height: 160px;
  resize: vertical;
}

.fl-contact-page .form-fields input[type="file"] {
  display: block;
  width: 100%;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  color: #4a5260;
  background: #f8f9fa;
  border: 1.5px dashed #d8dde3;
  border-radius: 0.5rem;
  cursor: pointer;
}
.fl-contact-page .form-fields input[type="file"]:hover {
  border-color: #d84f35;
}

/* ── GDPR consent checkbox ──────────────────────────────────────── */
.fl-contact-page .gdpr_consent {
  margin: 0.25rem 0 1rem;
}
.fl-contact-page .custom-checkbox {
  display: block;
}
.fl-contact-page .psgdpr_consent_message {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.88rem;
  color: #4a5260;
  cursor: pointer;
}
.fl-contact-page .psgdpr_consent_message input[type="checkbox"] {
  width: 1.1em;
  height: 1.1em;
  margin-top: 0.12em;
  accent-color: #d84f35;
  flex-shrink: 0;
  cursor: pointer;
}
/* Hide the broken Material-Icons checkmark wrapper (theme uses BI) */
.fl-contact-page .psgdpr_consent_message > span:first-of-type {
  display: none;
}
.fl-contact-page .material-icons {
  display: none;
}

/* ── Cloudflare Turnstile spacing ───────────────────────────────── */
.fl-contact-page .cf-turnstile {
  margin: 0.5rem 0;
}

/* ── Submit button ──────────────────────────────────────────────── */
.fl-contact-page .form-footer {
  margin-top: 1.5rem;
  display: flex;
}
.fl-contact-page .form-footer button[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.7rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: #d84f35;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}
.fl-contact-page .form-footer button[type="submit"]:hover:not([disabled]) {
  background: #b8402a;
  box-shadow: 0 6px 18px rgba(216, 79, 53, 0.35);
}
.fl-contact-page .form-footer button[type="submit"]:active:not([disabled]) {
  transform: translateY(1px);
}
.fl-contact-page .form-footer button[type="submit"][disabled] {
  background: #e8a596;
  cursor: not-allowed;
  opacity: 0.9;
}

/* ================================================================
   Add-to-cart feedback animations
   Fired on PrestaShop's `updateCart` event (see theme.js):
   the add-to-cart button gets `.fl-cart-added`, the header
   mini-cart gets `.is-bumped`.
   ================================================================ */

/* --- Add-to-cart button: pop + success tint + (check icon via JS) --- */
@keyframes fl-btn-pop {
  0%   { transform: scale(1); }
  35%  { transform: scale(0.94); }
  70%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.fl-cart-added {
  animation: fl-btn-pop 0.45s ease;
  background: #1f9d55 !important;
  border-color: #1f9d55 !important;
  color: #fff !important;
}

/* --- Header mini-cart: icon bump + badge pop + glow ring --- */
@keyframes fl-cart-bump {
  0%, 100% { transform: scale(1) rotate(0); }
  20%      { transform: scale(1.18) rotate(-8deg); }
  45%      { transform: scale(1.05) rotate(5deg); }
  70%      { transform: scale(1.12) rotate(-3deg); }
}
@keyframes fl-badge-pop {
  0%   { transform: scale(0.5); opacity: 0.4; }
  55%  { transform: scale(1.45); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes fl-cart-glow {
  0%   { box-shadow: 0 0 0 0 rgba(216, 79, 53, 0.5); }
  100% { box-shadow: 0 0 0 12px rgba(216, 79, 53, 0); }
}
.blockcart.is-bumped .header a {
  animation: fl-cart-glow 0.8s ease;
}
.blockcart.is-bumped .header a .bi {
  display: inline-block;
  transform-origin: center;
  animation: fl-cart-bump 0.8s ease;
}
.blockcart.is-bumped .cart-products-count {
  animation: fl-badge-pop 0.7s ease;
}

@media (prefers-reduced-motion: reduce) {
  .fl-cart-added,
  .blockcart.is-bumped .header a,
  .blockcart.is-bumped .header a .bi,
  .blockcart.is-bumped .cart-products-count {
    animation: none !important;
  }
}

/* ================================================================
   Product technical sheet (features) — under add-to-cart
   Small text, divider lines, first 5 shown + "show more" toggle.
   ================================================================ */
.fl-product-specs { }
.fl-product-specs__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0e2444;
  margin-bottom: 0.5rem;
}
.fl-product-specs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #f0f2f5;
}
.fl-product-specs__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f0f2f5;
  font-size: 0.8rem;
  line-height: 1.4;
}
.fl-product-specs__item--extra { display: none; }
.fl-product-specs.is-expanded .fl-product-specs__item--extra { display: flex; }
.fl-product-specs__name {
  color: #6c757d;
  font-weight: 600;
  flex: 0 0 auto;
  max-width: 55%;
}
.fl-product-specs__value {
  color: #1a1a2e;
  text-align: right;
}
.fl-product-specs__toggle {
  margin-top: 0.65rem;
  padding: 0.25rem 0;
  background: none;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: #153663;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.fl-product-specs__toggle:hover { color: #d84f35; }
.js-specs-toggle-icon { transition: transform 0.2s ease; }
.fl-product-specs.is-expanded .js-specs-toggle-icon { transform: rotate(180deg); }

/* ================================================================
   Newsletter band (ps_emailsubscription)
   Rendered via displayFooterBefore, above .footer-main.
   Turns the raw module markup into a full-width navy band.
   ================================================================ */
.site-footer .block_newsletter {
  width: 100%;
  max-width: 100%;
  flex: none;
  margin: 0;
  padding: 2rem 0;
  background: #153663;
  border-top: 3px solid #d84f35;
  color: rgba(255, 255, 255, 0.9);
}

/* Center the content to the theme container width */
.site-footer .block_newsletter > .row {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
  align-items: center;
}

/* Heading text */
.site-footer #block-newsletter-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.site-footer #block-newsletter-label::before {
  content: "\F32F"; /* bi-envelope */
  font-family: "bootstrap-icons";
  font-size: 1.5rem;
  color: #e8714f;
  flex-shrink: 0;
}

/* Email input + submit on one row */
.site-footer .block_newsletter form .row > .col-12:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}
.site-footer .block_newsletter .input-wrapper {
  flex: 1 1 220px;
  order: 1;
  min-width: 0;
}
.site-footer .block_newsletter input[name="email"] {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
}
.site-footer .block_newsletter input[name="email"]::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.site-footer .block_newsletter input[name="email"]:focus {
  outline: none;
  border-color: #e8714f;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 0.2rem rgba(216, 79, 53, 0.25);
}

/* Submit button (always visible, accent) */
.site-footer .block_newsletter input[name="submitNewsletter"] {
  order: 2;
  flex: 0 0 auto;
  float: none !important;
  display: inline-block !important;
  padding: 0.65rem 1.4rem;
  background: #d84f35;
  border: none;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.site-footer .block_newsletter input[name="submitNewsletter"]:hover:not([disabled]) {
  background: #b8402a;
}
.site-footer .block_newsletter input[name="submitNewsletter"][disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
/* Hide the secondary duplicate "OK" submit */
.site-footer .block_newsletter input[name="submitNewsletter"].d-sm-none {
  display: none !important;
}

/* Helper / unsubscribe text */
.site-footer .block_newsletter p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.75rem 0 0;
}
.site-footer .block_newsletter .clearfix { display: none; }

/* GDPR consent checkbox */
.site-footer .block_newsletter .gdpr_consent { margin-top: 0.5rem; }
.site-footer .block_newsletter .psgdpr_consent_message {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.site-footer .block_newsletter .psgdpr_consent_message input[type="checkbox"] {
  width: 1.05em;
  height: 1.05em;
  margin-top: 0.1em;
  accent-color: #d84f35;
  flex-shrink: 0;
  cursor: pointer;
}
/* Hide the broken Material-Icons checkmark wrapper */
.site-footer .block_newsletter .psgdpr_consent_message > span:first-of-type { display: none; }
.site-footer .block_newsletter .material-icons { display: none; }

/* Stack label above the form on small screens */
@media (max-width: 767.98px) {
  .site-footer #block-newsletter-label { margin-bottom: 1rem; }
}

/* ================================================================
   Product "Documents & downloads" tab (attachments)
   ================================================================ */
.fl-product-docs__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.fl-product-docs__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid #f0f2f5;
  border-radius: 0.5rem;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.fl-product-docs__item:hover {
  border-color: rgba(216, 79, 53, 0.35);
  box-shadow: 0 4px 14px rgba(13, 38, 69, 0.07);
}
.fl-product-docs__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(216, 79, 53, 0.08);
  color: #d84f35;
  font-size: 1.4rem;
}
.fl-product-docs__info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.fl-product-docs__name {
  font-weight: 600;
  color: #0e2444;
  font-size: 0.9rem;
}
.fl-product-docs__desc {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 0.1rem;
}
.fl-product-docs__btn {
  flex: 0 0 auto;
  white-space: nowrap;
}
.fl-product-docs__size {
  opacity: 0.75;
  font-weight: 400;
}
.fl-product-docs__hook:not(:empty) {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f0f2f5;
}

@media (max-width: 575.98px) {
  .fl-product-docs__item { flex-wrap: wrap; }
  .fl-product-docs__btn { width: 100%; }
}

/* ================================================================
   Product gallery lightbox + hover zoom
   ================================================================ */
#fl-gallery-main { cursor: zoom-in; }

.fl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 20, 35, 0.93);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.fl-lightbox.is-open {
  display: flex;
  opacity: 1;
}
body.fl-lightbox-open { overflow: hidden; }

.fl-lightbox__stage {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  overflow: hidden;
  border-radius: 8px;
  cursor: zoom-in;
  background: #fff;
}
.fl-lightbox__img {
  display: block;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.15s ease-out;
  will-change: transform;
  -webkit-user-drag: none;
  user-select: none;
}
.fl-lightbox__img.is-zoomed {
  transform: scale(2.5);
  cursor: zoom-out;
  transition: transform 0.12s ease-out;
}

.fl-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.fl-lightbox__close:hover { opacity: 1; transform: scale(1.1); }

.fl-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}
.fl-lightbox__nav:hover { background: rgba(255, 255, 255, 0.25); }
.fl-lightbox__nav--prev { left: 1.5rem; }
.fl-lightbox__nav--next { right: 1.5rem; }
.fl-lightbox--single .fl-lightbox__nav { display: none; }

@media (max-width: 575.98px) {
  .fl-lightbox__nav { width: 40px; height: 40px; font-size: 1.6rem; }
  .fl-lightbox__nav--prev { left: 0.5rem; }
  .fl-lightbox__nav--next { right: 0.5rem; }
  .fl-lightbox__close { right: 0.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  .fl-lightbox, .fl-lightbox__img, .fl-lightbox__close { transition: none; }
}
