/* ============================================================
   ABHAY AGENCIES — DESIGN SYSTEM & STYLES
   Premium Enterprise Web · Apple × Linear × Stripe Direction
   Palette: Navy #10367D · Sky Blue #74B4DA · Gray #EBEBEB
   ============================================================ */

/* ── 1. Custom Properties ─────────────────────────────────── */
:root {
  /* Colors */
  --color-primary: #FFD014;
  --color-primary-rgb: 255, 208, 20;
  --color-accent: #10367D;
  --color-accent-rgb: 16, 54, 125;
  --color-neutral: #EBEBEB;
  --color-neutral-rgb: 235, 235, 235;
  --color-section-bg-muted: #EBEBEB;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-text: #1A1A1A;
  --color-text-muted: #555555;
  --color-text-light: #EBEBEB;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-success: #22C55E;
  --color-warning: #F59E0B;
  --color-error: #EF4444;

  /* Typography – Consistent */
  --text-hero: clamp(2.5rem, 5vw, 2.5rem);
  --text-h1: clamp(2.25rem, 4vw, 2.5rem);
  --text-h2: clamp(1.75rem, 4vw, 2.5rem);
  --text-h3: clamp(1.5rem, 3vw, 1.75rem);
  --text-h4: 1.25rem;
  --text-h5: 1.1rem;
  --text-h6: 1rem;
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-caption: 0.75rem;

  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.6;
  --tracking-tight: -0.04em;
  --tracking-normal: 0;

  /* Spacing – 8px base, fluid */
  --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --space-sm: clamp(0.5rem, 1vw, 1rem);
  --space-md: clamp(1rem, 1.5vw, 1.5rem);
  --space-lg: clamp(1.5rem, 2vw, 2.5rem);
  --space-xl: clamp(2rem, 3vw, 4rem);
  --space-2xl: clamp(3rem, 5vw, 5rem);
  --space-section: clamp(3.5rem, 7vw + 1rem, 5rem);
  --space-container: clamp(1.25rem, 5vw, 5rem);

  /* Layout */
  --container-max: min(92vw, 1440px);
  --space-container: clamp(1rem, 4vw, 2.5rem);
  --nav-height: 72px;

  /* Shapes */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-card: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
  --radius-button: clamp(0.75rem, 0.5vw + 0.6rem, 1rem);
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.10);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, .03), 0 4px 16px rgba(0, 0, 0, .05);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 180ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "IBM Plex Mono", monospace, sans-serif;
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: var(--leading-tight);
}
h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); }
h5 { font-size: var(--text-h5); }
h6 { font-size: var(--text-h6); }

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ── 3. Layout Utilities ──────────────────────────────────── */
.container {
  width: var(--container-max);
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--space-container);
}

.section {
  padding-block: var(--space-section);
  background-color: #FFFFFF;
}

.section-eyebrow {
  display: inline-block;
  font-size: var(--text-caption);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.section-header {
  text-align: center;
  max-width: 1024px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}
.category-hero .section-header{margin-bottom: 5px;}

.section-header h2 {
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.section--navy .section-header h2,
.section--navy .section-header p {
  color: var(--color-white);
}

.section-header p {
  font-size: var(--text-body);
  color: var(--color-white);
  line-height: var(--leading-normal);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 {
  grid-template-columns: 1fr;
}

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

.grid--3 {
  grid-template-columns: 1fr;
}

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

.grid--4 {
  grid-template-columns: 1fr;
}

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

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

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

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

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

/* ── 4. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: var(--text-small);
  font-weight: 550;
  border-radius: var(--radius-button);
  transition: background-color var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn--primary {
  background-color: var(--color-primary);
  color: #1A1A1A;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(255, 208, 20, 0.35);
}

.btn--primary:hover {
  background-color: #e6b800;
  color: #1A1A1A;
  box-shadow: 0 6px 20px rgba(255, 208, 20, 0.45);
}

.btn--secondary {
  background-color: transparent;
  color: #1A1A1A;
  border: 1.5px solid #1A1A1A;
}

.btn--secondary:hover {
  background-color: #1A1A1A;
  color: var(--color-white);
}

.btn--accent {
  background-color: var(--color-primary);
  color: #1A1A1A;
  font-weight: 500;
}

.btn--accent:hover {
  background-color: #e6b800;
  color: #1A1A1A;
}

.btn--white {
  background-color: #FFFFFF;
  color: #1A1A1A;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
  background-color: #F5F5F5;
  color: #1A1A1A;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

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

.btn--ghost:hover {
  color: var(--color-primary);
  background-color: rgba(var(--color-primary-rgb), 0.05);
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: var(--text-caption);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-body);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── 5. Cards ─────────────────────────────────────────────── */
.card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  padding: var(--space-lg);
  transition: background-color var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card:hover {
    border-color: #A9A9A9;
}

.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--color-primary-rgb), 0.06);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card__title {
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: var(--leading-snug);
}

.card__desc {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

/* Product Card */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: background-color var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.product-card:hover {
    border-color: #A9A9A9;
}

.product-card__image {
  aspect-ratio: 3 / 3;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f6 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

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

.product-card {
  position: relative;
}



.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--buy {
  background: var(--color-primary);
  color: var(--color-white);
}

.badge--rent {
  background: #209A92;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.badge--category {
  background: rgba(var(--color-primary-rgb), 0.08);
  color: var(--color-primary);
}

/* CSS Anchor Positioning Enhancement using @supports */
@supports (anchor-name: --card-anchor) or (position-anchor: --card-anchor) {
  .product-card {
    anchor-name: --card-anchor;
  }

  .product-card__badge {
    position: absolute;
    position-anchor: --card-anchor;
    top: anchor(top 12px);
    left: anchor(left 12px);
  }
}

.product-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  font-size: var(--text-caption);
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.product-card__name {
  font-size: calc(var(--text-body) * 0.95);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: var(--leading-snug);
}

.product-card__price {
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  margin-top: auto;
}

.product-card__price span {
   font-size: var(--text-body);
  font-weight: 500;
  /* color: var(--color-primary); */
}

.product-card__actions {
  display: flex;
  gap: 0.5rem;
}

.product-card__actions .btn {
  flex: 1;
  padding: 0.65rem 1rem;
}

/* ── 6. Top Utility Bar ───────────────────────────────────── */
.utility-bar {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-caption);
  padding: 0.5rem 0;
  position: relative;
  z-index: 100;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.utility-bar__left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.utility-bar__left svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.utility-bar__right a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--duration-fast) ease;
}

.utility-bar__right a:hover {
  color: var(--color-white);
}

.utility-bar__right svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.utility-bar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

/* ── 7. Sticky Header ────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--duration-normal) var(--ease-smooth);
  height: var(--nav-height);
}

.header.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.header__logo-img {
  height: auto;
  width: auto;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

.header__nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.header__nav .nav-item>a {
  height: 100%;
  padding: 0;
  font-size: 0.875rem;
  /* 14px */
  font-weight: 600;
  color: #2F353B;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color var(--duration-fast) var(--ease-smooth);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
}

.header__nav .nav-item>a svg {
  margin-top: 1px;
}

.header__nav .nav-item>a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  /* Align with bottom of header if needed, or slightly offset */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #209A92;
  /* Teal color from image */
  transform: scaleX(0);
  transition: transform var(--duration-fast) var(--ease-out);
  transform-origin: left;
}

.header__nav .nav-item:hover>a,
.header__nav .nav-item.active>a {
  color: #209A92;
  /* Match the teal color on active */
}

.header__nav .nav-item:hover>a::after,
.header__nav .nav-item.active>a::after {
  transform: scaleX(1);
}

.header__nav .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0%;
  transform: translateX(-50%) translateY(10px);
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 1.25rem 1.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: background-color var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}

.dropdown-menu--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  min-width: 420px;
}

.dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dropdown-list li {
  display: flex;
  align-items: center;
}

.dropdown-list li::before {
  content: '•';
  color: #999999;
  font-size: 1.5rem;
  margin-right: 0.5rem;
  line-height: 0.5;
}

.dropdown-list a {
  font-size: 0.875rem;
  /* 14px */
  font-weight: 500;
  color: #4A4A4A;
  transition: color var(--duration-fast) ease;
  white-space: nowrap;
}

.dropdown-list a:hover {
  color: #209A92;
}

.btn-support {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #F8F9FA;
  color: #2F353B;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  /* Pill shape */
  border: 1px solid #EAEAEA;
  transition: all var(--duration-fast) ease;
}

