/**
 * style.css — Visual design: color, type, surfaces, motion, responsive polish.
 * Uses CSS variables for reuse; complements layout.css (no duplicate layout rules).
 */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

:root {
  color-scheme: light;
  /* Color system — light theme */
  --c-bg: #f1f4f8;
  --c-bg-elevated: #ffffff;
  --c-surface: #ffffff;
  --c-border: rgba(15, 23, 42, 0.1);
  --c-text: #0f172a;
  --c-muted: #64748b;
  --c-accent: #F7B500;
  --c-accent-strong: #4F2C70;
  --c-accent-dim: color-mix(in srgb, var(--c-accent-strong) 12%, transparent);
  --c-focus: #F7B500;

  /* Header (ecommerce) */
  --c-yellow: #F7B500;
  --c-purple: #4F2C70;
  --c-purple-2: #4F2C70;
  --c-ink: #111827;
  --c-soft-gray: #f3f4f6;

  /* Typography */
  --font-sans: "Lexend", sans-serif;
  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: clamp(1.125rem, 2.5vw, 1.35rem);
  --text-xl: clamp(1.75rem, 4.5vw, 2.75rem);
  --text-2xl: clamp(2.25rem, 6vw, 3.35rem);
  --leading-tight: 1.15;
  --leading-body: 1.65;
  --tracking-tight: -0.02em;

  /* Spacing & radius */
  --r-sm: 0.5rem;
  --r-md: 0.875rem;
  --r-lg: 1.25rem;
  --shadow-soft: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.08);

  /* Cursor (data-cursor on interactive targets) */
  --cursor-pointer: pointer;
  --cursor-link: pointer;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
}

[data-cursor],
button {
  cursor: var(--cursor-link);
}


.visually-hidden {
  border: 0;
}


/* Common button styles */

.all-btn {
  padding: .8rem 1rem !important;
}

/* Header surface */
.site-header {
  background: #fff;
  backdrop-filter: none;
  border-bottom: 0;
}

.promo-bar-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  background: var(--c-yellow);
  padding: 8px;
}

.promo-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #000000;
  font-size: 0.88rem;
  line-height: 1.2;
}

.promo-left-icon {
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.promo-text {
  white-space: nowrap;
}

.promo-code {
  background: color-mix(in srgb, #ffffff 45%, var(--c-yellow));
  color: #000000;
  border-radius: 0.25rem;
  padding: 0.18rem 0.45rem;
  white-space: nowrap;
}

.promo-close {
  width: 1.15rem;
  height: 1.15rem;
  border: 0;
  background: transparent;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
}

.promo-account-btn {
  width: 1.6rem;
  height: 1.6rem;
  background: transparent;
  border: 0;
  color: var(--c-ink);
}

.header-main {
  background: #ffffff;
  min-height: 3.3rem;
}

.header-search {
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--c-border) 60%, transparent);
  border-radius: 999px;
  padding: 0.30rem 0.35rem 0.30rem 0.75rem;
}

.header-search input {
  border: 0 !important;
  outline: 0;
  background: transparent;
  font: inherit;
  color: var(--c-ink);
  padding: 0;
  font-size: 14px;
}

.header-search input::placeholder {
  color: color-mix(in srgb, var(--c-muted) 60%, transparent);
}

.search-btn {
  width: 1.7rem;
  height: 1.7rem;
  border: 0;
  border-radius: 999px;
  background: var(--c-purple);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-text {
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: var(--tracking-tight);
  color: var(--c-purple-2);
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
}

.nav-list a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-ink);
  transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--c-purple-2);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.support-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--c-ink) 55%, #ffffff 45%);
}

.support-phone {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-ink);
  text-decoration: none;
}

.icon-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #f4f5f7;
  border: 1px solid transparent;
  color: var(--c-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-cart-actions .icon-btn {
  width: 1.95rem;
  height: 1.95rem;
}

.support-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #f4f5f7;
  color: var(--c-purple-2);
}

.cart-btn .cart-badge {
  min-width: 1.2rem;
  height: 1.2rem;
  padding-inline: 0.3rem;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 0.62rem;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-nav {
  background: #E6E3EC;
  /* border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border); */
}

.category-list {
  padding-block: 0.4rem;
}

.cat-all-icon {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: var(--c-purple);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.45rem;
  flex-shrink: 0;
}

.cat-all-icon-menu,
.cat-all-icon-close {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.cat-all-icon-close {
  display: none;
}

.cat-all-trigger[aria-expanded="true"] .cat-all-icon-menu {
  display: none;
}

.cat-all-trigger[aria-expanded="true"] .cat-all-icon-close {
  display: flex;
}

.cat-all-icon svg {
  display: block;
}

.cat-all-trigger {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.25;
  color: var(--c-ink);
  background: #ffffff;
  border: 1px solid color-mix(in srgb, var(--c-border) 80%, transparent);
  border-radius: 999px;
  padding: 0.28rem 0.68rem 0.28rem 0.5rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.cat-all-trigger:focus-visible {
  outline: 2px solid var(--c-purple);
  outline-offset: 2px;
}

.categories-mega {
  background: #ffffff;
  border-top: 1px solid var(--c-border);
  box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.1);
}

.categories-mega-inner {
  padding-block: 1.35rem 1.5rem;
}

.categories-mega-layout {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 48rem) {
  .category-nav {
    position: relative;
    z-index: 50;
  }

  .categories-mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    border-radius: 0 0 0.65rem 0.65rem;
    border: 1px solid color-mix(in srgb, var(--c-border) 70%, transparent);
    border-top: none;
  }

  .categories-mega-layout {
    grid-template-columns: 1fr min(14.5rem, 32%);
    gap: 2rem;
  }
}

.categories-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1.25rem;
}

@media (min-width: 40rem) {
  .categories-mega-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.categories-mega-list a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.45rem;
  border-radius: 0.4rem;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.categories-mega-list a:hover,
.categories-mega-list a:focus-visible {
  background: color-mix(in srgb, var(--c-purple) 7%, #ffffff);
  color: var(--c-purple);
}

.mega-cat-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.4rem;
  background: #f0eef3;
  color: var(--c-purple);
}

.mega-cat-icon svg {
  display: block;
}

.categories-mega-list a:hover .mega-cat-icon,
.categories-mega-list a:focus-visible .mega-cat-icon {
  background: color-mix(in srgb, var(--c-purple) 12%, #ffffff);
}

.mega-cat-text {
  line-height: 1.25;
}

.categories-mega-cta {
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--c-purple) 12%, #ffffff) 0%,
    #f5f3f8 100%
  );
  border: 1px solid color-mix(in srgb, var(--c-border) 65%, transparent);
  border-radius: 0.75rem;
  padding: 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-self: start;
}

.mega-cta-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-purple);
}

.mega-cta-title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
  color: #111111;
}

.mega-cta-desc {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #555555;
  flex: 1;
}

.mega-cta-btn {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--c-yellow);
  color: #111111;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition: filter 0.15s ease;
}

.mega-cta-btn:hover {
  filter: brightness(0.97);
}

.mega-cta-btn:focus-visible {
  outline: 2px solid var(--c-purple);
  outline-offset: 2px;
}


.nav-actions {
  gap: 0.45rem;
}

.nav-toggle {
  color: var(--c-purple-2);
}


.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  background: var(--c-accent-dim);
  color: var(--c-accent-strong);
  border: 1px solid color-mix(in srgb, var(--c-accent-strong) 28%, var(--c-border));
}

.nav-toggle {
  background: transparent;
  border: 0;
  border-radius: var(--r-sm);
  /* padding: 0.55rem 0.65rem; */
  color: var(--c-purple-2);
}

.nav-toggle-bars {
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 0.375rem 0 currentColor, 0 -0.375rem 0 currentColor;
}

@media (max-width: 47.99rem) {
  .nav-backdrop {
    background: rgba(15, 23, 42, 0.22);
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .nav-backdrop.is-open {
    opacity: 1;
  }

  .site-nav {
    background: #ffffff;
    border-left: 1px solid var(--c-border);
    box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.12);
    transition: transform 0.25s ease;
  }

  .nav-list a {
    border-bottom: 1px solid var(--c-border);
    font-size: 1rem;
  }

  .nav-list li:last-child a {
    border-bottom: 0;
  }

  .cat-all-trigger {
    width: 100%;
    justify-content: flex-start;
    border-radius: 0.4rem;
    padding: 0.75rem 0.65rem;
    border: 1px solid transparent;
    background: #f7f6f9;
    font-size: 1rem;
  }

  .categories-mega {
    box-shadow: none;
    border-top: 0;
    border-bottom: 1px solid var(--c-border);
    margin: 0 -1rem 0;
    padding: 0 1rem;
  }

  .categories-mega-inner {
    padding-block: 1rem 1.15rem;
  }

  .categories-mega-layout {
    grid-template-columns: 1fr;
  }

  .categories-mega-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 63.99rem) {
  .brand-text {
    font-size: 1.55rem;
  }
}

/* Hero */
.hero-banner {
  border-radius: 0.65rem;
  padding: clamp(1rem, 2.6vw, 2.5rem);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, #4F2C70 25%, #ffffff) 0%,
    color-mix(in srgb, #4F2C70 6%, #ffffff) 50%,
    color-mix(in srgb, #F7B500 25%, #ffffff) 100%
  );
}

.hero-copy {
  max-width: 30rem;
  z-index: 1;
}

.hero-kicker {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.hero-script {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

.hero-copy h1 {
  margin: 0.2rem 0 0.4rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--c-purple-2);
  letter-spacing: 0.01em;
}

.lead {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #28436c;
}

.hero-actions {
  margin-top: 1.1rem;
}

.hero-shop-btn {
  border-radius: 20px !important;
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  text-transform: uppercase;
  font-weight: 400 !important;
  letter-spacing: 0.03em;
  padding: 0.62rem 1.15rem;
}

.hero-shop-btn:hover {
  background: #000000;
  border-color: #000000;
}

.hero-offer {
  color: #2d3d5f;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-offer strong {
  color: #1e55cc;
  font-size: 1.45rem;
}

.hero-visual {
  align-items: flex-end;
}

.hero-figure {
  width: min(100%, 30rem);
}

.hero-figure img {
  filter: drop-shadow(0 1rem 1.45rem rgba(15, 23, 42, 0.14));
}

.hero-benefits {
  margin-top: 0.6rem;
  padding: 0.85rem 0rem;
  /* background: #f3eef8; */
  /* border-radius: 0.5rem; */
}

.hero-benefits li {
  padding: 0.2rem 0.25rem;
}

.benefit-icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  background: #e6e1eb;
  outline: 1px solid #4f2c7029;
  outline-offset: 5px;
  color: var(--c-purple);
}

.benefit-icon svg {
  display: block;
}

.benefit-copy strong {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  color: #111111;
}

.benefit-copy small {
  font-size: 0.8rem;
  color: #474747;
}

@media (max-width: 47.99rem) {
  .hero-offer {
    position: static;
    font-size: 0.84rem;
    margin-bottom: -0.35rem;
  }

  .hero-offer strong {
    font-size: 1.1rem;
  }
}

/* Reusable section backgrounds */
.site-section--bg {
  background: #f3f3f3;
}

.site-section--bg-brand-light {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--c-purple) 8%, #ffffff) 0%,
    color-mix(in srgb, var(--c-yellow) 12%, #ffffff) 100%
  );
}

