/* ================ ================ VARIABLES ================ ================ */
:root {
  /* xBattery palette */
  --brand-bg: #ffffff;
  --brand-accent-green: #20b824;
  --brand-accent-blue: #297eb3;
  --brand-accent-yellow: #ffc705;
  --brand-accent-blue-light: #9ec3db;
  --brand-accent-pink: var(--brand-accent-green);
  --brand-accent-1: var(--brand-accent-green);
  --brand-accent-2: var(--brand-accent-blue-light);
  --brand-accent-2-ui: var(--brand-accent-blue);
  --brand-muted-light: var(--brand-accent-blue-light);
  --brand-muted-dark: #1a2332;

  --brand-primary-bg: var(--brand-accent-green);
  --brand-primary-text: var(--brand-accent-green);
  --on-primary: #ffffff;

  --brand-secondary-bg: var(--brand-accent-blue);
  --brand-secondary-text: #ffffff;
  --on-secondary: #ffffff;

  --dark-text: var(--brand-muted-dark);
  --light-text: var(--brand-muted-dark);

  --dark-bg: var(--brand-muted-dark);
  --light-bg: var(--brand-bg);
  --muted-light: var(--brand-muted-light);
  --muted-dark: var(--brand-muted-dark);

  --brand-shadow-rgb: 41, 126, 179;

  --radius: 8px;

  --btn-primary-bg: var(--brand-accent-green);
  --btn-primary-text: #ffffff;
  --btn-primary-bg-hov: #1a9620;

  --btn-secondary-bg: var(--brand-accent-blue);
  --btn-secondary-text: #ffffff;
  --btn-secondary-bg-hov: #216694;

  --btn-white-bg: transparent;
  --btn-white-text: #ffffff;
  --btn-white-border: #ffffff;
  --btn-white-bg-hov: #ffffff;
  --btn-white-text-hov: var(--brand-muted-dark);

  --btn-padding-y: 10px;
  --btn-padding-x: 28px;
  --btn-radius: 9999px;
  --btn-height: 44px;

  --link-color: var(--brand-primary-text);
  --link-underline: var(--brand-primary-text);

  --field-bg: var(--brand-bg);
  --field-text: var(--brand-muted-dark);
  --field-border: #dce6ee;
  --field-radius: var(--radius);
  --field-padding-y: 10px;
  --field-padding-x: 16px;

  --panel-bg: var(--brand-bg);
  --panel-border: #dce6ee;
  --panel-radius: var(--radius);
  --panel-shadow: 0 1px 6px rgba(var(--brand-shadow-rgb), 0.08);

  --content-max-width: 72ch;
  --p: 15px;
  --h1: 28px;
  --h2: 24px;
  --h3: 20px;
  --h4: 18px;
  --h5: 16px;
  --h6: 14px;
  --space-lg: 15px;
  --space-md: 12px;
  --space-sm: 8px;
  --space-xs: 6px;

  --transition: 0.3s ease-in-out;

  --font-heading: "Bebas Neue Pro", "Bebas Neue", sans-serif;
  --font-body: "Tonos", "Albert Sans", sans-serif;
}

/* ================ ================ COLORS ================ ================ */
.text-dark {
  color: var(--dark-text);
}
.text-light {
  color: var(--light-text);
}

.text-primary {
  color: var(--brand-primary-text);
}
.text-secondary {
  color: var(--brand-secondary-text);
}

.bg-primary {
  background-color: var(--brand-primary-bg);
  color: var(--on-primary);
}
.bg-secondary {
  background-color: var(--brand-secondary-bg);
  color: var(--on-secondary);
}

.bg-muted-light {
  background-color: var(--brand-muted-light);
}
.bg-muted-dark {
  background-color: var(--brand-muted-dark);
}
.bg-brand {
  background-color: var(--brand-bg);
}

.on-primary {
  color: var(--on-primary);
}

