/*
Theme Name: Airspun
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.6.1.1774955537
Updated: 2026-03-31 11:12:17

*/

:root {
  /* ── Butterfly-Cyan Extras ── */
  --cyan: #29ABE2;
  --cyan-light: #7ECFEF;
  --cyan-pale: #E8F6FD;
  --cyan-deep: #1580B0;
  --charcoal: #1C1C1E;
  --cloud: #F2F2F7;
  --navy: #1C1C1E;
  --forest: #0f2218;
  --sky: #29ABE2;
  --sage: #29ABE2;
  --cream: #FAF8F5;
  --warm: #FAF8F5;
  --linen: #F0EDE8;
  --sand: #E5E5EA;
  --ink: #2C2C2E;
  --mist: #636366;
  --gold: #29ABE2;
  --rose: #E8F6FD;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'DM Sans', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── CURSOR ─── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--navy);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(13, 27, 42, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out), width 0.4s, height 0.4s, border-color 0.3s;
}

body:hover .cursor-follower {
  border-color: rgba(13, 27, 42, 0.5);
}

/* ─── SCROLL REVEAL ─── */
.sr {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.sr.visible {
  opacity: 1;
  transform: none;
}

.sr-d1 {
  transition-delay: 0.1s;
}

.sr-d2 {
  transition-delay: 0.2s;
}

.sr-d3 {
  transition-delay: 0.3s;
}

.sr-d4 {
  transition-delay: 0.4s;
}

.sr-d5 {
  transition-delay: 0.5s;
}

.sr-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.sr-left.visible {
  opacity: 1;
  transform: none;
}

.sr-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.sr-right.visible {
  opacity: 1;
  transform: none;
}

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  /*max-width:1440px!important;*/
  margin: 0 auto;
  padding-left: clamp(1.25rem, 6vw, 5rem) !important;
  padding-right: clamp(1.25rem, 6vw, 5rem) !important;
}

/* ─── KEYFRAMES ─── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(1.2deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes grain {

  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-2%, -3%);
  }

  20% {
    transform: translate(3%, 2%);
  }

  30% {
    transform: translate(-1%, 4%);
  }

  40% {
    transform: translate(2%, -1%);
  }

  50% {
    transform: translate(-3%, 1%);
  }

  60% {
    transform: translate(1%, -2%);
  }

  70% {
    transform: translate(-2%, 3%);
  }

  80% {
    transform: translate(3%, -3%);
  }

  90% {
    transform: translate(-1%, 2%);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes badge-rotate {
  to {
    transform: rotate(360deg);
  }
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: all 0.4s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.3s ease;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

.nav.scrolled .nav-inner {
  height: 64px;
}

.nav.scrolled {
  background: rgba(250, 248, 243, 0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}

.logo {
  font-family: var(--ff-serif);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
}

.logo sup {
  font-size: 0.45rem;
  font-family: var(--ff-sans);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  vertical-align: super;
  margin-left: 2px;
}

.logo-tagline {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.25s;
  position: relative;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--navy);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown::after {
  display: none;
}

.nav-links .dropdown>a::before {
  content: '▾';
  margin-left: 4px;
  font-size: 0.55rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icon {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 0.3rem;
  display: flex;
  align-items: center;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.nav-icon:hover {
  opacity: 1;
}

.cart-wrap {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--sky);
  color: #fff;
  font-size: 0.45rem;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sky);
  color: #fff;
  padding: 0.625rem 1.375rem;
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 8px 24px rgba(41, 171, 226, 0.28);
}

.nav-cta:hover {
  background: var(--cyan-deep, #1580B0);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.28);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 0.3rem;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f3f8fc;
}

/* Grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  animation: grain 8s steps(2) infinite;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0;
  transition: opacity 2s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
      #f3f8fc 0%,
      rgba(243, 248, 252, 0.97) 22%,
      rgba(243, 248, 252, 0.85) 40%,
      rgba(243, 248, 252, 0.4) 60%,
      rgba(243, 248, 252, 0.1) 80%,
      transparent 100%);
}

/* Decorative circles */
.hero-deco-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 174, 214, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.deco-c1 {
  width: 600px;
  height: 600px;
  right: -100px;
  top: -100px;
}

.deco-c2 {
  width: 400px;
  height: 400px;
  right: 20%;
  bottom: -150px;
  background: radial-gradient(circle, rgba(139, 175, 156, 0.1) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: clamp(6rem, 12vw, 10rem);
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
  padding-left: clamp(1.25rem, 6vw, 5rem);
  padding-right: clamp(1.25rem, 6vw, 5rem);
}

.hero-trust {
  display: none;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
  animation: slideUp 0.8s 0.2s both;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  overflow: hidden;
  margin-left: -8px;
  background: var(--linen);
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-text {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--mist);
}

.trust-text strong {
  color: var(--ink);
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #F59E0B;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideUp 0.8s 0.35s both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, var(--sky), transparent);
}

.hero-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 8.5vw, 7.5rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 0.5rem;
  animation: slideUp 0.8s 0.45s both;
}

.hero-h1 em {
  font-style: italic;
  color: var(--sky);
  font-weight: 400;
}

.hero-sub {
  font-family: var(--ff-serif);
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--ink);
  opacity: 0.65;
  line-height: 1.3;
  margin-bottom: 1.75rem;
  animation: slideUp 0.8s 0.55s both;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mist);
  max-width: 420px;
  margin-bottom: 2.75rem;
  animation: slideUp 0.8s 0.65s both;
}

/* Feature pills */
.hero-pills {
  display: none;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
  animation: slideUp 0.8s 0.7s both;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--linen);
  border-radius: 100px;
  padding: 0.375rem 0.875rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  backdrop-filter: blur(8px);
}

.pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  animation: slideUp 0.8s 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #000 !important;
  color: #fff;
  padding: 1rem 2.25rem;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.22);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmer 2.5s infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.3);
  background: #00BFFF !important;
}

.btn-primary svg {
  transition: transform 0.2s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.btn-secondary:hover {
  opacity: 1;
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(13, 27, 42, 0.2);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(13, 27, 42, 0.1);
  animation: pulse-ring 2.5s ease infinite;
}

.btn-secondary:hover .play-btn {
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
}

/* Floating badge */
.hero-badge {
  position: absolute;
  right: clamp(8%, 15vw, 20%);
  top: 42%;
  z-index: 15;
  width: 130px;
  height: 130px;
  display: none;
}

@media(min-width:1024px) {
  .hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.badge-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-text-svg {
  position: absolute;
  inset: 0;
  animation: badge-rotate 18s linear infinite;
}

.badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  color: var(--forest);
}

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.25rem, 6vw, 5rem);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.slide-arrows {
  display: flex;
  gap: 0.5rem;
}