.section-title {
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 700;
  color: #111111;
  line-height: 1.4;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.categories-swiper {
  padding-top: 1rem;
  padding-bottom: 1.8rem;
  overflow: hidden;
}

.categories-swiper .swiper-wrapper,
.categories-swiper .swiper-slide {
  overflow: visible;
}

.category-card {
  gap: 0.95rem;
  padding-top: 0.7rem;
}

.category-media {
  position: relative;
  width: 100%;
  max-width: 12rem;
  height: 6rem;
  border-radius: 3rem 3rem 0 0;
  color: #1f2937;
  overflow: visible;
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-0.9rem);
}

.category-bg-1 { background: #f2e2e7; }
.category-bg-2 { background: #dce7ff; }
.category-bg-3 { background: #cfe9e3; }
.category-bg-4 { background: #d4d7ec; }
.category-bg-5 { background: #f1e1f2; }
.category-bg-6 { background: #e6ead8; }
.category-bg-7 { background: #ff000017; }
.category-bg-8 { background: #0080001a; }
.category-bg-9 { background: #a3a3a31a; }

.category-name {
  font-size: clamp(1rem, 2vw, 1rem);
  font-weight: 600;
  color: #111111;
  line-height: 1.1;
}

@media (max-width: 47.99rem) {
  .category-media {
    height: 6.4rem;
    border-radius: 2.2rem 2.2rem 0 0;
  }

  .category-name {
    font-size: 0.98rem;
  }
}

.slider-pagination.swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  width: fit-content !Important;
  margin-inline: auto;
  border-radius: 999px;
  background: #ececf0;
}

.slider-pagination .swiper-pagination-bullet {
  width: 0.45rem;
  height: 0.45rem;
  margin: 0 !important;
  border-radius: 999px;
  background: #c4c4cc;
  opacity: 1;
  transition: background-color 0.2s ease;
}

.slider-pagination .swiper-pagination-bullet-active {
  background: var(--c-purple);
}

/* Products slider */
.products-swiper {
  padding-bottom: 3.25rem;
}

.products-swiper .swiper-wrapper {
  align-items: stretch;
}

.products-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.product-card {
  width: 100%;
  background: #fff;
  border: 1px solid #cfcfd4;
  border-radius: 0.85rem;
  overflow: hidden;
}

.product-media {
/*   min-height: 12rem; */
/*   padding: 1rem; */
/*   display: grid; */
/*   place-items: center; */
  background: #ececef40;
}

.product-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-body {
  padding: 1rem 1rem 1.15rem;
}

.product-title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.product-title-link {
  color: inherit;
  text-decoration: none;
}

.product-title-link:hover {
  color: var(--c-purple);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.product-title-link:focus-visible {
  outline: 2px solid var(--c-purple);
  outline-offset: 3px;
  border-radius: 0.2rem;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.5rem;
}

.product-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
}

.product-star {
  width: 0.92rem;
  height: 0.92rem;
  flex-shrink: 0;
  display: block;
  color: #c8c8cb;
}

.product-star--on {
  color: var(--c-yellow);
}

.product-rating-value {
  font-size: 0.92rem;
  color: #6b6b6b;
  font-weight: 500;
}

.product-price {
  color: var(--c-purple);
  font-size: 1.05rem;
  font-weight: 700;
}

.product-old-price {
  color: #6b6b6b;
  font-size: 0.92rem;
  text-decoration: line-through;
}

.product-discount {
  background: var(--c-yellow);
  color: #111111;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
	width: fit-content;
  padding: 0.2rem 0.55rem;
}

.product-attribute {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 20px;
}

.product-attribute-label {
  font-size: 0.95rem;
  min-width: 3.2rem;
  color: inherit;
  flex-shrink: 0;
}

.attribute-options {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

/* Size chips — same look as former .product-size-chip */
.attribute-button:not(.attribute-button--swatch) {
  margin: 0;
  font: inherit;
  cursor: pointer;
  min-width: 3.2rem;
  text-align: center;
  border: 1px solid #b8b8bc;
  border-radius: 4px;
  padding: 0.2rem 0.4rem;
  color: #666666;
  font-size: 0.8rem;
  line-height: 1.25;
  background: transparent;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.attribute-button:not(.attribute-button--swatch):hover {
  background: rgba(0, 0, 0, 0.04);
}

.attribute-button:not(.attribute-button--swatch):focus-visible {
  outline: 2px solid var(--c-purple);
  outline-offset: 2px;
}

.attribute-button:not(.attribute-button--swatch)[aria-pressed="true"],
.attribute-button:not(.attribute-button--swatch).is-selected {
  border-color: var(--c-purple);
  color: var(--c-purple);
  background: rgba(86, 70, 176, 0.08);
}

/* Colour dots — same look as former inline swatches */
.attribute-button--swatch {
  margin: 0;
  font: inherit;
  cursor: pointer;
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: opacity 0.15s ease, box-shadow 0.15s ease;
}

.attribute-button--swatch:hover {
  opacity: 0.88;
}

.attribute-button--swatch:focus-visible {
  outline: 2px solid var(--c-purple);
  outline-offset: 3px;
}

.attribute-button--swatch[aria-pressed="true"] {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--c-purple);
}

.swatch {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  display: block;
  pointer-events: none;
}

.swatch-orange { background: #e67a35; }
.swatch-blue { background: #48506c; }
.swatch-gray { background: #c8c8cb; }

.product-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.product-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.42rem !important;
  text-align: center !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  padding: 0.5rem .5rem;
  font-size: 0.88rem !important;
  line-height: 1.2 !important;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.product-btn-label {
  flex: 0 1 auto;
}

.product-btn-chevron {
  flex-shrink: 0;
  display: block;
  margin-top: 0.04em;
}

.product-btn-primary {
  background: var(--c-purple) !important;
  color: #ffffff !important;
  border: none !important;
}

.product-btn-primary:hover {
  background: color-mix(in srgb, var(--c-purple) 88%, #000000);
  color: #ffffff;
}

.product-btn-outline {
  background: #ffffff;
  color: #111111;
  border: 1px solid #d4d4d8;
}

.product-btn-outline .product-btn-chevron {
  color: var(--c-purple);
}

.product-btn-outline:hover {
  border-color: #bcbcc2;
  background: #fafafa;
}

.product-btn:focus-visible {
  outline: 2px solid var(--c-purple);
  outline-offset: 2px;
}

/* Diagonal image + copy CTA (below products) — full viewport width */
/* .diagonal-cta-section {
  padding-block: 2.5rem 3.5rem;
  width: 100%;
  max-width: none;
} */

.diagonal-cta {
  width: 100%;
  border-inline: none;
  border-radius: 0;
  overflow: hidden;
  /* Same as copy panel — avoids white frame / gutters */
  background: #ebeaf2;
  box-shadow: 0 0.35rem 1.25rem rgba(15, 23, 42, 0.06);
}

.diagonal-cta__grid {
  --diagonal-cta-skew: 1.35rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr minmax(20rem, 2.5fr);
  min-height: 14.5rem;
  align-items: stretch;
  background: #ebeaf2;
}

.diagonal-cta__slice--img {
  position: relative;
  z-index: 1;
  min-height: 14.5rem;
  overflow: hidden;
  background: #ebeaf2;
}

.diagonal-cta__slice--1 {
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--diagonal-cta-skew)) 100%, 0 100%);
}

.diagonal-cta__slice--2,
.diagonal-cta__slice--3 {
  margin-left: calc(-1 * var(--diagonal-cta-skew));
  width: calc(100% + var(--diagonal-cta-skew));
  clip-path: polygon(
    var(--diagonal-cta-skew) 0,
    100% 0,
    calc(100% - var(--diagonal-cta-skew)) 100%,
    0 100%
  );
}

.diagonal-cta__slice--2 {
  z-index: 2;
}

.diagonal-cta__slice--3 {
  z-index: 3;
}

.diagonal-cta__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.diagonal-cta__slice--copy {
  z-index: 4;
  margin-left: calc(-1 * var(--diagonal-cta-skew));
  width: calc(100% + var(--diagonal-cta-skew));
  clip-path: polygon(var(--diagonal-cta-skew) 0, 100% 0, 100% 100%, 0 100%);
  background: #ebeaf2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.45rem;
  padding: 2.15rem 2rem 2.15rem clamp(1.5rem, 4vw, 3rem);
  min-height: 14.5rem;
  align-self: stretch;
}

.diagonal-cta__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.12rem, 2.65vw, 1.85rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: var(--tracking-tight);
  color: #111111;
  max-width: 34rem;
}

@media (max-width: 63.99rem) {
  .diagonal-cta__grid {
    grid-template-columns: 1fr 1fr 1fr minmax(17rem, 1.5fr);
    --diagonal-cta-skew: 1rem;
    min-height: 13rem;
  }

  .diagonal-cta__slice--img {
    min-height: 13rem;
  }

  .diagonal-cta__slice--copy {
    min-height: 13rem;
    padding: 1.75rem 1.5rem 1.75rem clamp(1.35rem, 3.5vw, 2.25rem);
  }

  .diagonal-cta__title {
    max-width: none;
  }
}

@media (max-width: 47.99rem) {
  .diagonal-cta-section {
    padding-block: 1.75rem 2.5rem;
  }

  .diagonal-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    column-gap: 0;
    row-gap: 0;
    --diagonal-cta-skew: 0px;
  }

  .diagonal-cta__slice--1 {
    grid-column: 1;
    grid-row: 1;
  }

  .diagonal-cta__slice--2 {
    grid-column: 2;
    grid-row: 1;
  }

  .diagonal-cta__slice--3 {
    grid-column: 3;
    grid-row: 1;
  }

  .diagonal-cta__slice--copy {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-left: 0;
    width: 100%;
    clip-path: none;
    min-height: 10.5rem;
    padding: 1.65rem 1.25rem 1.85rem;
    gap: 1.25rem;
  }

  .diagonal-cta__slice--img {
    min-height: 6.75rem;
    margin-left: 0 !important;
    width: 100% !important;
    clip-path: none;
  }

  .diagonal-cta__slice--2,
  .diagonal-cta__slice--3 {
    z-index: auto;
  }
}

/* About — two-column split; visual full-bleed to viewport left (no container) */
.about-split-section {
  padding-block: 2.75rem 3.25rem;
  padding-inline: 0;
  width: 100%;
  max-width: none;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  width: 100%;
  min-height: min(26rem, 70vw);
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  /* box-shadow: 0 0.5rem 1.75rem rgba(15, 23, 42, 0.07);
  border-block: 1px solid color-mix(in srgb, var(--c-border) 55%, transparent); */
  border-inline: none;
}

.about-split__visual {
  background: linear-gradient(
    145deg,
    color-mix(in srgb, #dbeafe 55%, #ffffff) 0%,
    color-mix(in srgb, var(--c-purple) 6%, #ffffff) 42%,
    #ffffff 100%
  );
}

.flex-about-split__visual {
	display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.about-split__image {
  width: 100%;
  max-width: min(28rem, 92%);
  height: 100%;
  max-height: min(28rem, 55vh);
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* Matches .container horizontal inset on the right (77rem max, 1rem min margin) */
/* .about-split__aside {
  background: #ffffff;
  padding-block: clamp(2rem, 5vw, 3.5rem);
  padding-inline: clamp(1.5rem, 4vw, 2.75rem) max(1rem, calc((100vw - min(100vw - 2rem, 77rem)) / 2));
  display: flex;
  align-items: center;
} */

.about-split__content {
  width: 100%;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.35rem;
}

.about-split__title {
  text-align: left;
  max-width: none;
}

.about-split__lead {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.6vw, 1.02rem);
  line-height: 1.65;
  color: #5c5c66;
  max-width: 36rem;
}

.about-split__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 36rem;
}

.about-split__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.about-split__check {
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: var(--c-purple);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.12rem;
}

.about-split__check svg {
  display: block;
}

.about-split__list-text {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  line-height: 1.55;
  color: #5c5c66;
}


@media (max-width: 56.24rem) {
  .about-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-split__visual {
    min-height: 14rem;
    order: -1;
    padding: 1rem;
    justify-content: center;
  }

  .about-split__image {
    max-width: 22rem;
    object-position: center;
  }

  .about-split__aside {
    padding-inline: max(1rem, calc((100vw - min(100vw - 2rem, 77rem)) / 2));
  }

  .about-split__content {
    padding-block: 0 0.25rem;
  }
}

/* Process steps — reuses .section-title, .product-btn-primary, .about-split__lead */
.process-steps-section {
  background: #ffffff;
  padding-block: 2.75rem 3.5rem;
}

.process-steps-section__title {
  text-align: center;
  margin: 0 auto 2.75rem;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(1.35rem, 5.5vw, 2.65rem);
  row-gap: 0;
  align-items: stretch;
}

.process-steps__cell {
  min-width: 0;
  position: relative;
  overflow: visible;
  padding-bottom: 1.1rem;
}

.process-step-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.process-step-card__surface {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.55rem 1.2rem 2rem;
  border: 1px solid var(--c-purple);
  border-radius: 0.65rem;
  background: #ffffff;
  box-shadow: none;
}

/* Ref: right vertical border stops short — open bottom-right corner */
.process-step-card__surface::after {
  content: "";
  position: absolute;
  top: 60%;
  right: -3px;
  bottom: -3px;
  width: 12px;
  background: #ffffff;
  z-index: 1;
  pointer-events: none;
}

.process-step-card__badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 5.15rem;
  height: 5.15rem;
  pointer-events: none;
  z-index: 3;
}

/* White disc + thick purple ring + purple icons + map-pin tail */
.process-step-card__badge-disc {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -54%);
  width: 3.2rem;
  height: 3.2rem;
  background: #ffffff;
  border: 2.5px solid var(--c-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-purple);
  box-sizing: border-box;
  z-index: 2;
  box-shadow: 0 0 0 5px #ffffff;
}

.process-step-card__badge-disc::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid var(--c-purple);
  z-index: 2;
}

.process-step-card__badge-disc svg {
  display: block;
  flex-shrink: 0;
}

.process-step-card__heading {
  margin: 0 0 0.7rem;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.85vw, 1.14rem);
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
}

.process-step-card__text {
  margin: 0 0 1.15rem;
  flex: 1;
  text-align: center;
  max-width: none;
  color: #111111;
  font-weight: 400;
}

.process-step-card__pill {
  position: absolute;
  z-index: 4;
  bottom: 0;
  margin-bottom: -1rem;
  padding-inline: 1.2rem;
  font-weight: 600;
}

@media (max-width: 63.99rem) {
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.25rem, 4vw, 2.25rem);
    row-gap: 2.25rem;
  }
}

@media (max-width: 40rem) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Section typography */
.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: var(--text-xl);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.section-sub {
  margin: 0;
  color: var(--c-muted);
  font-size: var(--text-base);
}

/* Cards */
.card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--r-md);
  background: linear-gradient(165deg, #ffffff 0%, color-mix(in srgb, var(--c-surface) 96%, var(--c-accent) 1.5%) 100%);
  border: 1px solid var(--c-border);
  box-shadow: 0 0.0625rem 0 rgba(15, 23, 42, 0.04) inset, 0 0.75rem 1.5rem rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.card p {
  color: var(--c-muted);
  font-size: var(--text-sm);
}

.card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--c-accent-strong) 35%, var(--c-border));
  box-shadow: 0 0.0625rem 0 rgba(15, 23, 42, 0.05) inset, 0 1rem 2rem rgba(15, 23, 42, 0.07);
}

/* Buttons */
.btn {
  font: inherit;
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1.2;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible,
.nav-list a:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--c-accent-strong);
  color: #f8fafc;
  border-color: color-mix(in srgb, var(--c-accent-strong) 55%, #0f172a 45%);
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--c-accent-strong) 88%, #000000 12%);
  border-color: color-mix(in srgb, var(--c-accent-strong) 60%, #0f172a 40%);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}

.btn-ghost:hover {
  border-color: color-mix(in srgb, var(--c-text) 22%, var(--c-border));
  background: rgba(15, 23, 42, 0.04);
}

/* Video reviews (YouTube thumbnails + modal) */
.video-reviews-section {
  padding-block: 2.75rem 3.25rem;
  background: #ffffff;
}

.video-reviews-section__title {
  text-align: center;
  margin-bottom: 1.75rem;
}

.video-reviews-swiper {
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.video-reviews-swiper::-webkit-scrollbar {
  display: none;
}

.video-reviews-swiper .swiper-slide {
  height: auto;
}

.video-review-card {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: 1.05rem;
}

.video-review-card:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 3px;
}

.video-review-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 1.05rem;
  overflow: hidden;
  box-shadow: 0 0.35rem 1.1rem rgba(15, 23, 42, 0.1);
}

.video-review-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-review-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.42) 0%, transparent 52%);
  pointer-events: none;
}

