/* ============================================
   Arab Tannery Leather - Static Site CSS
   Converted from Nuxt.js to vanilla HTML/CSS/JS
   ============================================ */

/* === RESET === */
*, :after, :before { border: 0; box-sizing: border-box; margin: 0; padding: 0; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; -moz-tab-size: 4; tab-size: 4; }
body { line-height: inherit; margin: 0; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
a { color: inherit; text-decoration: inherit; }
img, video { display: block; height: auto; max-width: 100%; }
ul, ol, menu { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; background: transparent; border: 0; font: inherit; color: inherit; }
[hidden] { display: none; }

/* === FONTS === */
@font-face {
  font-display: swap;
  font-family: Lausanne;
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/lausanne-300.CMiifVRe.woff2') format('woff2'),
       url('../fonts/lausanne-300.DT1L7BNq.woff') format('woff');
}

/* === SELECTION === */
::selection { background-color: var(--color-dark-blue); color: var(--color-white); }

/* === BASE TYPOGRAPHY === */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-style: normal;
  font-weight: 475;
  letter-spacing: -0.01em;
  line-height: 1.2;
  scroll-behavior: smooth;
}

/* === DESIGN TOKENS === */
:root {
  --color-black: #000;
  --color-charcoal: #282429;
  --color-white: #fff;
  --color-red: #f02222;
  --color-dark-blue: #1b2550;
  --color-dark-beige: #eae8e4;
  --color-darker-beige: #e2e0db;
  --color-beige: #f1efeb;
  --color-yellow: #ffac3a;
  --color-gray: #d6d9dd;
  --color-gray2: #c1bfbc;
  --color-blue-20: rgba(27, 37, 80, 0.2);
  --color-blue-40: rgba(27, 37, 80, 0.4);
  --color-overlay: rgba(26, 47, 75, 0.2);
  --color-footer: rgba(27, 37, 80, 0.8);

  --ease-out: cubic-bezier(0.37, 0.31, 0, 1);
  --ease-out-power2: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-out-power4: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-soft: cubic-bezier(0.4, 0.15, 0, 1);
  --ease-in-out-power2: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-out-power4: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-out-bounce: cubic-bezier(0.47, 1.64, 0.41, 0.8);
  --ease-out-gentle: cubic-bezier(0.17, 1.38, 0.35, 0.96);
  --ease-out-swift: cubic-bezier(0.55, 0, 0.1, 1);

  --border-radius: 1rem;
  --big-radius: 6.25rem;
  --small-radius: 0.625rem;
  --small-spacing: 0.625rem;
  --button-height: 3.125rem;
  --radius: 0.75rem;

  --grid-columns: 6;
  --grid-margin: 0.625rem;
  --grid-gutter: 0.625rem;
  --full-width: 100vw;
  --grid-width: calc(var(--full-width) - var(--grid-margin) * 2);
  --grid-column-width: calc((var(--grid-width) - ((var(--grid-columns) - 1) * var(--grid-gutter))) / var(--grid-columns));
  --subgrid-margin: var(--grid-margin);
  --subgrid-gutter: var(--grid-gutter);
  --subgrid-spacing: 1.5625rem;
  --subgrid-offset: var(--grid-gutter);
  --header-height: calc(var(--button-height) + var(--grid-margin) * 2);
}

@media screen and (min-width: 1024px) {
  :root {
    --grid-columns: 12;
    --subgrid-margin: 1.5625rem;
    --subgrid-gutter: 2.5rem;
    --subgrid-offset: calc(var(--subgrid-margin) - var(--grid-margin));
    --header-height: calc(var(--button-height) + var(--subgrid-margin) * 2);
  }
}

/* === TYPOGRAPHY CLASSES === */
.t-h1 {
  font-family: Lausanne, sans-serif;
  font-size: 65px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .t-h1 { font-size: clamp(65px, 9.92vw, 150px); }
}

.t-h2 {
  font-family: Lausanne, sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .t-h2 { font-size: clamp(40px, 4.96vw, 75px); }
}

.t-h3 {
  font-family: Lausanne, sans-serif;
  font-weight: 300;
  line-height: 1.08;
  font-size: clamp(25px, 2.31vw, 35px);
  letter-spacing: normal;
}

.t-h4 {
  font-family: Lausanne, sans-serif;
  font-weight: 300;
  line-height: 1.08;
  font-size: clamp(20px, 1.72vw, 26px);
  letter-spacing: -0.01em;
}

.t-h5 {
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.t-tags {
  font-size: 13px;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* === LAYOUT === */
html { background-color: var(--color-beige); color: var(--color-dark-blue); }
html.-no-scroll { overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; white-space: nowrap; }

.grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  grid-gap: var(--grid-gutter);
}

.grid-padding { padding-left: var(--grid-margin); padding-right: var(--grid-margin); }
.subgrid-padding { padding-left: var(--grid-margin); padding-right: var(--grid-margin); }
@media screen and (min-width: 1024px) {
  .subgrid-padding { padding-left: var(--subgrid-margin); padding-right: var(--subgrid-margin); }
}

/* === KEYFRAME ANIMATIONS === */
@keyframes ScrollDot {
  0% { transform: translateY(10px) scaleY(1); }
  5% { opacity: 0.5; transform: translateY(0) scaleY(3); }
  10% { opacity: 1; transform: translateY(-15px) scaleY(1); }
  50% { opacity: 0; transform: translateY(-15px) scaleY(1); }
  100% { opacity: 0; transform: translateY(-15px) scaleY(1); }
}

@keyframes Spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

@keyframes marquee {
  0% { transform: translate(0); }
  100% { transform: translate(-100%); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(2rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroReveal {
  from { clip-path: inset(0 0 100svh 0); }
  to { clip-path: inset(0 0 0 0); }
}

/* === MODERN PREMIUM HEADER === */
.samina-header {
  position: fixed;
  top: 0; /* Removed top gap as requested */
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
}

.samina-header.scrolled {
  top: 15px;
}

.samina-header .s-main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 1); /* Pure white background */
  backdrop-filter: blur(0px); /* Deep frosted glass */
  -webkit-backdrop-filter: blur(50px) saturate(200%);
  border-radius: 0;
  padding: 0 4%;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15); /* Crystalline top highlight */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Soft shadow-edge */
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.samina-header.scrolled .s-main-nav {
  height: 75px;
  width: max-content;
  max-width: 95%;
  margin: 0 auto;
  border-radius: 50px;
  gap: 40px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.98); /* Highly visible solid background */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.samina-header .s-logo-box {
  height: 90px;
  width: auto;
  background: transparent !important;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.4s ease;
}

.samina-header.scrolled .s-logo-box {
  height: 75px;
}

.samina-header .s-logo-box img {
  height: calc(100% - 10px); /* 10px smaller than header height */
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: none;
}

.samina-header.scrolled .s-logo-box img {
  height: calc(100% - 10px); /* 10px smaller than scrolled header height */
}

.samina-header .logo-textless {
  display: none;
}

.samina-header.scrolled .logo-full {
  display: none;
}

.samina-header.scrolled .logo-textless {
  display: block;
}

.samina-header .s-nav-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.samina-header .s-nav-link {
  position: relative;
  color: #777; /* Normal color grey */
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 5px 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-transform: uppercase;
}

.samina-header .s-nav-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.samina-header .s-nav-link:hover,
.samina-header .s-nav-link.active {
  color: #000; /* Hover or active color black */
}

.samina-header .s-nav-link:hover svg,
.samina-header .s-nav-link.active svg {
  opacity: 1;
}

/* Modern Underline Reveal */
.samina-header .s-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.samina-header .s-nav-link:hover::after,
.samina-header .s-nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}



/* Hamburger Toggle - 3 Lines */
.s-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  z-index: 10001;
  padding: 0;
  transition: all 0.3s ease;
}

.s-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #555;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: center;
}

/* Middle line shorter for style */
.s-menu-toggle span:nth-child(2) {
  width: 18px;
  margin-left: auto;
}