.btn-support:hover {
  background-color: #EEEEEE;
  border-color: #DDDDDD;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-muted);
  font-size: var(--text-small);
  font-weight: 500;
}

.header__phone svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.header__phone:hover {
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: all var(--duration-fast) ease;
}

/* ── 8. Global Reusable Slider & Hero Section ────────────── */
.hero--slider {
  position: relative;
  min-height: calc(100vh - var(--nav-height, 72px));
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background-color: #FFFFFF;
}

.global-slider {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--nav-height, 72px));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.global-slider__slides {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--nav-height, 72px));
  display: flex;
  align-items: center;
}

.global-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
  display: flex;
  align-items: center;
  z-index: 1;
}

.global-slider__slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* Slide Fullscreen Background & Cloud Overlay */
.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
  z-index: 0;
}

.hero-slide__bg--rental {
  background-image: url('../images/hero-seciton-banner%20(1).png');
}

.hero-slide__bg--selling {
  background-image: url('../images/hero-seciton-banner%20(2).png');
}

.global-slider__slide.active .hero-slide__bg {
  transform: scale(1);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  /* Soft 60-70% light overlay over text area, transparent reveal for image side */
  background: linear-gradient(90deg,
      rgba(240, 244, 249, 0.70) 0%,
      rgba(240, 244, 249, 0.65) 38%,
      rgba(240, 244, 249, 0.45) 55%,
      rgba(240, 244, 249, 0.15) 72%,
      transparent 85%);
  z-index: 1;
}

.hero-slide__overlay--right {
  /* Soft 60-70% light overlay over right text area, transparent reveal for left side image */
  background: linear-gradient(270deg,
      rgba(240, 244, 249, 0.70) 0%,
      rgba(240, 244, 249, 0.65) 38%,
      rgba(240, 244, 249, 0.45) 55%,
      rgba(240, 244, 249, 0.15) 72%,
      transparent 85%);
}

.hero-slide__container {
  position: relative;
  z-index: 2;
  padding-block: var(--space-2xl);
  width: 100%;
}

.hero-slide__content-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.hero-slide__content-wrapper--right {
  justify-content: flex-end;
}

.hero-slide__text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
}

.hero__badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
}

.eyebrow-highlight {
  background: #209A92;
  color: #fff;
  font-weight: 500;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__badge-tag span:last-child {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-accent, #10367D);
  text-transform: uppercase;
}

.hero__desc {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

/* Right / Left Visual Card */
.hero-card-visual {
  position: relative;
  background: #FFFFFF;
  border-radius: clamp(16px, 2vw, 24px);
  padding: 2.2rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.hero-card-visual img {
  max-height: 340px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.hero-card-visual__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-accent, #10367D);
  color: var(--color-primary, #FFD014);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hero-card-visual__tag--accent {
  background: var(--color-primary, #FFD014);
  color: #1A1A1A;
}

/* Slider Arrow Navigation Controls — Hidden per user request */
.global-slider__prev,
.global-slider__next {
  display: none !important;
}

.global-slider__prev svg,
.global-slider__next svg {
  width: 20px;
  height: 20px;
}

/* Slider Pagination Dots */
.global-slider__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.global-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.global-slider__dot.active {
  width: 32px;
  border-radius: 999px;
  background: var(--color-accent, #10367D);
}

@media (max-width: 992px) {

  .hero-slide__grid,
  .hero-slide__grid--switched {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-slide__visual-col {
    order: -1;
  }

  .global-slider__prev,
  .global-slider__next {
    display: none;
  }
}

.hero__content--centered {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Rating badge */
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.hero__rating-group {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__rating-score {
  font-weight: 500;
  color: var(--color-text);
}

.hero__rating-stars {
  display: inline-flex;
  gap: 2px;
}

.hero__rating-stars svg {
  width: 15px;
  height: 15px;
}

.hero__rating-text {
  font-weight: 450;
  color: #666;
}

/* Owner-style Headline */
.hero__title {
  font-size: var(--text-h1);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #1A1A1A;
  margin-bottom: var(--space-xl);
  max-width: 820px;
}

/* Pill Search / Quote Bar */
.hero__search-bar {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 520px;
  background: #FFFFFF;
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: var(--space-md);
  transition: box-shadow var(--duration-normal) ease;
  position: relative;
  z-index: 200;
}

.hero__search-bar:focus-within {
  box-shadow: 0 14px 44px rgba(16, 54, 125, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: rgba(16, 54, 125, 0.2);
}

.hero__search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: var(--text-body);
  color: var(--color-text);
  min-width: 0;
}

.hero__search-bar input::placeholder {
  color: #999999;
}

.hero__search-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary, #FFD014);
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero__search-btn:hover {
  transform: scale(1.06);
  background-color: #e6b800;
}

.hero__search-btn svg {
  width: 20px;
  height: 20px;
}

.btn--owner-cta {
  background-color: var(--color-primary);
  color: #1A1A1A;
  font-weight: 500;
  font-size: var(--text-small);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
}

.btn--owner-cta:hover {
  background-color: #e6b800;
  color: #1A1A1A;
}

.btn--owner-cta svg {
  width: 16px;
  height: 16px;
}

/* Sub-trust text */
.hero__trust-strip {
  font-size: var(--text-caption);
  color: #555555;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Centered Device Preview */
.hero__preview-container {
  width: 100%;
  max-width: 1000px;
  margin-top: var(--space-md);
}

.hero__preview-card {
  background: #F8F9FC;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  padding: var(--space-xl);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__preview-card img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: background-color var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── 8. Hero Section ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 40%, #e8f0fe 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 140%;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--space-2xl);
  padding-block: var(--space-2xl);
}

.hero__content {
  max-width: 1024px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(var(--color-primary-rgb), 0.06);
  border-radius: var(--radius-pill);
  font-size: var(--text-caption);
  font-weight: 550;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(var(--color-primary-rgb), 0.08);
}

.hero__eyebrow svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: var(--text-hero);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.hero h1 span {
  color: var(--color-primary);
}
.hero h1 span.text-yellow{color: #545454;}

.hero__subhead {
  font-size: clamp(1.05rem, 0.5vw + 0.9rem, 1.2rem);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--space-xl);
}

/* Trust strip */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-caption);
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero__trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

.hero__trust-item strong {
  color: var(--color-text);
  font-weight: 500;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-neutral);
  aspect-ratio: 4 / 3;
}

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

.hero__float-card {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  border: 1px solid var(--color-border);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

  50% {
    transform: translateY(-8px);
  }
}

.hero__float-card__icon {
  width: 42px;
  height: 42px;
  background: rgba(var(--color-primary-rgb), 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.hero__float-card__icon svg {
  width: 22px;
  height: 22px;
}

.hero__float-card__text {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
}

.hero__float-card__text strong {
  display: block;
  font-size: var(--text-small);
  color: var(--color-text);
  font-weight: 500;
}

/* ── 9. Trusted By — Light Brand Grid Marquee ───────────────────── */
.trusted-by--themed {
  background-color: #FFFFFF;
  background-size: 24px 24px;
  padding-block: 2.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.trusted-by__container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: var(--space-container);
}

/* Left badge styling */
.trusted-by__badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text);
  flex-shrink: 0;
  padding-right: 0.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.trusted-by__laurel {
  width: 20px;
  height: 36px;
  color: var(--color-text);
  opacity: 0.75;
}

.trusted-by__laurel--right {
  transform: scaleX(-1);
}

.trusted-by__badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.trusted-by__badge-text strong {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.trusted-by__badge-text span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* Marquee wrapper with gradient edge masks */
.trusted-by__marquee-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  /* Fading edges mask */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.trusted-by__marquee-track {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  animation: marquee-infinite 30s linear infinite;
  will-change: transform;
}

.trusted-by__marquee-wrapper:hover .trusted-by__marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-infinite {
  0% {
    transform: translateX(0);
  }

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

.trusted-by__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0.5rem;
  flex-shrink: 0;
}

.trusted-by__logo img {
  max-height: 100px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.trusted-by__logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

/* ── 10. Why Rent Split Collage Section ───────────────────── */
.why-rent-split {
  padding-block: calc(var(--space-section) * 1.1);
  background-color: #FFFFFF;
}

.why-rent-split__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.why-rent-split__title {
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.why-rent-split__desc {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

/* 2x2 Feature Grid with divider lines */
.why-rent-split__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: var(--space-lg);
}

.why-rent-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-rent-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0000000f;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.why-rent-feature__icon svg {
  width: 22px;
  height: 22px;
}

.why-rent-feature h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.why-rent-feature p {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
}

/* Right Column: Asymmetrical Image Collage */
.why-rent-split__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 460px;
}

.why-rent-collage__tall {
  height: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  background: #F8F9FC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.why-rent-collage__tall img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-rent-collage__stacked {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 100%;
}

.why-rent-collage__img {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* ── 11. Renting Timeline (SunOver Style) ─────────────────── */
.renting-timeline {
  padding-block: calc(var(--space-section) * 1.2);
  background-color: #050505;
  /* Deep Webflow Black */
}

.renting-timeline__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
}

@media (min-width: 992px) {
  .renting-timeline__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.renting-timeline__left {
  position: relative;
  padding-right: var(--space-lg);
}

.renting-timeline__title {
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-bottom: var(--space-md);
}

.renting-timeline__title span {
  font-weight: 500;
  color: #FFD014;
}

.renting-timeline__desc {
  font-size: var(--text-body);
  color: #A1A1AA;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

/* Right Column Card Container */
.renting-timeline__right {
  width: 100%;
}

.renting-timeline__card {
  background: #111111;
  border-radius: clamp(1.25rem, 2vw, 1.75rem);
  padding: clamp(2rem, 3vw, 3.2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.renting-timeline__step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
}

.renting-step__num {
  font-size: 1.25rem;
  font-weight: 500;
  color: #eab308;
  font-family: inherit;
  padding-top: 2px;
  min-width: 28px;
}

.renting-step__content {
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.renting-step__content h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.renting-step__content p {
  font-size: var(--text-small);
  color: #A1A1AA;
  line-height: 1.5;
}

/* ── 12. Client Feedback Masonry Section ──────────────────── */
.feedback-masonry {
  position: relative;
  padding-block: calc(var(--space-section) * 1.2);
  background-color: var(--color-section-bg-muted);
}

.feedback-masonry::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background-color: var(--color-section-bg-muted);
  border-top-left-radius: clamp(32px, 5vw, 64px);
  border-top-right-radius: clamp(32px, 5vw, 64px);
  pointer-events: none;
}

.feedback-masonry__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: var(--space-2xl);
  align-items: center;
}

/* Left Column Cards */
/* Left Column Container with Atmospheric Cloud Fade Mask (2-Card Viewport) */
.feedback-masonry__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  height: 380px;
  overflow: hidden;
  position: relative;
  /* Soft atmospheric cloud fade mask: 100% opacity center, 0% at edges */
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.feedback-masonry__col {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.feedback-track {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  will-change: transform;
}

/* Column 1 (Left Stack): Upward continuous seamless loop */
.feedback-track--up {
  animation: marquee-vertical-up 24s linear infinite;
}

/* Column 2 (Right Stack): Downward continuous seamless loop */
.feedback-track--down {
  animation: marquee-vertical-down 24s linear infinite;
}

/* Pause marquee animation on hover */
.feedback-masonry__cards:hover .feedback-track {
  animation-play-state: paused;
}

/* Keyframe animations with exact gap calculation to prevent jump */
@keyframes marquee-vertical-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-50% - (var(--space-md) / 2)));
  }
}

@keyframes marquee-vertical-down {
  0% {
    transform: translateY(calc(-50% - (var(--space-md) / 2)));
  }

  100% {
    transform: translateY(0);
  }
}

.feedback-masonry__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feedback-masonry__col:nth-child(2) {
  padding-top: var(--space-xl);
}

.feedback-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform var(--duration-normal) ease, box-shadow var(--duration-normal) ease;
}

.feedback-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.feedback-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.feedback-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #209A92;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feedback-card__meta {
  display: flex;
  flex-direction: column;
}

.feedback-card__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.2;
}

.feedback-card__role {
  font-size: 0.75rem;
  color: #888888;
  line-height: 1.3;
}

.feedback-card__text {
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.55;
}

/* Right Column Content */
.feedback-masonry__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: var(--space-md);
}

.feedback-masonry__title {
  font-size: var(--text-h2);
  font-weight: 500;
  letter-spacing: -0.035em;
  color: #1A1A1A;
  margin-bottom: var(--space-md);
}

.feedback-masonry__desc {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 420px;
}

.feedback-track {
  gap: var(--space-md);
  display: flex;
  flex-direction: column;
}

.btn--discover {
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  border: 1.5px solid #1A1A1A;
  color: #1A1A1A;
  font-weight: 600;
  background: transparent;
  transition: all var(--duration-normal) ease;
}

.btn--discover:hover {
  background: #1A1A1A;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .feedback-masonry__grid {
    grid-template-columns: 1fr;
  }

  .feedback-masonry__cards {
    grid-template-columns: 1fr;
  }

  .feedback-masonry__col:nth-child(2) {
    padding-top: 0;
  }

  .feedback-masonry__content {
    padding-left: 0;
    order: -1;
  }
}

.trusted-by__cta {
  text-align: center;
  margin-top: var(--space-md);
}

.trusted-by__cta a {
  font-size: var(--text-caption);
  font-weight: 550;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.trusted-by__cta a:hover {
  color: var(--color-accent);
}

.trusted-by__cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast) ease;
}

.trusted-by__cta a:hover svg {
  transform: translateX(3px);
}

/* ── 10. Shop by Category ─────────────────────────────────── */
.category-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  padding: var(--space-lg);
  text-align: center;
  transition: background-color var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.02), rgba(var(--color-accent-rgb), 0.04));
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(var(--color-accent-rgb), 0.3);
}

.category-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.08), rgba(var(--color-accent-rgb), 0.12));
  border-radius: 18px;
  margin: 0 auto var(--space-md);
  color: var(--color-primary);
  position: relative;
  z-index: 1;
}

