/* ================= FONTS =================*/

/* --------------------- Gill Sans Fonts --------------------- */

@font-face {
  font-family: "Gill Sans";
  src: url("../fonts/GillSans-Medium.woff2") format("woff2"),
    url("../fonts/GillSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gill Sans";
  src: url("../fonts/Gill-Sans-SemiBold.woff2") format("woff2"),
    url("../fonts/Gill-Sans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


/* ---------------- Quicksand (Headings) ---------------- */
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/Quicksand-SemiBold.woff2") format("woff2"),
    url("../fonts/Quicksand-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("../fonts/Quicksand-Bold.woff2") format("woff2"),
    url("../fonts/Quicksand-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ================= ROOT & RESET =================*/
:root {
  --base-bg-color: #fff6f0;
  --header-bg-color: #f7f7f7;
  --text-color: #58381e;
  --button-color: #58381e;
  --accordiansandboxes-color: #f4f1ed;
  --information-color: #f79a46;
  --color-white: #fff6f0;
  --color-black: #000000;
  --text-muted: #4d4d4d;
  --border-color: #ddd;
  --footer-bg-color: #f2f2f2;
  --container-max: 1320px;
  --side-padding: 0 clamp(15px, 2%, 60px);
  --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);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gill Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(11px, 1.5vw, 18px);
  color: var(--text-color);
  background-color: var(--base-bg-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;
}

.text-uppercase {
  text-transform: uppercase;
}

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

.section-spacing {
  margin-block: clamp(3rem, 5%, 6rem);
}

.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);
  width: 100%;
  margin: 0 auto;
  padding: var(--side-padding);
}

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

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

.heading-1,
.hero-title {
  font-size: clamp(35px, 4.2vw, 80px);
  line-height: 1.1;
  margin-bottom: 0.23em;
}

.subheading-1 {
  font-family: "Gill Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 34px);
  line-height: 1.3;
  margin-bottom: 1.2em;
}

.heading-2 {
  font-size: clamp(25px, 2.2vw + 10px, 51px);
  line-height: 1.15;
  margin-bottom: clamp(27px, 4vw, 60px);
}

/* ================= BUTTONS ================= */
.btn {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(15px, 2vw, 22px);
  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);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--color-white) !important;
  border-radius: clamp(2px, 1vw, 6px);
  -webkit-border-radius: clamp(2px, 1vw, 6px);
  -moz-border-radius: clamp(2px, 1vw, 6px);
  -ms-border-radius: clamp(2px, 1vw, 6px);
  -o-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(11px, 1.2vw, 16px);
}

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

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

.currency-dropdown button {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(11px, 1.2vw, 16px);
}

/* Currency dropdown container */
.currency-dropdown {
  position: relative;
  margin-left: 10px;
  font-family: inherit;
}

/* Dropdown menu */
.currency-dropdown .dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  list-style: none;
  margin: 4px 0 0 0;
  padding: 0;
  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;
}

/* Dropdown items */
.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;
}

/* Open state */
.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(90px, 12vw, 147px);
  height: auto;
}

.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 */
.mobile-cta-btn {
  display: none;
}

/* ---------------- MOBILE ---------------- */
@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.5rem;
  }

  .header-right {
    order: 3;
  }

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

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

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

.nav-items li {
  position: relative;
}

.nav-items li a {
  font-size: clamp(12px, 1.2vw, 17px);
  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);
}

/* ---------- Mega Menu ---------- */

.mega-trigger-list {
  display: flex;
  gap: 30px;
}

.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #fff;
  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: flex;
}

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

.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(13px, 1.2vw, 17px);
  margin-bottom: 3px;
}

.nav-items li .mega-col a {
  color: #4d4d4d !important;
  font-size: clamp(14px, 1.2vw, 18px) !important;
  padding: unset !important;
  font-family: "Gill Sans", sans-serif;
  font-weight: 500;
}

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

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

/* Arrow animation */
.nav-items li a .header-arrow img {
  transition: transform 0.3s ease;
}