/* Animate to X on open */
.samina-header.menu-open .s-menu-toggle span {
  background-color: #fff;
}
.samina-header.menu-open .s-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.samina-header.menu-open .s-menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.samina-header.menu-open .s-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Header Refinement */
@media (max-width: 1024px) {
  .samina-header {
    padding: 0;
    overflow: visible;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
    will-change: auto !important;
  }
  .samina-header .header-container {
    overflow: visible;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .samina-header .s-main-nav {
    overflow: visible;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .s-menu-toggle {
    display: flex;
    margin-right: 15px;
  }

  .samina-header .s-nav-section {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10000;
    overflow-y: auto;
  }

  .samina-header.menu-open .s-nav-section {
    transform: translateX(0);
  }

  /* Nav links inside mobile menu */
  .samina-header .s-nav-link {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 40px;
    width: 100%;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .samina-header .s-nav-link:last-child {
    border-bottom: none;
  }

  .samina-header .s-nav-link:hover,
  .samina-header .s-nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }

  .samina-header .s-nav-link::after {
    display: none; /* Remove underline animation in mobile menu */
  }

  .samina-header .s-nav-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    opacity: 0.6;
  }

  .samina-header .s-nav-link:hover svg,
  .samina-header .s-nav-link.active svg {
    opacity: 1;
  }

  .samina-header .s-logo-box { height: 80px; width: 300px; }
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out-power4);
}

.reveal.is-in-viewport {
  opacity: 1;
  transform: translateY(0);
}

/* === UI BUTTON === */
.ui-button {
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  position: relative;
  width: var(--button-height);
}
.ui-button::before {
  background-color: var(--color-white);
  border-radius: 50%;
  content: '';
  inset: 0;
  position: absolute;
  transition: transform 0.4s var(--ease-out-bounce);
}
.ui-button.yellow::before { background-color: var(--color-yellow); }
.ui-button.beige::before { background-color: var(--color-beige); }

.ui-button:hover::before { transform: scale(1.1) translateZ(0); }

.ui-button .container {
  align-items: center; display: flex; height: 100%; justify-content: center;
  overflow: hidden; position: relative; width: 100%; z-index: 1;
}
.ui-button .container .tt-icon { position: relative; width: 40%; z-index: 1; }
.ui-button .container .tt-icon.icon-arrow { width: 30%; }
.ui-button .container .tt-icon.icon-search { width: 50%; }

.tt-icon { display: inline-block; }
.tt-icon svg { display: block; height: 100%; width: 100%; }

/* === UI CTA BUTTON === */
.ui-cta {
  align-items: center;
  background-color: var(--color-white);
  border-radius: 100px;
  color: var(--color-dark-blue);
  display: flex;
  height: var(--button-height);
  justify-content: center;
  padding: 0 1.8rem;
  position: relative;
  width: fit-content;
}
.ui-cta.yellow { background-color: var(--color-yellow); }
.ui-cta.beige {
  background-color: var(--color-beige);
  border-bottom: 1px solid var(--color-blue-20);
  border-top: 1px solid var(--color-blue-20);
}

.ui-cta .before, .ui-cta .after {
  background-color: inherit;
  display: block;
  height: 100%;
  position: absolute;
  transition: 0.75s var(--ease-out-gentle);
  width: var(--button-height);
}
.ui-cta .before { border-radius: 100px 0 0 100px; left: 0; top: 0; }
.ui-cta .after { border-radius: 0 100px 100px 0; right: 0; top: 0; }

.ui-cta:hover .before { transform: translate3d(-0.4rem, 0, 0); }
.ui-cta:hover .after { transform: translate3d(0.4rem, 0, 0); }

.cta-inner {
  align-items: center; display: flex; justify-content: center;
  position: relative; z-index: 2;
}
.cta-inner::before, .cta-inner::after {
  background-color: var(--color-dark-blue);
  border-radius: 50%;
  content: '';
  height: 0.35rem;
  position: absolute;
  transform: scale(0);
  transition: 0.75s var(--ease-out-gentle);
  width: 0.35rem;
}
.cta-inner::before { left: -0.9rem; }
.cta-inner::after { right: -0.9rem; }
.ui-cta:hover .cta-inner::before,
.ui-cta:hover .cta-inner::after { transform: scale(1); }

.cta-text { letter-spacing: -0.02em; line-height: 125%; }

/* === HERO SECTION === */
.home-hero {
  height: 100svh; /* Changed from 200svh to prevent excessive scroll space */
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.home-hero .bg {
  height: 100lvh;
  left: 0;
  position: sticky;
  top: 0;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.home-hero .bg .slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.home-hero .bg .slider-image.active {
  opacity: 1;
  z-index: 2;
}
.home-hero .bg .slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero .top {
  height: 100svh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-hero .home-title {
  color: var(--color-white);
  overflow: hidden;
  padding: 0 calc(var(--grid-margin) + var(--subgrid-offset));
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
}
.home-hero .home-title .word { display: inline-block; overflow: hidden; }
.home-hero .home-title .word:last-of-type { margin-top: -1rem; }
.home-hero .home-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}
.home-hero .home-title .char.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.6s var(--ease-out-power4), opacity 0.4s ease;
}

/* Hero Videos */
.ui-home-videos {
  display: flex;
  gap: var(--grid-gutter);
  justify-content: flex-end;
  margin-left: auto;
  margin-top: auto;
  padding: 0 var(--grid-margin) var(--grid-margin);
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .ui-home-videos {
    height: 25svh;
    width: calc(var(--grid-column-width) * 5 + var(--grid-gutter) * 4);
  }
}

.ui-home-videos .video {
  aspect-ratio: 175/125;
  border-radius: var(--small-radius);
  flex: 0.5;
  overflow: hidden;
  position: relative;
  transition: flex 0.65s var(--ease-in-out-soft);
}
@media screen and (min-width: 1024px) {
  .ui-home-videos .video { aspect-ratio: unset; }
}

.ui-home-videos .video .overlay {
  background-color: rgba(0, 0, 0, 0.15);
  height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 1;
}
@media screen and (min-width: 1024px) {
  .ui-home-videos .video .overlay {
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s var(--ease-in-out-soft);
  }
}
.ui-home-videos .video:hover .overlay { opacity: 1; }

.ui-home-videos .video .image {
  bottom: 0; height: 120%; object-fit: cover; position: absolute; width: 100%;
}
.ui-home-videos .video .image img { height: 100%; object-fit: cover; width: 100%; }
.ui-home-videos .video .title-text { color: var(--color-white); left: 1.25rem; position: absolute; top: 1.25rem; z-index: 2; }
.ui-home-videos .video .play { bottom: 1rem; position: absolute; right: 1rem; z-index: 2; }
@media screen and (min-width: 1024px) {
  .ui-home-videos .video .play {
    bottom: var(--grid-gutter); opacity: 0; right: var(--grid-gutter);
    transform: scale(0.25); transition: opacity 0.5s, transform 0.5s;
  }
  .ui-home-videos .video:hover .play { opacity: 1; transform: scale(1); }
}

/* Home Opener */
.home-opener {
  align-items: flex-start;
  background-color: var(--color-beige);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem 0.75rem 1.5rem;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .home-opener {
    flex-direction: row;
    padding: 1.25rem var(--grid-margin) 3.75rem;
  }
}

.home-opener .text {
  padding: 0 var(--subgrid-offset);
  text-transform: capitalize;
}
@media screen and (min-width: 1024px) {
  .home-opener .text {
    white-space: break-spaces;
    width: calc(var(--grid-column-width) * 4 + var(--grid-gutter) * 3);
  }
}

.home-opener .scroll {
  align-items: center; display: flex; flex-direction: column; gap: 1.5rem;
  left: 50%; position: absolute; transform: translate(-50%);
}
@media screen and (max-width: 1023px) { .home-opener .scroll { display: none; } }
.home-opener .scroll .dot {
  animation: ScrollDot 2s linear infinite;
  background-color: var(--color-dark-blue);
  border-radius: 2px;
  height: 5px; width: 5px;
}

.home-opener .ui-cta { margin: 0.6rem var(--subgrid-offset) 0 0; }
@media screen and (min-width: 1024px) { .home-opener .ui-cta { margin-top: 0; } }

/* === PRODUCT SECTION === */
.ui-sticky-columns {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  position: relative;
  width: 100%;
  background-color: var(--color-beige);
  padding-bottom: 10px;
  padding-top: 4.6875rem;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .ui-sticky-columns {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding-top: 10rem;
  }
}

.ui-sticky-columns .sticky {
  display: block;
  grid-column: 1 / 7;
  grid-row: 1 / 1;
}
@media screen and (min-width: 1024px) {
  .ui-sticky-columns .sticky {
    grid-column: 7 / 13;
    align-items: flex-end;
    display: flex;
    height: 100%;
  }
}

.ui-sticky-columns .content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  grid-column: 1 / 7;
  justify-content: space-between;
  padding: 0 0 0 var(--grid-margin);
}
@media screen and (min-width: 1024px) {
  .ui-sticky-columns .content { grid-column: 1 / 7; grid-row: 1 / 1; }
}