.category-card__icon svg {
  width: 32px;
  height: 32px;
}

.category-card__title {
  font-size: var(--text-h3);
  font-weight: 620;
  color: var(--color-text);
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

.category-card__desc {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  position: relative;
  z-index: 1;
}

/* ── 11. Why Choose Us — Value Props ──────────────────────── */
.value-card {
  padding: var(--space-lg);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: background-color var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(var(--color-accent-rgb), 0.3);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--color-primary-rgb), 0.06);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
}

.value-card__title {
  font-size: calc(var(--text-body) * 1.05);
  font-weight: 620;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.value-card__desc {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

/* Product Card Price Styling */
.product-card__price {
  font-size: 1.35rem;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.product-card__price ins,
.product-detail-price ins,
.product-card-related-price ins,
.ajax-search-price ins,
.woocommerce-Price-amount ins,
ins {
  text-decoration: none !important;
}

.product-card__price span {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ── 12. Product Sections (Printers & Accessories) ────────── */
.section-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Brand strip */
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.brand-strip__label {
  width: 100%;
  text-align: center;
  font-size: var(--text-caption);
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.brand-strip__item {
  padding: 0.4rem 1rem;
  font-size: var(--text-caption);
  font-weight: 550;
  color: var(--color-text-muted);
  background: var(--color-neutral);
  border-radius: var(--radius-pill);
  transition: all var(--duration-fast) ease;
  cursor: pointer;
}

.brand-strip__item:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ── 13. Enterprise Solutions ─────────────────────────────── */
.enterprise-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  transition: background-color var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
}

.enterprise-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(var(--color-accent-rgb), 0.3);
}

.enterprise-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--color-accent-rgb), 0.15);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.enterprise-card__icon svg {
  width: 24px;
  height: 24px;
}

.enterprise-card__title {
  font-size: calc(var(--text-body) * 1.05);
  font-weight: 620;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.enterprise-card__desc {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--leading-normal);
}

/* ── 14. Rental Plans — Process Steps ─────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  opacity: 0.2;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), #1a4ca0);
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 500;
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.25);
}

.process-step__title {
  font-size: calc(var(--text-body) * 1.02);
  font-weight: 620;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.process-step__desc {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

/* ── 15. Service & Support ────────────────────────────────── */
.support-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-card);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: background-color var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
}

.support-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.support-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.08), rgba(var(--color-accent-rgb), 0.12));
  border-radius: 16px;
  margin: 0 auto var(--space-md);
  color: var(--color-primary);
}

.support-card__icon svg {
  width: 28px;
  height: 28px;
}