/* ================ ================ BUTTONS ================ ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  min-height: var(--btn-height);
  padding: 0 var(--btn-padding-x);
  border-radius: var(--btn-radius);
  border: none;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
}

.btn i {
  font-size: 0.9em;
  line-height: 1;
  flex-shrink: 0;
}

.btn-primary,
a.btn-primary,
button.btn-primary {
  background-color: var(--btn-primary-bg);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(122, 132, 80, 0.22);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active,
a.btn-primary:visited,
button.btn-primary:hover,
button.btn-primary:focus {
  background-color: var(--btn-primary-bg-hov);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(122, 132, 80, 0.28);
  transform: translateY(-1px);
}

.btn-secondary,
a.btn-secondary,
button.btn-secondary {
  background-color: var(--btn-secondary-bg);
  color: #ffffff;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:visited,
a.btn-secondary:hover,
a.btn-secondary:focus,
a.btn-secondary:active,
a.btn-secondary:visited,
button.btn-secondary:hover,
button.btn-secondary:focus {
  background-color: var(--btn-secondary-bg-hov);
  color: #ffffff;
}

.btn-white-outlined {
  background-color: var(--btn-white-bg);
  color: var(--btn-white-text);
  border: 2px solid var(--btn-white-border);
}
.btn-white-outlined:hover,
.btn-white-outlined:focus {
  background-color: var(--btn-white-bg-hov);
  color: var(--btn-white-text-hov);
  border-color: var(--btn-white-bg-hov);
}

/* ================ ================ LINKS ================ ================ */
.link-primary {
  color: var(--link-color);
  text-decoration: none;
  transition: var(--transition);
}
.link-primary:hover {
  opacity: 0.5;
}

.link-header {
  color: var(--link-color);
  text-decoration: none;
  background-image: linear-gradient(
    var(--link-underline),
    var(--link-underline)
  );
  background-size: 0% 0.1em;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  transition: background-size var(--transition), color var(--transition);
}
.link-header:hover,
.link-header:focus,
.link-header:active {
  background-size: 100% 0.1em;
  background-position-x: 0%;
}

.link-footer {
  color: #000000;
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
}
.link-footer:hover {
  opacity: 0.55;
}

.link-footer-head {
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.link-footer-color {
  color: #000000;
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link-footer-color:hover {
  opacity: 0.55;
}

.link-footer-color-head {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* ================ ================ SHADOWS ================ ================ */
.shadow-soft {
  box-shadow: 0 1px 6px 0 rgba(var(--brand-shadow-rgb), 0.08);
}

/* ================ ================ CONTENT ================ ================ */
.content-box p {
  font-size: var(--p);
  text-align: justify;
}
.content-box h1 {
  font-size: var(--h1);
  margin: 0 0 var(--space-lg);
}
.content-box h2 {
  font-size: var(--h2);
  margin: var(--space-lg) 0 var(--space-md);
}
.content-box h3 {
  font-size: var(--h3);
  margin: var(--space-lg) 0 var(--space-sm);
}
.content-box h4 {
  font-size: var(--h4);
  margin: 0 0 var(--space-sm);
}
.content-box h5 {
  font-size: var(--h5);
  margin: 0 0 var(--space-xs);
}
.content-box h6 {
  font-size: var(--h6);
  margin: 0 0 4px;
}
.content-box ol,
.content-box ul {
  margin-bottom: var(--space-lg);
}
.content-box ol {
  list-style-type: decimal;
}
.content-box ul {
  list-style-type: disc;
}
.content-box li {
  margin-left: 20px;
}
.content-box ul ul,
.content-box ol ol,
.content-box ul ol,
.content-box ol ul {
  margin-left: 20px;
}

/* ================ ================ LAYOUT ================ ================ */
body {
  background-color: var(--brand-bg);
  color: var(--dark-text);
  font-family: var(--font-body);
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.ifil-hero__title,
.ifil-carousel-head__title,
.ifil-archive__title,
.ifil-popover-content__title,
.ifil-cart-header h3,
.ifil-info-nav__title,
.ifil-atc-title {
  font-family: var(--font-heading);
}

h1,
.ifil-hero__title,
.ifil-archive__title {
  font-weight: 700;
}

h2,
.ifil-carousel-head__title {
  font-weight: 500;
}

h3,
h4 {
  font-weight: 500;
}

h5,
h6 {
  font-weight: 400;
}

.ifil-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 24px;
  box-sizing: border-box;
}

.ifil-content-page {
  padding-block: 24px 48px;
}

.ifil-content-page__inner {
  max-width: 1040px;
}

.ifil-content-page__inner--wide {
  max-width: 1400px;
}

.ifil-content-page__title {
  margin: 0 0 24px;
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.5rem, 1.15rem + 1.1vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--brand-primary-text);
  text-align: left;
}

.ifil-content-page__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--dark-text) 90%, transparent);
}

.ifil-not-found {
  padding-block: 48px 72px;
}

