/* ================= ROOT VARIABLES ================= */
:root {
  --text-color: #333333;
  --button-color: #ed2144;
  --accordiansandboxes-color: #f4f1ed;
  --information-color: #f79a46;
  --color-white: #fff;
  --color-black: #000000;
  --text-muted: #4d4d4d;
  --border-color: #ddd;
  --footer-bg-color: #f2f2f2;
  --container-max: 1920px;
  --overlay-bg-blur: rgba(255, 255, 255, 0.7);
  --transition-speed: 0.4s;
  --transform-scale-hover: scale(1.05);
  --curve: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================= RESET ================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BASIC ELEMENTS ================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6667rem + 0.3704vw, 1rem);
  color: var(--text-color);
  line-height: 1.5;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

/* ================= UTILITY CLASSES ================= */
.text-uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.section-spacing {
  margin-block: clamp(1.8rem, 5vw, 7rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================= CONTAINER ================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: 74px;
}

@media (max-width: 1440px) {
  .container {
    padding-inline: 60px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-inline: 15px;
  }
}

@media (min-width: 1921px) {
  .container {
    max-width: 2000px;
  }
}

/* ================= GLOBAL HEADING ELEMENTS ================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Quicksand", sans-serif;
  line-height: 1.2;
}

h1,
h2,
h3 {
  font-weight: 700;
}

/* ================= HEADING CLASSES ================= */
.heading-2 {
  font-size: clamp(1.5625rem, 1.1458rem + 1.8519vw, 2.8125rem);
  line-height: 1.15;
  margin-bottom: clamp(27px, 4vw, 60px);
}

/* ================= GLOBAL BUTTONS ================= */
.btn {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(0.9375rem, 0.7917rem + 0.6481vw, 1.375rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--button-color);
  padding: clamp(8px, 1vw, 16px) clamp(16px, 2vw, 32px);
  border-radius: clamp(4px, 1vw, 8px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-120%) skewX(-20deg);
  transition: transform 0.5s ease;
}

.btn:hover::after {
  transform: translateX(120%) skewX(-20deg);
}

.btn.cta-nav-btn {
  font-size: clamp(10px, 1.2vw, 16px);
  padding: clamp(6px, 0.8vw, 12px) clamp(12px, 1.2vw, 24px);
  color: var(--color-white) !important;
  border-radius: clamp(2px, 1vw, 6px);
}

/* ================= HEADER ================= */
.header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
  height: clamp(35px, 9vw, 144px);
  border-bottom: 1px solid var(--border-color);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-btn {
  font-size: clamp(0.6875rem, 0.6023rem + 0.4261vw, 0.875rem);
  font-family: "Nunito Sans", sans-serif;
}

.lang-separator {
  width: 1px;
  height: clamp(15px, 2vw, 20px);
  background: var(--button-color);
  display: inline-block;
}

.currency-dropdown button {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(0.6875rem, 0.6023rem + 0.4261vw, 0.875rem);
  font-family: "Nunito Sans", sans-serif;
}

.currency-dropdown {
  position: relative;
  margin-left: 10px;
}

.currency-dropdown .dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--color-white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  margin-top: 4px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.currency-dropdown .dropdown-menu li {
  font-size: clamp(10px, 0.9vw, 14px);
  padding: clamp(5px, 0.6vw, 8px) clamp(10px, 1vw, 12px);
  cursor: pointer;
  transition: background 0.2s ease;
}

.currency-dropdown .dropdown-menu li:hover {
  background: #f0f0f0;
}

.currency-dropdown.active .dropdown-menu {
  display: block;
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.currency-dropdown.active .header-arrow img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.header-center img {
  width: clamp(85px, 12vw, 147px);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-version-b .header-right {
  margin-left: auto;
}

.header-right .icon {
  width: clamp(18px, 4vw, 27px);
  height: clamp(18px, 4vw, 27px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-right .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-cta-btn {
  display: none;
}

@media (max-width: 969px) {
  .header-container {
    border-bottom: none;
  }

  .desktop-header-center {
    display: none;
  }

  .mobile-cta-btn {
    display: block;
  }

  .header-left {
    margin-left: auto;
    order: 2;
    gap: 0.3rem;
    max-width: 45%;
  }

  .header-right {
    order: 3;
    margin-left: 4px;
  }

  .currency-dropdown {
    order: 0;
    margin-left: 0;
    margin-right: 5px;
  }

  .lang-btn,
  .lang-separator {
    order: 1;
  }

  .header-wrapper {
    display: none;
  }

  .basket-icon {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 430px) {
  .currency-dropdown button {
    gap: 2px;
  }

  .currency-dropdown {
    margin-right: 2px;
  }

  .header-left {
    gap: 0.24rem;
  }

  .header-right {
    margin-left: 3px;
  }

  .basket-icon {
    width: 20px;
    height: 20px;
  }
}

/* ================= NAV ================= */
.main-nav .nav-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  padding: 1rem 0;
}

.nav-items li {
  position: relative;
}

.nav-items li a {
  font-size: clamp(0.8125rem, 0.6989rem + 0.5682vw, 1.0625rem);
  color: #1a1a1a;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.nav-items li a:hover {
  color: var(--button-color);
}

@media (min-width: 768px) {
  .desktop-hide-menu-item {
    display: none;
  }
}

/* ================= NAV - MEGA MENU ================= */
.mega-trigger-list {
  display: flex;
  gap: 30px;
}

.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: var(--color-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  gap: 50px;
  width: max-content;
  z-index: 99;
}

.has-mega:hover .mega-menu {
  display: block;
}

.mega-top-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 600;
  gap: 12px;
}

.mega-top-link::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--button-color);
}

.mega-columns {
  display: flex;
  gap: 50px;
}

.mega-menu.align-right {
  right: 0;
  left: auto;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.header-arrow img {
  transition: transform 0.25s ease;
}

.has-mega:hover .header-arrow img {
  transform: rotate(180deg);
}

.mega-col h3 {
  color: #1a1a1a;
  font-weight: 600;
  font-size: clamp(0.8125rem, 0.6989rem + 0.5682vw, 1.0625rem);
  margin-bottom: 3px;
}

.nav-items li .mega-col a {
  color: var(--text-muted) !important;
  font-size: clamp(0.75rem, 0.6364rem + 0.5682vw, 1rem); !important;
  padding: unset !important;
}

.mega-col a:hover {
  color: var(--button-color);
}

.nav-items li .mega-col a:hover {
  color: var(--button-color) !important;
}

/* ================= NAV - MOBILE ================= */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger img {
  width: 22px;
  height: 15px;
  object-fit: contain;
}

.header-bottom-sm {
  display: none;
}

.header-bottom-sm .hamburger {
  position: absolute;
  left: 0;
}

.mobile-close {
  display: none;
}

@media (max-width: 969px) {
  .nav-items li a {
    padding: 8px;
  }

  .header-bottom-sm {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 24px 0;
    background: var(--color-white);
    min-height: clamp(70px, 8vw, 90px);
  }

  .btn-lg-screen {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header-bottom-sm .hamburger {
    flex: 0 0 auto;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    overflow-y: auto;
    transition: left 0.35s;
    z-index: 1200;
  }

  .nav-wrapper .nav-items {
    display: block;
    padding: 1rem 2rem 1rem 1rem;
  }

  .nav-wrapper.open {
    left: 0;
  }

  .mobile-close {
    display: block;
    padding-right: 16px;
    border-bottom: 1px solid #eee;
    font-size: 34px;
    cursor: pointer;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
    text-align: right;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1100;
  }

  .mobile-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  .mega-menu {
    display: flex !important;
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    width: 100%;
    padding: 0.5rem 1rem;
    gap: 0;
    flex-direction: column;
    background: #f7f7f7;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .mega-col {
    margin: 10px 0;
  }

  .mega-columns {
    flex-direction: column;
    gap: 0;
  }

  .mega-top-link {
    display: block;
    margin: 10px 0;
  }

  .mega-top-link a {
    padding: 0 !important;
  }

  .has-mega.active .mega-menu {
    display: none !important;
  }

  a .header-arrow img {
    transform: rotate(180deg);
  }

  .has-mega.active a .header-arrow img {
    transform: rotate(0deg) !important;
  }
}

/* ================= BASKET ================= */
#bd-toggle {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  margin: -1px;
  padding: 0;
}

.basket-icon {
  cursor: pointer;
  user-select: none;
}

.bd-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9989;
  cursor: pointer;
}

.bd-panel {
  position: fixed;
  z-index: 9995;
  width: 390px;
  max-width: calc(100vw - 32px);
  background: var(--color-white);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

#bd-toggle:checked ~ .bd-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.bd-arrow {
  position: absolute;
  top: -8px;
  width: 18px;
  height: 9px;
  background: var(--color-white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 767px) {
  .bd-panel {
    top: 0;
    right: auto;
    left: 0;
    width: 80vw;
    max-width: 80vw;
    height: 100dvh;
    border-radius: 0;
    border-right: 1px solid #eee;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
  }

  #bd-toggle:checked ~ .bd-panel {
    transform: translateX(0);
  }

  .bd-arrow {
    display: none;
  }

  #bd-toggle:checked ~ .bd-mobile-overlay {
    display: block;
  }
}

.bd-inner {
  max-height: 85vh;
  overflow-y: auto;
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  .bd-inner {
    max-height: 100dvh;
    padding-bottom: 40px;
  }
}

.bd-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 16px;
}

