@charset "UTF-8";
body.noScroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
}

@keyframes dot-animation {
  0% {
    background-color: rgba(29, 29, 27, 0.4);
  }
  50% {
    background-color: rgba(29, 29, 27, 0.7);
  }
  100% {
    background-color: #1d1d1b;
  }
}
.batcom--loading {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  background-color: grey;
  animation: dot-animation 1.2s infinite;
  animation-delay: 0.8s;
  border-radius: 50%;
}
.batcom--loading::before, .batcom--loading::after {
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #1d1d1b;
  animation: dot-animation 1.2s infinite;
}
.batcom--loading::before {
  animation-delay: 0.4s;
  left: -20px;
}
.batcom--loading::after {
  animation-delay: 1.2s;
  right: -20px;
}

.batcom__loading-container {
  position: relative;
}
.batcom__loading-container .batcom--loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.batcom__loading-container.loading {
  pointer-events: none;
  opacity: 0.3;
}
.batcom__loading-container.loading .batcom--loading {
  display: inline-block;
}

.batcom-overlay__shorthand {
  position: relative;
  z-index: 0;
}

/* doc
---
title: z-index
name: nn-z-index
category: functions
---

Because z-indices can get tricky we manage them in the theme.scss globally.

Always use this mixin to set set a z-index.

Read the Best Practice to get an full documentation:
https://projects.netcentric.biz/wiki/display/FRONTEND/z-index+management+with+SCSS

## Live Template abbreviations
---
-z

## Parameters
---
@parameter $element = Name of the element (normally this will be the module name for the main stack)
@parameter $list = Name of the list (default $z-indices). Must be only set for stack context
@parameter $min = Set a minimum z-index which will be added to the list.

## Dependencies
---
$z-indices variable in the theme.scss

## Example
---

```html_example

// In the SASS theme file

$z-indices: slider, modal, dialog, navigation;

// In the SASS module file

.modal {
    &__base {
        position: absolute;
        z-index: nn-z-index(modal);
    }
}
```

## Source
---
http://www.smashingmagazine.com/2014/06/12/sassy-z-index-management-for-complex-layouts/
*/
/*
* Mixin used to create the arrows for the menu items.
*/
/* doc
---
title: Clearfix
name: clearfix
category: mixins
---

Clears after floating element

Use this mixin only inside media queries where you can't use the
abstract/extends/utils/_clearfix version, which adds less code to css

## Live Template abbreviations
---

## Example
---

```html_example
@include clearfix;
```

## Source
---
<https://css-tricks.com/snippets/css/clear-fix/>
*/
/*
lt0 = (default) 1 column at a 100%
lt1 = 2 columns (50%, 50%)
lt2 = 2 columns (33%, 66%)
lt3 = 2 columns (66%, 33%)
lt4 = 3 columns (33%, 33%, 33%)
lt5 = 4 columns (25%, 25%, 25%, 25%)

## Parameters
@parameter $layout-type = lt0 | lt1 | lt2 | lt3 | lt4 | lt5
*/
/* doc
---
title: Component Normalize / item Normalize
name: font
category: mixins
---
Use this mixing to regular AEM wrappers and normalization.
*/
/* stylelint-disable max-nesting-depth */
/* stylelint-disable media-feature-name-no-vendor-prefix */
/* doc
---
title: Font
name: font
category: mixins
---

Use this mixing to add fonts and normalization.

Documentation:

- https://projects.netcentric.biz/wiki/display/FRONTEND/CSS+-+Font+Normalization
- https://projects.netcentric.biz/wiki/display/FRONTEND/SCSS+-+Font+management

## Parameters
---
@param $font-type
@param $normalize

## Dependencies
---
/abstract/functions/nn-px-to-em
/abstract/functions/nn-px-to-rem
/abstract/functions/nn-px-to-unitless
/abstract/mixins/font-icon
*/
/*
* This mixin is used to set styles for elements according to typography in their respective viewport.
* It uses the variables defined in the typography
* @include typography("button") will enable the font size and lineheight according to typography button tokens in all the 3 viewports
*/
/* doc
---
title: Visibility
name: visibility
category: mixins
---

Mixin to add visibility to control to elements

---

## Example
---

```html_example
.container {
  &__base {
    @include visible;

    @include breakpoint($b-01) {
      @include hidden;
    }
  }
}
```
*/
/*
* This mixin is used to style headings of any level in a responsive way.
* It uses the variables defined in the typography map to style the headings so
* the levels it can effectively style are 1 to 6.
* It also styles the use of spans and links inside the headings.
*
* @param {number} $level - The heading level to style.
* @param {string} $weight - The font weight to use for the heading. By default it uses the weight defined in the typography map.
*/
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*
* This mixin is used to set styles for name, price, button label elements in:
* batcom-algolia-bw-productsearch.clientlibs.scss
* batcom-bff-dynamiclist.clientlibs.scss
* product-list.clientlibs.scss
*/
/**
* Reverse container
*/
/**
 * Flavour Table Cell Component Styles
 *
 * Desktop (≥1024px): Fixed 2-column CSS grid layout.
 * Mobile (<1024px): Horizontal layout. If >2 products, Swiper carousel.
 * Products are positioned using CSS custom properties (--product-row, --product-column) on desktop.
 * Grid dimensions: 2 cols × unlimited rows, 140×211px cards, 24px gaps.
 */
/* Component variables */
/* Component root */
.flavour-table-cell {
  width: 100%;
  position: relative; /* For navigation button positioning */
  /* Hide empty component in publish mode */
}
.flavour-table-cell:empty {
  display: none;
}