.slide-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(13, 27, 42, 0.15);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background 0.2s, border-color 0.2s;
}

.slide-arrow:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--navy);
}

.slide-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  cursor: pointer;
  opacity: 0.2;
  transition: opacity 0.3s, transform 0.3s;
  padding: 0;
}

.slide-dot.active {
  opacity: 1;
  transform: scale(1.4);
  background: var(--sky);
}

/* Product float in hero */
.hero-float {
  position: absolute;
  right: clamp(2rem, 10vw, 12rem);
  top: 50%;
  transform: translateY(-46%);
  z-index: 8;
  width: clamp(200px, 22vw, 320px);
  animation: float 7s ease-in-out infinite;
  display: none;
}

@media(min-width:900px) {
  .hero-float {
    display: block;
  }
}

.hero-float img {
  width: 100%;
  filter: drop-shadow(0 30px 50px rgba(13, 27, 42, 0.18));
}

/* ─── MARQUEE ─── */
.marquee {
  background: #000;
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

.m-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

/* ─── SECTION COMMONS ─── */
.eyebrow {
  font-size: 11.52px!important;
  font-weight: 600!important;
  letter-spacing: 3px!important;
  text-transform: uppercase;
  color: var(--sky);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
	opacity:0.8!important;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(to right, var(--sky), transparent);
}

.section-title {
  font-family: var(--ff-serif) !important;
  font-size: 48px!important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  color: var(--navy) !important;
  margin-bottom: 1.25rem !important;
}

.section-title em {
  font-style: italic !important;
  color: var(--sky) !important;
}

.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mist);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
	opacity:0.8;
}

.text-link:hover {
  gap: 0.875rem;
  color: var(--navy);
}

.text-link svg {
  transition: transform 0.2s;
}

.text-link:hover svg {
  transform: translateX(2px);
}

/* ─── CATEGORIES ─── */
.categories {
  padding: 60px 0;
  background: #fff;
}

.cat-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media(min-width:1024px) {
  .cat-layout {
    grid-template-columns: 280px 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.cat-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.cat-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--linen);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}

.cat-btn:hover {
  border-color: var(--navy);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.carousel-outer {
  position: relative;
  overflow: hidden;
}

.fade-l {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(to right, var(--cream), transparent);
  z-index: 10;
  pointer-events: none;
}

.fade-r {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(to left, var(--cream), transparent);
  z-index: 10;
  pointer-events: none;
}

.carousel-scroll {
  overflow: hidden;
  padding: 1.5rem 0.5rem 2rem;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.cat-card {
  width: 210px;
  flex-shrink: 0;
  border-radius: 22px;
  background: var(--warm);
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  position: relative;
  overflow: visible;
  z-index: 10;
}

.cat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(13, 27, 42, 0.1);
}

.cat-img {
  width: 100%;
  height: 185px;
  overflow: hidden;
  position: relative;
  border-radius: 22px 22px 0 0;
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.cat-card:hover .cat-img img {
  transform: scale(1.08);
}

.cat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(250, 248, 243, 0.3) 100%);
}

.cat-icon {
  position: absolute;
  left: 1.125rem;
  top: calc(185px - 21px);
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
  z-index: 15;
  transition: transform 0.3s;
  color: var(--mist);
}

.cat-card:hover .cat-icon {
  transform: translateY(4px);
}

.cat-body {
  padding: 1.75rem 1rem 1.25rem;
  text-align: center;
  background-color: #f1f6fa;
  border-radius: 0 0 22px 22px;
}

.cat-name {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--navy);
}

/* ─── HERO SPLIT (Kitchen Rolls) ─── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 500px;
}

@media(min-width:768px) {
  grid-template-columns: 1fr 1fr;
}

.split-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
}

.split-panel.wipes {
  background: var(--warm);
}

.split-panel.kitchen {
  background: var(--forest);
}

.split-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  mix-blend-mode: multiply;
  transition: transform 0.7s ease;
}

.split-panel:hover img {
  transform: scale(1.05);
}

.split-panel.kitchen img {
  opacity: 1;
  mix-blend-mode: normal;
}

.split-content {
  position: relative;
  z-index: 2;
}

.split-label {
  font-size: 11.52px!important;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: #0a0a0a!important;
	opacity:0.8;
}

.split-label::before {
	    margin: 3px 5px 3px 0;
    content: '';
    display: inline-block; /* ya block */
    width: 24px;
    height: 1px;
    background: linear-gradient(to right, var(--sky), transparent);
}
.split-panel.kitchen .split-label {
  color: #000;
}

.split-h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.split-panel.kitchen .split-h2 {
  color: #fff;
}

.split-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--mist);
  max-width: 340px;
  margin-bottom: 1.75rem;
}

.split-panel.kitchen .split-desc {
  color: rgba(255, 255, 255, 0.65);
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid #000;
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  background: #000;
  backdrop-filter: blur(8px);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  width: fit-content;
}

.btn-outline-sm:hover {
  background: #29ABE2;
  border-color: #01b2e3;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.12);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  background: #000;
  backdrop-filter: blur(8px);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  width: fit-content;
}

.btn-outline-white:hover {
  background: #29ABE2;
  border-color: rgba(255, 255, 255, 0.7);
}

/* Kitchen roll feature strip */
.tear-strip {
  background: #000;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tear-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.tear-step {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: #fff;
}

.tear-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.tear-label {
  font-size: 0.75rem;
  font-weight: 500;
}

.tear-divider {
  width: 1px;
  height: 32px;
  background: #fff;
}

.tear-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #fff;
}

.tf-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sky);
}