/* Product Cards */
.ui-home-product {
  aspect-ratio: 1/1;
  background-color: var(--color-dark-beige);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: var(--radius);
}

.ui-home-product .infos {
  display: grid;
  gap: var(--grid-gutter);
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  z-index: 1;
}
.ui-home-product .infos .name,
.ui-home-product .infos .types {
  align-self: self-end;
  grid-column: span 1;
  padding: var(--subgrid-offset);
  transition: color 0.5s var(--ease-out-power2);
}
.ui-home-product .infos .name::before {
  content: ''; inset: 0; position: absolute; z-index: 1;
}
.ui-home-product .infos .types {
  align-items: flex-start; display: flex; flex-direction: column;
  justify-content: flex-start; line-height: 125%;
}

.ui-home-product .images-container {
  align-items: center; display: flex; height: 100%; justify-content: center;
  position: absolute; width: 100%; z-index: 0;
}
.ui-home-product .images-container .product-img {
  height: 100%; object-fit: cover; width: 100%;
  transition: transform 0.75s var(--ease-in-out-soft);
}
.ui-home-product:hover .images-container .product-img { transform: scale(1.05); }

.ui-home-product .ui-dots {
  align-items: center; display: flex; justify-content: space-around;
  pointer-events: none; position: absolute; top: 1.5rem; width: 100%; z-index: 2;
}
.ui-home-product .ui-dots::before,
.ui-home-product .ui-dots::after {
  background-color: var(--color-beige); border-radius: 50%;
  content: ''; height: 1.25rem; width: 1.25rem;
}

.viewport-product { width: 100%; margin-bottom: 1rem; }
.viewport-product .ui-home-product {
  opacity: 0;
  clip-path: inset(10% 10% 0 10% round var(--radius));
  transition: clip-path 1s var(--ease-in-out-soft), opacity 1s var(--ease-in-out-soft);
}
.viewport-product.is-in-viewport .ui-home-product {
  opacity: 1;
  clip-path: inset(0 0 0 0 round var(--radius));
}
@media screen and (max-width: 1023px) {
  .ui-sticky-columns .content .product-desktop { display: none; }
}

/* === LATEST COLLECTION SIDEBAR === */
.viewport-marquee-home {
  padding: 0 var(--grid-margin);
}
@media screen and (min-width: 1024px) {
  .viewport-marquee-home {
    bottom: var(--grid-margin);
    overflow: hidden;
    padding: 0 0 10svh;
    position: sticky;
  }
}

.viewport-marquee-home .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(2rem);
}
.viewport-marquee-home.is-in-viewport .char {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s var(--ease-in-out-soft), opacity 0.5s var(--ease-out-power2);
}

/* Separator */
.separator {
  align-items: center; display: flex; height: 0.0625rem;
  justify-content: center; margin: 1.875rem 0;
  position: relative; width: 100%;
}
.separator::after {
  background-color: rgba(27, 37, 80, 0.2);
  content: ''; display: block; height: 0.0625rem;
  position: absolute; transform: scaleX(0); transform-origin: left center;
  transition: transform 0.75s var(--ease-out-power2); width: 100%;
}
.separator.white::after { background-color: rgba(255, 255, 255, 0.2); }
.is-in-viewport .separator::after { transform: scaleX(1); }

/* Marquee */
.ui-marquee { display: block; overflow: hidden; position: relative; width: 100%; }
.marquee-container { align-items: center; display: flex; position: relative; width: 100%; }
.marquee-text {
  align-items: center; display: flex; gap: 5rem;
  animation: marquee 35s linear infinite;
}
.marquee-text.big { gap: 15rem; }
.marquee-text span {
  display: block; font-family: Lausanne, sans-serif; font-weight: 400;
  text-wrap: nowrap; white-space: break-spaces; width: 100vw;
}
@media screen and (min-width: 1024px) {
  .marquee-text span { width: 30vw; }
}
.marquee-text span:last-child { margin-right: 5rem; }
.ui-marquee.default .marquee-text span { font-size: 3.125rem; line-height: 1; }
@media screen and (min-width: 1024px) {
  .ui-marquee.default .marquee-text span { font-size: 4.6rem; }
}
.ui-marquee.big .marquee-text span { font-size: 3.125rem; line-height: 1; }
@media screen and (min-width: 1024px) {
  .ui-marquee.big .marquee-text span { font-size: 9.5rem; }
  .ui-marquee.big .marquee-text { gap: 15rem; }
}

/* Description word animation */
.description { display: flex; flex-wrap: wrap; width: 100%; }
@media screen and (min-width: 1024px) {
  .description {
    padding-right: var(--subgrid-offset);
    width: calc(var(--grid-column-width) * 4 + var(--grid-gutter) * 3);
  }
}
.description .word { margin-right: 0.4ch; }
.description .word-content { display: block; opacity: 0; transition: opacity 0.75s var(--ease-in-out-soft); }
.is-in-viewport .description .word-content { opacity: 1; }

.viewport-marquee-home .ui-cta {
  opacity: 0; transform: translateY(1rem);
  margin-left: calc(var(--grid-gutter) * 0.5 + var(--subgrid-offset));
}
.viewport-marquee-home.is-in-viewport .ui-cta {
  opacity: 1; transform: none;
  transition: transform 0.5s var(--ease-in-out-soft), opacity 0.5s var(--ease-out-power2);
  transition-delay: 0.4s;
}

/* === SUSTAINABILITY TEXT SECTION === */
.ui-home-text {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
}

.ui-home-text .background {
  height: 100lvh;
  position: sticky;
  top: 0;
  width: 100%;
}
.ui-home-text .background::before {
  background-color: var(--color-black);
  content: '';
  opacity: 0.4;
  position: absolute;
  z-index: 1;
  height: 100%; width: 100%;
}
.ui-home-text .background .ui-image {
  height: 100%; width: 100%; position: absolute; top: 0; left: 0;
}
.ui-home-text .background .ui-image img {
  height: 100%; width: 100%; object-fit: cover;
}

.text-appear-inner {
  min-height: 100lvh;
  padding: 15lvh var(--grid-margin) 25lvh;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .text-appear-inner { padding: 25lvh var(--grid-margin) 25vh; }
}

.text-appear-inner .title-wrapper { grid-column: span 6; }
@media screen and (max-width: 1023px) {
  .text-appear-inner .title-wrapper { margin-bottom: 5rem; }
}
@media screen and (min-width: 1024px) {
  .text-appear-inner .title-wrapper .title {
    padding: 0 var(--subgrid-offset);
    position: sticky;
    top: 50%;
  }
}

.text-appear-inner .content-col { grid-column: span 6; padding-top: 2rem; }
@media screen and (min-width: 1024px) {
  .text-appear-inner .content-col { padding: 25lvh var(--subgrid-offset); }
}
.text-appear-inner .content-col .ui-cta { margin-top: 1.875rem; position: relative; z-index: 0; }

.ui-home-text .title, .ui-home-text .text { color: var(--color-white); }

.ui-home-text .text .word { display: inline-block; }
.ui-home-text .text .char {
  display: inline-block;
  opacity: 0.15;
  transition: opacity 0.4s ease;
}
.ui-home-text .text .char.is-visible { opacity: 1; }

/* === HIGHLIGHTS SLIDER === */
.ui-customSlider {
  overflow: hidden;
  padding: 3.5rem 0;
  position: relative;
  background-color: var(--color-beige);
  margin-bottom: 6.25rem;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .ui-customSlider { padding: 10rem 0; }
}