.support-card__title {
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.support-card__desc {
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.support-trust {
  text-align: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  font-style: italic;
}

/* ── 16. Testimonials ─────────────────────────────────────── */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  padding: var(--space-lg);
  transition: background-color var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-sm);
  color: #FBBF24;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-card__quote {
  font-size: var(--text-body);
  color: var(--color-text);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-md);
  flex: 1;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 500;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__info {
  font-size: var(--text-small);
}

.testimonial-card__name {
  font-weight: 620;
  color: var(--color-text);
}

.testimonial-card__company {
  color: var(--color-text-muted);
  font-size: var(--text-caption);
}

/* ── 17. Floating Avatars CTA Section ────────────────────── */
.cta-section {
  position: relative;
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  background-color: #050505;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #050505;
  border-top-left-radius: clamp(32px, 5vw, 64px);
  border-top-right-radius: clamp(32px, 5vw, 64px);
  pointer-events: none;
}

.cta-section .container {
  width: 100%;
  max-width: 100%;
}

.cta-card {
  padding: clamp(3rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.cta-card__content {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-card__title {
  font-size: var(--text-h2);
  font-weight: 750;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.cta-card__sub {
  font-size: 1.05rem;
  color: #A1A1AA;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-card__actions {
  display: flex;
  justify-content: center;
}

.btn--black-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #111111;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--black-pill:hover {
  background: #252525;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
}

/* Floating Avatar Bubbles */
.cta-avatar {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.cta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07), 0 2px 5px rgba(0, 0, 0, 0.03);
  display: block;
}

.cta-avatar__label {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  background: #252525;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.cta-avatar__label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 4px 0;
  border-style: solid;
  border-color: #252525 transparent transparent transparent;
}

.cta-avatar:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

/* Position Left Bubbles — Random Out-of-Sync Motions */
.cta-avatar--left-1 {
  width: 54px;
  height: 54px;
  top: 16%;
  left: 6%;
  background: #E8EEF9;
  animation: cta-float-1 8.5s ease-in-out -2.3s infinite alternate;
}

.cta-avatar--left-2 {
  width: 62px;
  height: 62px;
  top: 10%;
  left: 20%;
  background: #FDE8E8;
  color: #D32F2F;
  animation: cta-float-2 11.2s ease-in-out -5.7s infinite alternate;
}

.cta-avatar--left-3 {
  width: 58px;
  height: 58px;
  top: 48%;
  left: 12%;
  background: #FFF4E5;
  color: #E65100;
  animation: cta-float-3 7.8s ease-in-out -1.1s infinite alternate;
}

.cta-avatar--left-4 {
  width: 50px;
  height: 50px;
  bottom: 12%;
  left: 7%;
  background: #E8F5E9;
  color: #2E7D32;
  animation: cta-float-4 12.5s ease-in-out -7.4s infinite alternate;
}

.cta-avatar--left-5 {
  width: 60px;
  height: 60px;
  bottom: 25%;
  left: 22%;
  background: #FFF3E0;
  animation: cta-float-2 10.5s ease-in-out -2.5s infinite alternate;
}

/* Position Right Bubbles — Random Out-of-Sync Motions */
.cta-avatar--right-1 {
  width: 62px;
  height: 62px;
  top: 12%;
  right: 18%;
  background: #F3E5F5;
  color: #7B1FA2;
  animation: cta-float-3 9.4s ease-in-out -3.8s infinite alternate;
}

.cta-avatar--right-2 {
  width: 50px;
  height: 50px;
  top: 20%;
  right: 7%;
  background: #E0F7FA;
  color: #00838F;
  animation: cta-float-1 10.8s ease-in-out -8.9s infinite alternate;
}

.cta-avatar--right-3 {
  width: 58px;
  height: 58px;
  top: 48%;
  right: 11%;
  background: #FFFDE7;
  color: #F57F17;
  animation: cta-float-4 8.1s ease-in-out -0.6s infinite alternate;
}

.cta-avatar--right-4 {
  width: 64px;
  height: 64px;
  bottom: 10%;
  right: 16%;
  background: #E8EAF6;
  color: #283593;
  animation: cta-float-2 11.8s ease-in-out -4.2s infinite alternate;
}

.cta-avatar--right-5 {
  width: 56px;
  height: 56px;
  bottom: 32%;
  right: 22%;
  background: #FBE9E7;
  animation: cta-float-1 9.8s ease-in-out -1.2s infinite alternate;
}

/* Organic Asynchronous Keyframe Variations */
@keyframes cta-float-1 {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) translateX(2px) rotate(0.8deg);
  }

  100% {
    transform: translateY(3px) translateX(-2px) rotate(-0.5deg);
  }
}

@keyframes cta-float-2 {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  50% {
    transform: translateY(5px) translateX(-3px) rotate(-0.7deg);
  }

  100% {
    transform: translateY(-4px) translateX(2px) rotate(0.6deg);
  }
}

@keyframes cta-float-3 {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) translateX(-2px) rotate(-0.9deg);
  }

  100% {
    transform: translateY(4px) translateX(3px) rotate(0.4deg);
  }
}

@keyframes cta-float-4 {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  50% {
    transform: translateY(4px) translateX(3px) rotate(0.5deg);
  }

  100% {
    transform: translateY(-6px) translateX(-2px) rotate(-0.7deg);
  }
}

@media (max-width: 768px) {
  .cta-avatar {
    display: none;
  }
}

/* ── 18. Footer (Dark Charcoal Theme) ─────────────────────── */
.footer {
  background: #545454;
  color: rgba(255, 255, 255, 0.9);
  padding-top: var(--space-section);
  position: relative;
  z-index: 10;
}

.footer::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #545454;
  border-top-left-radius: clamp(32px, 5vw, 64px);
  border-top-right-radius: clamp(32px, 5vw, 64px);
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  margin-bottom: var(--space-sm);
}

.footer__logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__desc {
  font-size: var(--text-small);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.6);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--duration-fast) ease;
}

.footer__social a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__col-title {
  font-size: var(--text-small);
  font-weight: 620;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration-fast) ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.footer__links a:hover {
  color: var(--color-white);
  transform: translateX(3px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-neutral-rgb);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact-item a:hover {
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom-links a:hover {
  color: var(--color-white);
}

/* ── 19. Floating WhatsApp ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: background-color var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.1);
  }

  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  }
}

/* ── 20. Quote Modal ──────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-card);
  width: 100%;
  max-width: 480px;
  padding: var(--space-xl);
  position: relative;
  transform: translateY(24px) scale(0.96);
  transition: transform var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-neutral);
  color: var(--color-text-muted);
  transition: all var(--duration-fast) ease;
}

.modal__close:hover {
  background: var(--color-text);
  color: var(--color-white);
}

.modal__close svg {
  width: 18px;
  height: 18px;
}

.modal h3 {
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.modal p {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--text-caption);
  font-weight: 550;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-small);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--duration-fast) ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Callback mini form */
.callback-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: var(--space-md) auto 0;
}

.callback-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-button);
  font-size: var(--text-small);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: border-color var(--duration-fast) ease;
}

.callback-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.callback-form input:focus {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.12);
}

/* ── 21. Scroll Reveal Animations ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal-stagger.visible>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(1) {
  transition-delay: 0ms;
}

.reveal-stagger.visible>*:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-stagger.visible>*:nth-child(3) {
  transition-delay: 160ms;
}

.reveal-stagger.visible>*:nth-child(4) {
  transition-delay: 240ms;
}

.reveal-stagger.visible>*:nth-child(5) {
  transition-delay: 320ms;
}

.reveal-stagger.visible>*:nth-child(6) {
  transition-delay: 400ms;
}

/* ── 22. Mobile Navigation ────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--color-white);
  z-index: 105;
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
  transition: right var(--duration-normal) var(--ease-out);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--duration-fast) ease;
}

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

.mobile-nav .btn {
  margin-top: var(--space-md);
  width: 100%;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── 24. Blog Section Cards (Minimalist Rounded Image) ───── */
.blog-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-normal) var(--ease-out);
}

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

.blog-card__image {
  aspect-ratio: 4 / 3;
  border-radius: clamp(1.25rem, 2.5vw, 1.85rem);
  overflow: hidden;
  background: #F8F9FC;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: var(--space-md);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.blog-card__body {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.blog-card__date {
  font-size: 0.82rem;
  font-weight: 500;
  color: #888888;
  margin-bottom: 0.4rem;
}

.blog-card__title {
  font-size: var(--text-h3);
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.28;
  letter-spacing: -0.015em;
  transition: color var(--duration-fast) ease;
}