.ifil-not-found__inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 560px;
  margin-inline: auto;
  padding: 48px 24px;
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(41, 126, 179, 0.08);
  text-align: center;
}

.ifil-not-found__code {
  margin: 0;
  font-family: var(--font-heading, inherit);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: color-mix(in srgb, var(--brand-accent-blue) 28%, var(--brand-muted-dark));
}

.ifil-not-found__title {
  margin: 0;
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.375rem, 1.1rem + 0.8vw, 1.875rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--brand-primary-text);
}

.ifil-not-found__text {
  margin: 0;
  max-width: 42ch;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--dark-text) 72%, transparent);
}

.ifil-not-found__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.ifil-info-page__layout {
  display: grid;
  gap: 24px;
}

.ifil-info-page__content {
  min-width: 0;
}

.ifil-info-section + .ifil-info-section {
  margin-top: 32px;
}

.ifil-info-section__title {
  margin: 0 0 12px;
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--brand-primary-text);
}

.ifil-info-section__content {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--dark-text) 90%, transparent);
}

@media (min-width: 1024px) {
  .ifil-info-page__layout {
    grid-template-columns: minmax(220px, 1fr) minmax(0, 3fr);
    gap: 32px;
    align-items: start;
  }

  .ifil-info-page__aside {
    position: sticky;
    top: 24px;
  }
}

@media (max-width: 1023px) {
  .ifil-container {
    padding-inline: 16px;
  }
}

@media (min-width: 1024px) {
  .ifil-container {
    padding-inline: 48px;
  }
}

.ifil-wc-page {
  padding-block: 32px 48px;
}

@media (min-width: 1024px) {
  .ifil-wc-page {
    padding-block: 48px 64px;
  }
}

/* ================ ================ HOME HERO ================ ================ */
.ifil-hero-wrap {
  padding-block: 32px 24px;
}

.ifil-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 360px;
  max-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--panel-shadow);
  background-color: var(--brand-bg);
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.18) 40%,
      rgba(0, 0, 0, 0.04) 100%
    ),
    var(--ifil-hero-bg, none);
  background-size: cover;
  background-position: center;
}

.ifil-hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  box-sizing: border-box;
}

.ifil-hero__copy {
  max-width: 640px;
}

.ifil-hero__title {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}