.nav-items li:hover>a .header-arrow img {
  transform: rotate(180deg);
}

.mega-menu {
  display: none;
}

.mega-menu.active {
  display: flex;
}

/* Hamburger + header */
.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;
}

/* ================= MOBILE RESPONSIVE NAV ================= */
@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: #fff;
    min-height: clamp(70px, 8vw, 90px);
  }

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

  .hamburger {
    display: block;
  }

  /* Hamburger positioning */
  .header-bottom-sm .hamburger {
    flex: 0 0 auto;
  }

  /* Off-canvas nav wrapper */
  .nav-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    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-col {
    margin: 10px 0;
  }

}

/* ---------- Mobile Mega Menu Always Open ---------- */
@media (max-width: 969px) {
  .mega-menu {
    display: flex !important;
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    width: 100%;
    padding: 0.5rem 1rem;
    gap: 2px;
    flex-direction: column;
    background: #f7f7f7;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .has-mega:hover .mega-menu,
  .mega-menu.active {
    display: flex !important;
  }

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

/* ================= HERO SECTION ================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(439px, 60vh, 540px);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Slide images */
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Slide content */
.hero-slide .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 710px;
  margin-right: 5%;
  padding: clamp(16px, 3vw, 32px) clamp(11px, 1.2vw, 16px);
}

/* ===== Arrows ===== */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.container.hero-arrow-container {
  position: relative;
  height: 100%;
}

.hero-arrow img {
  width: clamp(13px, 1.2vw, 16px);
  height: clamp(25px, 2vw, 32px);
}

.hero-arrow.prev {
  left: clamp(15px, 2vw, 60px);
}

.hero-arrow.next {
  right: clamp(15px, 2vw, 60px);
}

.hero-arrow:hover {
  opacity: 0.8;
}

/* ===== Dots ===== */
.hero-dots {
  position: absolute;
  bottom: clamp(16px, 3vw, 30px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dots .dot {
  width: clamp(11px, 1.2vw, 13px);
  height: clamp(11px, 1.2vw, 13px);
  border-radius: 50%;
  background: var(--color-white);
  border: 0;
  cursor: pointer;
}

.hero-dots .dot.active {
  background: var(--information-color);
}

/* ===== Mobile Adjustments ===== */
@media (max-width: 767px) {
  .hero-slide .container {
    justify-content: center;
    align-items: start;
  }

  .hero-content {
    padding-top: 25px;
    padding-left: clamp(11px, 5vw, 16px);
    padding-right: clamp(11px, 5vw, 16px);
    margin-right: 0;
  }

  .hero-arrow img {
    width: clamp(12px, 3vw, 16px);
    height: clamp(20px, 4vw, 32px);
  }
}

/* ================= FEATURE SECTION ================= */
.features-grid {
  display: grid;
  gap: 30px 2.66%;
  text-align: center;
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 14%;
}

.feature-icon-wrapper {
  height: clamp(40px, 6vw, 60px);
  margin-bottom: clamp(8px, 1.5vw, 12px);
}

.feature-icon {
  height: 100%;
  object-fit: contain;
}

.feature-text {
  font-family: "Gill Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(11px, 1.8vw, 21px);
  line-height: 1.2;
  padding: 0 8px;
  max-width: clamp(100px, 15vw, 165px);
  margin: auto;
}

.delivery-toggle {
  color: #1bb1dc;
  cursor: pointer;
}

.delivery-info {
  font-size: clamp(11px, 1.5vw, 13px);
  color: #555;
  margin-top: 0.3rem;
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#delivery-date {
  color: var(--button-color);
}

.delivery-checkbox:checked~.delivery-info {
  height: auto;
  opacity: 1;
  visibility: visible;
}

/* Tablet & Mobile*/
@media (max-width: 969px) {
  .features-grid {
    justify-content: center;
    flex-wrap: wrap;
  }

  .feature-item {
    width: 30.66%;
  }
}

/* ================= NAME STICKERS SECTION ================= */

/* Base use-card */
.use-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.use-card img {
  transition: transform var(--transition-speed) ease;
}

.use-card:hover img {
  transform: scale(1.05);
}

/* Overlay */
.use-card__overlay {
  position: absolute;
  bottom: 10%;
  width: 100%;
  padding: clamp(3px, 1vw, 15px);
  text-align: center;
  background: var(--overlay-bg-blur);
}

.use-card__overlay h3 {
  margin: 0;
  font-size: clamp(11px, 2vw, 20px);
  font-weight: 600;
}

/* Full-width card */
.use-card--full {
  width: 100%;
  min-height: clamp(230px, 35vw, 360px);
  margin-bottom: clamp(5px, 1.5vw, 15px);
}

.use-card--full .use-card__bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Full card content */
.use-card--full .use-card__content {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 56%;
}

/* Features */
.use-card__features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 30px;
  margin: 0 0 35px;
  padding: 0;
}

.use-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 24px);
  color: var(--text-color);
}