.video-review-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 2.8rem;
  border-radius: 0.45rem;
  background: #ff0000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.9rem rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.video-review-card__play svg {
  margin-left: 0.2rem;
}

.video-review-modal {
  padding: 0;
  border: none;
  background: transparent;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
}

.video-review-modal::backdrop {
  background: rgba(15, 23, 42, 0.72);
}

.video-review-modal__shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  width: 100%;
  padding: 1.25rem;
  box-sizing: border-box;
}

.video-review-modal__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.video-review-modal__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
}

.video-review-modal__close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #111111;
  cursor: pointer;
  box-shadow: 0 0.2rem 0.65rem rgba(15, 23, 42, 0.15);
  transform: translateY(-100%);
  margin-bottom: 0.35rem;
}

@media (max-width: 40rem) {
  .video-review-modal__close {
    top: 0.35rem;
    right: 0.35rem;
    transform: none;
    background: rgba(15, 23, 42, 0.55);
    color: #f8fafc;
  }
}

.video-review-modal__close:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 2px;
}

.video-review-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.65rem;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.35);
}

.video-review-modal__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Testimonials slider */
.testimonials-section {
  padding-block: 2.75rem 3.25rem;
  background: #fafafa;
}

.testimonials-section__title {
  text-align: center;
  margin-bottom: 1.75rem;
}

.testimonials-swiper {
  padding-bottom: 2.75rem;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-swiper::-webkit-scrollbar {
  display: none;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonials-swiper .swiper-slide > .testimonial-card {
  flex: 1;
  min-height: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 1.5rem;
  background: #f5f5f5;
  border: 1px solid #e4e4e8;
  border-radius: 1rem;
  box-sizing: border-box;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__who {
  min-width: 0;
}

.testimonial-card__name {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  color: #111111;
}

.testimonial-card__role {
  margin: 0.2rem 0 0;
  font-size: 0.875rem;
  line-height: 1.35;
  color: #64748b;
}

.testimonial-card__stars {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #e6b007;
}

.testimonial-card__product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* padding: 0.65rem 0.75rem;
  background: #ffffff;
  border: 1px solid #e4e4e8; */
  border-radius: 0.65rem;
}

.testimonial-card__product img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 0.4rem;
  flex-shrink: 0;
}

.testimonial-card__product-title {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #1e293b;
}

.testimonial-card__quote {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #475569;
}

.testimonial-card__quote p {
  margin: 0;
}

/* Blog cards grid */
.blog-cards-section {
  padding-block: 2.75rem 3.25rem;
  background: linear-gradient(90deg, #fff9f1 0%, #f6f3ef 38%, #f0f3f8 72%, #eef2f7 100%);
}

.blog-cards-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}

.blog-cards-section__head .product-btn.product-btn-primary:focus-visible {
  outline-offset: 3px;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 40rem) {
  .blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
  }
}

@media (min-width: 64rem) {
  .blog-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: none;
  position:relative;
  border: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
}

.blog-card:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 3px;
}