.ui-customSlider .top {
  align-items: center; display: flex; justify-content: space-between;
}
.ui-customSlider .top .progress {
  background-color: rgba(27, 37, 80, 0.1);
  height: 0.0625rem;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .ui-customSlider .top .progress {
    width: calc(var(--grid-column-width) * 6 + var(--grid-gutter) * 5);
  }
}
.ui-customSlider .top .progress::after {
  background-color: var(--color-dark-blue);
  content: ''; height: 100%; left: 0; position: absolute; top: 0;
  transform: scaleX(var(--slider-progress, 0));
  transform-origin: 0 50%; transition: transform 0.05s linear; width: 100%;
}

.ui-customSlider .slider {
  cursor: grab;
  display: flex;
  flex-wrap: nowrap;
  margin-top: 3.125rem;
  position: relative;
  gap: var(--grid-margin);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--grid-margin);
}
.ui-customSlider .slider::-webkit-scrollbar { display: none; }
@media screen and (min-width: 1024px) {
  .ui-customSlider .slider { margin-top: 6.25rem; }
}

.slider-item {
  flex-shrink: 0;
  width: 75vw;
  scroll-snap-align: center;
  user-select: none;
  transition: all 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .slider-item { width: 550px; }
}

/* Article Tile */
.ui-articleTile { position: relative; }
.ui-articleTile .tags {
  display: flex; flex-wrap: wrap; gap: 0.3125rem;
  left: var(--small-spacing); position: absolute; top: var(--small-spacing); z-index: 1;
}
.ui-tag {
  background-color: var(--color-white);
  border-radius: 0.3125rem;
  padding: calc(0.3125rem * 0.75) calc(0.3125rem * 0.85);
}

.ui-articleTile .media {
  aspect-ratio: 450/550;
  border-radius: 24px;
  margin-bottom: 0.6rem;
  overflow: hidden;
  position: relative;
  background: #0c1530;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 60px rgba(8, 12, 28, 0.22);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.ui-articleTile .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 28, 0) 45%, rgba(8, 12, 28, 0.78) 100%);
  pointer-events: none;
}

.ui-articleTile:hover .media {
  transform: translateY(-8px);
  box-shadow: 0 36px 88px rgba(8, 12, 28, 0.32);
  border-color: rgba(97, 188, 72, 0.45);
}

/* Dynamic Coverflow Slider specific to highlights */
.slider-highlight .slider {
  align-items: center; /* keep cards vertically centered relative to each other */
  padding: 0 calc(50vw - 275px); /* Centerize the absolute outermost cards */
}

/* Override aspect-ratio and use explicit cascading heights */
.slider-highlight .slider-item .ui-articleTile .media {
  aspect-ratio: auto;
}

/* Far cut-off cards */
.slider-highlight .slider-item.is-far .ui-articleTile .media {
  height: 320px;
}

/* Adjacent cards to the active center */
.slider-highlight .slider-item.is-adj .ui-articleTile .media {
  height: 420px;
}

/* Dead center huge card */
.slider-highlight .slider-item.is-center .ui-articleTile .media {
  height: 540px;
}

@media screen and (min-width: 1024px) {
  .ui-articleTile .media { margin-bottom: 1rem; }
}
.ui-articleTile .media .ui-image { height: 100%; width: 100%; }
.ui-articleTile .media .ui-image img {
  height: 100%; object-fit: cover; width: 100%;
  transition: transform 0.5s var(--ease-in-out-soft);
}
.ui-articleTile .media .ui-image video {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-in-out-soft);
}
.ui-articleTile:hover .media .ui-image img { transform: scale(1.025); }
.ui-articleTile:hover .media .ui-image video { transform: scale(1.025); }

.ui-articleTile .title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  padding: 22px 22px 20px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.ui-articleTile .title::before { content: ''; inset: 0; position: absolute; }
.ui-articleTile .arrow-wrapper {
  bottom: 1rem; position: absolute; right: 1.5rem; z-index: 2;
}

/* === BRANDS SECTION === */
.brands-section {
  background: var(--color-dark-beige);
  cursor: pointer;
  padding: 4.65rem var(--grid-margin) 0;
}
.brands-section .top {
  align-items: flex-start; display: flex; flex-direction: column;
  justify-content: space-between; margin-bottom: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .brands-section .top {
    flex-direction: row; margin-bottom: 12.5rem;
  }
  .brands-section .top .title { padding: 0 var(--subgrid-offset); }
}

.brands-section .brand-content {
  display: flex; flex-wrap: wrap; margin-top: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .brands-section .brand-content {
    margin-top: 0;
    width: calc(var(--grid-column-width) * 5 + var(--grid-gutter) * 4);
  }
}
.brands-section .brand-content .word { margin-right: 0.4ch; }
.brands-section .brand-content .word-content { display: block; }

.ui-home-brands { padding-bottom: 4.68rem; position: relative; width: 100%; }

.brands-grid {
  column-gap: var(--grid-gutter);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: var(--grid-gutter);
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    row-gap: unset;
  }
}

/* === SUSTAINABILITY SECTION === */
.ui-home-text {
  position: relative;
  padding: 120px 0;
  color: #fff;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ui-home-text .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.ui-home-text .background .ui-image {
  width: 100%;
  height: 100%;
}

.ui-home-text .background .ui-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.ui-home-text .text-appear-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  width: 100%;
  align-items: center;
}

.ui-home-text .title-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ui-home-text .title {
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  color: #fff;
}

.ui-home-text .content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.ui-home-text .description-text {
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.4;
  margin-bottom: 40px;
  font-weight: 400;
}

.brand-container .pic-wrapper {
  align-items: center; border-radius: 10px; display: flex;
  flex-grow: 1; justify-content: center; overflow: hidden;
  position: relative; width: 100%; aspect-ratio: 1/1;
}
.brand-container .pic-wrapper img {
  height: 100%; object-fit: cover; width: 100%;
  transition: opacity 0.85s var(--ease-in-out-soft);
}
.brand-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.brand-container .pic-wrapper img:not(.active) { position: absolute; opacity: 0; }
.brand-container .pic-wrapper img.active { opacity: 1; position: relative; }

.brand-container .brand-name {
  position: relative;
  margin-bottom: 1rem; /* More space above the image */
}

.brand-container .brand-name p {
  transition: opacity 0.5s ease;
  margin: 0;
}

.brand-container .brand-name p:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.brand-container .brand-name p.active {
  opacity: 1;
  position: relative;
}

/* Brand grid positioning */
@media screen and (min-width: 1024px) {
  .brand-container:nth-child(1) {
    grid-column: 5 / 8; grid-row: 1 / 1;
    justify-self: end;
    width: calc(var(--grid-column-width) * 2.5 + var(--grid-gutter) * 1.5);
  }
  .brand-container:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 3; }
  .brand-container:nth-child(2) .pic-wrapper { aspect-ratio: 615/600; }
  .brand-container:nth-child(3) {
    display: flex; grid-column: 8 / 10; grid-row: 4 / 5;
    width: calc(var(--grid-column-width) * 2.5 + var(--grid-gutter) * 1.5);
  }
  .brand-container:nth-child(3) .pic-wrapper { aspect-ratio: 300/275; }
  .brand-container:nth-child(4) {
    grid-column: 11 / 13; grid-row: 4 / 5;
    justify-self: end;
    width: calc(var(--grid-column-width) * 2.5 + var(--grid-gutter) * 1.5);
  }
  .brand-container:nth-child(4) .pic-wrapper { aspect-ratio: 300/275; }
  .brand-container:nth-child(5) { grid-column: 1 / 8; grid-row: 3 / 5; }
  .brand-container:nth-child(5) .pic-wrapper { aspect-ratio: 865/600; }
}

.brand-rotate-btn {
  display: flex; align-items: center; justify-content: center;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 1024px) {
  .brand-rotate-btn { display: none; }
}

/* === PRE-FOOTER / CTA === */
.viewport-prefooter {
  overflow-x: hidden;
  padding: 0; /* Removed left right padding entirely */
}

.pre-footer {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 0; /* Added inside padding top/bottom */
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .pre-footer { padding: 6rem 0; } /* Bigger top/bottom padding on desktop */
}