/* ─── STORY ─── */
.story {
  padding: 60px 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(107, 174, 214, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 20% 100%, rgba(139, 175, 156, 0.08) 0%, transparent 50%), var(--cream);
  position: relative;
  overflow: hidden;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media(min-width:1024px) {
  .story-layout {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.story-text {
  max-width: 480px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.why-card {
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: 16px;
  padding: 1.25rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.why-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}

.why-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--warm);
  border: 1px solid var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  margin-bottom: 0.75rem;
}

.why-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.why-desc {
  font-size: 0.75rem;
  color: var(--mist);
  line-height: 1.5;
}

/* Orbital */
.orbital {
  position: relative;
  width: min(480px, 90vw);
  aspect-ratio: 1;
  margin: 0 auto;
}

.orb-ring1 {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(107, 174, 214, 0.2);
  animation: spin 25s linear infinite;
}

.orb-ring1::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(139, 175, 156, 0.2);
}

.orb-ring2 {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: spin 40s linear infinite reverse;
}

.orb-center {
  position: absolute;
  inset: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.orb-center img {
  width: 110%;
  height: 110%;
  object-fit: contain;
  animation: float 8s ease-in-out infinite;
  filter: drop-shadow(0 25px 45px rgba(13, 27, 42, 0.15));
}

.orb-node {
  position: absolute;
  z-index: 10;
}

.orb-node-inner {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--linen);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
  color: var(--mist);
}

.orb-node-inner:hover {
  transform: scale(1.12);
}

.orb-label {
  position: absolute;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  white-space: nowrap;
}

.n-top {
  top: -4%;
  left: 50%;
  transform: translateX(-50%);
}

.n-top .orb-label {
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.n-right {
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
}

.n-right .orb-label {
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
}

.n-bottom {
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
}

.n-bottom .orb-label {
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.n-left {
  left: -4%;
  top: 50%;
  transform: translateY(-50%);
}

.n-left .orb-label {
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}

/* ─── COLLECTION ─── */
.collection {
  padding: 60px 0;
  background: #f1f6fa;
}

.coll-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #000;
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  background: #000;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-outline-navy:hover {
  border-color: #29ABE2;
  background: #29ABE2;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.1);
}

.prod-scroll-outer {
  position: relative;
}

.prod-fade-l {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to right, var(--warm), transparent);
  z-index: 10;
  pointer-events: none;
}

.prod-fade-r {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to left, var(--warm), transparent);
  z-index: 10;
  pointer-events: none;
}

.prod-scroll {
  overflow: hidden;
  padding: 1rem 0.5rem 2.5rem;
}

.prod-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

.prod-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--linen);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  transition: all 0.2s;
}

.prod-btn:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.prod-btn-l {
  left: -23px;
}

.prod-btn-r {
  right: -23px;
}

@media(max-width:768px) {
  .prod-btn {
    display: none !important;
  }
}

.product-card {
  width: 250px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.045);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.4s, transform 0.4s;
}

@media(min-width:640px) {
  .product-card {
    width: 272px;
  }
}

.product-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.prod-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

.b-hot {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.b-pop {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.b-new {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.prod-img-area {
  width: 100%;
  height: 9.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.prod-img-area img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(13, 27, 42, 0.14));
  transition: transform 0.4s ease;
}

.product-card:hover .prod-img-area img {
  transform: scale(1.06) translateY(-4px);
}

/* Fallback pack for products without photos */
.prod-pack {
  width: 78%;
  height: 88px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}

.product-card:hover .prod-pack {
  transform: scale(1.05);
}

.prod-pack-label {
  width: 50%;
  height: 46px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.pack-brand {
  font-family: var(--ff-serif);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--navy);
}

.pack-type {
  font-size: 0.3125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
}

.prod-name {
	font-family:var(--font-heading) !important;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.prod-variant {
  font-size: 0.8125rem;
  color: var(--mist);
}

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.prod-price {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.prod-add {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}

.prod-add:hover {
  background: var(--sky);
  transform: scale(1.12);
}

/* ─── FEATURES STRIP ─── */
.features {
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
  background: #fff;
  padding: 2.25rem 0;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media(min-width:768px) {
  .feat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.5rem;
}

.feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--linen);
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sky);
}

.feat-title {
  font-family: 'Cormorant Garamond';
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.feat-desc {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.5;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 60px 0;
  background: #fff;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media(min-width:1024px) {
  .testimonials-layout {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.testimonials-left {}

.t-quote {
  font-family: var(--ff-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.t-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--sky);
  opacity: 0.3;
  position: absolute;
  top: -1rem;
  left: 0.2rem;
  line-height: 1;
  font-family: var(--ff-serif);
}

.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--linen);
  flex-shrink: 0;
}

.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.t-loc {
  font-size: 0.75rem;
  color: var(--mist);
}

.t-stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  margin-bottom: 0.25rem;
}

.t-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.t-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--linen);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.2s;
}

.t-btn:hover {
  border-color: var(--navy);
}

.t-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 0.5rem;
}

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.2;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.t-dot.active {
  opacity: 1;
  transform: scale(1.4);
  background: var(--sky);
}

.t-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: #f3f8fc;
  border: 1px solid #f3f8fc;
  border-radius: 20px;
  padding: 1.75rem;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-num {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 14px;
  color: var(--mist);
  font-weight: 500;
}

/* ─── PRE-FOOTER ─── */
.prefooter {
  background: var(--warm);
  border-top: 1px solid var(--linen);
}

.pf-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media(min-width:768px) {
  .pf-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pf-col {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
}

.pf-col:not(:last-child) {
  border-bottom: 1px solid var(--linen);
}

@media(min-width:768px) {
  .pf-col:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid var(--linen);
  }
}

.pf-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  mix-blend-mode: multiply;
  opacity: 0.88;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0.75rem 0;
}

.rating-row svg {
  fill: #F59E0B;
  color: #F59E0B;
}

.rating-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mist);
  margin-left: 6px;
}

.avatars-row {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--warm);
  overflow: hidden;
  margin-left: -8px;
  background: var(--linen);
  flex-shrink: 0;
}

.av:first-child {
  margin-left: 0;
}

.av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.av-count {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--warm);
  background: var(--linen);
  margin-left: -8px;
  font-size: 0.45rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-wrap {
  position: relative;
  max-width: 300px;
  margin-top: 1.5rem;
}

.email-in {
  width: 100%;
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: 100px;
  padding: 0.875rem 3.5rem 0.875rem 1.375rem;
  font-size: 0.8125rem;
  color: var(--navy);
  outline: none;
  font-family: var(--ff-sans);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.email-in::placeholder {
  color: var(--mist);
}

.email-in:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(139, 175, 156, 0.15);
}

.email-sub {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}

.email-sub:hover {
  background: var(--sky);
  transform: translateY(-50%) scale(1.08);
}