.blog-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #e8eef5;
  overflow: hidden;
}

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

.blog-card__body {
  padding: 1.25rem 0 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.blog-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #111111;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  font-size: 0.875rem;
  line-height: 1.3;
}

.blog-card__author {
  font-weight: 700;
  color: var(--c-purple);
}

.blog-card__date {
  color: #64748b;
  flex-shrink: 0;
}

/* Site footer */
.site-footer {
  margin-top: 0;
  font-family: var(--font-sans);
}

.site-footer__newsletter {
  padding-block: clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(90deg, #ebe4f4 0%, #e8e0f2 45%, #e5eaf3 100%);
}

.site-footer__newsletter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.site-footer__newsletter-copy {
  flex: 1 1 16rem;
  max-width: 32rem;
}

.site-footer__newsletter-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
  color: #1a1033;
}

.site-footer__newsletter-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #64748b;
}

.site-footer__subscribe-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.65rem;
  flex: 1 1 18rem;
  max-width: 28rem;
  justify-content: flex-end;
}

.site-footer__subscribe-input {
  flex: 1 1 12rem;
  min-height: 3rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0.65rem;
  background: #ffffff;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--c-text);
}

.site-footer__subscribe-input::placeholder {
  color: #94a3b8;
}

.site-footer__subscribe-input:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 2px;
}

.site-footer__subscribe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 3rem;
  padding: 0 1.35rem;
  border: none;
  border-radius: 0.65rem;
  background: var(--c-purple);
  color: #ffffff;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.site-footer__subscribe-btn:hover {
  background: color-mix(in srgb, var(--c-purple) 88%, #000000 12%);
}

.site-footer__subscribe-btn:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 2px;
}

.site-footer__main {
  padding-block: clamp(2.25rem, 5vw, 3rem);
  background: #f5f5f7;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2.5rem;
}

@media (min-width: 40rem) {
  .site-footer__columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 64rem) {
  .site-footer__columns {
    grid-template-columns: 1.15fr repeat(3, 1fr);
    align-items: start;
  }

  .site-footer__col--brand {
    grid-column: auto;
  }
}

.site-footer__brand {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.site-footer__brand-text {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-purple);
}

.site-footer__brand:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

.site-footer__payments {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  max-width: 15rem;
}

.site-footer__pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.25rem 0.35rem;
  border-radius: 0.4rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.625rem;
  font-weight: 700;
  color: #334155;
  text-align: center;
  line-height: 1.2;
}

.site-footer__menu-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
}

.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__menu li {
  margin-bottom: 0.55rem;
}

.site-footer__menu li:last-child {
  margin-bottom: 0;
}

.site-footer__menu a {
  font-size: 0.9375rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__menu a:hover {
  color: var(--c-purple);
}

.site-footer__menu a:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 2px;
  border-radius: 0.2rem;
}

.site-footer__features {
  padding-block: clamp(1.75rem, 4vw, 2.25rem);
  background: #f5f5f7;
  border-top: 1px solid #e2e4e9;
}

.site-footer__feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem 1.5rem;
}

@media (min-width: 48rem) {
  .site-footer__feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 72rem) {
  .site-footer__feature-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.site-footer__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.site-footer__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #ebe4f4;
  color: var(--c-purple);
}

.site-footer__feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.site-footer__feature-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.site-footer__feature-desc {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}

.site-footer__legal {
  padding-block: 1.25rem 1.5rem;
  background: #f0f0f3;
  border-top: 1px solid #e2e4e9;
}

.site-footer__legal-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.8125rem;
  color: #475569;
}

.site-footer__socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: #e8eaef;
  color: var(--c-purple);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.site-footer__social:hover {
  background: #dde1e8;
  transform: translateY(-1px);
}

.site-footer__social:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: color-mix(in srgb, var(--c-accent) 28%, transparent);
  color: var(--c-text);
}

/* Selection (valid override) */
::selection {
  background: color-mix(in srgb, var(--c-accent) 28%, transparent);
  color: var(--c-text);
}


/* karan css */

.yoast-breadcrumbs :is(a, span),
.woocommerce-breadcrumb :is(a, span){
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}

.yoast-breadcrumbs .breadcrumb_last {
  font-weight: 600;
}

.sp_details .sp-hero__title, .pg-hero h1{
  font-size: 26px !important;
	margin-bottom:0;
}

ul.sp-hero__rating li {
  line-height: 0;
}

.sp_details p,
.rating-wrap .rating-wrap__text {
  font-size: 14px;
}

.qty-data-form {
  border: 1px solid #D5D5D5;
  border-radius: 40px;
}

.qty-data-form button {
  border: none;
  border-radius: 50%;
  background: #F9F9F9;
  transition: 0.2s;
  cursor: pointer;
}

.qty-data-form button:hover {
  background: #d4d4d470;
}

.qty-data-form input {
  color: #4F2C70;
  border: 0 !important;
  font-size: 16px;
  font-weight: 600;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0
}

.sp_btn_card {
  border: 1px solid #D3D3D3;
  border-radius: 12px;
}