/* Grid container */
.flavour-table-cell__grid {
  /* Desktop: 2-column grid */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px 24px;
  padding: 24px 16px;
  /* Mobile: Horizontal flex layout */
}
@media (max-width: 1023px) {
  .flavour-table-cell__grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 16px 13.5px 6px;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
  }
  .flavour-table-cell__grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
}

@media (max-width: 1023px) {
  .has-carousel .flavour-table-cell__grid {
    display: block;
    width: calc(100% + 16px);
    overflow: hidden;
    position: relative;
    padding: 16px 0;
  }
  .has-carousel .flavour-table-cell__grid .swiper-slide {
    height: auto;
    flex-shrink: 0;
    min-height: 156px;
    scroll-snap-align: start;
    align-items: center;
  }
  .has-carousel .flavour-table-cell__grid .swiper-wrapper {
    display: flex;
    flex-direction: row;
  }
}

/* Product card - base styles */
.flavour-table-cell__product {
  /* Grid positioning via inline CSS custom properties (desktop only) */
  grid-row: var(--product-row);
  grid-column: var(--product-column);
  position: relative;
  /* Card layout */
  width: 100%;
  min-height: 211px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  /* Reset link styles for linked cards */
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  /* Mobile: Enable scroll snap */
}
@media (max-width: 1023px) {
  .flavour-table-cell__product {
    min-height: 150px;
    scroll-snap-align: start;
  }
}

.flavour-table-cell__badge {
  position: absolute;
  padding: 0 4px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  left: 0;
  top: 0;
  color: var(--batcom-color-flavours-table-cell-product-badge-text, #fff);
  background: var(--batcom-color-flavours-table-cell-product-badge-bg, #01567e);
}

/* Product image */
.flavour-table-cell__image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  /* Loading state */
}
.flavour-table-cell__image[loading=lazy] {
  background-color: var(--batcom-color-flavours-table-cell-image-bg, #f5f5f5);
}

/* Product content wrapper */
.flavour-table-cell__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  flex: 1;
  width: 100%;
}

.flavour-table-cell__product-info {
  text-align: center;
}

/* Product title */
.flavour-table-cell__title {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--batcom-font-face-2-name);
  line-height: 20px;
  color: var(--batcom-color-flavours-table-cell-product-title-text, #01567e);
  margin: 0;
  display: block;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
@media (max-width: 1349px) {
  .flavour-table-cell__title {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .flavour-table-cell__title {
    font-size: 12px;
    line-height: 15px;
    color: var(--batcom-color-flavours-table-cell-product-title-text-mobile, #fff);
  }
}

/* MG definition (e.g. "4mg") */
.flavour-table-cell__mg {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--batcom-font-face-1-name);
  line-height: 20px;
  color: var(--batcom-color-flavours-table-cell-product-mg-text, #01567e);
  margin: 0;
}
@media (max-width: 1349px) {
  .flavour-table-cell__mg {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .flavour-table-cell__mg {
    font-size: 12px;
    line-height: 15px;
    color: var(--batcom-color-flavours-table-cell-product-mg-text-mobile, #fff);
  }
}

/* Author mode placeholder */
.flavour-table-cell.cq-dd-empty {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--batcom-color-flavours-table-cell-placeholder-border, #e0e0e0);
  background-color: var(--batcom-color-flavours-table-cell-placeholder-bg, #fafafa);
  padding: 16px;
}
.flavour-table-cell.cq-dd-empty::before {
  content: "Flavour Table Cell - Add products in dialog";
  font-size: 12px;
  color: var(--batcom-color-flavours-table-cell-placeholder-text, #999);
  text-align: center;
}

.flavours-table__mobile-cell {
  flex-grow: 1;
  min-width: 0;
}

/* Carousel bottom controls bar: dots left, arrows right (mobile only) */
.has-carousel .flavour-table-cell__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}
@media (min-width: 1024px) {
  .has-carousel .flavour-table-cell__controls {
    display: none;
  }
}

/* Pagination dots - left side */
.has-carousel .flavour-table-cell__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
.has-carousel .flavour-table-cell__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--batcom-color-flavours-table-cell-pagination-dot, #fff);
  opacity: 0.2;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 0;
}
.has-carousel .flavour-table-cell__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Navigation arrows wrapper - right side */
.has-carousel .flavour-table-cell__navigation {
  display: flex;
  align-items: center;
  gap: 16px;
}

.flavour-table-cell__prev,
.flavour-table-cell__next {
  width: 36px;
  height: 36px;
  background-color: var(--batcom-color-flavours-table-cell-carousel-arrow-bg, #fff);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .flavour-table-cell__prev,
  .flavour-table-cell__next {
    display: none;
  }
}
.flavour-table-cell__prev:hover,
.flavour-table-cell__next:hover {
  background-color: var(--batcom-color-flavours-table-cell-carousel-arrow-bg-hover, #f5f5f5);
}
.flavour-table-cell__prev::after,
.flavour-table-cell__next::after {
  content: "";
  inset: 0;
  width: 8px;
  height: 14.62px;
  margin: auto;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-carousel-right.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-carousel-right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--batcom-color-flavours-table-cell-carousel-arrow-color, #01567e);
}
.flavour-table-cell__prev.swiper-button-disabled,
.flavour-table-cell__next.swiper-button-disabled {
  background-color: var(--batcom-color-flavours-table-cell-carousel-arrow-bg-disabled, rgba(255, 255, 255, 0.2));
  cursor: not-allowed;
}
.flavour-table-cell__prev.swiper-button-disabled::after,
.flavour-table-cell__next.swiper-button-disabled::after {
  background-color: var(--batcom-color-flavours-table-cell-carousel-arrow-color-disabled, #fff);
}

.flavour-table-cell__prev::after {
  transform: rotate(180deg);
}