.ifil-hero__subtitle {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.ifil-hero__cta {
  flex-shrink: 0;
  margin-bottom: 4px;
}

.ifil-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.ifil-logo__text {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  white-space: nowrap;
}

.ifil-logo__x {
  color: var(--brand-accent-blue);
}

.ifil-logo__battery {
  color: var(--brand-accent-green);
}

.ifil-logo--footer .ifil-logo__text {
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
}

.ifil-logo--mobile .ifil-logo__text {
  font-size: 1.5rem;
}

/* ================ ================ TOP BANNER ================ ================ */
.ifil-top-banner {
  background-color: var(--brand-primary-bg);
}

@media (min-width: 1024px) {
  .ifil-top-banner {
    background: linear-gradient(
      90deg,
      var(--brand-primary-bg) 0%,
      color-mix(in srgb, var(--brand-primary-bg) 82%, #000 18%) 100%
    );
  }
}

.ifil-top-banner,
.ifil-top-banner .on-primary,
.ifil-top-banner__link {
  color: var(--on-primary);
}

.ifil-top-banner__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ifil-top-banner__text {
  margin: 0;
  min-width: 0;
}

.ifil-top-banner__link {
  flex-shrink: 0;
  color: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.ifil-top-banner__link:hover,
.ifil-top-banner__link:focus {
  color: var(--on-primary);
  opacity: 0.82;
}

/* ================ ================ HEADER NAV ================ ================ */
.ifil-header-actions a,
.ifil-header-actions .js-popover > a {
  color: #000;
  text-decoration: none;
  transition: opacity var(--transition);
}

.ifil-header-actions a:hover,
.ifil-header-actions .js-popover > a:hover {
  opacity: 0.72;
}

.ifil-header-actions i,
.ifil-header-actions button i {
  color: var(--brand-accent-2-ui);
}

.ifil-header-actions p {
  margin: 0;
  color: #000;
  font-size: 0.8125rem;
  line-height: 1.35;
}

.ifil-header-actions button {
  color: inherit;
  background: none;
  border: 0;
}

.ifil-header-main {
  --ifil-header-gap-x: 24px;
  background-color: var(--brand-bg);
}

.ifil-header-main__inner {
  display: flex;
  align-items: center;
  gap: var(--ifil-header-gap-x);
}

.ifil-header-main__start {
  display: flex;
  align-items: center;
  gap: var(--ifil-header-gap-x);
  flex: 1;
  min-width: 0;
}

.ifil-header-main__search {
  flex: 1;
  min-width: 240px;
  max-width: none;
}

.ifil-header-main__search .ifil-search,
.ifil-header-main__search .ifil-search-form {
  width: 100%;
}

.ifil-header-vsep {
  flex-shrink: 0;
  align-self: stretch;
  width: 1px;
  min-height: 44px;
  background: color-mix(in srgb, var(--brand-muted-dark) 12%, transparent);
}

.ifil-header-trust {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: var(--ifil-header-gap-x);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ifil-header-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ifil-header-trust__item i {
  flex-shrink: 0;
  color: var(--brand-accent-2-ui);
  font-size: 0.9375rem;
}

.ifil-header-trust__item span {
  color: var(--dark-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.ifil-header-main .ifil-header-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: var(--ifil-header-gap-x);
}

@media (max-width: 1280px) {
  .ifil-header-main {
    --ifil-header-gap-x: 20px;
  }

  .ifil-header-main__search {
    min-width: 200px;
  }

  .ifil-header-trust__item span {
    font-size: 0.6875rem;
  }
}

.ifil-nav-categories {
	background: var(--brand-muted-dark);
	padding-block: 14px;
}

@media (min-width: 1024px) {
  .ifil-nav-categories {
    background: linear-gradient(
      90deg,
      var(--brand-muted-dark) 0%,
      color-mix(in srgb, var(--brand-muted-dark) 82%, #000 18%) 100%
    );
  }
}

.ifil-nav-categories__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px 32px;
}

.ifil-nav-categories__group {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ifil-nav-categories__list,
.ifil-nav-categories nav ul,
.ifil-nav-categories .menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ifil-nav-categories .menu-item {
	margin: 0;
	padding: 0;
	background: transparent;
}

.ifil-nav-categories .ifil-nav-link,
.ifil-nav-categories a,
.ifil-nav-categories .link-header {
	display: inline-block;
	color: #fff !important;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	background: transparent !important;
	background-image: none !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0;
	transition: opacity var(--transition);
}

.ifil-nav-categories .ifil-nav-link:hover,
.ifil-nav-categories .ifil-nav-link:focus,
.ifil-nav-categories a:hover,
.ifil-nav-categories a:focus,
.ifil-nav-categories .link-header:hover,
.ifil-nav-categories .link-header:focus {
	color: #fff !important;
	opacity: 0.78;
	background: transparent !important;
	background-image: none !important;
}

/* ================ ================ HOME CATEGORIES ================ ================ */
.ifil-home-categories {
  padding-block: 48px;
}

.ifil-home-categories__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ifil-home-categories__track.slick-initialized {
  display: block;
  margin-inline: -8px;
}

.ifil-home-categories__slide {
  min-width: 0;
}

.ifil-home-categories__track.slick-initialized .ifil-home-categories__slide {
  padding-inline: 8px;
}

.ifil-home-categories .slick-list {
  overflow: hidden;
}

.ifil-home-categories .slick-track {
  display: flex;
  align-items: stretch;
}

.ifil-home-categories .slick-slide {
  height: auto;
}

.ifil-home-categories .slick-slide > div {
  height: 100%;
}

@media (max-width: 1023px) {
  .ifil-home-categories__track:not(.slick-initialized) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ifil-home-categories__track:not(.slick-initialized) {
    grid-template-columns: minmax(0, 1fr);
  }
}

.ifil-home-category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  text-decoration: none;
  box-shadow: var(--panel-shadow);
}

.ifil-home-category-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ifil-home-category-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.ifil-home-category-card:hover .ifil-home-category-card__media img {
  transform: scale(1.08);
}

.ifil-home-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.22) 42%,
    rgba(0, 0, 0, 0.02) 100%
  );
  transition: background var(--transition);
}

.ifil-home-category-card:hover .ifil-home-category-card__overlay {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.28) 48%,
    rgba(0, 0, 0, 0.06) 100%
  );
}

.ifil-home-category-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px 22px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