.sp_btn_card .off-bdg {
  font-size: 12px;
  font-weight: 600;
  background: #F7B500;
  border-radius: 90px;
  line-height: 1.3;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price ins{
  font-size: 18px;
  font-weight: 700;
  margin-left: 10px;
  color: #4F2C70 !important;
  text-decoration: none;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price del {
  color: rgba(0, 0, 0, 0.6) !important;
  font-size: 14px;
  text-decoration: line-through;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
 .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  color: #4F2C70 !important;
  font-size: 1.25em;
}

.flex-col-trust-card {
  background: #F4F5F7;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}

.flex-col-trust-card .flex-trust-icon {
  border-radius: 50%;
  background: #fff;
}

.sp_pay_con {
  border: 1px solid #D7D7D7;
  border-radius: 4px;
}

.sp_pay_con .h6 {
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: -12px;
  background: var(--c-bg-elevated);
}

.site-tabs button,
.woocommerce nav.woocommerce-MyAccount-navigation ul li{
  text-align: left;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  border-left: 3px solid rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  font-family: var(--font-sans);
  background: transparent;
}

.site-tabs button.active,
.woocommerce nav.woocommerce-MyAccount-navigation ul li.is-active{
  background-color: #F1EAFF;
  border-left-color: #4F2C70;
}

.tabsCon .tabcontent .tab-title {
  font-size: 20px;
  font-weight: 600;
}

.tabsCon .tabcontent p {
  font-size: 14px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.8);
}

.table-container {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

thead {
  background: #F5F5F5;
}

tr:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.tab_review_card .testimonial-card__header {
  background: #F3F3F3;
  border-top: 1px solid #B7B7B7;
  padding-top: 15px;
}

.share-exp-form {
  padding: 30px;
  background: linear-gradient(273.86deg, rgba(227, 240, 255, 0.4) 4.58%, rgba(240, 230, 254, 0.4) 96.33%);
  border-radius: 8px;
}

.share-exp-form .review-ttl-btn {
  padding-bottom: 20px;
}

.tech-comment-stars-inputs label:hover svg path {
  fill: #F56800;
  stroke: #F56800;
}

form label {
	display:block;
	margin-bottom:8px;
  font-size: 14px;
  color: #323232;
}

form :is(input, select, textarea) {
  background: #fff;
  font-size: 16px;
  border: 1px solid #C6C6C6 !important; 
  border-radius: 4px;
}

form .select-dropdown select{
	appearance: none;
	color: #757575
}

form .select-dropdown{
	width: 100%;
    position: relative;
}

form .select-dropdown:after {
                height: 20px;
                width: 20px;
                content: '';
                position: absolute;
                right: 12px;
                top: 12px;
                transition: all .2s;
                transform: rotate(0deg);
                background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%23fff" fill-opacity=".01" d="M0 0h48v48H0z"/><path d="M37 18 25 30 13 18" stroke="%23c7c7c7" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat;
            }


.pg-hero {
    z-index:0;
	padding-top:50px;
    position: relative;
}

.pg-hero:after{
  background: linear-gradient(93.86deg, #F0E6FE 4.58%, #EFEBE0 96.33%);
  position:absolute;
  left:0;
  top:0;
  height:500px;
  width:100%;
  z-index:-1;
  content:'';
}

.pg-hero .content-wrap{
	background:#fff;
	padding: 30px 20px;
	border-radius:12px;
	padding-bottom: 0
}


/* ----------------------Single-blog-start---------------- */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-block: 25px 15px;
    text-transform: capitalize;
}

h1{
	font-size:26px;
}

h2{
	font-size:24px;
}

h3{
	font-size:22px;
}

h4{
	font-size:20px;
}

h5{
	font-size:18px;
}

h6{
	font-size:16px;
}

body.single-blog .content-wrap .col-lg-9 a:not(#tableofcontent a, .pg-hero-title .yoast-breadcrumbs a){
	font-weight: 700;
	color:var(--c-purple);
    border-bottom: 2px solid var(--c-purple);
    transition: all .3s;
	text-decoration:none
}

body.single-blog .content-wrap .col-lg-9 a:not(#tableofcontent a, .pg-hero-title .yoast-breadcrumbs a):hover {
    transition: all .3s;
    border-bottom: 2px solid transparent;
}

body.single-blog .content-wrap :is(ul,ol) li,
body.single-blog .content-wrap p{
	color:rgba(0,0,0,80%);
	padding:0;
	font-size:14px
}

body.single-blog .content-wrap blockquote {
    border: 1px solid rgba(219, 219, 219, 1);
    background: linear-gradient(93.86deg, #F0E6FE 4.58%, #EFEBE0 96.33%);
    border-left: 5px solid var(--c-purple);
    padding: 20px;
    border-radius: 12px;
	margin-block: 40px 30px;
}

.author-strip {
    width: 100%;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px 90px;
}

    .author-strip .ath-col{
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .author-strip .ath-col img{
        height: 32px;
        width: 32px;
        border-radius: 50%;
    }

    .author-strip .ath-col .ath-meta{
        font-size: 14px;
    }

    .author-strip .ath-col span{
        font-weight: 600;
        color: rgba(0,0,0,80%);
    }

    .author-strip .ath-col a{
        color: rgba(0,0,0,80%) !important;
        border: 0 !important;
        font-weight: normal !important;
    }

/* .author-strip .ath-col:not(:first-child) {
    padding-left: 24px;
    border-left: 1px solid rgb(0 0 0 / 16%);
    margin-left: 15px;
} */

.author-strip .ath-col{
	position: relative
}

.author-strip .ath-col:not(:first-child):after{
	position: absolute;
	content: '';
	height:100%;
	width:1px;
	left:-48px;
	top:0;
	background: rgb(0 0 0 / 16%);
}

.sidebar_post_wrap {
    background: #F6F6F6;
    padding: 70px 15px 25px 15px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.sidebar_post_wrap .side_head{
	background: var(--c-accent-strong);
    width: 100%;
    position: absolute;
    top: 0;
    font-size: 14px;
	display: flex;
    left: 0;
    color: #fff;
    align-items: center;
    padding: 12px;
    font-weight: 600;
    justify-content: center;
    gap: 6px;
    line-height: 1;
}

/* -----------------Accordians-start-------------------- */

.wp-block-create-block-bwe-addons-faq .wp-block-create-block-bwe-addons-details details {
    background: #fff;
    border: 1px solid rgba(219, 219, 219, 1);
    border-radius: 4px;
}

.wp-block-create-block-bwe-addons-faq .wp-block-create-block-bwe-addons-details details summary {
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 88%);
    cursor: pointer;
    position: relative;
}

.wp-block-create-block-bwe-addons-faq .wp-block-create-block-bwe-addons-details details .content {
    background: rgb(219 219 219 / 18%);
    padding-top: 10px;
}

.wp-block-create-block-bwe-addons-faq .wp-block-create-block-bwe-addons-details details summary:after {
    content: '';
    position: absolute;
    background: url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%23fff" fill-opacity=".01" d="M0 0h48v48H0z"/><path d="M37 18 25 30 13 18" stroke="%23141414" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
    height: 22px;
    width: 22px;
    transition: all .1s ease-in;
    right: 20px;
    top: 14px;
}

.wp-block-create-block-bwe-addons-faq .wp-block-create-block-bwe-addons-details details[open] summary:after {
    transform: rotate(180deg);
}

/* custom woo-commerce start */

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 10px;
	margin-block: 5px 20px !important;
}

.woocommerce .lost_password a, .woocommerce .woocommerce-MyAccount-content a{
	color: #502e71 !important;
}

button{
	font-family: var(--font-sans) !important;
}

.woocommerce-form-login .woocommerce-form-login__submit {
    background: var(--c-purple) !important;
    color: #fff !important;
    border-radius: 999px !important;
    font-size: 16px !important;
    padding: 4px 20px !important;
    font-weight: unset !important;
    line-height: 2 !important;
}

.woocommerce nav.woocommerce-MyAccount-navigation ul{
	list-style:none !important;
	margin:0 !important;
	padding:0 !important
}

.woocommerce nav.woocommerce-MyAccount-navigation ul li a{
	font-size: 16px;
  	font-weight: 600;
  	text-decoration:none;
	color:#000;
}

.woocommerce .woocommerce-MyAccount-content{
	font-size:15px !important
}

.woocommerce-info, 
.woocommerce-Address-title{
	display: flex;
    align-items: center;
    justify-content: space-between;
	border-top-color: #4f2c70;
}

.woocommerce-Address-title h2{
	margin-block : 0 !important;
	font-size: 18px;
}

.woocommerce-info::before{
	top:1.4em !important;
	color: #4f2c70 !important;
}

.woocommerce-error::after, .woocommerce-error::before, .woocommerce-info::after, .woocommerce-message::after, .woocommerce-message::before, .woocommerce-account .addresses .title::after, .woocommerce-account .addresses .title::before, .woocommerce .woocommerce-breadcrumb::after, .woocommerce .woocommerce-breadcrumb::before{
	content:unset !important
}

.woocommerce-Address{
	background: #cccccc21;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
}

.woocommerce-Address-title{
	margin-bottom:12px !important
}

.woocommerce-Address address{
	font-size: 14px !important;
    color: #37383a;
}

.wp-block-woocommerce-cart-items-block table thead tr th{
	background: #fff !important;
	padding: 0 0 12px 0 !important;
}

.woocommerce .woocommerce-breadcrumb{
	margin-bottom: 15px !important;
}

.clear-wrap,
.woocommerce-breadcrumb a{
	clear:both !important
}

.woocommerce-breadcrumb a{
	position:relative !important
}

.woocommerce-breadcrumb a[href]:after {
    content: '»';
    position: absolute;
    font-size: 20px;
    right: -20px;
    top: 4px;
    line-height: 0.6;
    color: #8b8888;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name{
	color: #000 !important;
    text-decoration: none !important;
	font-size:16px !important;
    text-transform: capitalize;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-price__regular{
	font-size: 14px !important;
    color: #363636 !important;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-price__value.is-discounted{
	font-size: 15px !important;
    color: #4f2c70 !important;
    font-weight: 600 !important;
}

.wc-block-components-product-metadata .wc-block-components-product-metadata__description>p{
	font-size:13px !important;
	margin-bottom: 10px;
}

.woocommerce-order-overview{
	margin: 20px 0 !important; 
    padding: 0;
}

.woocommerce-order-overview li{
    border: 1px solid #eee !important;
    padding: 12px !important;
    border-radius: 4px;
    border-top: 2px solid #4f2c70 !important;
}

.woocommerce .star-rating span::before {
  font-family: 'WooCommerce'!important;
  color: #ffb000;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
  float: unset !important;
  width: 100% !important;
}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
  float: unset !important;
  width: 100% !important;
}

.woocommerce div.product .woocommerce-product-rating{
	margin-bottom: 0 !important
}

.woocommerce-product-details__short-description p,
.woocommerce-checkout #payment div.payment_box p:last-child{
	margin-block: 0 !important
}

.sp_details .woocommerce-review-link{
	color: #787878cc;
    font-size: 15px;
}

.woocommerce div.product form.cart{
	margin-bottom : 12px !important
}

.sp_details .product_meta{
	display:flex;
	align-items:center;
	gap: 12px 30px;
	flex-wrap:wrap;
}

.sp_details .product_meta :is(.sku_wrapper, .posted_in) {
    font-weight: 600;
}

.sp_details .product_meta .sku_wrapper .sku {
    font-weight: 400;
}

.sp_details .product_meta .posted_in a {
	text-decoration:none
}

.woocommerce div.product form.cart div.quantity {
    margin: 12px 0 0 0 !important;
}

.sp_details .reset_variations{
	display:none
}

.woocommerce span.onsale {
    min-height: 50px;
    min-width: 50px;
    display: flex;
	background-color: #502c70;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
	font-weight: normal;
	line-height: unset !important
}

.wc-proceed-to-checkout a, 
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button,
#payment #place_order{
    gap: 0.42rem !important;
    text-decoration: none !important;
    border-radius: 999px !important;
    padding: 0.875rem 1.5rem !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    background: var(--c-purple) !important;
    color: #ffffff !important;
    border: none !important;
}

.wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button,
#wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button,
.checkout_coupon button{
	gap: 0.42rem !important;
    text-decoration: none !important;
    padding: 0.875rem 1.5rem !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid #d4d4d8 !important;
	align-items: center !important;
    display: inline-flex !important;
}

.wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button{
	border-radius: 999px;
}

.wc-block-components-checkout-return-to-cart-button svg{
	position: unset !important;
    transform: unset !important;
}

input#radio-control-wc-payment-method-options-cod{
	padding: 0 !important
}

#review_form #respond form#commentform p.comment-notes{
	float:left
}

#review_form #respond  form#commentform p.stars{
	float:right;
}

#respond  form#commentform .comment-form-comment{
	clear:both;
}

#respond  form#commentform .comment-form-cookies-consent{
	display:flex; 
	align-items:center;
	gap:7px;
	margin-bottom: 20px;
}

#respond  form#commentform .comment-form-cookies-consent label{
	margin-bottom:0 !important
}

.product-gallery-card .product-gallery-card__hero ol.flex-control-thumbs{
	display: flex;
    align-items: center;
    gap: 20px;
	flex-wrap:wrap;
	margin-top: 10px !important;
	padding: 10px !important;
}

.product-gallery-card .product-gallery-card__hero ol.flex-control-thumbs img{
	border-radius:50%;
	outline:1px solid #ccc;
	outline-offset:5px;
	height:50px !important;
	width:50px !important; 
}

.woocommerce div.product div.images .flex-control-thumbs li{
	width: fit-content;
}

.showcoupon,
.woocommerce-privacy-policy-link{
	color: #4f2c70;
    text-decoration: none;
}

.woocommerce-form-coupon #coupon_code{
	padding: 13px 20px !important;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    float: left;
}

/* added by Nikhil kumar Dogra */

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px
}

/* [class*="col-"] {
    padding: 0 10px;
    width: 100%
} */