.blog-card:hover .blog-card__title {
  color: var(--color-primary);
}

/* ============================================================
   BOTTOM SHEET MOBILE NAVIGATION
   ============================================================ */
.bottom-sheet-scrim {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.bottom-sheet-scrim.active {
  opacity: 1;
  visibility: visible;
}

.bottom-sheet-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 88vh;
  touch-action: none;
  user-select: none;
}

.bottom-sheet-drawer.active {
  transform: translateY(0);
}

.bottom-sheet-drag-area {
  padding: 12px 0 6px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
  width: 100%;
}

.bottom-sheet-drag-area:active {
  cursor: grabbing;
}

.bottom-sheet-handle {
  width: 40px;
  height: 4px;
  background-color: #d1d5db;
  border-radius: 9999px;
}

.bottom-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 24px 12px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.bottom-sheet-title {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.bottom-sheet-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f5f7;
  border: none;
  font-size: 18px;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bottom-sheet-body {
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.bottom-sheet-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* CSS Nesting Example */
.bottom-sheet-link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 24px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: background-color 0.15s ease;
  position: relative;

  &:active {
    background-color: #f5f5f7;
  }

  &.active {
    color: var(--color-warning, #10367D);

    &::after {
      content: '';
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 8px;
      height: 2px;
      background-color: var(--color-warning, #10367D);
    }
  }
}

/* Mobile Dropdown Menu */
.mobile-dropdown-toggle {
  width: 100%;
  text-align: left;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.is-open svg {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #f8f9fa;
  border-radius: 8px;
  margin-inline: 16px;
}

.mobile-dropdown-menu.is-open {
  max-height: 300px;
  padding: 8px 0;
  margin-bottom: 8px;
}

.mobile-dropdown-menu li a {
  display: block;
  padding: 10px 16px 10px 32px;
  font-size: 15px;
  color: #4A4A4A;
  text-decoration: none;
  font-weight: 500;
}

.mobile-dropdown-menu li a:active {
  background-color: #f0f0f2;
}

.bottom-sheet-footer {
  padding: 16px 24px 24px 24px;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  position: sticky;
  bottom: 0;
}

.btn--full {
  width: 100%;
}

/* ========== NEW SECTION: TWO WAYS ========== */
.two-ways__header {
  text-align: center;
  margin-bottom: 3rem;
}

.two-ways__title {
  font-size: var(--text-h2);
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1A1A1A;
}

.text-yellow {
  color: #545454;
}

.two-ways__desc {
  color: #555555;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.two-ways__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .two-ways__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.two-ways__card {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid #EBEBEB;
  transition: all 0.4s ease;
}

.two-ways__card:hover {
    border-color: #A9A9A9;
}

.two-ways__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.card-rent::before {
  background-color: #1A1A1A;
}

.card-shop::before {
  background-color: #eab308;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon--dark {
  background-color: #1A1A1A;
  color: #eab308;
}

.card-icon--yellow {
  background-color: rgba(234, 179, 8, 0.1);
  color: #eab308;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.two-ways__card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1A1A1A;
}

.two-ways__card p {
  color: #555555;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1rem;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  flex-grow: 1;
}

.card-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #1A1A1A;
  font-weight: 500;
  font-size: 0.95rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: #eab308;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.btn--dark {
  background-color: #1A1A1A;
  color: #eab308;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid #1A1A1A;
}

.btn--dark:hover {
  background-color: transparent;
  color: #1A1A1A;
}

.btn--outline-yellow {
  background-color: transparent;
  color: #eab308;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid #eab308;
}

.btn--outline-yellow:hover {
  background-color: #eab308;
  color: #fff;
}

.btn--full {
  width: 100%;
}

/* ========== TOP ANNOUNCEMENT BAR ========== */
.top-bar {
  background-color: #000;
  color: var(--color-white, #fff);
  padding: 0.6rem 0;
  font-size: 0.95rem;
  z-index: 1000;
  position: relative;
}

.top-bar__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.top-bar__text {
  margin: 0;
}

.top-bar__text strong {
  font-weight: 500;
}

.btn--top-bar {
  background-color: var(--color-primary, #FFD014); 
  color: #000;
  padding: 0.4rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .top-bar__container {
    gap: 0.5rem;
    padding-bottom: 0.25rem;
  }

  .top-bar__text {
    font-size: 0.85rem;
  }
}

/* ========== INDUSTRIES WE SERVE ========== */
.industries {
  background-color: #f8f9fa;
}

.industries__header {
  text-align: center;
  margin-bottom: 3rem;
}

.industries__title {
  font-size: var(--text-h2);
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1A1A1A;
}

.industries__desc {
  color: #555555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

@media (min-width: 1024px) {
  .industries__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .bento-span-2 {
    grid-column: span 2;
  }

  .bento-span-3 {
    grid-column: span 3;
  }
}

.industry-card--large {
  padding: 2.5rem !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.industry-card--large .industry-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.industry-desc {
  font-size: 1rem;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

.industry-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  display: none;
}

.industry-card:hover {
    border-color: #209A92;
}



.industry-card:hover .industry-icon {
  background: #209A92;
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.industry-card--active {
  border: 2px solid #eab308;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.15);
}

.industry-icon {
  font-size: 1.5rem;
  background: rgba(234, 179, 8, 0.08);
  padding: 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-name {
  font-weight: 600;
  color: #1A1A1A;
  font-size: 1rem;
}

.industry-icon {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.industry-name {
  font-weight: 600;
  color: #1A1A1A;
  font-size: 1rem;
}

.industry-icon {
  color: #eab308;
}

.industry-icon svg {
  width: 24px;
  height: 24px;
}

/* ========== PAN INDIA NETWORK ========== */
.pan-india__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
  .pan-india__wrapper {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 4rem;
  }
}

.pan-india__title {
  font-size: var(--text-h2);
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pan-india__desc {
  color: #555555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.pan-india__locations {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

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

.location-list li {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
}

.location-list .dot {
  width: 6px;
  height: 6px;
  background-color: #eab308;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.pan-india__map {
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  background: transparent;
}

.pan-india__map img {
  max-width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
  opacity: 0.9;
}

/* ========== LENIS SMOOTH SCROLL ========== */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ========== PREMIUM UPGRADES ========== */
body {
  background-color: #fcfcfd;
  background-image: radial-gradient(at 40% 20%, hsla(205, 80%, 96%, 1) 0px, transparent 50%), radial-gradient(at 80% 0%, hsla(160, 70%, 96%, 1) 0px, transparent 50%), radial-gradient(at 0% 50%, hsla(45, 100%, 96%, 1) 0px, transparent 50%);
  background-attachment: fixed;
}

.product-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.product-card:hover {
    border-color: #A9A9A9;
    transform: none !important;
}

.product-card:hover .product-card__image img,
.product-card:hover img {
    transform: none !important;
}

.btn {
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn:active {
  transform: scale(0.95) !important;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

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

.heading-mask {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* ========== RADAR PINS ========== */
.pan-india__map {
  position: relative;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.map-pin .pin-dot {
  width: 10px;
  height: 10px;
  background-color: #ffd014;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 10px rgba(255, 208, 20, 0.5);
}

.map-pin .pin-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 208, 20, 0.6);
  z-index: 1;
  pointer-events: none;
}

.location-list li {
  cursor: pointer;
  transition: color 0.3s ease;
}

.location-list li:hover {
  color: #ffd014;
}

.map-pin.is-active .pin-dot {
  background-color: #10367d;
  box-shadow: 0 0 15px rgba(16, 54, 125, 0.8);
  transform: scale(1.5);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.map-pin.is-active .pin-ripple {
  background-color: rgba(16, 54, 125, 0.6);
}

/* =========================================
   Standard Page UI Components (Shop, Products)
   ========================================= */
.page-header-padding {
  padding-top: 150px;
}

.page-hero--dark {
  padding-bottom: 120px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/hero-seciton-banner%20(2).png') center/cover no-repeat;
}

.breadcrumb-nav {
  margin-bottom: 30px;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  justify-content: center;
}

.breadcrumb-link {
  color: #FFD100;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
  color: #fff;
  font-weight: 600;
}

.page-hero__eyebrow {
  color: #FFD100;
  letter-spacing: 2px;
}

.page-hero__title {
  margin-bottom: 20px;
  color: #ffffff;
}

.page-hero__desc {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ffffff !important;
}

.page-hero__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn--large {
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1rem;
}

.btn--solid-white {
  background: #ffffff;
  color: #111;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn--solid-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Filter Bar */
.filter-section {
  padding-top: 0;
  padding-bottom: 20px;
  transform: translateY(-40px);
  position: relative;
  z-index: 10;
}

.filter-bar {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.filter-search-wrapper {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.filter-search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.filter-input {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}

.filter-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-select {
  padding: 14px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  color: #333;
}

/* Product Detail UI */
.product-detail-hero {
  padding-top: 30px;
}

.product-detail-price {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.product-detail-price span:not(.woocommerce-Price-amount):not(.woocommerce-Price-currencySymbol) {
  font-size: 1rem;
  color: #666;
  font-weight: normal;
}

.product-detail-actions {
  margin-top: 30px;
}

.product-detail-actions .btn {
  margin-right: 15px;
}

.product-specs {
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.product-specs-list {
  list-style: none;
  padding: 0;
  line-height: 2;
}

/* Category Layout */
.category-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.category-sidebar {
  flex: 0 0 350px;
}

.category-sidebar-inner {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  position: sticky;
  top: 120px;
}

.category-filter-title {
  margin-top: 0;
}

.category-filter-subtitle {
  margin-top: 20px;
}

.category-filter-list {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

.category-main {
  flex: 1;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Breadcrumb Light Variant */
.breadcrumb-nav--light .breadcrumb-list {
  justify-content: flex-start;
}

.breadcrumb-nav--light .breadcrumb-link {
  color: #666;
  transition: color 0.3s ease;
}

.breadcrumb-nav--light .breadcrumb-link:hover {
  color: var(--color-primary);
}

.breadcrumb-nav--light .breadcrumb-separator {
  color: #aaa;
}

.breadcrumb-nav--light .breadcrumb-current {
  color: #1a1a1a;
  font-weight: 600;
}

/* Product Detail Image Wrapper for Premium Design */
.product-detail-image-wrapper {
  /* background: #f8f9fa; */
  /* border-radius: 20px; */
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02), 0 15px 35px rgba(0, 0, 0, 0.05); */
  /* border: 1px solid rgba(0, 0, 0, 0.03); */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  width: 100%;
}

.product-detail-image-wrapper:hover {
  transform: translateY(-5px);
}

.product-detail-image-wrapper img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

/* =========================================
   Product Detail Aesthetic Revamp
   ========================================= */

/* Feature Icons Grid */
.product-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 30px;
}

.feature-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 60px;
}

.feature-icon-item svg {
  width: 28px;
  height: 28px;
  color: #333;
}

.feature-icon-text {
  font-size: 0.75rem;
  color: #555;
  text-align: center;
  font-weight: 500;
}

/* Specs Mini Table */
.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 0.9rem;
  border: 1px solid #ddd;
}

.product-specs-table th,
.product-specs-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
}

.product-specs-table th {
  background-color: #f1f1f1;
  color: #555;
  font-weight: 600;
  width: 40%;
}

.product-specs-table td {
  color: #333;
}

/* Controls & Add to Cart */
.product-controls-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  height: 44px;
}

.quantity-btn {
  background: #f9f9f9;
  border: none;
  width: 35px;
  height: 100%;
  font-size: 1.2rem;
  cursor: pointer;
  color: #555;
  transition: background 0.2s;
}

.quantity-btn:hover {
  background: #eee;
}

.quantity-input {
  width: 40px;
  height: 100%;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 1rem;
  color: #333;
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-sku {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 40px;
}

.product-sku strong {
  color: #333;
}

/* Product Tabs */
.product-tabs-section {
  padding: 60px 0;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

.product-tabs-header {
  display: flex;
  justify-content: center;
  gap: 10px;
  border-bottom: 2px solid #eee;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.product-tab-btn {
  background: none;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.product-tab-btn:hover {
  color: #111;
}

.product-tab-btn.active {
  color: var(--color-primary);
  /* Or a specific brand color if preferred, let's use a nice dark green/olive like the screenshot if possible, but fallback to primary */
}

.product-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}

.product-tab-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.product-tab-panel.active {
  display: block;
}

.product-tab-content {
  /* max-width: 900px; */
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
  background: #fafafa;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #f1f1f1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Related Products Section */
.related-products-section {
  padding: 60px 0 100px;
  background: #ffffff;
}

.related-products-title {
  font-size: var(--text-h2);
  color: #333;
  font-weight: 500;
  margin-bottom: 40px;
}

/* Category Page Hero */
.category-hero {
  padding: 20px 0 20px;
  background: #209A92;
  margin-bottom: 10px;
  color: white;
}

/* ==========================================================================
   Responsive Overrides
   ========================================================================== */

/* Tablet & Smaller Desktop (max-width: 1024px) */
@media (max-width: 1024px) {

  /* Reduce Global Padding */
  .section {
    padding: 80px 0;
  }

  .page-hero,
  .category-hero {
    padding: 100px 0 60px;
  }

  .product-detail-hero {
    padding-top: 60px;
  }

  /* Grid Adjustments */
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Product Pages */
  .why-rent-split__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-detail-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Typography */
  .page-hero__title,
  .hero-home__title {
    font-size: var(--text-h1);
  }

  /* Category Page */
  .category-layout {
    flex-direction: column;
  }

  .category-sidebar {
    width: 100%;
    margin-bottom: 30px;
  }

  .category-sidebar-inner {
    position: static;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {

  /* Header / Navigation */
  .header__nav {
    display: none !important;
    /* Hide desktop nav on mobile to prevent overflow */
  }

  /* Global Padding */
  .section {
    padding: 60px 0;
  }

  .page-hero,
  .category-hero {
    padding: 80px 0 40px;
  }

  /* Typography */
  .page-hero__title,
  .hero-home__title {
    font-size: var(--text-h1);
  }

  .section-header h2,
  .two-ways__title,
  .industries__title,
  .pan-india__title {
    font-size: var(--text-h2);
  }

  .why-rent-split__title {
    font-size: var(--text-h2);
  }

  /* Grid Adjustments */
  .grid--2,
  .grid--4,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  /* Product Pages */
  .product-features-grid {
    gap: 15px;
    justify-content: flex-start;
  }

  .feature-icon-item {
    padding: 15px 10px;
    min-width: 80px;
  }

  .product-controls-row {
    flex-direction: column;
    align-items: stretch;
  }

  .product-controls-row .filter-select,
  .product-controls-row .btn {
    width: 100%;
  }

  .quantity-selector {
    justify-content: center;
  }

  .product-tabs-header {
    flex-direction: column;
    border-bottom: none;
  }

  .product-tab-btn {
    border-bottom: 1px solid #eee;
  }

  .product-tab-btn.active::after {
    display: none;
  }

  .product-tab-content {
    padding: 20px;
  }

  /* Footer */
  .footer__grid {
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }
}

/* Custom Table Styling for Product Descriptions */
.product-tab-content table,
.styled-desc-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-family: inherit;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eaeaea;
}
.product-tab-content table thead th,
.product-tab-content table tbody tr:first-child td strong,
.styled-desc-content table thead th,
.styled-desc-content table tbody tr:first-child td strong {
    background-color: #f8f9fa;
    color: #1a1a1a;
}
.product-tab-content table th,
.product-tab-content table td,
.styled-desc-content table th,
.styled-desc-content table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    text-align: left;
    color: #444;
    font-size: 0.95rem;
    vertical-align: top;
}
.product-tab-content table th:last-child,
.product-tab-content table td:last-child,
.styled-desc-content table th:last-child,
.styled-desc-content table td:last-child {
    border-right: none;
}
.product-tab-content table th,
.styled-desc-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}
.product-tab-content table tbody tr:last-child td,
.styled-desc-content table tbody tr:last-child td {
    border-bottom: none;
}
.product-tab-content table tbody tr:nth-child(even),
.styled-desc-content table tbody tr:nth-child(even) {
    background-color: #fbfcfc;
}
.product-tab-content table tbody tr:hover,
.styled-desc-content table tbody tr:hover {
    background-color: #f1f5f9;
    transition: background-color 0.2s ease;
}

/* Fallback for pre-formatted blocks pasted incorrectly */
.product-tab-content pre,
.styled-desc-content pre {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow-x: auto;
    font-family: monospace;
    font-size: 0.9rem;
}


/* Sidebar Accordion Styles */
.category-filter-subtitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    margin-top: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
    transition: color 0.2s ease;
}
.category-filter-subtitle:hover {
    color: var(--color-primary);
}
.category-filter-subtitle svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}
.category-filter-subtitle.is-closed svg {
    transform: rotate(180deg);
}
.category-filter-list {
    overflow: hidden;
    transition: max-height 0.3s ease, margin 0.3s ease, opacity 0.3s ease;
    max-height: 1500px;
    opacity: 1;
    margin-top: 10px;
}
.category-filter-list.is-closed {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
}

/* ── Extracted Classes ────────────────────────────────────── */
.breadcrumb-centered {
    justify-content: center;
    margin-bottom: 20px;
}
.breadcrumb-list-centered {
    justify-content: center;
}
.section-header-centered {
    text-align: center;
}
.page-hero__title-white {
    color: #fff;
    margin-bottom: 10px;
}
.category-hero__desc {
    color: #e0e0e0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.category-filter-link {
    display: block;
/* Grid Adjustments */
  .grid--2,
  .grid--4,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  /* Product Pages */
  .product-features-grid {
    gap: 15px;
    justify-content: flex-start;
  }

  .feature-icon-item {
    padding: 15px 10px;
    min-width: 80px;
  }

  .product-controls-row {
    flex-direction: column;
    align-items: stretch;
  }

  .product-controls-row .filter-select,
  .product-controls-row .btn {
    width: 100%;
  }

  .quantity-selector {
    justify-content: center;
  }

  .product-tabs-header {
    flex-direction: column;
    border-bottom: none;
  }

  .product-tab-btn {
    border-bottom: 1px solid #eee;
  }

  .product-tab-btn.active::after {
    display: none;
  }

  .product-tab-content {
    padding: 20px;
  }

  /* Footer */
  .footer__grid {
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }
}

/* Custom Table Styling for Product Descriptions */
.product-tab-content table,
.styled-desc-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-family: inherit;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eaeaea;
}
.product-tab-content table thead th,
.product-tab-content table tbody tr:first-child td strong,
.styled-desc-content table thead th,
.styled-desc-content table tbody tr:first-child td strong {
    background-color: #f8f9fa;
    color: #1a1a1a;
}
.product-tab-content table th,
.product-tab-content table td,
.styled-desc-content table th,
.styled-desc-content table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    text-align: left;
    color: #444;
    font-size: 0.95rem;
    vertical-align: top;
}
.product-tab-content table th:last-child,
.product-tab-content table td:last-child,
.styled-desc-content table th:last-child,
.styled-desc-content table td:last-child {
    border-right: none;
}
.product-tab-content table th,
.styled-desc-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}
.product-tab-content table tbody tr:last-child td,
.styled-desc-content table tbody tr:last-child td {
    border-bottom: none;
}
.product-tab-content table tbody tr:nth-child(even),
.styled-desc-content table tbody tr:nth-child(even) {
    background-color: #fbfcfc;
}
.product-tab-content table tbody tr:hover,
.styled-desc-content table tbody tr:hover {
    background-color: #f1f5f9;
    transition: background-color 0.2s ease;
}

/* Fallback for pre-formatted blocks pasted incorrectly */
.product-tab-content pre,
.styled-desc-content pre {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow-x: auto;
    font-family: monospace;
    font-size: 0.9rem;
}


/* Sidebar Accordion Styles */
.category-filter-subtitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    margin-top: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
    transition: color 0.2s ease;
}
.category-filter-subtitle:hover {
    color: var(--color-primary);
}
.category-filter-subtitle svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}
.category-filter-subtitle.is-closed svg {
    transform: rotate(180deg);
}
.category-filter-list {
    overflow: hidden;
    transition: max-height 0.3s ease, margin 0.3s ease, opacity 0.3s ease;
    max-height: 1500px;
    opacity: 1;
    margin-top: 10px;
}
.category-filter-list.is-closed {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
}
.feature-icon-item svg, .hero__search-btn svg{min-width: 25px;min-height: 25px;}
/* ── Extracted Classes ────────────────────────────────────── */
.breadcrumb-centered {
    justify-content: center;
    margin-bottom: 20px;
}
.breadcrumb-list-centered {
    justify-content: center;
}
.section-header-centered {
    text-align: center;
}
.page-hero__title-white {
    color: #fff;
    margin-bottom: 10px;
}
.category-hero__desc {
    color: #e0e0e0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.category-filter-link {
    display: block;
    padding: 4px 0;
}
.no-products-msg {
    grid-column: 1 / -1;
}
.pagination-wrapper {
    margin-top: 40px;
    text-align: center;
}

/* single-rental-printers.php styles */
.product-specs-table-default {
    width: 100%; max-width: 600px; border-collapse: collapse;
}
.product-specs-tr {
    border-bottom: 1px solid #eee;
}
.product-specs-th {
    padding: 15px; text-align: left; background: #f9f9f9; width: 40%;
}
.product-specs-td {
    padding: 15px; text-align: left;
}
.mb-20 {
    margin-bottom: 20px;
}
.product-single-image-col-flex {
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start; width: 100%; height: 100%; margin-top: 20px;
}
.product-detail-image-styled {
    max-width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15)); transform: scale(1.1);
}
.hero__badge-tag-flex {
    margin-bottom: 20px; display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow-highlight-rent {
    background: #209A92; padding: 4px 10px; border-radius: 4px; font-weight: 700; font-size: 0.8rem;
}
.text-semibold-09 {
    font-weight: 600; font-size: 0.9rem;
}
.product-detail-price-main {
    font-size: 1.5rem; font-weight: 700; color: #1a1a1a; margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.product-detail-price-main span.woocommerce-Price-amount {
    font-size: inherit; font-weight: inherit; color: inherit;
}
.product-detail-price-main del, .product-detail-price-main del span.woocommerce-Price-amount, .product-detail-price-main del span.woocommerce-Price-currencySymbol {
    font-size: 1rem !important; color: #999 !important; font-weight: 500 !important; text-decoration: line-through !important;
}
.product-detail-price-main ins, .product-detail-price-main ins span.woocommerce-Price-amount, .product-detail-price-main ins span.woocommerce-Price-currencySymbol {
    font-size: 1.5rem !important; color: #1a1a1a !important; font-weight: 700 !important; text-decoration: none !important;
}
.product-detail-price-sub {
    font-size: 1rem; color: #666; font-weight: 500;
}
.why-rent-split__desc-styled {
    font-size: 1.1rem; color: #555; line-height: 1.6; margin-bottom: 30px;
}
.product-features-grid-flex {
    display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 30px;
}
.feature-icon-item-styled {
    display: flex; flex-direction: column; align-items: center; justify-content: center; width: 70px; height: 70px; background: #f9f9f9; border-radius: 8px; border: 1px solid #eee;
}
.feature-icon-svg {
    color: var(--color-primary); margin-bottom: 5px;
}
.feature-icon-text-styled {
    font-size: 0.75rem; font-weight: 600;
}
.product-controls-row-flex {
    display: flex; gap: 15px; align-items: center; margin-bottom: 25px; flex-wrap: wrap;
}
.filter-select-styled {
    padding: 12px 15px; border: 1px solid #ddd; border-radius: 6px; flex: 1; min-width: 200px; outline: none;
}
.quantity-selector-flex {
    display: flex; align-items: center; border: 1px solid #ddd; border-radius: 6px; overflow: hidden; height: 44px;
}
.quantity-btn-styled {
    width: 40px; height: 100%; background: #f9f9f9; border: none; font-size: 1.2rem; cursor: pointer;
}
.quantity-btn-left {
    border-right: 1px solid #ddd;
}
.quantity-btn-right {
    border-left: 1px solid #ddd;
}
.quantity-input-styled {
    width: 50px; height: 100%; border: none; text-align: center; font-size: 1rem; outline: none; -moz-appearance: textfield;
}
.btn-request-quote {
    padding: 12px 30px; font-size: 1.05rem;
}
.product-sku-text {
    font-size: 0.9rem; color: #666;
}
.product-tabs-section-margin {
    margin-top: 60px; margin-bottom: 60px;
}
.product-tabs-header-flex {
    display: flex; gap: 20px; border-bottom: 2px solid #eee; margin-bottom: 30px;
}
.product-tab-btn-base {
    background: none; border: none; padding: 15px 0; font-size: 1.1rem; cursor: pointer;
}
.product-tab-btn-active {
    font-weight: 600; color: #1a1a1a; border-bottom: 2px solid var(--color-primary); margin-bottom: -2px;
}
.product-tab-btn-inactive {
    font-weight: 500; color: #666;
}
.product-tab-content-styled {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    border: 1px solid #eaeaea;
    line-height: 1.85; 
    color: #4a4a4a; 
    font-size: 1.05rem;
}
.product-tab-content-styled h1,
.product-tab-content-styled h2,
.product-tab-content-styled h3,
.product-tab-content-styled h4 {
    color: #1a1a1a;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}
.product-tab-content-styled h1:first-child,
.product-tab-content-styled h2:first-child,
.product-tab-content-styled h3:first-child {
    margin-top: 0;
}
.product-tab-content-styled p {
    margin-bottom: 1.5em;
}
.product-tab-content-styled p:last-child {
    margin-bottom: 0;
}
.product-tab-content-styled ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5em;
}
.product-tab-content-styled ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    line-height: 1.6;
}
.product-tab-content-styled ul li::before {
    content: "\2713"; /* Checkmark */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary, #fec83a); /* Theme yellow/gold */
    font-weight: 900;
    font-size: 1.1rem;
}
.product-tab-content-styled ol {
    padding-left: 20px;
    margin-bottom: 1.5em;
}
.product-tab-content-styled ol li {
    margin-bottom: 12px;
    line-height: 1.6;
}
.related-products-section-bg {
    padding: 60px 0; background: #fafafa;
}
.related-products-title-centered {
    font-size: var(--text-h2); margin-bottom: 30px; text-align: center;
}
.category-grid-styled {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px;
}
.product-card-related {
    background: #fff; padding: 30px 20px; border-radius: 12px; display: block; text-align: center; transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; border: 1px solid #eee; box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.product-card-related-img {
    height: 300px; width: auto; object-fit: contain; margin-bottom: 20px;
}
.product-card-related-img-fallback {
    height: 180px; width: auto; object-fit: contain; margin-bottom: 20px;
}
.product-card-related-title {
    font-size: 1.15rem; margin-bottom: 10px; font-weight: 600;
}
.product-card-related-price {
    color: var(--color-primary); font-weight: 700; font-size: 1.1rem;
}

/* ── AJAX Live Search Styles ──────────────────────────────── */
.ajax-search-results {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    max-height: 350px;
    overflow-y: auto;
    z-index: 1000;
    border: 1px solid #eaeaea;
    text-align: left;
}

/* Custom Scrollbar for results */
.ajax-search-results::-webkit-scrollbar {
    width: 6px;
}
.ajax-search-results::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 8px;
}
.ajax-search-results::-webkit-scrollbar-thumb {
    background: #ccc; 
    border-radius: 8px;
}
.ajax-search-results::-webkit-scrollbar-thumb:hover {
    background: #b3b3b3; 
}
.ajax-search-loading,
.ajax-search-no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}
.ajax-search-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ajax-search-item {
    border-bottom: 1px solid #f5f5f5;
}
.ajax-search-item:last-child {
    border-bottom: none;
}
.ajax-search-link {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
}
.ajax-search-link:hover {
    background-color: #f9f9f9;
}
.ajax-search-img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin-right: 15px;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
}
.ajax-search-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ajax-search-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ajax-search-title {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 2px;
}
.ajax-search-price {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
}
.ajax-search-type {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ── WooCommerce Global Overrides ────────────────────────────── */

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: var(--color-primary);
    color: #1A1A1A;
    border: none;
    cursor: pointer;
    text-transform: none;
    box-shadow: 0 4px 14px rgba(255, 208, 20, 0.25);
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: #e6b800;
    color: #1A1A1A;
    box-shadow: 0 6px 20px rgba(255, 208, 20, 0.45);
    transform: translateY(-1px);
}

/* Forms & Inputs */
.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row input.input-text,
.select2-container .select2-selection--single {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    height: auto;
}
.select2-container .select2-selection--single {
    height: 48px;
    display: flex;
    align-items: center;
}
.woocommerce form .form-row input.input-text:focus, 
.woocommerce form .form-row textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 208, 20, 0.2);
}

/* Tables (Cart, Checkout) */
.woocommerce table.shop_table {
    border-collapse: separate;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    width: 100%;
    text-align: left;
}
.woocommerce table.shop_table th {
    background: #f8f9fa;
    padding: 15px 20px;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 1px solid #eee;
}
.woocommerce table.shop_table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    color: #444;
}
.woocommerce table.shop_table tbody tr:last-child td {
    border-bottom: none;
}

/* Cart Specific */
.woocommerce-cart .cart-collaterals .cart_totals {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}
.woocommerce-cart .cart-collaterals .cart_totals h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 180px;
    margin-right: 10px;
}

/* Notices */
.woocommerce-message, 
.woocommerce-info, 
.woocommerce-error {
    border-top-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 20px 20px 20px 50px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}
.woocommerce-message::before, 
.woocommerce-info::before {
    color: var(--color-primary);
}

/* Checkout Page */
.woocommerce-checkout h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #1a1a1a;
}
#order_review_heading {
    margin-top: 0;
}
#order_review {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}
.woocommerce-checkout #payment {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
}
.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid #ddd;
    padding: 20px;
}
.woocommerce-checkout #payment div.payment_box {
    background: #f8f9fa;
    border-radius: 6px;
}
/* ── Header Cart Icon ────────────────────────────────────────── */
.header__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-cart-toggle {
    position: relative;
    background: transparent;
    border: none;
    color: #1a1a1a;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}
.header-cart-toggle:hover {
    color: var(--color-primary);
}
.header-cart-count {
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--color-primary);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(25%, -25%);
}