.pre-footer .bg-yellow {
  background-color: var(--color-yellow);
  height: 100%; left: 0; position: absolute; top: 0; width: 100%;
}
.pre-footer .ui-marquee { color: #fff; margin-bottom: 1.25rem; overflow: hidden; width: 100%; }
.pre-footer .ui-marquee .text {
  font-size: clamp(40px, 6vw, 80px) !important; /* Reduced from massive bounds */
  font-weight: 700;
  line-height: 1.1;
}

.pre-footer .ui-cta { margin: 1rem 0 0; }
@media screen and (min-width: 1024px) {
  .pre-footer .ui-cta { margin: 1.5rem 0 0; }
}

/* === MODERN PREMIUM FOOTER === */
.main-footer {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.main-footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--subgrid-padding);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1.2fr 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-brand-section .footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 35px;
  filter: brightness(0) invert(1);
}

.footer-brand-section .brand-description {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 35px;
  max-width: 380px;
  font-weight: 300;
}

.social-links-modern {
  display: flex;
  gap: 15px;
}

.social-link-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.social-link-item:hover {
  background: #61BC48;
  border-color: #61BC48;
  color: var(--color-white);
  transform: translateY(-8px) rotate(8deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-links-col .col-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #61BC48;
  margin-bottom: 40px;
  font-weight: 800;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links-list li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  font-weight: 400;
}

.footer-links-list li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #61BC48;
  transition: width 0.4s var(--ease-out-power4);
}

.footer-links-list li a:hover {
  color: var(--color-white);
  transform: translateX(5px);
}

.footer-links-list li a:hover::after {
  width: 100%;
}

.footer-newsletter-section .col-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #61BC48;
  margin-bottom: 40px;
  font-weight: 800;
}

.footer-newsletter-section .nl-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
  font-weight: 300;
}

.nl-form-modern {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.nl-form-modern:focus-within {
  border-color: #61BC48;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(97, 188, 72, 0.2);
}

.nl-form-modern input {
  background: transparent;
  border: none;
  padding: 0 25px;
  color: var(--color-white);
  flex: 1;
  font-size: 15px;
  outline: none;
}

.nl-submit-btn {
  width: 50px;
  height: 50px;
  background: #61BC48;
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out-power4);
}

.nl-submit-btn:hover {
  transform: scale(1.1);
  background: #7bd365;
  box-shadow: 0 0 15px rgba(97, 188, 72, 0.5);
}