@media(min-width:768px) {
    .col-md {
        flex: 1
    }

    .col-md-1 {
        width: 8.33%
    }

    .col-md-2 {
        width: 16.66%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-4 {
        width: 33.33%
    }

    .col-md-5 {
        width: 41.66%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-7 {
        width: 58.33%
    }

    .col-md-8 {
        width: 66.66%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-10 {
        width: 83.33%
    }

    .col-md-11 {
        width: 91.66%
    }

    .col-md-12 {
        width: 100%
    }
}

@media(min-width:992px) {
    .col-lg {
        flex: 1
    }

    .col-lg-1 {
        width: 8.33%
    }

    .col-lg-2 {
        width: 16.66%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-4 {
        width: 33.33%
    }

    .col-lg-5 {
        width: 41.66%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-7 {
        width: 58.33%
    }

    .col-lg-8 {
        width: 66.66%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-10 {
        width: 83.33%
    }

    .col-lg-11 {
        width: 91.66%
    }

    .col-lg-12 {
        width: 100%
    }
}

.category {
    width: fit-content;
    position: absolute;
    font-weight: normal;
    right: 20px;
    top: 20px;
}

.search-cards {
    display: flex;
    flex-wrap: wrap;
    margin: 18px
}

[class*="row-gap"] {
    row-gap: 20px
}

.blog-card__body a {
    text-decoration: none
}

.flex-single-ath-profile {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
    font-weight: 600;
    font-size: 22px
}

.flex-single-ath-profile img {
    border-radius: 50%;
    height: 80px;
    width: 80px;
    object-fit: cover
}

.contact-form-section {
    padding-block: 0
}

.contact-form-section form {
    max-width: 680px;
    border-radius: 12px;
    padding: 30px
}

.team-member-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 42px
}

.team-member-card {
    background: linear-gradient(180deg, rgba(0, 0, 0, .01) 0%, rgba(0, 0, 0, .15) 100%), #fff;
    border-radius: 20px;
    overflow: hidden;
    width: 320px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    box-shadow: 0 6px 32px rgba(32, 64, 128, .13);
    transition: box-shadow .25s, transform .25s;
    margin-bottom: 0
}

.team-member-card:hover {
    box-shadow: 0 12px 40px rgba(32, 64, 128, .22);
    transform: translateY(-6px) scale(1.025)
}

.team-member-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.team-member-info {
    position: relative;
    background: linear-gradient(to top, rgba(24, 28, 38, .83) 0%, rgb(24 28 38 / 81%) 60%, rgba(24, 28, 38, 0.0) 100%);
    padding: 24px 24px 22px 24px;
    color: #fff
}

.team-member-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    letter-spacing: .01em
}

.team-member-role {
    font-size: .94rem;
    font-weight: 400;
    opacity: .88;
    margin-bottom: 0;
    color: #dedede
}

@media (max-width:991px) {
    .team-member-list {
        gap: 18px
    }

    .team-member-card {
        width: 96vw;
        max-width: 350px;
        height: 370px
    }
}

@media (max-width:600px) {
    .team-member-list {
        flex-direction: column;
        align-items: center;
        gap: 20px
    }

    .team-member-card {
        width: 100%;
        max-width: 99vw;
        min-width: unset;
        height: 340px
    }

    .team-member-img {
        height: 100%
    }
}

.about-img, .about-split, .about-aside {
    display: flex;
    align-items: center;
    justify-content: center;
}

p {
margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.6vw, 1.02rem);
    line-height: 1.65;
    color: #5c5c66;
	}
a{
    text-decoration: none;
    color: var(--c-purple);
    font-weight: 700;
	}


.attribute-button {
  position: relative;
}

/* Tooltip box */
.attribute-button::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: #111;
    color: #fff;
    font-size: 12px;
    height: 25px;
    padding-inline: 10px;
    width: fit-content;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attribute-options[aria-label="Colour"] .attribute-button::after {
	bottom: 25px;
}

:is(.attribute-options[aria-label="Storage"], .attribute-options[aria-label="Size"]) .attribute-button::after {
	bottom: 150%;
}

/* Arrow */
.attribute-button::before {
  content: '';
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);

  border-width: 5px;
  border-style: solid;
  border-color: #111 transparent transparent transparent;

  opacity: 0;
  transition: all 0.2s ease;
}

/* Hover effect */
.attribute-button:hover::after,
.attribute-button:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.woocommerce-tabs table{
	border: 1px solid #ccc;
	margin-bottom: 30px !important
}

.woocommerce-tabs b{
	font-weight: 600 !important
}

.woocommerce-tabs .tab-title{
	font-size: 24px !important;
}

.woocommerce-tabs h3{
	font-size: 18px !important;
}

.woocommerce-tabs :is(h2, h3, .tab-title){
	margin-bottom: 15px !important
}

/* -----------site-woocommerce-pagination------------ */

.woocommerce-pagination ul :is(a, span) {
    border-radius: 50%;
    background: #EEEEEE;
    transition: all .3s;
}

.woocommerce-pagination ul a:hover,
.woocommerce-pagination ul span:hover,
.woocommerce-pagination ul span.current {
    background: var(--c-purple) !important;
    color: #fff;
    transition: all .3s;
}

.woocommerce-pagination ul :is(a, span):hover svg path {
    fill: #fff;
}

.woocommerce-pagination ul li a:hover{
	color: #fff !important;
}

.woocommerce-pagination ul {
    display: flex !important;
    justify-content: center;
    gap: 10px;
	flex-wrap: wrap;
    margin-top: 50px !important;
	border: none !important;
}

.woocommerce-pagination ul li :is(a, span) {
    height: 40px;
    width: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.woocommerce-pagination ul li{
	border: none !important
}

.woocommerce-pagination ul li span{
	color: #fff !important;
}

.woocommerce-page .woocommerce-pagination ul.page-numbers::before{
	content: unset !important
}


.single-blog main #tableofcontent {
    background: linear-gradient(
    145deg,
    color-mix(in srgb, #dbeafe 55%, #ffffff) 0%,
    color-mix(in srgb, var(--c-purple) 6%, #ffffff) 42%,
    #ffffff 100%
  );
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 3px solid var(--c-purple);
}

.single-blog main #tableofcontent .head-th {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    font-weight: 700;
}

.single-blog main #tableofcontent{
	margin: 0 !important;
}

.single-blog main #tableofcontent a {
    font-weight: normal;
    color: rgba(0, 0, 0, 70%);
}

.single-blog main #tableofcontent a:hover{
	color:  var(--c-purple);
	text-decoration: underline;
}

.single-blog main .accordion{
	margin-bottom:20px;
}

.single-blog main :is(ol, ul) li figure{
	margin-block:20px;
}

.single-blog main .sources{
	background: linear-gradient(145deg, 
color-mix(in srgb, #dbeafe 55%, #ffffff) 0%, 
color-mix(in srgb, var(--c-purple) 6%, #ffffff) 42%, #ffffff 100%);
    padding: 15px;
    border-left: 3px solid var(--c-purple);
}

/* ==========================================================================
   About Us — Why Trust Us (scoped to .about-trust-section)
   /about-us/ after team section — does not affect other page layouts
   ========================================================================== */
/* .about-trust-section {
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--c-yellow) 14%, #ffffff) 0%,
    color-mix(in srgb, var(--c-purple) 5%, #ffffff) 48%,
    #ffffff 100%
  );
} */

.about-trust-section {
  padding-block: clamp(2.75rem, 6vw, 4rem);
}

.about-trust-section + .about-communication-section {
  padding-top: clamp(1.5rem, 3vw, 2rem);
}

.about-trust-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.about-trust-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.35rem;
  max-width: 38rem;
}

.about-trust-section__title {
  margin: 0;
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
}

.about-trust-section__lead {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.7;
  color: #5c5c66;
}

.about-trust-section__visual {
  position: relative;
  min-height: clamp(18rem, 34vw, 26rem);
}

.about-trust-collage {
  position: relative;
  width: min(100%, 30rem);
  height: clamp(18rem, 34vw, 26rem);
  margin-inline: auto;
}

.about-trust-collage__item {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: none;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: none;
}

.about-trust-collage__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-trust-collage__item--1 {
  top: 0;
  left: 0;
  width: 72%;
  height: 46%;
  z-index: 2;
}

.about-trust-collage__item--2 {
  bottom: 8%;
  left: 4%;
  width: 42%;
  aspect-ratio: 1;
  z-index: 3;
}

.about-trust-collage__item--3 {
  top: 18%;
  right: 0;
  width: 48%;
  height: 72%;
  z-index: 1;
}

@media (max-width: 991px) {
  .about-trust-section__grid {
    grid-template-columns: 1fr;
  }

  .about-trust-section__content {
    max-width: none;
  }

  .about-trust-section__visual {
    order: -1;
    min-height: clamp(16rem, 52vw, 22rem);
  }

  .about-trust-collage {
    width: min(100%, 24rem);
    height: clamp(16rem, 52vw, 22rem);
  }
}

@media (max-width: 575px) {
  .about-trust-section__content {
    gap: 1.1rem;
  }

  .about-trust-collage__item {
    border-radius: 0.75rem;
  }
}

/* ==========================================================================
   About Us — Communication Channels (scoped to .about-communication-section)
   /about-us/ after Why Trust Us — does not affect other page layouts
   ========================================================================== */
.about-communication-section {
  padding-block: clamp(2.75rem, 6vw, 4rem);
  background: linear-gradient(180deg, #faf9fc 0%, #ffffff 55%, #ffffff 100%);
}

.about-communication-section + .about-mission-section {
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.about-communication-section__intro {
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 3.5vw, 2.5rem);
  text-align: center;
}

.about-communication-section__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--c-purple);
}

.about-communication-section__lead {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
  line-height: 1.65;
  color: #5c5c66;
}

.about-communication-channels {
  max-width: 76rem;
  margin: 0 auto;
}

.about-communication-channels__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1.15rem, 2.5vw, 1.75rem);
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.about-communication-channels__column {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--c-purple) 12%, #e8eaef);
  background: #ffffff;
}

.about-communication-channels__column--youtube {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, #ff0000 4%, #ffffff) 0%,
    #ffffff 38%
  );
}

.about-communication-channels__column--blogs {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--c-purple) 5%, #ffffff) 0%,
    #ffffff 38%
  );
}

.about-communication-channels__column-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: clamp(1.45rem, 2.5vw, 2rem) clamp(1.25rem, 2vw, 1.75rem) 0.85rem;
  border-bottom: none;
}

.about-communication-channels__icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: none;
}

.about-communication-channels__icon--youtube {
  background: #ff0000;
  color: #ffffff;
  padding-left: 0.12rem;
}

.about-communication-channels__icon--blogs {
  background: var(--c-purple);
  color: #ffffff;
  font-size: 1.05rem;
}

.about-communication-channels__heading {
  margin: 0;
  text-align: center;
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 1.85vw, 1.18rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-purple);
}

.about-communication-channels__list {
  list-style: none;
  margin: 0;
  padding: clamp(0.85rem, 1.75vw, 1.15rem) clamp(1.15rem, 2vw, 1.65rem) clamp(0.5rem, 1vw, 0.75rem);
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.55rem;
}

.about-communication-channels__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.45vw, 0.96rem);
  line-height: 1.55;
  color: #4f5666;
}

.about-communication-channels__list li::before {
  content: "";
  flex-shrink: 0;
  width: 0.42rem;
  height: 0.42rem;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--c-purple);
}

.about-communication-channels__column--youtube .about-communication-channels__list li::before {
  background: #dc2626;
}

.about-communication-channels__column-foot {
  padding: 0 clamp(1.15rem, 2vw, 1.65rem) clamp(1.35rem, 2vw, 1.65rem);
  margin-top: auto;
  text-align: center;
}

.about-communication-channels__link {
  min-width: 11.5rem;
  padding: 0.62rem 1.35rem !important;
}

.about-communication-channels__column--youtube .about-communication-channels__link.product-btn-primary {
  background: #ff0000 !important;
}