.use-card__icon {
  flex-shrink: 0;
  width: clamp(27px, 2vw, 37px);
  height: clamp(21px, 1.5vw, 23px);
}

/* Title */
.use-card__title {
  background: var(--overlay-bg-blur);
  padding: clamp(10px, 2vw, 20px) clamp(20px, 5vw, 60px);
  margin-bottom: clamp(10px, 3vw, 16px);
  text-align: center;
}

.use-card__title h2 {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 48px);
  line-height: 1.15;
}

/* Link */
.use-card__link {
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 2px solid var(--text-color);
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}

.use-card__link:hover {
  opacity: 0.6;
}

/* Grid for smaller cards */
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(5px, 1.5vw, 15px);
  place-items: center;
}

@media (min-width: 1439px) {
  .use-section .container {
    max-width: 100%;
    padding: 0;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .use-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .use-card--full .use-card__content {
    top: auto;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 20px 0;
  }

  .use-card--full .use-card__features {
    display: none;
  }

  .use-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= TRUSTPILOT SECTION ================= */

.trustpilot-section {
  padding: clamp(10px, 3vw, 20px) 0;
}

.trustpilot-widget {
  width: 100%;
  height: 137px;
  display: block;
  position: relative;
  overflow: hidden;
  font-family: "Gill Sans", sans-serif;
  font-weight: 500;
}


@media (max-width: 549px) {
  .trustpilot-widget {
    height: 262px;
  }
}

/* ================= WHY SECTION ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(287px, 1fr));
  gap: clamp(25px, 3vw, 50px) clamp(15px, 3vw, 50px);
  margin-bottom: clamp(35px, 4vw, 50px);
}

.why-item {
  display: flex;
  align-items: center;
  gap: clamp(6px, 2vw, 20px);
}

.why-icon-wrapper {
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.why-icon-wrapper img {
  max-height: 60px;
  object-fit: contain;
  margin: auto;
}

.why-item h3 {
  font-size: clamp(18px, 2.5vw, 27px);
  margin-bottom: clamp(6px, 1vw, 10px);
}

.why-item p {
  font-size: clamp(13px, 2vw, 23px);
  line-height: 1.2;
}

.why .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  margin-top: clamp(20px, 2vw, 30px);
}

/* MOBILE */
@media (max-width: 967px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .why-icon-wrapper img {
    max-height: 40px;
  }
}

/* ================= PRODUCTS SECTION ================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(5px, 1.5vw, 15px);
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-speed) ease;
}

.product-card:hover img {
  transform: var(--transform-scale-hover);
}

/* Overlay */
.product-overlay {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 460px;
  padding: clamp(3px, 1vw, 15px);
  text-align: center;
  font-size: clamp(16px, 1.8vw, 20px);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  background: var(--overlay-bg-blur);
}

.mobile-only {
  display: none;
}

/* Full-width override (Large screens) */
/* Desktop */
@media (min-width: 1439px) {
  .products .container {
    max-width: 100%;
    padding: 0;
  }

  .product-grid {
    gap: 50px;
    margin-bottom: 30px;
  }
}

/* Tablet & Mobile */
@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-only {
    display: block;
  }
}

/* ================= PROMO SECTION ================= */
.promo-wrapper {
  position: relative;
  min-height: clamp(486px, 35vw, 496px);
  margin-top: clamp(5px, 1.5vw, 15px);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px 0;
}

/* Background */
.promo-bg {
  position: absolute;
  inset: 0;
}

.promo-bg img {
  width: 100%;
  height: 100%;
}

/* Content */
.promo-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: clamp(20px, 5vw, 60px);
  color: #fff;
}