.footer-bottom-modern {
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-modern .copyright-area p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.legal-links-modern {
  display: flex;
  gap: 40px;
}

.legal-links-modern a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-links-modern .cookie-settings-trigger {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.legal-links-modern a:hover {
  color: #61BC48;
}

.legal-links-modern .cookie-settings-trigger:hover {
  color: #61BC48;
}

.cookie-consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: min(420px, calc(100vw - 32px));
  z-index: 1200;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent-inner {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(12, 21, 48, 0.98), rgba(27, 37, 80, 0.96));
  color: #fff;
  box-shadow: 0 24px 60px rgba(6, 10, 25, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.cookie-consent-title {
  margin: 0 0 10px;
  font-family: Lausanne, sans-serif;
  font-size: 28px;
  line-height: 1;
  color: #fff;
}

.cookie-consent-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.cookie-consent-link,
.cookie-consent-btn {
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cookie-consent-link {
  color: #8edc70;
  border: 1px solid rgba(142, 220, 112, 0.25);
}

.cookie-consent-link:hover {
  color: #fff;
  border-color: rgba(142, 220, 112, 0.55);
}

.cookie-consent-btn {
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.cookie-consent-btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

.cookie-consent-btn.primary {
  background: #61BC48;
  color: #11204a;
  box-shadow: 0 10px 24px rgba(97, 188, 72, 0.28);
}

.cookie-consent-btn.secondary:hover,
.cookie-consent-btn.primary:hover {
  transform: translateY(-2px);
}

/* === VIEWPORT OBSERVER ANIMATIONS === */
.viewport-section { opacity: 0; transform: translateY(2rem); transition: opacity 0.75s var(--ease-in-out-soft), transform 0.75s var(--ease-in-out-soft); }
.viewport-section.is-in-viewport { opacity: 1; transform: none; }

/* === PAGE INTRO ANIMATION === */
.page-loaded .home-hero .home-title .char {
  opacity: 1; transform: translateY(0);
  transition: transform 0.6s var(--ease-out-power4), opacity 0.4s ease;
}
.page-loaded .home-hero { opacity: 1; }
.page-loaded .app-header .brand,
.page-loaded .app-header .extras,
.page-loaded .app-header .app-searchBtn {
  opacity: 1; transform: none;
  transition: opacity 0.6s var(--ease-in-out-soft) 0.5s, transform 0.6s var(--ease-in-out-soft) 0.5s;
}

.home-hero { opacity: 0; transition: opacity 0.8s ease; }
.app-header .brand,
.app-header .extras,
.app-header .app-searchBtn {
  opacity: 0; transform: translate3d(0, 1rem, 0);
}

/* Removed Unused Modal Styles */

/* === PREMIUM PRODUCTS SECTION === */
.products-premium-section {
  padding: 140px 5%;
  background: #fcfaf8; 
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-header {
  max-width: 900px;
  margin: 0 auto 90px;
}

.products-tag {
  color: #61BC48;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  display: block;
  margin-bottom: 25px;
}

.products-title {
  font-family: Lausanne, sans-serif;
  font-size: clamp(45px, 6vw, 75px);
  color: var(--color-dark-blue);
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1;
}

.products-subtitle {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #61BC48;
  margin-bottom: 25px;
  font-weight: 600;
}

.products-desc {
  font-size: 19px;
  line-height: 1.7;
  color: #666;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1440px;
  margin: 0 auto 80px;
}

.product-card-modern {
  background: #fff;
  padding: 50px;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.product-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #61BC48;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-power4);
}

.product-card-modern:hover {
  transform: translateY(-20px);
  box-shadow: 0 50px 120px rgba(0,0,0,0.1);
  border-color: rgba(97, 188, 72, 0.3);
}

.product-card-modern:hover::before {
  transform: scaleX(1);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.category-badge {
  background: rgba(97, 188, 72, 0.08);
  color: #61BC48;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--color-dark-blue);
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 8px 20px rgba(27, 37, 80, 0.15);
}

.product-card-modern:hover .card-icon {
  background: #61BC48;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(97, 188, 72, 0.2);
}

.card-info {
  margin-bottom: 40px;
}

.product-card-modern h3 {
  font-family: Lausanne, sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--color-dark-blue);
  margin-bottom: 15px;
  line-height: 1.1;
}

.card-summary {
  font-size: 16px;
  line-height: 1.6;
  color: #777;
  font-weight: 300;
}

.product-list-items {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid #f0f0f0;
  padding-top: 30px;
}

.product-list-items li {
  font-size: 15px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.product-list-items li::before {
  content: '→';
  color: #61BC48;
  font-weight: 800;
  transition: transform 0.3s ease;
}

.product-card-modern:hover .product-list-items li {
  transform: translateX(5px);
  color: #000;
}

/* Customization Banner */
.customization-banner {
  max-width: 1440px;
  margin: 0 auto;
  background: var(--color-dark-blue);
  border-radius: 32px;
  padding: 50px 80px;
  color: #fff;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(27, 37, 80, 0.2);
}

.customization-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(97, 188, 72, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.banner-badge {
  background: #61BC48;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.banner-content p {
  flex: 1;
  font-size: 19px;
  line-height: 1.6;
  opacity: 0.85;
  font-weight: 300;
}

@media (max-width: 1200px) {
  .products-grid-modern { gap: 30px; }
  .product-card-modern { padding: 50px 40px; }
}

@media (max-width: 1024px) {
  .products-grid-modern { grid-template-columns: 1fr 1fr; }
  .customization-banner { padding: 40px 50px; }
  .banner-content { flex-direction: column; text-align: center; gap: 30px; }
}

@media (max-width: 768px) {
  .products-grid-modern { grid-template-columns: 1fr; }
  .products-premium-section { padding: 100px 5%; }
  .products-header { margin-bottom: 60px; }
  .product-card-modern { padding: 40px; }
  .customization-banner { padding: 40px 25px; }
  .banner-content p { font-size: 16px; }
}

/* ==========================================================================
   === COMPREHENSIVE RESPONSIVE DESIGN SYSTEM ===
   ========================================================================== */

/* --- SMALL DESKTOPS (Max 1280px) --- */
@media screen and (max-width: 1280px) {
  .samina-header .s-nav-section { gap: 14px; }
  .samina-header .s-nav-link span { font-size: 12px; }
  .samina-header .s-nav-link svg { width: 16px; height: 16px; }

  .brands-section .brand-content {
    width: calc(var(--grid-column-width) * 6 + var(--grid-gutter) * 5);
  }

  .main-footer .footer-links-list li a { font-size: 15px; }
}

/* --- TABLETS & SMALL DESKTOPS (Max 1024px) --- */
@media screen and (max-width: 1024px) {
  /* Header: hide desktop nav, show hamburger */
  .samina-header .s-logo-box { width: 250px; }

  /* Hero */
  .home-hero .home-title { padding-top: 0; }
  .t-h2 { font-size: clamp(28px, 5vw, 40px); }

  /* Products sticky columns → stacked */
  .ui-sticky-columns { display: flex; flex-direction: column; height: auto; }
  .ui-sticky-columns .sticky { position: relative; width: 100%; top: 0; padding: 40px 20px; z-index: 5; order: -1; }
  .ui-sticky-columns .content { width: 100%; padding: 0 var(--grid-margin); }

  /* Product Lists */
  .product-lists-section { padding: 80px 4%; }
  .lists-grid { gap: 50px; }

  /* About Section */
  .about-container { padding: 0 20px !important; gap: 40px !important; }
  .about-top-grid, .about-bottom-grid { gap: 30px !important; }

  /* Highlight Slider */
  .slider-highlight .slider { padding: 0 calc(50vw - 200px); }
  .slider-highlight .slider-item.is-far .ui-articleTile .media { height: 250px; }
  .slider-highlight .slider-item.is-adj .ui-articleTile .media { height: 320px; }
  .slider-highlight .slider-item.is-center .ui-articleTile .media { height: 400px; }

  /* Brands */
  .brands-section .top { flex-direction: column; margin-bottom: 2rem; }
  .brands-section .brand-content { width: 100%; margin-top: 1rem; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .footer-newsletter-section { grid-column: span 3; margin-top: 20px; }
}

/* --- MOBILE DEVICES (Max 768px) --- */

@media screen and (max-width: 768px) {
  /* ---- HEADER ---- */
  .samina-header { height: auto; top: 0; padding: 10px; }
  .samina-header .s-main-nav {
    height: 60px;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
  }
  .samina-header .s-logo-box {
    width: auto; height: 50px;
    background: transparent !important;
    padding: 0; display: flex;
    align-items: center; justify-content: flex-start;
  }
  .samina-header .s-logo-box img { height: calc(100% - 10px); width: auto; }
  .samina-header .s-logo-container { margin-left: 0; }
  .s-menu-toggle { display: flex; margin-right: 0; }

  /* Scrolled header on mobile */
  .samina-header.scrolled { top: 5px; padding: 5px 10px; }
  .samina-header.scrolled .s-main-nav {
    height: 55px; padding: 0 15px; border-radius: 30px;
    width: 100%; max-width: 100%;
    margin: 0; background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  }
  .samina-header.scrolled .s-logo-box { height: 45px; width: auto; border-radius: 0; background: transparent !important; box-shadow: none; }
  .samina-header.scrolled .s-logo-box img { height: calc(100% - 8px); width: auto; object-fit: contain; padding: 0; filter: none; }



  /* ---- HERO ---- */
  .home-hero { height: 100svh; min-height: 100svh; position: relative; overflow: hidden; }
  .home-hero .bg { position: absolute; height: 100%; width: 100%; top: 0; left: 0; z-index: 1; }
  .home-hero .bg .slider-image img { filter: brightness(0.55); }
  .home-hero .top {
    position: relative; height: 100svh; min-height: 100svh;
    padding: 0; display: flex;
    flex-direction: column; align-items: stretch;
    justify-content: flex-end; z-index: 5;
  }

  /* Title: centered in middle of viewport */
  .home-hero .home-title {
    position: absolute; top: 45%; left: 0;
    transform: translateY(-50%);
    padding: 0 25px; line-height: 1.2;
    text-align: left; width: 100%;
    margin-bottom: 0; opacity: 1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .t-h2 { font-size: clamp(26px, 7.5vw, 40px); }

  /* Home Opener: Solid bar at bottom */
  .home-opener {
    position: relative;
    background-color: var(--color-beige);
    border-radius: 20px 20px 0 0;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: auto;
    z-index: 10;
  }
  .home-opener .text {
    width: 100%;
    font-size: 16px; 
    margin-bottom: 0;
    color: var(--color-dark-blue); 
    font-weight: 500;
    padding: 0; 
    text-align: center;
    line-height: 1.4;
  }
  .home-opener .scroll { display: none; }
  .home-opener .ui-cta {
    margin: 0 auto;
    width: 100%;
    max-width: 250px;
  }

  /* ---- PRODUCT LISTS ---- */
  .product-lists-section { padding: 50px 15px; }
  .lists-grid { grid-template-columns: 1fr; gap: 40px; max-width: 100%; }
  .list-column h3 { font-size: 18px; margin-bottom: 25px; text-align: center; display: block; letter-spacing: 3px; }
  .list-column h3::after { left: 50%; transform: translateX(-50%); }
  .list-item { padding: 10px 14px; }
  .item-text { font-size: 12px; letter-spacing: 0.8px; }

  /* ---- PRODUCT CARDS ---- */
  .ui-sticky-columns { padding-top: 2rem; }
  .viewport-product { margin-bottom: 0.75rem; }
  .ui-home-product { aspect-ratio: 4/3; }
  .viewport-marquee-home { padding: 0 15px; }
  .viewport-marquee-home .ui-cta { margin-left: 0; }

  /* ---- ABOUT US ---- */
  .about-container { padding: 0 15px !important; gap: 30px !important; }
  .section-title-wrapper h2 { font-size: 22px !important; letter-spacing: 2px !important; }
  .about-top-grid, .about-bottom-grid {
    grid-template-columns: 1fr !important; gap: 25px !important;
  }
  .about-card { padding-left: 15px !important; }

  /* ---- HIGHLIGHTS SLIDER ---- */
  .ui-customSlider { padding: 2rem 0; margin-bottom: 2rem; }
  .ui-customSlider .top { padding: 0 15px; flex-wrap: wrap; gap: 10px; }
  .ui-customSlider .top .progress { display: none; }
  .ui-customSlider .slider { margin-top: 1.5rem; padding: 0 15px; gap: 10px; }
  .slider-item { width: 80vw; }
  .slider-highlight .slider { padding: 0 calc(50vw - 40vw); }
  .slider-highlight .slider-item.is-far .ui-articleTile .media { height: 200px; }
  .slider-highlight .slider-item.is-adj .ui-articleTile .media { height: 260px; }
  .slider-highlight .slider-item.is-center .ui-articleTile .media { height: 320px; }
  .ui-articleTile .title { font-size: 16px; }

  /* ---- BRANDS ---- */
  .brands-section { padding: 40px 15px; }
  .brands-section .top { flex-direction: column; margin-bottom: 1.5rem; }
  .brands-section .top .title { text-align: center; width: 100%; margin-bottom: 15px; }
  .brands-section .brand-content { text-align: center; justify-content: center; width: 100%; font-size: 16px; }
  .brands-section .brand-content .word-content { font-size: 16px; line-height: 1.4; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .brand-container .brand-name { margin-bottom: 0.5rem; }
  .brand-container .brand-name p { font-size: 14px; }

  /* ---- PRE-FOOTER CTA ---- */
  .pre-footer { padding: 2.5rem 0; }
  .pre-footer .ui-marquee .text { font-size: clamp(28px, 8vw, 50px) !important; }

  /* ---- MAIN FOOTER ---- */
  .main-footer { padding: 80px 0 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .footer-brand-section { grid-column: span 2; }
  .footer-newsletter-section { grid-column: span 2; margin-top: 0; }
  .footer-brand-section .brand-description { max-width: 100%; }
  .footer-bottom-modern { flex-direction: column; gap: 25px; text-align: center; }
  .legal-links-modern { gap: 20px; }

  /* ---- TYPOGRAPHY ---- */
  .t-h1 { font-size: clamp(32px, 9vw, 60px); }
  .t-h3 { font-size: clamp(18px, 4vw, 22px); }
  .t-h4 { font-size: clamp(16px, 3vw, 20px); }
  .t-h5 { font-size: 16px; }

  /* ---- MARQUEE ---- */
  .ui-marquee.default .marquee-text span { font-size: 2rem; }
  .marquee-text span { width: 80vw; }

  /* Philosophy Mobile */
  .philosophy-section { padding: 80px 0; }
  .philosophy-header { margin-bottom: 50px; }
  .philosophy-header h2 { font-size: 36px; }
  .philosophy-content { gap: 40px; }
  .philosophy-text-box { position: relative; top: 0; }
  .philosophy-text-box .description { font-size: 17px; margin-bottom: 30px; text-align: center; }
  .philosophy-stats { justify-content: center; gap: 20px; }
  .stat-item { padding-left: 15px; }
  .stat-item .value { font-size: 32px; }
  .strength-card { padding: 30px; }
}

/* --- SMALL PHONES (Max 480px) --- */
@media screen and (max-width: 480px) {
  /* Header */
  .samina-header { padding: 8px; }
  .samina-header .s-main-nav { height: 55px; padding: 0 12px; border-radius: 28px; }
  .samina-header .s-logo-box { height: 45px; }
  .samina-header .s-logo-box img { height: calc(100% - 8px); }
  .samina-header.scrolled .s-main-nav { height: 50px; }

  /* Mobile menu links */
  .samina-header .s-nav-link { font-size: 18px; gap: 6px; }
  .samina-header .s-nav-link svg { width: 20px; height: 20px; }

  /* Hero */
  .home-hero .home-title { top: 42%; padding: 0 20px; }
  .t-h2 { font-size: clamp(22px, 6.5vw, 32px); }
  .home-opener { padding: 18px 20px; gap: 12px; border-radius: 16px 16px 0 0; }
  .home-opener .text { font-size: 13px; }
  .home-opener .ui-cta { height: 36px; padding: 0 1rem; font-size: 12px; }

  /* Product lists */
  .product-lists-section { padding: 40px 12px; }
  .list-column h3 { font-size: 16px; letter-spacing: 2px; margin-bottom: 20px; }
  .list-item { padding: 8px 12px; gap: 12px; }
  .item-text { font-size: 11px; letter-spacing: 0.5px; }

  /* Product cards */
  .ui-home-product { aspect-ratio: 1/1; }

  /* About */
  .about-container { padding: 0 12px !important; gap: 25px !important; }
  .section-title-wrapper h2 { font-size: 18px !important; letter-spacing: 1.5px !important; }
  .about-card .title { font-size: 16px !important; }
  .about-card .description-text { font-size: 14px !important; }

  /* Highlights */
  .ui-customSlider { padding: 1.5rem 0; margin-bottom: 1.5rem; }
  .ui-customSlider .slider { margin-top: 1rem; }
  .slider-item { width: 85vw; }
  .slider-highlight .slider-item.is-far .ui-articleTile .media { height: 170px; }
  .slider-highlight .slider-item.is-adj .ui-articleTile .media { height: 220px; }
  .slider-highlight .slider-item.is-center .ui-articleTile .media { height: 280px; }
  .ui-articleTile .title { font-size: 14px; }

  /* Brands */
  .brands-section { padding: 30px 12px; }
  .brands-section .brand-content .word-content { font-size: 14px; }
  .brands-grid { gap: 8px; }
  .brand-container .brand-name p { font-size: 12px; }

  /* Pre-footer */
  .pre-footer { padding: 2rem 0; }
  .pre-footer .ui-marquee .text { font-size: clamp(22px, 7vw, 40px) !important; }

  /* Footer */
  .main-footer { padding: 60px 0 30px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .footer-brand-section, .footer-newsletter-section { grid-column: span 1; }
  .social-links-modern { justify-content: center; }
  .footer-links-list li a::after { left: 50%; transform: translateX(-50%); }
  .legal-links-modern { flex-direction: column; gap: 10px; }
  .footer-bottom-modern { gap: 20px; }

  /* Typography */
  .t-h1 { font-size: clamp(28px, 8vw, 50px); }
  .t-h3 { font-size: clamp(16px, 3.5vw, 20px); }

  /* Marquee */
  .ui-marquee.default .marquee-text span { font-size: 1.5rem; }
  .ui-marquee.big .marquee-text span { font-size: 1.5rem; }

  /* ---- PREMIUM SPOTLIGHT MOBILE OPTIMIZATIONS ---- */
  [id$="-spotlight"] {
    padding: 80px 0 !important;
  }
  
  [id$="-spotlight"] .container {
    padding: 0 20px !important;
  }

  [id$="-spotlight"] > .container > div {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
    text-align: center;
  }

  [id$="-spotlight"] .spotlight-content {
    order: 2 !important;
  }

  [id$="-spotlight"] .spotlight-visual {
    order: 1 !important;
    max-width: 500px;
    margin: 0 auto;
  }

  [id$="-spotlight"] .spotlight-visual .badge-floating,
  [id$="-spotlight"] .spotlight-visual div[style*="absolute"] {
     right: 0 !important;
     left: 0 !important;
     width: max-content;
     margin: 0 auto;
     bottom: -20px !important;
     top: auto !important;
     transform: rotate(0deg) !important;
  }

  [id$="-spotlight"] h2 {
    font-size: clamp(32px, 8vw, 45px) !important;
    margin-bottom: 25px !important;
  }

  [id$="-spotlight"] .spotlight-feature {
    text-align: left;
  }

  /* ---- GROUP HEADER MOBILE ---- */
  section.reveal[style*="text-align: center"] {
    padding: 80px 0 0 !important;
  }

  section.reveal[style*="text-align: center"] h2 {
    font-size: clamp(32px, 10vw, 50px) !important;
  }
}

/* === MODERN BRAND MARQUEE SYSTEM === */

@keyframes brand-marquee-forward {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes brand-marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.modern-marquee-system {
  padding: 40px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.brand-node {
  background: #fff;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-node img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: all 0.5s ease;
}

.brand-node:hover {
  transform: translateY(-8px);
  background: #fff;
  border-color: #61BC48;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.brand-node:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

/* Pause animation on hover */
.logo-marquee-row:hover .logo-track,
.logo-marquee-row:hover .logo-track-reverse {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .brand-node {
    width: 160px;
    height: 80px;
    border-radius: 12px;
  }
}

/* === PREMIUM PRODUCT GALLERY SLIDER & ZOOM === */
.spotlight-gallery {
  position: relative;
  width: 100%;
  height: 600px; /* Medium fixed height for premium consistency */
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,0.4);
  background: #000;
}

.gallery-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
}

.gallery-slide {
  flex: 0 0 100%;
  position: relative;
  cursor: zoom-in;
  height: 100%;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.2);
  padding: 8px 15px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.gallery-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: #61BC48;
  transform: scale(1.4);
  box-shadow: 0 0 10px rgba(97, 188, 72, 0.5);
}

.slider-highlight .highlight-card-gallery {
  height: 100%;
  border-radius: inherit;
  box-shadow: none;
}

.slider-highlight .highlight-card-gallery .gallery-nav {
  bottom: 18px;
  gap: 10px;
  padding: 7px 12px;
}

/* Zoom Overlay */
.gallery-zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: galleryFadeIn 0.4s ease;
}

.gallery-zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.zoom-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  line-height: 1;
}

@keyframes galleryFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gallery-zoom-overlay.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .spotlight-gallery {
    height: 400px; /* Tablet/Mobile size */
  }
}

/* === MISSING SECTIONS STYLES === */

/* Philosophy Section */
.philosophy-section {
  position: relative;
  padding: 140px 0;
  background:
    radial-gradient(circle at top left, rgba(97, 188, 72, 0.16), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(255, 172, 58, 0.16), transparent 24%),
    linear-gradient(135deg, #132046 0%, #1b2550 52%, #0d1735 100%);
  overflow: hidden;
}

.philosophy-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  opacity: 0.8;
}

.philosophy-orb-one {
  width: 320px;
  height: 320px;
  top: -110px;
  left: -90px;
  background: radial-gradient(circle, rgba(97, 188, 72, 0.5) 0%, rgba(97, 188, 72, 0) 72%);
}

.philosophy-orb-two {
  width: 280px;
  height: 280px;
  right: -70px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(255, 172, 58, 0.34) 0%, rgba(255, 172, 58, 0) 72%);
}

.philosophy-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.philosophy-container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 70px;
  align-items: center;
  padding: 58px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(5, 12, 30, 0.35);
  backdrop-filter: blur(10px);
}

.philosophy-text-content {
  width: 100%;
  max-width: 760px;
}

.accent-tag {
  color: #8dd774;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  font-size: 12px;
  margin-bottom: 24px;
  display: block;
  opacity: 1;
}

.philosophy-text-content h2 {
  font-family: Lausanne, sans-serif;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.94;
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #fff;
}

.philosophy-desc {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 36px;
  max-width: 620px;
  font-weight: 300;
}

.philosophy-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.philosophy-highlight {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 110px;
}

.highlight-value {
  display: block;
  font-family: Lausanne, sans-serif;
  font-size: 28px;
  color: #ffcf72;
  margin-bottom: 10px;
}

.highlight-label {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.strengths-glass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 34px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.45s ease, border-color 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.2);
  border-color: rgba(97, 188, 72, 0.55);
}

.icon-circle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #61BC48, #8edc70);
  color: #10204c;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 16px 28px rgba(97, 188, 72, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.glass-card:hover .icon-circle {
  transform: translateY(-2px) rotate(6deg);
  box-shadow: 0 20px 34px rgba(97, 188, 72, 0.25);
}

.glass-card h4 {
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

.glass-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.philosophy-stats-modern {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 10px;
}

.mod-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
}

.mod-stat .val {
  font-family: Lausanne, sans-serif;
  font-size: 44px;
  font-weight: 300;
  color: #ffcf72;
  line-height: 1;
}

.mod-stat .lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.philosophy-visual {
  position: relative;
}

.philosophy-image-stack {
  position: relative;
  width: min(100%, 500px);
  height: 660px;
  margin-left: auto;
}

.philosophy-image-card {
  position: absolute;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  border-radius: 28px;
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.26);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.8s ease;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.philosophy-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 31, 0.02) 5%, rgba(7, 14, 31, 0.34) 100%);
}

.philosophy-image-card.image-primary {
  inset: 70px 0 120px 60px;
  background-image: url("../manufacturing.png");
  z-index: 3;
}

.philosophy-image-card.image-secondary {
  top: 0;
  left: 0;
  width: 220px;
  height: 250px;
  background-image: url("../heroBg.jpg");
  z-index: 2;
}

.philosophy-image-card.image-tertiary {
  right: 18px;
  bottom: 0;
  width: 250px;
  height: 190px;
  background-image: url("../back-03.jpg");
  z-index: 4;
}

.philosophy-floating-note {
  position: absolute;
  left: 0;
  bottom: 110px;
  max-width: 250px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

.note-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8edc70;
}

.philosophy-floating-note strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.philosophy-section:hover .philosophy-image-card.image-primary {
  transform: translate3d(-10px, -8px, 0) scale(1.02);
}

.philosophy-section:hover .philosophy-image-card.image-secondary {
  transform: translate3d(6px, -10px, 0) rotate(-2deg);
}

.philosophy-section:hover .philosophy-image-card.image-tertiary {
  transform: translate3d(-8px, 6px, 0) rotate(2deg);
}

/* Products Grid Modern */
.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  padding: 0 40px;
}

.product-card-modern {
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.5s var(--ease-out-power4);
  display: flex;
  flex-direction: column;
}

/* Marquee Row */
.logo-marquee-row {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.logo-track, .logo-track-reverse {
  display: flex;
  gap: 50px;
  width: max-content;
  padding: 20px 0;
}

@keyframes brand-marquee-forward {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 25px)); }
}