.about-communication-channels__column--youtube .about-communication-channels__link.product-btn-primary:hover {
  background: color-mix(in srgb, #ff0000 88%, #000000) !important;
}

.about-communication-channels__link:focus-visible {
  outline: 2px solid var(--c-purple);
  outline-offset: 2px;
}

.about-communication-section__outro {
  max-width: 44rem;
  margin: clamp(1.75rem, 3vw, 2.25rem) auto 0;
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
  line-height: 1.7;
  text-align: center;
  color: #5c5c66;
}

@media (max-width: 767px) {
  .about-communication-channels__panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .about-communication-section__intro {
    text-align: left;
  }

  .about-communication-section__outro {
    text-align: left;
  }

  .about-communication-channels__column-head {
    align-items: flex-start;
  }

  .about-communication-channels__heading {
    text-align: left;
  }

  .about-communication-channels__column-foot {
    text-align: left;
  }
}

/* ==========================================================================
   About Us — Our Mission (scoped to .about-mission-section)
   /about-us/ after Communication Channels — does not affect other layouts
   ========================================================================== */
.about-mission-section {
  padding-block: clamp(2.75rem, 6vw, 4rem);
  background: #ffffff;
}

.about-mission-section + .site-section {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.about-mission-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.about-mission-section__visual {
  position: relative;
  min-height: clamp(18rem, 34vw, 26rem);
}

.about-mission-visual {
  position: relative;
  width: min(100%, 34rem);
  height: clamp(18rem, 34vw, 26rem);
  margin-inline: auto;
}

.about-mission-visual__main,
.about-mission-visual__inset {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: #ffffff;
}

.about-mission-visual__main {
  width: 100%;
  height: 100%;
  border: 2px solid color-mix(in srgb, var(--c-purple) 12%, #e8eaef);
}

.about-mission-visual__main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mission-visual__inset {
  position: absolute;
  right: -4%;
  bottom: 8%;
  width: 42%;
  height: 58%;
  border: 4px solid #ffffff;
  z-index: 2;
}

.about-mission-visual__inset img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mission-section__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 38rem;
}

.about-mission-section__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
}

.about-mission-section__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
  line-height: 1.7;
  color: #5c5c66;
}

.about-mission-section__list {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-mission-section__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.about-mission-section__check {
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  margin-top: 0.08rem;
  border-radius: 999px;
  background: var(--c-purple);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.about-mission-section__list-text {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.5vw, 0.98rem);
  font-weight: 600;
  line-height: 1.5;
  color: #2f3340;
}

@media (max-width: 991px) {
  .about-mission-section__grid {
    grid-template-columns: 1fr;
  }

  .about-mission-section__content {
    max-width: none;
  }

  .about-mission-section__visual {
    order: -1;
    min-height: clamp(16rem, 52vw, 22rem);
  }

  .about-mission-visual {
    width: min(100%, 26rem);
    height: clamp(16rem, 52vw, 22rem);
  }
}

@media (max-width: 575px) {
  .about-mission-section__content {
    gap: 0.9rem;
  }

  .about-mission-visual__main,
  .about-mission-visual__inset {
    border-radius: 0.75rem;
  }

  .about-mission-visual__inset {
    right: -2%;
    width: 44%;
  }
}

/* ==========================================================================
   About Us — Closing sections (Transparency, Final Words, Stay Tuned CTA)
   Scoped — after process-steps-section only
   ========================================================================== */
.process-steps-section + .about-transparency-section {
  padding-top: clamp(1.5rem, 3vw, 2rem);
}

.about-transparency-section,
.about-final-words-section {
  padding-block: clamp(2rem, 4vw, 2.75rem);
  background: #ffffff;
}

.about-transparency-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
}

.about-transparency-section .about-text-block {
  max-width: 38rem;
}

.about-transparency-section__visual {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 2px solid color-mix(in srgb, var(--c-purple) 12%, #e8eaef);
  box-shadow: 0 16px 36px rgba(79, 44, 112, 0.1);
  min-height: clamp(14rem, 28vw, 22rem);
}

.about-transparency-section__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(14rem, 28vw, 22rem);
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991px) {
  .about-transparency-section__grid {
    grid-template-columns: 1fr;
  }

  .about-transparency-section .about-text-block {
    max-width: none;
  }

  .about-transparency-section__visual {
    order: -1;
    max-width: 32rem;
    margin-inline: auto;
  }
}

.about-final-words-section {
  padding-top: 0;
}

.about-final-words-section .about-text-block {
  margin-inline: auto;
  text-align: center;
}

.about-transparency-section .about-text-block__title,
.about-final-words-section .about-text-block__title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--c-purple);
}

.about-transparency-section .about-text-block__text,
.about-final-words-section .about-text-block__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
  line-height: 1.75;
  color: #5c5c66;
}

.about-closing-cta-section {
  padding-block: clamp(2.75rem, 5vw, 3.75rem);
  background: linear-gradient(
    135deg,
    var(--c-purple) 0%,
    color-mix(in srgb, var(--c-purple) 82%, #000000) 100%
  );
}

.about-closing-cta {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.about-closing-cta__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.about-closing-cta__subline {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--c-yellow);
  letter-spacing: 0.03em;
}

@media (max-width: 575px) {
  .about-transparency-section,
  .about-final-words-section {
    padding-block: clamp(1.65rem, 5vw, 2rem);
  }

  .about-transparency-section .about-text-block__title,
  .about-final-words-section .about-text-block__title {
    margin-bottom: 0.85rem;
  }

  .about-closing-cta-section {
    padding-block: clamp(2.25rem, 7vw, 3rem);
  }
}

* ==========================================================================
   About Us — Review Process step flow (scoped to .about-review-process-section)
   /about-us/ second section only — does not affect other page layouts
   ========================================================================== */
.about-review-process-section {
  padding-block: clamp(2.75rem, 6vw, 4rem);
  background: linear-gradient(180deg, #faf9fc 0%, #ffffff 55%, #ffffff 100%);
}

.about-review-process-section .about-review-process__intro {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

.about-review-process-section .about-split__title {
  margin: 0 0 0.85rem;
  text-align: center;
  max-width: none;
}

.about-review-process-section .about-review-process__lead,
.about-review-process-section .about-review-process__outro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  color: #5c5c66;
}

.about-review-process-section .review-process-steps-wrap {
  margin: 2.25rem auto 1.75rem;
  max-width: 76rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-review-process-section .review-process-steps {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.15rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.about-review-process-section .review-process-steps__item {
  position: relative;
  flex: 1 1 0;
  min-width: 7.35rem;
  padding: 0 0.4rem 0.25rem;
  text-align: center;
  scroll-snap-align: start;
  --review-step-color: var(--c-purple);
}

.about-review-process-section .review-process-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.85rem;
  left: calc(50% + 1.85rem);
  width: calc(100% - 3.7rem);
  height: 2px;
  background: color-mix(in srgb, var(--c-purple) 18%, #e8eaef);
  pointer-events: none;
}

.about-review-process-section .review-process-steps__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(1.85rem - 4px);
  right: 0.2rem;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid color-mix(in srgb, var(--c-purple) 18%, #e8eaef);
  pointer-events: none;
}

.about-review-process-section .review-process-steps__badge {
  width: 3.7rem;
  height: 3.7rem;
  margin: 0 auto 0.85rem;
}

.about-review-process-section .review-process-steps__badge-disc {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c-purple) 10%, #ffffff);
  border: 2px solid var(--c-purple);
  color: var(--c-purple);
  box-shadow: none;
}

.about-review-process-section .review-process-steps__badge-disc[class*="--"]::before {
  content: "";
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

.about-review-process-section .review-process-steps__badge-disc--unboxing::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpath d='M3.27 6.96 12 12.01l8.73-5.05'/%3E%3Cpath d='M12 22.08V12'/%3E%3C/svg%3E");
}

.about-review-process-section .review-process-steps__badge-disc--hardware::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3Cpath d='M9 1v3M15 1v3M9 20v3M15 20v3M20 9h3M20 14h3M1 9h3M1 14h3'/%3E%3C/svg%3E");
}

.about-review-process-section .review-process-steps__badge-disc--accessories::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'/%3E%3Cpath d='M12 19v4'/%3E%3C/svg%3E");
}

.about-review-process-section .review-process-steps__badge-disc--software::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='2' width='14' height='20' rx='2'/%3E%3Cpath d='M12 18h.01'/%3E%3C/svg%3E");
}

.about-review-process-section .review-process-steps__badge-disc--performance::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
}

.about-review-process-section .review-process-steps__badge-disc--durability::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}

.about-review-process-section .review-process-steps__badge-disc--verdict::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3C/svg%3E");
}

.about-review-process-section .review-process-steps__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.76rem, 1.05vw, 0.9rem);
  font-weight: 700;
  line-height: 1.35;
  color: #2f3340;
}

@media (min-width: 75rem) {
  .about-review-process-section .review-process-steps {
    justify-content: space-between;
    overflow-x: visible;
  }

  .about-review-process-section .review-process-steps__item {
    min-width: 0;
  }
}

@media (max-width: 74.99rem) {
  .about-review-process-section .review-process-steps__item {
    flex: 0 0 8.25rem;
  }

  .about-review-process-section .review-process-steps__item:not(:last-child)::after,
  .about-review-process-section .review-process-steps__item:not(:last-child)::before {
    display: none;
  }
}

@media (max-width: 47.99rem) {
  .about-review-process-section .review-process-steps-wrap {
    padding-inline: 0.65rem;
  }

  .about-review-process-section .review-process-steps__item {
    flex-basis: 7.5rem;
  }
}

/* ==========================================================================
   About Us — Analysis pillars (third section, after review process)
   Scoped to .about-analysis-section — does not affect other layouts
   ========================================================================== */
.about-analysis-section {
  padding-block: clamp(2.75rem, 6vw, 4rem);
  background: #ffffff;
}

.about-analysis-section .about-analysis-section__intro {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.about-analysis-section .section-title {
  margin-bottom: 0.65rem;
}

.about-analysis-section .about-analysis-section__lead {
  margin: 0;
  color: #5c5c66;
}

.about-analysis-section .about-analysis-pillars-wrap {
  position: relative;
  max-width: 76rem;
  margin: 0 auto 2rem;
  padding: 0;
}

.about-analysis-section .about-analysis-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
  position: relative;
  z-index: 1;
}

.about-analysis-section .about-analysis-pillars__item {
  --pillar-accent: var(--c-purple);
  min-height: 10.5rem;
  display: flex;
  transform: none;
  transition: transform 0.2s ease;
}

.about-analysis-section .about-analysis-pillars__item:nth-child(even) {
  transform: none;
}