/* ================ ================ HOME PROMO TILES ================ ================ */
.ifil-home-promo {
  padding-block: 8px 32px;
}

.ifil-home-promo__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1023px) {
  .ifil-home-promo__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.ifil-home-promo-card {
  position: relative;
  display: block;
  height: 100%;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ifil-home-promo-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ifil-home-promo-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.ifil-home-promo-card:hover .ifil-home-promo-card__media img {
  transform: scale(1.08);
}

.ifil-home-promo-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--brand-accent-blue-light) 88%, transparent) 0%,
    color-mix(in srgb, #ffffff 72%, transparent) 100%
  );
  transition: opacity var(--transition);
}

.ifil-home-promo-card:hover .ifil-home-promo-card__overlay {
  opacity: 0.92;
}

.ifil-home-promo-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 28px 24px;
}

.ifil-home-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(var(--brand-shadow-rgb), 0.16);
}

.ifil-home-promo-card__label {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brand-muted-dark);
  line-height: 1.05;
}

.ifil-home-promo-card__cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-accent-blue);
}

.ifil-home-promo-card--special {
  border: 2px solid var(--brand-accent-yellow);
  box-shadow:
    0 0 0 1px rgba(255, 199, 5, 0.35),
    0 16px 40px rgba(26, 35, 50, 0.28);
}

.ifil-home-promo-card--special .ifil-home-promo-card__overlay {
  background:
    linear-gradient(135deg, rgba(26, 35, 50, 0.82) 0%, rgba(41, 126, 179, 0.78) 55%, rgba(32, 184, 36, 0.72) 100%),
    radial-gradient(circle at 85% 15%, rgba(255, 199, 5, 0.35) 0%, transparent 42%),
    radial-gradient(circle at 10% 90%, rgba(32, 184, 36, 0.25) 0%, transparent 45%);
}

.ifil-home-promo-card--special .ifil-home-promo-card__label {
  color: #ffffff;
}

.ifil-home-promo-card--special .ifil-home-promo-card__cta {
  color: var(--brand-accent-yellow);
}

.ifil-home-promo-card--special:hover {
  box-shadow:
    0 0 0 2px var(--brand-accent-yellow),
    0 20px 48px rgba(26, 35, 50, 0.35);
}

@media (max-width: 767px) {
  .ifil-hero-wrap {
    padding-block: 20px 16px;
  }

  .ifil-hero {
    height: 50vh;
    min-height: 320px;
    max-height: 420px;
    border-radius: 16px;
  }

  .ifil-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 16px;
    padding: 24px;
  }

  .ifil-hero__cta {
    align-self: flex-start;
    margin-bottom: 0;
  }
}

/* ================ ================ TRUST BAR ================ ================ */
.ifil-trust-bar-wrap {
  padding-block: 8px 16px;
}

.ifil-trust-bar {
  width: 100%;
}

.ifil-trust-bar .ifil-benefits__track.is-row {
  width: 100%;
  justify-content: space-between;
  gap: 16px 12px;
}

.ifil-trust-bar .ifil-benefit {
  gap: 10px;
  flex: 0 1 auto;
}

.ifil-trust-bar .ifil-benefit i {
  color: var(--brand-accent-1) !important;
  font-size: 1rem !important;
}

.ifil-trust-bar .ifil-benefit span {
  color: var(--brand-muted-dark) !important;
  font-size: 0.9375rem !important;
}

@media (max-width: 767px) {
  .ifil-trust-bar .ifil-benefits__track.is-row {
    justify-content: flex-start;
  }
}

/* ================ ================ HOME CAROUSELS ================ ================ */
.ifil-carousel.ifil-products,
.ifil-carousel.ifil-cats,
.ifil-carousel.ifil-posts {
  padding-inline: 24px;
}

.ifil-home-carousel.ifil-carousel {
  padding-block: 44px 32px;
  padding-inline: 0;
}

.ifil-carousel-head {
  max-width: 1400px;
  margin: 0 auto 22px;
  padding-inline: 0;
}

.ifil-carousel-head--home {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 16px;
  box-sizing: border-box;
}

.ifil-carousel-head__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
}

.ifil-carousel-head__title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--brand-accent-green);
}

.ifil-home-carousel .ifil-products-track {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 16px;
  box-sizing: border-box;
}

.ifil-page-carousel.ifil-carousel {
  padding-inline: 0;
  padding-block: 32px 48px;
}