/* Title */
.promo-title {
  font-size: clamp(33px, 4.5vw, 67px);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: clamp(20px, 3vw, 45px);
}

/* Bottom Text */
.promo-text {
  font-size: clamp(14px, 2vw, 30px);
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  margin-top: clamp(13px, 2vw, 30px);
}

/* Full-width override (Large screens) */
/* Desktop */
@media (min-width: 1439px) {
  .promo-section .container {
    max-width: 100%;
    padding: 0;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .promo-wrapper {
    display: block;
  }
}

/* ================= TESTIMONIALS SECTION ================= */

.testimonials-slider-wrapper {
  overflow: hidden;
  position: relative;
  padding-top: 60px;
}

.testimonials-slider-container {
  display: flex;
  align-items: start;
  gap: 20px;
  transition: transform 0.35s ease;
  will-change: transform;
  touch-action: pan-y;
}

/* Testimonial Card */
.testimonials-card {
  flex-shrink: 0;
  background: var(--accordiansandboxes-color);
  padding: clamp(30px, 4vw, 30px);
  padding-top: clamp(78px, 6vw, 82px);
  text-align: center;
  position: relative;
  box-sizing: border-box;
}

.testimonials-avatar {
  position: absolute;
  top: calc(-1 * clamp(58px, 5.5vw, 65px));
  left: 50%;
  transform: translateX(-50%);
  width: clamp(109px, 10vw, 129px);
  height: clamp(109px, 10vw, 129px);
  border-radius: 50%;
  border: clamp(8px, 1vw, 10px) solid #fff;
  background: #b3b3b3;
}

.testimonials-name {
  font-size: clamp(22px, 1.6vw, 32px);
  color: var(--color-black);
}

.testimonials-designation {
  font-size: clamp(15px, 2vw, 18px);
}

.testimonials-text {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.4;
}

/* Text wrapper for Read More */
.testimonials-text-wrapper {
  max-height: 100px;
  margin-top: 12px;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-more-text {
  display: inline;
}

/* Checkbox toggle hidden */
.testimonials-read-checkbox {
  display: none;
}

/* Expand text when checked */
.testimonials-read-checkbox:checked~.testimonials-text-wrapper {
  max-height: 20rem;
}

/* Toggle text content */
.testimonials-read-checkbox+.testimonials-text-wrapper+.testimonials-read-toggle .testimonials-toggle-text::after {
  content: "READ MORE";
}

.testimonials-read-checkbox:checked+.testimonials-text-wrapper+.testimonials-read-toggle .testimonials-toggle-text::after {
  content: "READ LESS";
}

/* Arrow rotation */
.testimonials-read-checkbox+.testimonials-text-wrapper+.testimonials-read-toggle .testimonials-arrow {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.testimonials-read-checkbox:checked+.testimonials-text-wrapper+.testimonials-read-toggle .testimonials-arrow {
  transform: rotate(180deg);
}

/* Read More toggle styling */
.testimonials-read-toggle {
  font-size: clamp(11px, 1.5vw, 14px);
  color: var(--information-color);
  font-weight: 600;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  margin-top: 18px;
}

/* Slider dots */
.testimonials-slider-dots {
  text-align: center;
  margin-top: 20px;
}

.testimonials-slider-dots span {
  display: inline-block;
  margin: 5px;
  cursor: pointer;
  width: clamp(10px, 1vw, 12px);
  height: clamp(10px, 1vw, 12px);
  border-radius: 50%;
  background: #999;
}

.testimonials-slider-dots .active {
  background: var(--information-color);
}

/* ================= FAQs SECTION ================= */

/* Layout */
.mn-faq-container {
  display: grid;
  grid-template-columns: 0.6fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.mn-faq-items {
  display: flex;
  gap: clamp(5px, 1vw, 30px);
}

.mn-faq-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 15px);
}

/* Sidebar */
.mn-faq-title {
  font-size: clamp(25px, 4vw, 62px);
  margin-bottom: 20px;
}

.mn-faq-desc {
  margin-bottom: 20px;
  max-width: 19rem;
}

.mn-faq-btn {
  background: var(--information-color);
  font-size: 16px;
}

/* Cards */
.mn-faq-card {
  background: var(--overlay-bg-blur);
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.mn-faq-card:hover {
  transform: translateY(-0.2rem);
}

/* Hide checkboxes */
.mn-faq-toggle {
  display: none;
}

/* Summary */
.mn-faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(15px, 2vw, 30px) clamp(15px, 2vw, 45px);
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  background-color: var(--accordiansandboxes-color);
  cursor: pointer;
  user-select: none;
}

/* Icon */
.mn-icon {
  position: relative;
  width: clamp(1rem, 2vw, 1rem);
  height: clamp(1rem, 2vw, 1rem);
}

.mn-icon::before,
.mn-icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-black);
  transition: transform 0.3s var(--curve);
}