.about-analysis-section .about-analysis-pillars__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 0.85rem 1.1rem;
  text-align: center;
  border-radius: 0.85rem;
  border: 1px solid color-mix(in srgb, var(--c-purple) 12%, #e8eaef);
  background: linear-gradient(
    165deg,
    #ffffff 0%,
    color-mix(in srgb, var(--c-purple) 4%, #ffffff) 100%
  );
  box-shadow: none;
}

.about-analysis-section .about-analysis-pillars__item:hover,
.about-analysis-section .about-analysis-pillars__item:focus-within {
  transform: translateY(-0.15rem);
}

.about-analysis-section .about-analysis-pillars__item:nth-child(even):hover,
.about-analysis-section .about-analysis-pillars__item:nth-child(even):focus-within {
  transform: translateY(-0.15rem);
}

.about-analysis-section .about-analysis-pillars__item:hover .about-analysis-pillars__card,
.about-analysis-section .about-analysis-pillars__item:focus-within .about-analysis-pillars__card {
  border-color: color-mix(in srgb, var(--c-purple) 28%, #e8eaef);
  background: linear-gradient(
    165deg,
    #ffffff 0%,
    color-mix(in srgb, var(--c-purple) 8%, #ffffff) 100%
  );
  box-shadow: none;
}

.about-analysis-section .about-analysis-pillars__index {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-purple);
  background: color-mix(in srgb, var(--c-purple) 10%, #ffffff);
  border: 1.5px solid var(--c-purple);
}

.about-analysis-section .about-analysis-pillars__index[class*="--"]::before {
  content: "";
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}

.about-analysis-section .about-analysis-pillars__index--technical::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3Cpath d='M9 1v3M15 1v3M9 20v3M15 20v3M20 9h3M20 14h3M1 9h3M1 14h3'/%3E%3C/svg%3E");
}

.about-analysis-section .about-analysis-pillars__index--performance::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
}

.about-analysis-section .about-analysis-pillars__index--competitive::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 3h5v5'/%3E%3Cpath d='M8 3H3v5'/%3E%3Cpath d='M21 3l-7 7'/%3E%3Cpath d='M3 3l7 7'/%3E%3Cpath d='M16 21h5v-5'/%3E%3Cpath d='M8 21H3v-5'/%3E%3Cpath d='M21 21l-7-7'/%3E%3Cpath d='M3 21l7-7'/%3E%3C/svg%3E");
}

.about-analysis-section .about-analysis-pillars__index--pros-cons::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 6h13'/%3E%3Cpath d='M8 12h13'/%3E%3Cpath d='M8 18h13'/%3E%3Cpath d='M3 6h.01'/%3E%3Cpath d='M3 12h.01'/%3E%3Cpath d='M3 18h.01'/%3E%3C/svg%3E");
}

.about-analysis-section .about-analysis-pillars__index--value::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z'/%3E%3Cpath d='M7 7h.01'/%3E%3C/svg%3E");
}

.about-analysis-section .about-analysis-pillars__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  font-weight: 700;
  line-height: 1.35;
  color: #2f3340;
}

.about-analysis-section .about-analysis-section__outro {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  color: #5c5c66;
  padding-top: 0;
  border-top: none;
}

@media (max-width: 63.99rem) {
  .about-analysis-section .about-analysis-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-analysis-section .about-analysis-pillars__item:nth-child(even),
  .about-analysis-section .about-analysis-pillars__item:nth-child(odd) {
    transform: none;
  }

  .about-analysis-section .about-analysis-pillars__item {
    min-height: 10rem;
  }
}

@media (max-width: 47.99rem) {
  .about-analysis-section .about-analysis-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 29.99rem) {
  .about-analysis-section .about-analysis-pillars {
    grid-template-columns: 1fr;
  }

  .about-analysis-section .about-analysis-pillars__item {
    min-height: 0;
  }
}


@media (max-width: 56.24rem) {
  .about-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-split__visual {
    min-height: 14rem;
    order: -1;
    padding: 1rem;
    justify-content: center;
  }

  .about-split__image {
    max-width: 22rem;
    object-position: center;
  }

  .about-split__aside {
    padding-inline: max(1rem, calc((100vw - min(100vw - 2rem, 77rem)) / 2));
  }

  .about-split__content {
    padding-block: 0 0.25rem;
  }
}

/* Process steps — reuses .section-title, .product-btn-primary, .about-split__lead */
.process-steps-section {
  background: #ffffff;
  padding-block: 2.75rem 3.5rem;
}

.process-steps-section__title {
  text-align: center;
  margin: 0 auto 2.75rem;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(1.35rem, 5.5vw, 2.65rem);
  row-gap: 0;
  align-items: stretch;
}

.process-steps__cell {
  min-width: 0;
  position: relative;
  overflow: visible;
  padding-bottom: 1.1rem;
}

.process-step-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.process-step-card__surface {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.55rem 1.2rem 2rem;
  border: 1px solid var(--c-purple);
  border-radius: 0.65rem;
  background: #ffffff;
  box-shadow: none;
}

/* Ref: right vertical border stops short — open bottom-right corner */
.process-step-card__surface::after {
  content: "";
  position: absolute;
  top: 60%;
  right: -3px;
  bottom: -3px;
  width: 12px;
  background: #ffffff;
  z-index: 1;
  pointer-events: none;
}

.process-step-card__badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 5.15rem;
  height: 5.15rem;
  pointer-events: none;
  z-index: 3;
}

/* White disc + thick purple ring + purple icons + map-pin tail */
.process-step-card__badge-disc {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -54%);
  width: 3.2rem;
  height: 3.2rem;
  background: #ffffff;
  border: 2.5px solid var(--c-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-purple);
  box-sizing: border-box;
  z-index: 2;
  box-shadow: 0 0 0 5px #ffffff;
}

.process-step-card__badge-disc::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid var(--c-purple);
  z-index: 2;
}

.process-step-card__badge-disc svg {
  display: block;
  flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
}

.process-step-card__badge-disc[class*="--"]::before {
  content: "";
  display: block;
  width: 1.9rem;
  height: 1.9rem;
}

.process-step-card__badge-disc--community::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.process-step-card__badge-disc--review::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E");
}

.process-step-card__badge-disc--shop::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'/%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E");
}

.process-step-card__badge-disc--solutions::before {
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F2C70' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M12 2a7 7 0 0 0-4 12.7V17h8v-2.3A7 7 0 0 0 12 2z'/%3E%3C/svg%3E");
}

.process-step-card__heading {
  margin: 0 0 0.7rem;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.85vw, 1.14rem);
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
}

.process-step-card__text {
  margin: 0 0 1.15rem;
  flex: 1;
  text-align: center;
  max-width: none;
  color: #111111;
  font-weight: 400;
}

.process-step-card__pill {
  position: absolute;
  z-index: 4;
  bottom: 0;
  margin-bottom: -1rem;
  padding-inline: 1.2rem;
  font-weight: 600;
}

@media (max-width: 63.99rem) {
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.25rem, 4vw, 2.25rem);
    row-gap: 2.25rem;
  }
}

@media (max-width: 40rem) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Section typography */
.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: var(--text-xl);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.section-sub {
  margin: 0;
  color: var(--c-muted);
  font-size: var(--text-base);
}

/* Cards */
.card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--r-md);
  background: linear-gradient(165deg, #ffffff 0%, color-mix(in srgb, var(--c-surface) 96%, var(--c-accent) 1.5%) 100%);
  border: 1px solid var(--c-border);
  box-shadow: 0 0.0625rem 0 rgba(15, 23, 42, 0.04) inset, 0 0.75rem 1.5rem rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.card p {
  color: var(--c-muted);
  font-size: var(--text-sm);
}

.card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--c-accent-strong) 35%, var(--c-border));
  box-shadow: 0 0.0625rem 0 rgba(15, 23, 42, 0.05) inset, 0 1rem 2rem rgba(15, 23, 42, 0.07);
}

/* Buttons */
.btn {
  font: inherit;
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1.2;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible,
.nav-list a:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--c-accent-strong);
  color: #f8fafc;
  border-color: color-mix(in srgb, var(--c-accent-strong) 55%, #0f172a 45%);
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--c-accent-strong) 88%, #000000 12%);
  border-color: color-mix(in srgb, var(--c-accent-strong) 60%, #0f172a 40%);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}

.btn-ghost:hover {
  border-color: color-mix(in srgb, var(--c-text) 22%, var(--c-border));
  background: rgba(15, 23, 42, 0.04);
}

/* Video reviews (YouTube thumbnails + modal) */
.video-reviews-section {
  padding-block: 2.75rem 3.25rem;
  background: #ffffff;
}

.video-reviews-section__title {
  text-align: center;
  margin-bottom: 1.75rem;
}

.video-reviews-swiper {
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.video-reviews-swiper::-webkit-scrollbar {
  display: none;
}

.video-reviews-swiper .swiper-slide {
  height: auto;
}

.video-review-card {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: 1.05rem;
}

.video-review-card:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 3px;
}

.video-review-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 1.05rem;
  overflow: hidden;
  box-shadow: 0 0.35rem 1.1rem rgba(15, 23, 42, 0.1);
}

.video-review-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-review-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.42) 0%, transparent 52%);
  pointer-events: none;
}

.video-review-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 2.8rem;
  border-radius: 0.45rem;
  background: #ff0000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.9rem rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.video-review-card__play svg {
  margin-left: 0.2rem;
}

.video-review-modal {
  padding: 0;
  border: none;
  background: transparent;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
}

.video-review-modal::backdrop {
  background: rgba(15, 23, 42, 0.72);
}

.video-review-modal__shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  width: 100%;
  padding: 1.25rem;
  box-sizing: border-box;
}

.video-review-modal__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.video-review-modal__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
}

.video-review-modal__close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #111111;
  cursor: pointer;
  box-shadow: 0 0.2rem 0.65rem rgba(15, 23, 42, 0.15);
  transform: translateY(-100%);
  margin-bottom: 0.35rem;
}

@media (max-width: 40rem) {
  .video-review-modal__close {
    top: 0.35rem;
    right: 0.35rem;
    transform: none;
    background: rgba(15, 23, 42, 0.55);
    color: #f8fafc;
  }
}

.video-review-modal__close:focus-visible {
  outline: 2px solid var(--c-focus);
  outline-offset: 2px;
}

.video-review-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.65rem;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.35);
}

.video-review-modal__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