.bd-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-color);
  margin: 0;
}

.bd-close {
  cursor: pointer;
  font-size: 15px;
  color: #666;
  line-height: 1;
  padding: 4px 6px;
  user-select: none;
  transition: color 0.15s;
}

.bd-close:hover {
  color: #111;
}

.bd-footer {
  padding: 14px 20px 0;
  text-align: center;
}

.bd-security {
  font-size: 11px;
  color: #888;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.bd-adyen {
  height: 24px;
  transform: translateY(-3px);
}

.bd-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.bd-payments img {
  height: 13px;
  display: block;
}

.bd-empty {
  padding: 36px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.bd-empty-icon {
  width: 50px;
  opacity: 0.28;
  filter: grayscale(1);
  display: block;
  margin-bottom: 4px;
}

.bd-empty-text {
  font-size: 15px;
  font-weight: 400;
  color: #aaa;
  margin: 0;
}

.bd-personalise-btn {
  display: block;
  width: 100%;
  max-width: 450px;
  background: var(--button-color);
  color: var(--color-white);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 600;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 20px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.bd-personalise-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-120%) skewX(-20deg);
  transition: transform 0.5s ease;
}

.bd-personalise-btn:hover::after {
  transform: translateX(120%) skewX(-20deg);
}

/* ================= FOOTER ================= */
.site-footer {
  padding: clamp(3rem, 5%, 6rem) 0 0;
  background: var(--footer-bg-color);
  font-size: clamp(0.75rem, 0.7143rem + 0.1786vw, 0.875rem);
}