/* ── Cart Slide-out Sidebar ──────────────────────────────────── */
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cart-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 10001;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.cart-sidebar.active {
    right: 0;
}
.cart-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}
.cart-sidebar__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}
.cart-sidebar__close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: color 0.2s, transform 0.2s;
}
.cart-sidebar__close:hover {
    color: #000;
    transform: rotate(90deg);
}
.cart-sidebar__body {
    padding: 25px;
    flex-grow: 1;
    overflow-y: auto;
}

/* WooCommerce Mini Cart Styles */
.widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.woocommerce-mini-cart-item {
    display: flex !important;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}
.woocommerce-mini-cart-item:last-child {
    border-bottom: none;
}
.woocommerce-mini-cart-item a.remove {
    position: absolute;
    top: 15px;
    right: 0;
    color: #ff3b3b !important;
    background: transparent !important;
    font-size: 18px !important;
    font-weight: normal !important;
    height: auto !important;
    width: auto !important;
}
.woocommerce-mini-cart-item a.remove:hover {
    color: #d11a1a !important;
}
.woocommerce-mini-cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
    margin: 0 !important;
    float: none !important;
}
.woocommerce-mini-cart__total {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
}
.woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.woocommerce-mini-cart__buttons .button {
    width: 100%;
    margin: 0 !important;
}
.woocommerce-mini-cart__empty-message {
    text-align: center;
    color: #888;
    margin-top: 50px;
}