.mn-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.mn-icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Icon rotation on open */
.mn-faq-toggle:checked+.mn-faq-summary .mn-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* Animator */
.mn-faq-animator {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--curve);
}

.mn-faq-toggle:checked~.mn-faq-animator {
  max-height: 500px;
}

/* Fade-in content */
.mn-faq-animator p {
  padding: clamp(15px, 2vw, 30px) clamp(15px, 2vw, 45px);
  padding-bottom: clamp(6px, 1vw, 15px);
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease 0.1s;
}

.mn-faq-toggle:checked~.mn-faq-animator p {
  opacity: 1;
}


/* Tablet/Desktop below 1440px */
@media (max-width: 1439px) {
  .mn-faq-items {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .mn-faq-container {
    grid-template-columns: 1fr;
  }

  .mn-faq-sidebar {
    text-align: center;
  }

  .mn-faq-desc,
  .mn-faq-btn {
    display: none;
  }

  .mn-faq-title {
    margin-bottom: 0;
  }
}

/* Wide desktop */
@media (min-width: 1439px) {

  .mn-faq-wrapper .container,
  .testimonials .container,
  .site-footer .footer-bottom-wrapper.container {
    max-width: 100%;
  }
}

/* ================= FOOTER SECTION ================= */
.site-footer {
  padding: clamp(3rem, 5%, 6rem) 0 0;
  background: var(--footer-bg-color);
  font-size: clamp(15px, 1.2vw, 18px);
}

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

/* Footer grid without STC (used for UAE, SA, Brazil) */
.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;
}

/* Titles */
.footer-title {
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 600;
  margin-bottom: clamp(13px, 1.5vw, 16px);
  color: var(--color-black);
}

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

.footer-links li {
  margin-bottom: 6px;
}

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

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

/* Social icons */
.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;
}

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

/* Language Dropdown */
.footer-lang-dropdown {
  display: flex;
  flex-direction: column;
  width: 210px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  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;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  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);
}

/* Open state */
.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;
}

/* Desktop-only elements hidden by default */
.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;
}

.copyright {
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--color-black);
}

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

.footer-payment-methods img {
  height: 19px;
}

/* ================= MEDIA QUERIES ================= */

/* Desktop & Tablet */
@media (min-width: 768px) and (max-width: 1250px) {
  .footer-grid {
    grid-template-columns: 1.1fr 1fr 2.25fr;
  }

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

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

/* Mobile */
@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);
  }
}