/* ─── FOOTER ─── */
footer {
  background: #f3f8fc;
  color: rgba(255, 255, 255, 0.6);
  padding: clamp(3rem, 7vw, 5.5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media(min-width:640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
  }
}

.footer-brand .logo {
  color: #fff;
  font-size: 1.625rem;
}

.footer-brand p {
  font-size: 0.8125rem;
  line-height: 1.65;
  margin: 0.75rem 0 1.25rem;
  color: rgb(0, 0, 0);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-link:hover {
  border-color: var(--sky);
  color: #fff;
  background: rgba(139, 175, 156, 0.15);
}

.footer-col h4 {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul a {
  font-size: 0.8125rem;
  color: rgb(0, 0, 0);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: #000000;
}

.footer-newsletter h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.375rem;
  letter-spacing: 0;
  text-transform: none;
}

.footer-newsletter p {
  font-size: 0.75rem;
  color: rgb(0, 0, 0);
  margin-bottom: 1.25rem;
}

.footer-email-in {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  padding: 0.8125rem 3.5rem 0.8125rem 1.375rem;
  font-size: 0.8125rem;
  color: #000000;
  outline: none;
  font-family: var(--ff-sans);
  transition: border-color 0.2s;
  max-width: 240px;
}

.footer-email-in::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-email-in:focus {
  border-color: var(--sky);
}

.footer-email-wrap {
  position: relative;
  max-width: 240px;
}

.footer-email-sub {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: var(--sky);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
}

.footer-email-sub:hover {
  background: #fff;
  color: var(--navy);
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgb(0, 0, 0);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgb(0, 0, 0);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 300;
  flex-direction: column;
  padding: 0 clamp(1.25rem, 6vw, 3rem) 2rem;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: none;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: none;
}

.mm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  flex-shrink: 0;
  margin-bottom: 2rem;
}

.mobile-menu nav a {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--linen);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.mobile-menu nav a:hover {
  color: var(--sky);
}

.mm-footer {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid var(--linen);
}

/* ─── SVG ICONS ─── */
.i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ─── RESPONSIVE ─── */
@media(max-width:1023px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media(min-width:1024px) {
  .hamburger {
    display: none;
  }
}

@media(max-width:640px) {
  .hero-h1 {
    line-height: 0.95;
  }

  .hero-pills {
    display: none;
  }

  .cat-card {
    width: 182px;
  }

  .cat-img {
    height: 158px;
  }

  .cat-icon {
    top: calc(158px - 21px);
  }
}

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

@media(min-width:768px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 479px) {
  .hero-h1 {
    font-size: clamp(2.75rem, 13vw, 3.5rem);
    line-height: 0.95;
  }

  .hero-content {
    padding-top: clamp(4rem, 14vw, 8rem);
    padding-bottom: clamp(1.5rem, 5vw, 3rem);
  }

  .hero-pills {
    gap: 0.375rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }

  .btn-primary,
  .btn-cyan {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .hero-desc {
    font-size: 0.875rem;
    margin-bottom: 1.875rem;
  }

  .hero-trust {
    gap: 0.5rem;
  }

  .trust-sep {
    display: none;
  }
}

@media (min-width: 480px) and (max-width: 1023px) {
  .hero-h1 {
    font-size: clamp(3.5rem, 9vw, 5.5rem);
  }
}

@media (max-width: 479px) {
  .product-card {
    width: 218px;
    padding: 1.25rem;
  }

  .product-card.wide {
    width: 260px;
  }
}

@media (max-width: 767px) {
  .split-panel {
    min-height: 360px;
    padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.5rem, 5vw, 2.5rem);
  }

  .coll-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .testi-layout {
    gap: 3rem;
  }

  .story-layout {
    gap: 3rem;
  }

  .t-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1.25rem;
  }

  .stat-num {
    font-size: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
  }

  .why-card {
    padding: 1rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .pf-col {
    padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  }
}

@media (max-width: 479px) {
  .nav-inner {
    height: 64px;
    padding: 0 1.25rem;
  }

  .logo-img,
  [style*="height:34px"] {
    height: 28px !important;
  }

  .mm-header {
    height: 64px;
  }
}

@media (max-width: 1023px) {
  .orb-label {
    font-size: 0.625rem;
  }

  .orbital {
    width: min(420px, 85vw);
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 639px) {
  .carousel-scroll {
    padding-right: 0;
  }

  .fade-r {
    width: 40px;
  }

  .prod-fade-r {
    width: 40px;
  }
}

@media (min-width: 1280px) {
  .sec-title {
    font-size: 3.25rem;
  }

  .hero-h1 {
    font-size: 3.5rem;
  }
}

.nav-inner img {
  display: block;
}

a,
button {
  transition-property: color, background, border-color, box-shadow, opacity, transform;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── WORDPRESS FIXES & OVERRIDES ─── */
/* 1. Global SVG Protect (Specific, safer targeting to prevent missing plus signs/arrows) */
.nav-icon svg,
.nav-icon svg *,
.nav-cta svg,
.nav-cta svg *,
.hamburger svg,
.hamburger svg *,
.slide-arrow svg,
.slide-arrow svg *,
.btn-primary svg,
.btn-primary svg *,
.btn-outline-sm svg,
.btn-outline-sm svg *,
.btn-outline-white svg,
.btn-outline-white svg *,
.btn-outline-navy svg,
.btn-outline-navy svg *,
.cat-btn svg,
.cat-btn svg *,
.prod-btn svg,
.prod-btn svg *,
.t-btn svg,
.t-btn svg *,
.prod-add svg,
.prod-add svg *,
.feat-icon svg,
.feat-icon svg *,
.why-icon svg,
.why-icon svg *,
.orb-node-inner svg,
.orb-node-inner svg *,
.email-sub svg,
.email-sub svg *,
.footer-email-sub svg,
.footer-email-sub svg *,
.social-link svg,
.social-link svg *,
.text-link svg,
.text-link svg *,
.badge-icon svg,
.badge-icon svg * {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: inherit !important;
}

/* 2. Header Dropdown Menu Fix */
.nav-links .menu-item-has-children,
.nav-links li {
  position: relative;
}

.nav-links .menu-item-has-children::after,
.nav-links li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 25px;
}

.nav-links .sub-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: -15px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  min-width: 220px;
  padding: 1rem 0;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(13, 27, 42, 0.08);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 300;
  border: 1px solid var(--linen);
}

.nav-links .menu-item-has-children:hover>.sub-menu,
.nav-links li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .sub-menu li {
  list-style: none;
  width: 100%;
  margin: 0;
}

.nav-links .sub-menu a {
  display: block;
  padding: 0.625rem 1.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--navy);
  opacity: 0.7;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.nav-links .sub-menu a:hover {
  opacity: 1;
  background: var(--cream);
  color: var(--sky);
  padding-left: 1.75rem;
}

.nav-links .sub-menu a::after {
  display: none !important;
}

/* 3. Footer Styling Overrides (Removes WP default padding/margins on Lists) */
.footer-col ul {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-col ul li {
  margin-bottom: 0 !important;
}

.footer-email-in::placeholder {
  color: rgba(0, 0, 0, 0.45) !important;
}



/*************************************************************************************************/

/* Material symbols & icons */
.icon {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    user-select: none;
    vertical-align: middle;
}

.btn-primary .icon,
.btn-outline-sm .icon,
.btn-outline-white .icon,
.btn-outline-navy .icon,
.text-link .icon { font-size: 1.05em; margin-left: 4px; }

.slide-arrow .icon,
.cat-btn .icon,
.prod-btn .icon,
.t-btn .icon { font-size: 1.35rem; }

.badge-icon .icon { font-size: 1.5rem; color: #0d1b2a; }
.btn-secondary .icon { font-size: 1rem; color: #0d1b2a; }
.feat-icon .icon { font-size: 1.4rem; color: #2d6a4f; }
.why-icon .icon { font-size: 1.4rem; color: #2d6a4f; }
.orb-node-inner .icon { font-size: 1.4rem; color: #0d1b2a; }
.cat-icon .icon { font-size: 1.15rem; color: #0d1b2a; }
.prod-add .icon { font-size: 1.05rem; color: #fff; }

/* Global utilities */
.prod-img-area,
.prod-img-area img,
.product-card .prod-img-area,
.product-card img {
    box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
}

/* Story section */
.story {
    padding: 60px 0;
    background: radial-gradient(ellipse at 60% 0%, rgba(107,174,214,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 100%, rgba(139,175,156,0.08) 0%, transparent 50%), #f3f8fc;
    position: relative;
    overflow: hidden;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media(min-width:1024px) {
    .story-layout { grid-template-columns: 1fr 1fr; gap: 6rem; }
}

.story-text { max-width: 480px; }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.why-card {
    background: #fff;
    border: 1px solid var(--linen);
    border-radius: 16px;
    padding: 1.25rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.why-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.07); transform: translateY(-3px); }

.why-icon {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: var(--warm); border: 1px solid var(--linen);
    display: flex; align-items: center; justify-content: center;
    color: var(--sky); margin-bottom: 0.75rem;
}

.why-title {     font-family: 'Cormorant Garamond';font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.why-desc { font-size: 0.85rem; color: var(--mist); line-height: 1.5; }

.orbital {
    position: relative;
    width: min(480px, 90vw);
    aspect-ratio: 1;
    margin: 0 auto;
}

.orb-ring1 {
    position: absolute; inset: 10%;
    border-radius: 50%;
    border: 1px solid rgba(107,174,214,0.2);
    animation: spin 25s linear infinite;
}

.orb-ring1::before {
    content: '';
    position: absolute; inset: -20px;
    border-radius: 50%;
    border: 1px dashed rgba(139,175,156,0.2);
}

.orb-ring2 {
    position: absolute; inset: 20%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    animation: spin 40s linear infinite reverse;
}

.orb-center {
    position: absolute; inset: 15%;
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
}

.orb-center img {
    width: 110%; height: 110%;
    object-fit: contain;
    animation: float 8s ease-in-out infinite;
    filter: drop-shadow(0 25px 45px rgba(13,27,42,0.15));
}

.orb-node { position: absolute; z-index: 10; }

.orb-node-inner {
    width: 60px; height: 60px;
    background: #fff; border-radius: 50%;
    border: 1px solid var(--linen);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: transform 0.3s; color: var(--mist);
}

.orb-node-inner:hover { transform: scale(1.12); }

.orb-label {
    position: absolute;
    font-size: 13px; font-weight: 500;
    color: var(--ink); line-height: 1.3; white-space: nowrap;
}

.n-top { top: -4%; left: 50%; transform: translateX(-50%); }
.n-top .orb-label { top: calc(100% + 8px); left: 50%; transform: translateX(-50%); text-align: center; }
.n-right { right: -4%; top: 50%; transform: translateY(-50%); }
.n-right .orb-label { left: calc(100% + 10px); top: 50%; transform: translateY(-50%); }
.n-bottom { bottom: -4%; left: 50%; transform: translateX(-50%); }
.n-bottom .orb-label { bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); text-align: center; }
.n-left { left: -4%; top: 50%; transform: translateY(-50%); }
.n-left .orb-label { right: calc(100% + 10px); top: 50%; transform: translateY(-50%); text-align: right; }

/* Vertical slider */
.vslider-stage {
    position: relative;
    height: 100vh;
    overflow: clip;
}

.vslider-stage.is-pinned {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 5;
}

.vslider-stage.is-done {
    position: absolute;
    top: auto; bottom: 0;
}

.vslider-spacer { height: 100vh; }

.vslider-s1 {
    position: absolute;
    inset: 0;
    height: 100vh;
    overflow: hidden;
    will-change: transform, opacity;
    z-index: 2;
}

.vslider-s1 .story {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.vslider-s2-preview {
    position: absolute;
    inset: 0;
    height: 100vh;
    overflow: hidden;
    will-change: transform;
    transform: translate3d(100%, 0, 0);
    z-index: 1;
    pointer-events: none;
}

.vslider-s2-real {
    opacity: 0;
    visibility: hidden;
}

.vslider-s2-real.is-revealed {
    opacity: 1;
    visibility: visible;
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
    .vslider-stage { position: static; height: auto; overflow: visible; }
    .vslider-spacer { display: none; }
    .vslider-s1 { position: static; height: auto; overflow: visible; }
    .vslider-s1 .story { height: auto; display: block; padding-top: 60px; padding-bottom: 60px; }
    .vslider-s2-preview { display: none; }
    .vslider-s2-real { opacity: 1; visibility: visible; }
}

/* Mobile slider disable */
@media (max-width: 767px) {
    .vslider-stage { position: static !important; height: auto !important; overflow: visible !important; }
    .vslider-spacer { display: none !important; }
    .vslider-s1 { position: static !important; height: auto !important; overflow: visible !important; }
    .vslider-s1 .story { height: auto !important; display: block !important; padding-top: 48px !important; padding-bottom: 48px !important; }
    .vslider-s2-preview { display: none !important; }
    .vslider-s2-real { opacity: 1 !important; visibility: visible !important; }
}

/* Clino wrap */
.clino-wrap {
	background:#f3f8fc;
    font-family: var(--ff-sans, 'DM Sans', sans-serif);
    line-height: 1.6;
    color: #64748b;
    overflow-x: hidden;
}

.clino-wrap * { box-sizing: border-box; margin: 0; padding: 0; }

.clino-sr {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

.clino-sr.active { opacity: 1; transform: translateY(0); }

.clino-hero {
    position: relative;
    width: 100%;
    background-image: url('https://airspun.co.in/wp-content/uploads/2026/05/ChatGPT-Image-May-18-2026-05_44_53-PM.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding-top: clamp(2.5rem, 6vw, 6rem);
    padding-bottom: clamp(2.5rem, 5vw, 5rem);
	
}

.clino-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 60%, rgba(255,255,255,0.3) 100%);
}

@media (min-width: 768px) {
    .clino-hero-overlay {
        background: linear-gradient(to right, #ffffff 15%, rgba(255,255,255,0.75) 45%, transparent 70%);
    }
}

.clino-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 650px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.clino-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: clamp(11px, 2vw, 14px);
    font-weight: 500;
    color: #000;
    margin-bottom: 1.25rem;
    transition: color 0.3s, border-color 0.3s;
    cursor: default;
}

.clino-badge:hover { color: var(--sky, #29ABE2); border-color: var(--sky, #29ABE2); }

.clino-h1 {
    font-family: var(--ff-serif, 'Cormorant Garamond', serif);
    font-size: clamp(28px, 6vw, 48px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 0.875rem;
}

.clino-h1 span.dark { display: block; color: var(--navy, #1C1C1E); }
.clino-h1 span.green { display: block; color: var(--sky, #29ABE2); }

.clino-h2 {
    font-family: var(--ff-serif, 'Cormorant Garamond', serif);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--navy, #1C1C1E);
    line-height: 1.3;
    margin-bottom: 0.875rem;
}

.clino-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    max-width: 460px;
    margin-bottom: 2rem !important;
}

/* Clino panel & footer */
.clino-panel-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .clino-panel-wrapper { margin-top: -90px; }
}

@media (max-width: 767px) {
    .clino-panel-wrapper { margin-top: 0; margin-bottom: 2rem; }
}

.clino-panel {
    margin-top: 20px;
    background: #f3f8fc;
    border-radius: 20px;
    padding: clamp(1.25rem, 2vw, 1.5rem);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
}

.clino-panel-title {
    font-family: var(--ff-serif, 'Cormorant Garamond', serif);
    font-size: clamp(22px, 3vw, 32px);
    color: var(--navy, #1C1C1E);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-align: left;
}

.clino-panel-title span.normal { font-weight: 500; }
.clino-panel-title span.highlight { font-weight: 600; color: var(--sky, #29ABE2); }

.clino-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .clino-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
    .clino-grid { grid-template-columns: repeat(6, 1fr); gap: 1.25rem; }
}

.clino-card { display: flex; flex-direction: column; }

.clino-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.clino-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.clino-card-icon {
    width: 20px; height: 20px;
    flex-shrink: 0;
    border: 1px solid var(--sky, #29ABE2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--sky, #29ABE2);
}

.clino-card-icon svg {
    width: 12px; height: 12px;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
}

.clino-card-title {
    font-weight: 700;
    font-size: clamp(13px, 1.5vw, 18px);
    color: var(--navy, #1C1C1E);
    line-height: 1;
}

.clino-card-desc { font-size: 13px; color: #64748b; line-height: 1.5; }

.clino-footer-strip {
    background: var(--navy, #1C1C1E);
    color: #ffffff;
    width: 100%;
    padding: 1.5rem 0;
}

.clino-fs-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .clino-fs-inner { flex-direction: row; justify-content: center; gap: 0; }
}

.clino-fs-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 0.4rem 0;
}

@media (min-width: 768px) {
    .clino-fs-item { width: 33.333%; padding: 0 2rem; }
    .clino-fs-item.bordered {
        border-left: 1px solid rgba(255,255,255,0.15);
        border-right: 1px solid rgba(255,255,255,0.15);
    }
}

.clino-fs-item svg {
    width: 22px; height: 22px;
    fill: none !important; stroke: currentColor !important;
    stroke-width: 1.5 !important;
    flex-shrink: 0; color: rgba(255,255,255,0.9);
}

.clino-fs-text {
    font-size: clamp(11px, 1.5vw, 14px);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Mobile overrides */
@media (max-width: 767px) {

    /* Hero image not cut */
    .hero-slide {
        background-position: center top !important;
    }

    /* Clino hero */
    .clino-hero {
        background-position: center top;
        min-height: 260px;
    }

    .clino-hero-content { max-width: 100%; }

    /* Story section */
    .story {
        padding: 40px 0;
    }

    .story-layout { gap: 2rem; }
    .story-text { max-width: 100%; }

    .why-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; }
    .why-card { padding: 0.875rem; border-radius: 12px; }
    .why-title { font-size: 0.7rem; }
    .why-desc { font-size: 0.65rem; }

    /* Orbital kept visible */
/*     .orbital { display: none !important; }
 */
    /* Categories */
    .categories { padding: 40px 0; }
    .cat-layout { gap: 1.5rem; }

    /* Hero split stacked */
    .hero-split { grid-template-columns: 1fr !important; }
    .split-panel { min-height: 280px; }

    /* Collection */
    .collection { padding: 40px 0; }
    .coll-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

    /* Features */
    .features { padding: 1.75rem 0; }
    .feat-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .feat-item { gap: 0.625rem; }
    .feat-icon { width: 36px; height: 36px; }
    .feat-title { font-size: 12px; }
    .feat-desc { font-size: 11px; }

    /* Testimonials */
    .testimonials { padding: 40px 0; }
    .testimonials-layout { gap: 2rem; }
    .t-quote { font-size: 1.1rem; }
    .t-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .stat-card { padding: 1rem; border-radius: 12px; }
    .stat-num { font-size: 1.6rem; }

    /* Clino panel */
    .clino-panel { border-radius: 14px; padding: 1rem; }
    .clino-panel-title { font-size: clamp(18px, 5vw, 24px); }
    .clino-card-title { font-size: 12px; }
    .clino-card-desc { font-size: 11px; }

    /* Clino footer strip */
    .clino-fs-item { padding: 0.3rem 0; gap: 8px; }
    .clino-fs-text { font-size: 11px; letter-spacing: 0.1em; }
    .clino-fs-item.bordered {
        border-left: none; border-right: none;
        border-top: 1px solid rgba(255,255,255,0.12);
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    /* Marquee smaller */
    .marquee-item { font-size: 12px; padding: 0 1rem; gap: 1rem; }
}

/* Very small phones */
@media (max-width: 380px) {
    .clino-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 0.625rem; }
    .feat-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .t-stats { grid-template-columns: 1fr 1fr; }
    .clino-card-img { border-radius: 7px; }
}

/* SoftTouch carousel */
.softtouch-wipes * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.softtouch-wipes {
    --bg-current: #F3F8FC;
    --text-current: #2a3d45;
    --accent-current: #1f7a8c;
    --btn-bg: #0c0c0c;
    --btn-fg: #ffffff;
    --border-current: #2d4a3217;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, system-ui, sans-serif;

    background-color: var(--bg-current);
    background-image:
        radial-gradient(circle at 72% 28%, rgba(255,255,255,0.55), transparent 55%),
        radial-gradient(circle at 12% 90%, rgba(255,255,255,0.35), transparent 45%);
    color: var(--text-current);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    transition: background-color 0s;
}

/* Grain overlay */
.softtouch-wipes::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.softtouch-wipes .text-transition {
    transition: color 0.4s ease-in-out, border-color 0.4s ease-in-out, fill 0.4s ease-in-out, background-color 0.4s ease-in-out;
}
.softtouch-wipes .fade-transition {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.softtouch-wipes .layout-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 10;
}

.softtouch-wipes .left-panel {
    padding: 9rem 5rem 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-right: 1px solid var(--border-current);
    transition: border-color 0.4s ease-in-out;
    min-width: 0;
}

.softtouch-wipes .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.4s ease-in-out, color 0.4s ease-in-out;
}
.softtouch-wipes .eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background-color: var(--accent-current);
    display: inline-block;
    transition: background-color 0.6s ease-in-out;
}

.softtouch-wipes .main-hero-text {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 4vw, 6rem);
    line-height: 1.04;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}
.softtouch-wipes .main-hero-text em {
    font-style: italic;
    font-weight: 500;
    color: var(--accent-current);
    transition: color 0.6s ease-in-out;
}

.softtouch-wipes .desc-paragraph {
    font-size: clamp(0.9rem, 1.2vw, 1.02rem);
    line-height: 1.65;
    max-width: 420px;
    margin-bottom: 1.8rem;
    opacity: 0.9;
}

.softtouch-wipes .trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.4rem;
}
.softtouch-wipes .trust-pill {
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-current);
    border-radius: 9999px;
    opacity: 0.7;
    transition: border-color 0.4s ease-in-out, color 0.4s ease-in-out, opacity 0.3s ease, transform 0.3s ease;
}
.softtouch-wipes .trust-pill:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: var(--accent-current);
    color: var(--accent-current);
}

.softtouch-wipes .btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--btn-bg);
    border: 1px solid var(--btn-bg);
    color: var(--btn-fg);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.85rem 2.2rem;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 28px -12px rgba(0,0,0,0.55);
    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.softtouch-wipes .btn-view-more svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.35s ease;
}
.softtouch-wipes .btn-view-more:hover {
    background-color: var(--accent-current);
    border-color: var(--accent-current);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -12px var(--accent-current);
}
.softtouch-wipes .btn-view-more:hover svg {
    transform: translateX(4px);
}

.softtouch-wipes .promo-widget {
    border-top: 1px solid var(--border-current);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    transition: border-color 0.4s ease-in-out;
}
.softtouch-wipes .promo-img-wrapper {
    width: 96px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 10px 24px -12px rgba(0,0,0,0.5);
}
.softtouch-wipes .promo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.softtouch-wipes .promo-widget:hover .promo-img-wrapper img {
    transform: scale(1.08);
}
.softtouch-wipes .promo-img-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.15);
}
.softtouch-wipes .promo-info {
    flex-grow: 1;
    padding-right: 4.5rem;
    min-width: 0;
}
.softtouch-wipes .promo-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.softtouch-wipes .promo-desc {
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1.3;
}

.softtouch-wipes .circular-read-more {
    position: absolute;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid var(--btn-bg);
    background: var(--btn-bg);
    color: var(--btn-fg);
    font-family: var(--font-body);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 28px -12px rgba(0,0,0,0.55);
    transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.softtouch-wipes .circular-read-more:hover {
    transform: translateY(-50%) scale(1.08);
    background-color: var(--accent-current);
    border-color: var(--accent-current);
    color: #fff;
    box-shadow: 0 18px 34px -12px var(--accent-current);
}

.softtouch-wipes .right-panel {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    min-width: 0;
}

.softtouch-wipes .product-divider-top,
.softtouch-wipes .product-divider-bottom {
    position: absolute;
    left: 60%;
    width: 1px;
    background-color: var(--border-current);
    opacity: 1;
    z-index: 5;
}
.softtouch-wipes .product-divider-top {
    top: 0;
    height: calc(25% - 40px);
}
.softtouch-wipes .product-divider-bottom {
    top: calc(25% + 40px);
    bottom: 0;
}

.softtouch-wipes .next-btn {
    position: absolute;
    top: 25%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--btn-bg);
    background: var(--btn-bg);
    color: var(--btn-fg);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    box-shadow: 0 14px 30px -12px rgba(0,0,0,0.55);
    transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.softtouch-wipes .next-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background-color: var(--accent-current);
    border-color: var(--accent-current);
    color: #fff;
    box-shadow: 0 20px 38px -12px var(--accent-current);
}

.softtouch-wipes .carousel-nav {
    position: absolute;
    bottom: 2.4rem;
    left: 30%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 25;
}
.softtouch-wipes .counter {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    font-weight: 600;
}
.softtouch-wipes .counter .total { opacity: 0.45; }
.softtouch-wipes .dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.softtouch-wipes .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-current);
    opacity: 0.35;
    cursor: pointer;
    transition: width 0.45s cubic-bezier(0.77,0,0.175,1), opacity 0.45s ease, background-color 0.45s ease;
}
.softtouch-wipes .dot.active {
    width: 28px;
    border-radius: 9999px;
    opacity: 1;
    background-color: var(--accent-current);
}

.softtouch-wipes .sweep-layer {
    position: fixed;
    top: 0;
    left: 100vw;
    width: 100vw;
    height: 100vh;
    border-top-left-radius: 100% 50%;
    border-bottom-left-radius: 100% 50%;
    z-index: -1;
    pointer-events: none;
}
.softtouch-wipes .sweep-animate {
    transition: left 1s cubic-bezier(0.77, 0, 0.175, 1), border-radius 1s cubic-bezier(0.77, 0, 0.175, 1);
    left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.softtouch-wipes .product-slide {
    position: absolute;
    top: 50%;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
    width: 300px;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.softtouch-wipes .product-aura {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 440px;
    height: 440px;
    max-width: 90vw;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(75px);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.9s ease;
}
.softtouch-wipes .product-slide.main .product-aura { opacity: 0.5; }
.softtouch-wipes .product-slide.next .product-aura { opacity: 0.2; }

.softtouch-wipes .product-img {
    position: relative;
    z-index: 1;
    height: 60vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.18));
}

@keyframes softtouch-floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
.softtouch-wipes .product-slide.main .product-img {
    animation: softtouch-floaty 5.5s ease-in-out infinite;
}

.softtouch-wipes .product-slide.main {
    left: 30%;
    transform: translate(-50%, -45%) scale(1);
    opacity: 1;
    z-index: 10;
}
.softtouch-wipes .product-slide.next {
    left: 80%;
    transform: translate(-50%, -45%) scale(0.85);
    opacity: 0.5;
    z-index: 5;
}
.softtouch-wipes .product-slide.enter {
    left: 130%;
    transform: translate(-50%, -45%) scale(0.85);
    opacity: 0;
    z-index: 1;
}
.softtouch-wipes .product-slide.out {
    left: -20%;
    transform: translate(-50%, -45%) scale(0.85);
    opacity: 0;
    z-index: 1;
}

.softtouch-wipes .product-info {
    width: 100%;
    max-width: 240px;
    text-align: center;
    margin-top: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.softtouch-wipes .product-slide.main .product-info { opacity: 1; }
.softtouch-wipes .product-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Price box hidden */
.softtouch-wipes .product-price-box { display: none; }
.softtouch-wipes .product-price { font-size: 1.2rem; font-weight: 600; }
.softtouch-wipes .btn-add-cart {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--text-current);
    background: transparent;
    color: var(--text-current);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.softtouch-wipes .btn-add-cart:hover {
    background-color: var(--text-current);
    color: var(--bg-current);
}

@keyframes softtouch-riseIn {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}
.softtouch-wipes .left-panel > div:first-child > * {
    animation: softtouch-riseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.softtouch-wipes .left-panel .eyebrow { animation-delay: 0.05s; }
.softtouch-wipes .left-panel .main-hero-text { animation-delay: 0.15s; }
.softtouch-wipes .left-panel .desc-paragraph { animation-delay: 0.25s; }
.softtouch-wipes .left-panel .trust-pills { animation-delay: 0.35s; }
.softtouch-wipes .left-panel .btn-view-more { animation-delay: 0.45s; }

/* SoftTouch responsive */
@media (max-width: 1200px) {
    .softtouch-wipes .left-panel { padding: 3.5rem 3rem 2.5rem 3rem; }
}

@media (max-width: 1024px) {
    .softtouch-wipes .layout-grid {
        grid-template-columns: 100%;
        grid-template-rows: auto auto;
        min-height: auto;
        height: auto;
        width: 100%;
    }
    .softtouch-wipes .left-panel {
        padding: 6rem 2.5rem;
        border-right: none;
        border-bottom: 1px solid var(--border-current);
		 position: relative !important;
    z-index: 35 !important;
  
    }
    .softtouch-wipes .desc-paragraph { max-width: 600px; }
    .softtouch-wipes .right-panel {
        width: 100%;
        height: 78vh;
        min-height: 520px;
        overflow: hidden;
    }
    .softtouch-wipes .product-divider-top,
    .softtouch-wipes .product-divider-bottom { left: 50%; }
    .softtouch-wipes .product-divider-top { top: 32px; height: calc(100% - 32px); }
    .softtouch-wipes .product-divider-bottom { display: none; }
    .softtouch-wipes .next-btn {
    top: 30px; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px; font-size: 0.75rem;
}
.softtouch-wipes .next-btn:hover { transform: translate(-50%, -50%) scale(1.05); }
    .softtouch-wipes .carousel-nav { left: 50%; bottom: 1.6rem; }
    .softtouch-wipes .product-aura { width: 320px; height: 320px; filter: blur(60px); }
    .softtouch-wipes .product-img { height: 36vh; }
    .softtouch-wipes .product-slide.main { left: 25%; top: 50%; transform: translate(-50%, -45%) scale(0.95); }
    .softtouch-wipes .product-slide.next { left: 75%; top: 50%; transform: translate(-50%, -45%) scale(0.75); }
    .softtouch-wipes .sweep-layer {
        border-top-left-radius: 50% 100%;
        border-bottom-left-radius: 0;
        border-top-right-radius: 50% 100%;
    }
}

@media (max-width: 640px) {
    .softtouch-wipes .left-panel { padding: 6rem 1.4rem 2rem 1.4rem; }
    .softtouch-wipes .eyebrow { font-size: 0.65rem; letter-spacing: 0.24em; margin-bottom: 1.1rem; }
    .softtouch-wipes .main-hero-text { font-size: clamp(2.6rem, 13vw, 3.6rem); margin-bottom: 1.4rem; }
    .softtouch-wipes .desc-paragraph { margin-bottom: 1.4rem; }
    .softtouch-wipes .trust-pills { gap: 0.45rem; margin-bottom: 1.8rem; }
    .softtouch-wipes .trust-pill { font-size: 0.62rem; padding: 0.42rem 0.8rem; }
    .softtouch-wipes .promo-widget { margin-top: 2.2rem; padding-top: 1.6rem; gap: 0.7rem; }
    .softtouch-wipes .promo-img-wrapper { width: 76px; height: 56px; }
    .softtouch-wipes .promo-info { padding-right: 3.6rem; }
    .softtouch-wipes .promo-title { font-size: 1.1rem; }
    .softtouch-wipes .circular-read-more { width: 60px; height: 60px; font-size: 9px; }
    .softtouch-wipes .right-panel { height: 62vh; min-height: 420px; }
    .softtouch-wipes .product-divider-top { top: 26px; }
    .softtouch-wipes .next-btn { overflow: visible;width: 56px; height: 56px; font-size: 0.7rem; }
    .softtouch-wipes .product-slide { width: 220px; }
    .softtouch-wipes .product-aura { width: 250px; height: 250px; filter: blur(48px); }
    .softtouch-wipes .product-img { height: 30vh; }
    .softtouch-wipes .product-title { font-size: 1.2rem; }
    .softtouch-wipes .carousel-nav { bottom: 1.1rem; gap: 0.9rem; }
}

@media (max-width: 380px) {
    .softtouch-wipes .left-panel { padding: 6rem 1.1rem 1.6rem 1.1rem; }
    .softtouch-wipes .main-hero-text { font-size: clamp(2.2rem, 14vw, 2.5rem); }
    .softtouch-wipes .promo-info { padding-right: 0; }
    .softtouch-wipes .circular-read-more { position: static; transform: none; margin-left: auto; }
    .softtouch-wipes .circular-read-more:hover { transform: scale(1.08); }
    .softtouch-wipes .right-panel { overflow:visible;height: 56vh; min-height: 380px; }
    .softtouch-wipes .product-img { height: 27vh; }
    .softtouch-wipes .product-slide { width: 180px; }
}


.sp-eab-7cc980bfdc01.sp-eab-wrapper .eab-heading-eab-parent-7cc980bfdc01 {
background:#f3f8fc99!important;
}

.eab-heading-eab-parent-7cc980bfdc01 .sp-eab-accordion-title-text{
	font-weight:600!important;
}

.eab-heading-eab-parent-7cc980bfdc01 .sp-eab-accordion-title-text{
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}

.eab-heading-eab-parent-7cc980bfdc01 .sp-eab-expand-collapse-icon {
    color: #898989c7!important;
    font-size: 16px !important;
}