/* ================= FOOTER GRID ================= */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 2.31fr 1fr;
  gap: 50px clamp(20px, 4vw, 50px);
  align-items: start;
}

.footer-grid-no-stc {
  grid-template-columns: 1.3fr 1.1fr 2.2fr;
}

.footer-info-links-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
}

/* ================= FOOTER TYPOGRAPHY ================= */
.footer-title {
  font-size: clamp(1rem, 0.9583rem + 0.1852vw, 1.125rem);
  font-weight: 600;
  margin-bottom: clamp(13px, 1.5vw, 16px);
  color: var(--color-black);
}

.site-footer address {
  font-style: normal;
}

/* ================= FOOTER LINKS ================= */
.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: var(--text-muted);
  transition: opacity 0.3s ease;
}

.footer-links a:hover,
.footer-social-icons a:hover img,
.footer-email-link:hover {
  opacity: 0.6;
}

/* ================= FOOTER SOCIAL ================= */
.footer-social-icons {
  display: flex;
  gap: 10px;
  margin: clamp(35px, 2vw, 40px) 0;
  transition: opacity 0.3s ease;
}

.footer-social-icons img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ================= FOOTER EMAIL ================= */
.footer-email-link {
  display: inline-block;
  margin-top: clamp(16px, 1.8vw, 30px);
  transition: opacity 0.3s ease;
}

/* ================= FOOTER LANGUAGE DROPDOWN ================= */
.footer-lang-dropdown {
  display: flex;
  flex-direction: column;
  width: 210px;
  cursor: pointer;
  font-size: 15px;
  position: relative;
}

.footer-lang-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--color-white);
  padding: 8px 10px;
  border: none;
}

.footer-dropdown-arrow {
  width: 12px;
  transition: transform 0.3s ease;
}

.footer-lang-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 4px 0 0 0;
  background: var(--color-white);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.footer-lang-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-lang-list li a img {
  width: 26px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

.footer-lang-list li a:hover {
  background: #f0f0f0;
  color: var(--color-black);
}

.footer-lang-dropdown.open .footer-lang-list {
  max-height: 300px;
  overflow-y: auto;
}

.footer-lang-dropdown.open .footer-dropdown-arrow {
  transform: rotate(180deg);
}

.footer-flag-img {
  width: 38px;
}

/* ================= FOOTER DESKTOP-ONLY ================= */
.desktop-only {
  display: none;
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
  margin-top: clamp(44px, 6vw, 70px);
  padding: 35px 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.copyright {
  color: var(--color-black);
  font-size: clamp(0.75rem, 0.6875rem + 0.2778vw, 0.9375rem);
}

.footer-payment-methods {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-payment-methods img {
  object-fit: contain;
  height: clamp(14px, 2vw, 19px);
}

/* ================= FOOTER RESPONSIVE ================= */
@media (min-width: 768px) and (max-width: 1920px) {
  .footer-grid {
    grid-template-columns: 1.1fr 1fr 2.25fr;
  }

  .footer-partner-standalone {
    display: none;
  }

  .desktop-only {
    display: block;
    margin-top: 45px;
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .contact-section {
    grid-column: span 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-info-links-container {
    display: flex;
    flex-direction: column;
    grid-column: span 1;
    gap: 22px;
  }

  .footer-products {
    text-align: left;
  }

  .footer-partner-standalone {
    grid-column: span 2;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
    border-top: none;
    padding: 0;
  }

  .copyright {
    width: 100%;
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
  }
}