@keyframes brand-marquee-reverse {
  0% { transform: translateX(calc(-50% - 25px)); }
  100% { transform: translateX(0); }
}

@media (max-width: 1024px) {
  .philosophy-section { padding: 110px 0; }
  .philosophy-shell { padding: 0 24px; }
  .philosophy-container {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 38px;
  }
  .philosophy-highlights,
  .philosophy-stats-modern {
    grid-template-columns: 1fr 1fr;
  }
  .philosophy-visual {
    order: -1;
  }
  .philosophy-image-stack {
    width: 100%;
    max-width: 700px;
    height: 460px;
    margin: 0 auto;
  }
  .philosophy-image-card.image-primary { inset: 40px 0 70px 120px; }
  .philosophy-image-card.image-secondary {
    width: 200px;
    height: 220px;
  }
  .philosophy-image-card.image-tertiary {
    width: 220px;
    height: 170px;
  }
  .philosophy-floating-note {
    left: 24px;
    bottom: 55px;
  }
}

@media (max-width: 767px) {
  .philosophy-section { padding: 88px 0; }
  .philosophy-shell { padding: 0 16px; }
  .philosophy-container {
    padding: 28px 20px;
    border-radius: 28px;
  }
  .philosophy-text-content h2 {
    font-size: clamp(36px, 11vw, 54px);
  }
  .philosophy-desc {
    font-size: 16px;
    line-height: 1.75;
  }
  .philosophy-highlights,
  .strengths-glass-grid,
  .philosophy-stats-modern {
    grid-template-columns: 1fr;
  }
  .philosophy-image-stack { height: 330px; }
  .philosophy-image-card { border-radius: 22px; }
  .philosophy-image-card.image-primary { inset: 26px 0 34px 72px; }
  .philosophy-image-card.image-secondary {
    top: 0;
    width: 138px;
    height: 160px;
  }
  .philosophy-image-card.image-tertiary {
    right: 0;
    width: 158px;
    height: 120px;
  }
  .philosophy-floating-note {
    display: none;
  }
  .glass-card,
  .mod-stat,
  .philosophy-highlight {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* === LEGAL PAGES === */
.legal-page {
  background: #f6f4ef;
  color: #1b2550;
}

.legal-hero {
  padding: 120px 0 64px;
  background:
    radial-gradient(circle at top left, rgba(97, 188, 72, 0.14), transparent 26%),
    linear-gradient(180deg, #1b2550 0%, #132046 100%);
  color: #fff;
}

.legal-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.legal-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #8edc70;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.legal-hero h1 {
  font-family: Lausanne, sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  margin: 0 0 18px;
  font-weight: 300;
  letter-spacing: -0.03em;
  max-width: 760px;
}

.legal-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.legal-content {
  padding: 56px 0 100px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.legal-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(19, 32, 70, 0.08);
  border: 1px solid rgba(27, 37, 80, 0.06);
}

.legal-card h2 {
  font-family: Lausanne, sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: #1b2550;
  margin: 0 0 16px;
}

.legal-card p,
.legal-card li {
  font-size: 16px;
  line-height: 1.75;
  color: #4b5563;
}

.legal-card ul {
  margin: 0;
  padding-left: 18px;
}

.legal-card li + li {
  margin-top: 10px;
}

.legal-contact-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1b2550 0%, #132046 100%);
}

.legal-contact-card h2,
.legal-contact-card p,
.legal-contact-card li,
.legal-contact-card span {
  color: rgba(255, 255, 255, 0.78);
}

.legal-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.legal-contact-list span {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 767px) {
  .legal-hero { padding: 96px 0 48px; }
  .legal-shell { padding: 0 18px; }
  .legal-content { padding: 40px 0 80px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-card { padding: 24px; border-radius: 20px; }
  .legal-card h2 { font-size: 22px; }
  .cookie-consent-banner {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
  }
  .cookie-consent-inner {
    padding: 20px;
    border-radius: 20px;
  }
  .cookie-consent-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent-link,
  .cookie-consent-btn {
    text-align: center;
    justify-content: center;
  }
}