/* ── Product Thumbnails Gallery ────────────────────────────── */
.product-thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 12px;
    margin-top: 20px;
}
.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f9f9f9;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s;
}
.product-thumb:hover {
    border-color: #ddd;
}
.product-thumb.active {
    border-color: var(--color-primary);
}
.product-thumb:not(.active):hover img {
    opacity: 0.8;
}

/* ========================================================
   SPLIT HERO LAYOUT CSS 
   ======================================================== */
.hero-slide--split {
    display: flex;
    width: 100%;
    min-height: 80vh;
    align-items: stretch;
    background: #ffffff; /* Clean white background */
}

.hero-slide__split-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.hero-slide__split-left .hero-slide__text-col {
    /* Removed card styling to keep it clean */
    max-width: 650px;
    width: 100%;
}

.hero-slide__split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.hero-slide--split .hero-slide__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* Cover works better for split sections */
    background-position: right center;
    background-repeat: no-repeat;
}

/* Hide old overlay stuff for split layout */
.hero-slide--split .hero-slide__overlay,
.hero-slide--split .hero-slide__overlay--right {
    display: none !important;
}

/* Mobile Responsive Split Layout */
@media (max-width: 992px) {
    .hero-slide--split {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-slide__split-right {
        order: -1; /* Move image to top on mobile */
        min-height: 350px;
    }

    .hero-slide__split-left {
        padding: 30px 20px;
    }

    .hero-slide__split-left .hero-slide__text-col {
        padding: 0;
    }
}

/* Fix horizontal gap below hero slider without collapsing */
.hero--slider, .global-slider, .global-slider__slides {
    align-items: stretch !important;
}