.ifil-page-carousel .ifil-carousel-head {
  max-width: none;
  margin-inline: 0;
  margin-bottom: 22px;
  padding-inline: 0;
}

.ifil-page-carousel .ifil-products-track {
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.ifil-product-cross.ifil-carousel {
  padding-block: 32px 8px;
  padding-inline: 0;
}

.ifil-product-cross .ifil-carousel-head {
  max-width: none;
  margin-inline: 0;
  margin-bottom: 22px;
  padding-inline: 0;
}

.ifil-product-cross .ifil-products-track {
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

@media (min-width: 1024px) {
  .ifil-page-carousel.ifil-carousel {
    padding-block: 40px 56px;
  }

  .ifil-carousel.ifil-products:not(.ifil-page-carousel):not(.ifil-home-carousel):not(.ifil-product-cross),
  .ifil-carousel.ifil-cats,
  .ifil-carousel.ifil-posts {
    padding-inline: 48px;
  }

  .ifil-carousel-head--home,
  .ifil-home-carousel .ifil-products-track {
    padding-inline: 48px;
  }

  .ifil-product-cross.ifil-carousel {
    padding-block: 40px 12px;
  }
}

@media (max-width: 767px) {
  .ifil-home-carousel.ifil-carousel {
    padding-block: 24px 16px;
  }

  .ifil-home-categories {
    padding-block: 24px;
  }

  .ifil-trust-bar-wrap {
    padding-block: 4px 12px;
  }

  .ifil-carousel-head {
    margin-bottom: 14px;
  }

  .ifil-carousel-head__title::after {
    margin-top: 8px;
  }

  .ifil-home-carousel .ifil-carousel-head {
    text-align: center;
  }

  .ifil-home-carousel .ifil-carousel-head__title::after {
    margin-inline: auto;
  }
}

/* ================ ================ FOOTER ================ ================ */
.ifil-site-footer {
  margin-top: 16px;
  padding-block: 48px 0;
  border-top: 1px solid rgba(var(--brand-shadow-rgb), 0.1);
}

.ifil-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}

.ifil-footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 1024px) {
  .ifil-footer-main {
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 56px;
    align-items: start;
  }
}

.ifil-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ifil-footer-logo .ifil-logo__text,
.ifil-footer-brand > .ifil-logo .ifil-logo__text {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.ifil-footer-tagline {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.62);
  max-width: 34ch;
}

.ifil-footer-newsletter {
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.ifil-footer-newsletter__label {
  margin: 0 0 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
}

.ifil-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.ifil-footer-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #000;
  text-decoration: none;
  transition: opacity var(--transition);
}

.ifil-footer-contact__item i {
  color: var(--brand-accent-1);
  font-size: 0.875rem;
}

.ifil-footer-contact__item:hover {
  opacity: 0.65;
}

.ifil-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}

@media (min-width: 768px) {
  .ifil-footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .ifil-footer-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ifil-footer-nav__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ifil-footer-nav__title {
  margin: 0 0 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.ifil-footer-link {
  font-size: 0.75rem;
  color: #000;
  text-decoration: none;
  line-height: 1.45;
  transition: opacity var(--transition);
}

.ifil-footer-link:hover {
  opacity: 0.55;
}

.ifil-footer-legal-bar {
  padding: 20px 0;
  border-top: 1px solid rgba(var(--brand-shadow-rgb), 0.1);
}

.ifil-footer-legal-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.52);
}

@media (min-width: 1024px) {
  .ifil-footer-legal-bar__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.ifil-footer-legal-bar__company {
  margin: 0;
  line-height: 1.5;
}

.ifil-footer-legal-bar__company p {
  margin: 0;
}

.ifil-footer-legal-bar__credit {
  color: rgba(0, 0, 0, 0.52);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.ifil-footer-legal-bar__credit:hover {
  opacity: 0.75;
}

.ifil-footer-payments {
  padding: 24px 0;
  background: var(--brand-muted-dark);
  color: #fff;
}

.ifil-footer-payments__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 1024px) {
  .ifil-footer-payments__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.ifil-footer-payments__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 1024px) {
  .ifil-footer-payments__group {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

.ifil-footer-payments__label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.75;
  white-space: nowrap;
  margin: 0;
}

.ifil-footer-payments__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.ifil-footer-payments__icons--payment img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.ifil-footer-payments__icons--delivery img {
  height: 28px;
  width: auto;
  opacity: 0.95;
}
