/* Shared styles for all inner pages - imported by each page */
:root {
  --sv-primary: #FAAE00;
  --sv-primary-dark: #D99600;
  --sv-primary-light: #FFF8E6;
  --sv-text-main: #2D2D2D;
  --sv-text-muted: #666;
  --sv-text-label: #888;
  --sv-text-dark: #111;
  --sv-bg: #FAFAFC;
  --sv-surface: rgba(255, 255, 255, 0.7);
  --sv-surface-border: rgba(255, 255, 255, 1);
  --sv-border-light: rgba(0, 0, 0, 0.06);
  --sv-shadow-card: 0 15px 35px rgba(0, 0, 0, 0.04);
  --sv-shadow-feature: 0 30px 60px rgba(109, 71, 146, 0.08);
  --sv-shadow-header: 0 10px 40px rgba(0, 0, 0, 0.05);
  --sv-radius-card: 32px;
  --sv-radius-pill: 9999px;
  --sv-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sv-ease-aura: cubic-bezier(0.2, 0.8, 0.2, 1)
}

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

body {
  background-color: var(--sv-bg);
  background-image: radial-gradient(at 0% 0%, rgba(109, 71, 146, 0.05) 0px, transparent 50%), radial-gradient(at 100% 0%, rgba(250, 174, 0, 0.08) 0px, transparent 50%), radial-gradient(at 50% 100%, rgba(109, 71, 146, 0.05) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--sv-text-main);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility
}

#cursor-aura-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden
}

.cursor-aura {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-50%, -50%);
  transition: top .4s var(--sv-ease-aura), left .4s var(--sv-ease-aura);
  will-change: top, left
}

.aura-gold {
  background: radial-gradient(circle, rgba(250, 174, 0, 0.15) 0%, transparent 70%)
}

.aura-purple {
  background: radial-gradient(circle, rgba(109, 71, 146, 0.1) 0%, transparent 60%);
  margin-top: 40px;
  margin-left: -40px
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

.header-wrapper {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  font-family: 'Manrope', sans-serif !important
}

.site-header {
  width: 95%;
  max-width: 1340px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--sv-radius-pill);
  padding: .45rem .6rem .45rem 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  box-shadow: var(--sv-shadow-header), inset 0 1px 0 rgba(255, 255, 255, 1);
  font-family: 'Manrope', sans-serif !important
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none
}

.site-logo img {
  height: 30px;
  width: auto
}

.main-nav {
  display: flex;
  justify-content: center
}

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

.nav-links>li {
  position: relative
}

.nav-links>li>a,
.nav-links>li .mobile-nav-row>a {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--sv-text-dark);
  text-decoration: none;
  transition: color .2s;
  padding: .5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 4px
}

.nav-links>li>a:hover,
.nav-links>li .mobile-nav-row>a:hover {
  color: var(--sv-primary)
}

.nav-links>li.has-dropdown .mobile-nav-row>a::after,
.nav-links>li.menu-item-has-children>a::after {
  content: '▾';
  font-size: .6rem;
  color: #999;
  transition: transform .2s;
  margin-left: 4px
}

.nav-links>li.has-dropdown:hover .mobile-nav-row>a::after,
.nav-links>li.menu-item-has-children:hover>a::after {
  transform: rotate(180deg);
  color: var(--sv-primary)
}

.mobile-nav-row {
  display: flex;
  align-items: center;
  height: 100%
}

.mobile-cat-toggle {
  display: none;
}

.dropdown-menu,
.nav-links .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: .75rem 0;
  min-width: 200px;
  list-style: none;
  transition: transform .25s var(--sv-ease), opacity .25s;
  opacity: 0;
  z-index: 100
}

.nav-links>li:hover>.dropdown-menu,
.nav-links>li:hover>.sub-menu {
  transform: translateX(-50%) scaleY(1);
  opacity: 1
}

.dropdown-menu li,
.nav-links .sub-menu li {
  position: relative
}

.dropdown-menu li a,
.nav-links .sub-menu li a {
  display: block;
  padding: .55rem 1.5rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--sv-text-main);
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0
}

.dropdown-menu li a:hover,
.nav-links .sub-menu li a:hover {
  background: var(--sv-primary-light);
  color: var(--sv-primary-dark);
  padding-left: 1.75rem
}

.header-actions {
  display: flex;
  gap: .5rem;
  align-items: center
}

.header-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sv-text-main);
  text-decoration: none;
  transition: background .2s;
  font-size: .85rem
}

.header-icon:hover {
  background: rgba(0, 0, 0, 0.04)
}

.btn-primary {
  background: var(--sv-primary);
  color: #1a1a1a;
  padding: .65rem 1.5rem;
  border-radius: var(--sv-radius-pill);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(250, 174, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.4);
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 174, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.6)
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--sv-text-main);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: .65rem 1.5rem;
  border-radius: var(--sv-radius-pill);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.btn-secondary:hover {
  background: #fff;
  border-color: var(--sv-primary);
  color: var(--sv-primary);
  transform: translateY(-2px)
}

.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10
}

.page-hero {
  padding: 200px 0 60px;
  text-align: center
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: -1.5px;
  color: var(--sv-text-dark);
  line-height: 1.1;
  margin-bottom: 1rem
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--sv-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6
}

.page-hero .breadcrumb {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sv-text-label);
  margin-bottom: 1.5rem
}

.page-hero .breadcrumb a {
  color: var(--sv-primary);
  text-decoration: none
}

.section-padding {
  padding: 5rem 0
}

.section-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sv-text-label);
  margin-bottom: 3rem
}

.glass-card {
  background: var(--sv-surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--sv-surface-border);
  border-radius: var(--sv-radius-card);
  box-shadow: var(--sv-shadow-card);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2.5rem 2rem;
  overflow: hidden
}

.glass-card img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(250, 174, 0, 0.6);
  box-shadow: 0 30px 60px rgba(250, 174, 0, 0.15), 0 10px 20px rgba(109, 71, 146, 0.08)
}

.glass-card:hover img {
  transform: scale(1.06)
}

.site-footer {
  padding: 5rem 0 2.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 1);
  backdrop-filter: blur(30px);
  font-family: 'Manrope', sans-serif !important
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem
}

.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sv-text-label);
  margin-bottom: 1.25rem
}

.footer-links {
  list-style: none
}

.footer-links li {
  margin-bottom: .8rem
}

.footer-links a {
  color: var(--sv-text-main);
  font-weight: 500;
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--sv-primary)
}

.footer-desc {
  color: var(--sv-text-muted);
  line-height: 1.6;
  margin-top: .75rem;
  font-size: .95rem
}

.footer-address {
  margin-top: 1.25rem;
  font-size: .78rem;
  color: var(--sv-text-label);
  line-height: 1.6
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sv-border-light);
  font-size: .78rem;
  color: var(--sv-text-label)
}

.footer-bottom-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem
}

.footer-copyright {
  color: var(--sv-text-label)
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem
}

.legal-link {
  color: var(--sv-primary-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s
}

.legal-link:hover {
  color: var(--sv-primary);
  text-decoration: underline
}

.legal-divider {
  color: var(--sv-text-label)
}

.social-row {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  text-decoration: none;
  color: var(--sv-text-main)
}

.social-icon:hover {
  background: var(--sv-primary-light);
  color: var(--sv-primary);
  transform: translateY(-2px)
}

.social-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor
}

.social-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff !important
}

.social-fb {
  background: #1877F2;
  color: #fff !important
}

.social-yt {
  background: #FF0000;
  color: #fff !important
}

.social-ig:hover,
.social-fb:hover,
.social-yt:hover {
  filter: brightness(1.15);
  color: #fff !important;
  transform: translateY(-2px)
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--sv-text-main);
  cursor: pointer;
  padding: .5rem;
  margin-left: auto
}

@media(max-width:991px) {
  .site-header {
    width: 98%;
    grid-template-columns: auto 1fr auto;
    padding: .5rem 1rem
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    border: 1px solid var(--sv-surface-border);
    z-index: 9999;
    max-height: 80vh;
    overflow-y: auto
  }

  .main-nav.active {
    display: flex !important
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: flex-start
  }

  .nav-links>li {
    width: 100%;
    border-bottom: 1px solid var(--sv-border-light);
    padding-bottom: .5rem
  }

  .nav-links>li:last-child {
    border-bottom: none
  }

  .nav-links>li>a,
  .nav-links>li>.mobile-nav-row>a {
    font-size: 1rem;
    width: 100%;
    padding: .75rem 0;
    font-weight: 600
  }

  .nav-links>li>.mobile-nav-row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between
  }

  .mobile-cat-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--sv-text-label);
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s
  }

  .mobile-cat-toggle::after {
    content: '+';
    font-weight: 300
  }

  .has-dropdown.active .mobile-cat-toggle {
    transform: rotate(45deg)
  }

  .has-dropdown.active .mobile-cat-toggle::after {
    content: '+'
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0.5rem 0 0.5rem 1.2rem !important;
    min-width: 100%;
    display: none;
    border-left: 2px solid var(--sv-primary-light)
  }

  .has-dropdown.active>.dropdown-menu {
    display: block !important
  }

  .dropdown-menu li a {
    display: block;
    padding: 0.6rem 0 !important;
    font-size: 0.95rem !important;
    color: var(--sv-text-muted) !important;
    opacity: 1 !important;
    transform: none !important;
    white-space: normal
  }

  .header-actions,
  .shape-search-box {
    display: none !important
  }

  .page-hero h1 {
    font-size: 2.5rem
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .footer-col h4 {
    margin-bottom: .75rem
  }

  #cursor-aura-wrapper {
    display: none
  }

  .site-footer {
    padding-bottom: 90px
  }

  .footer-bottom-line {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem
  }

  .footer-copyright {
    order: 1
  }

  .footer-legal {
    order: 2
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION BAR
   ═══════════════════════════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none
}

.shape-search-overlay {
  display: none
}

@media(max-width:991px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #D99600 0%, #FAAE00 50%, #D99600 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    align-items: stretch;
    justify-content: space-around;
    padding: 0;
    height: 64px;
    font-family: 'Manrope', sans-serif;
  }

  .mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    gap: 3px;
    flex: 1;
    height: 100%;
    padding: 8px 0;
    transition: opacity .2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
  }

  .mobile-bottom-nav-item:hover,
  .mobile-bottom-nav-item:active {
    opacity: 0.85;
  }

  .mobile-bottom-nav-center {
    position: relative;
    flex: 0 0 auto;
    width: 80px;
    padding: 0;
  }

  .mobile-bottom-nav-circle {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1008 0%, #2D2D2D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
    transition: transform .2s, box-shadow .2s;
  }

  .mobile-bottom-nav-circle:active {
    transform: translateX(-50%) scale(0.93);
  }

  .mobile-bottom-nav-circle svg {
    stroke: #FAAE00;
  }

  /* ═══════════════════════════════════════════════════════════════
   HEADER SEARCH TRIGGER BUTTON
   ═══════════════════════════════════════════════════════════════ */
  .header-search-trigger {
    background: none;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
    color: var(--sv-text-main);
    padding: 0;
  }

  .header-search-trigger:hover {
    border-color: var(--sv-primary);
    background: var(--sv-primary-light);
    color: var(--sv-primary-dark);
  }

  .header-search-trigger svg {
    stroke: currentColor;
  }

  /* ═══════════════════════════════════════════════════════════════
   SEARCH OVERLAY (ALL DEVICES)
   ═══════════════════════════════════════════════════════════════ */
  .shape-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: flex-start;
    justify-content: center;
    padding: 12vh 1.5rem 2rem;
  }

  .shape-search-overlay.active {
    display: flex;
  }

  .shape-search-overlay-inner {
    width: 100%;
    max-width: 620px;
    position: relative;
  }

  .shape-search-overlay-form {
    display: flex;
    align-items: center;
    height: 54px;
    border: 2px solid var(--sv-primary, #FAAE00);
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    transition: border-color .2s;
  }

  .shape-search-overlay-form:focus-within {
    border-color: var(--sv-primary-dark, #D99600);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(250, 174, 0, 0.15);
  }

  .shape-search-overlay-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 20px;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    color: #2D2D2D;
    box-shadow: none;
    -webkit-appearance: none;
  }

  .shape-search-overlay-input::placeholder {
    color: #999;
  }

  .shape-search-overlay-input::-webkit-search-cancel-button,
  .shape-search-overlay-input::-webkit-search-decoration {
    display: none;
  }

  .shape-search-overlay-submit {
    border: none;
    background: var(--sv-primary, #FAAE00);
    height: 100%;
    padding: 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    flex-shrink: 0;
  }

  .shape-search-overlay-submit svg {
    stroke: #1a1a1a;
  }

  .shape-search-overlay-submit:hover {
    background: var(--sv-primary-dark, #D99600);
  }

  .shape-search-overlay-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
  }

  .shape-search-overlay-close:hover {
    background: rgba(255, 255, 255, 0.35);
  }

  /* ── Auto-Suggestions Dropdown ── */
  .shape-search-suggestions {
    display: none;
    background: #fff;
    border-radius: 20px;
    margin-top: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 380px;
    overflow-y: auto;
  }

  .shape-search-suggestions.has-results {
    display: block;
  }

  .shape-search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    text-decoration: none;
    color: var(--sv-text-main, #2D2D2D);
    transition: background .15s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .shape-search-suggestion-item:last-child {
    border-bottom: none;
  }

  .shape-search-suggestion-item:hover {
    background: var(--sv-primary-light, #FFF8E6);
  }

  .shape-search-suggestion-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
  }

  .shape-search-suggestion-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .shape-search-suggestion-info {
    flex: 1;
    min-width: 0;
  }

  .shape-search-suggestion-title {
    font-size: .9rem;
    font-weight: 600;
    color: var(--sv-text-dark, #111);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .shape-search-suggestion-cat {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--sv-text-label, #888);
    margin-top: 2px;
  }

  .shape-search-view-all {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--sv-primary-dark, #D99600);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: rgba(250, 174, 0, 0.06);
    transition: background .2s;
  }

  .shape-search-view-all:hover {
    background: rgba(250, 174, 0, 0.12);
  }

  .shape-search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--sv-text-muted, #666);
    font-size: .9rem;
  }

  .shape-search-loading {
    padding: 20px;
    text-align: center;
    color: var(--sv-text-label, #888);
    font-size: .85rem;
  }

  @media(max-width:991px) {
    .header-search-trigger {
      display: none
    }

    .shape-search-overlay {
      padding: 8vh 1rem 2rem
    }

    .shape-search-overlay-inner {
      max-width: 100%
    }

    .shape-search-overlay-form {
      height: 48px
    }

    .shape-search-overlay-input {
      font-size: 15px;
      padding: 0 14px
    }

    .shape-search-overlay-submit {
      padding: 0 14px
    }

    .shape-search-suggestions {
      max-height: 50vh
    }
  }

  /* ═══════════════════════════════════════════════════════════════
   HIGH GRAPHICS: ANIMATED ORB BACKGROUND
   ═══════════════════════════════════════════════════════════════ */
  .graphics-bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    overflow: hidden;
    background: transparent;
    pointer-events: none;
  }

  .orb {
    position: absolute;
    filter: blur(80px);
    opacity: 0.15;
    animation: drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
  }

  .orb-purple {
    background: radial-gradient(circle, #B99AF5 0%, transparent 70%);
    width: 800px;
    height: 800px;
    top: -200px;
    left: -200px;
  }

  .orb-gold {
    background: radial-gradient(circle, #FAAE00 0%, transparent 70%);
    width: 600px;
    height: 600px;
    bottom: -100px;
    right: -100px;
    animation-duration: 25s;
    animation-delay: -5s;
  }

  .orb-blue {
    background: radial-gradient(circle, #85B5FF 0%, transparent 70%);
    width: 500px;
    height: 500px;
    top: 40%;
    left: 40%;
    animation-duration: 30s;
    animation-delay: -10s;
  }

  @keyframes drift {
    0% {
      transform: translate(0, 0) scale(1);
    }

    33% {
      transform: translate(150px, -100px) scale(1.1);
    }

    66% {
      transform: translate(-100px, 150px) scale(0.9);
    }

    100% {
      transform: translate(-150px, -50px) scale(1.05);
    }
  }

  /* ═══════════════════════════════════════════════════════════════
   TAGLINE TEXT EFFECT
   ═══════════════════════════════════════════════════════════════ */
  .shape-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.2rem;
    font-weight: 400;
    color: #a78cb3;
    text-align: center;
    letter-spacing: 2px;
    margin: 3rem 0;
    opacity: 0.85;
    animation: fadeFloat 3s ease-in-out infinite alternate;
  }

  @keyframes fadeFloat {
    0% {
      transform: translateY(0);
      opacity: 0.7;
    }

    100% {
      transform: translateY(-5px);
      opacity: 1;
    }
  }

  @media (max-width: 768px) {
    .shape-tagline {
      font-size: 1.5rem;
      margin: 2rem 0;
    }
  }

  /* ═══════════════════════════════════
   MARQUEE ANIMATION
   ═══════════════════════════════════ */
  .logos-section {
    overflow: hidden !important;
  }

  .logos-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  }

  .logos-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: marqueeLeft 22s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: max-content;
    padding: 0.25rem 2rem;
  }

  .logos-track a {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .logos-track a:hover {
    color: #FAAE00;
  }

  .logos-sep {
    color: rgba(0, 0, 0, 0.12);
    font-size: 0.8rem;
  }

  @keyframes marqueeLeft {
    0% {
      transform: translateX(0);
    }

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

  .logos-marquee:hover .logos-track {
    animation-play-state: paused;
  }

  /* ═══════════════════════════════════
   3-CARD BENEFITS SECTION
   ═══════════════════════════════════ */
  .benefits-section {
    padding: 5rem 0 2rem;
  }

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

  .benefit-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  }

  .benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(250, 174, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: #111;
  }

  .benefit-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.75;
  }

  .benefit-card p a {
    color: #D99600;
    text-decoration: underline;
    text-decoration-color: rgba(209, 150, 0, 0.3);
  }

  /* ═══════════════════════════════════
   DARK CTA BANNER
   ═══════════════════════════════════ */
  .dark-cta-banner {
    background: #1a1008;
    border-radius: 28px;
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin: 3rem 0 6rem;
    position: relative;
    overflow: hidden;
  }

  .dark-cta-banner::before {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 60px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
  }

  .dark-cta-banner::after {
    content: '';
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
  }

  .dark-cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
  }

  .dark-cta-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FAAE00;
    margin-bottom: 1.5rem;
    display: block;
  }

  .dark-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
  }

  .dark-cta-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 420px;
  }

  .dark-cta-desc a {
    color: #FAAE00;
    text-decoration: none;
  }

  .dark-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }

  .btn-cta-primary {
    background: #FAAE00;
    color: #111;
    padding: 0.85rem 2.2rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
  }

  .btn-cta-primary:hover {
    background: #D99600;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 174, 0, 0.3);
    color: #fff;
  }

  .btn-cta-secondary {
    background: transparent;
    color: #fff;
    padding: 0.85rem 2.2rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
  }

  .btn-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
  }

  @media(max-width:900px) {
    .benefits-grid {
      grid-template-columns: 1fr
    }

    .dark-cta-banner {
      flex-direction: column;
      padding: 3rem 2rem
    }

    .dark-cta-actions {
      align-items: flex-start
    }

    .dark-cta-title {
      font-size: 2.2rem
    }
  }
}
/* ═══════════════════════════════════════════════════════════════
   HEADER SEARCH TRIGGER BUTTON (Desktop)
   ═══════════════════════════════════════════════════════════════ */
.header-search-trigger {
  background: none;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
  color: var(--sv-text-main);
  padding: 0;
}

.header-search-trigger:hover {
  border-color: var(--sv-primary);
  background: var(--sv-primary-light);
  color: var(--sv-primary-dark);
}

.header-search-trigger svg {
  stroke: currentColor;
}

/* Hide desktop trigger on mobile */
@media(max-width:991px) {
  .header-search-trigger {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SEARCH OVERLAY (ALL DEVICES)
   ═══════════════════════════════════════════════════════════════ */
.shape-search-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 1.5rem 2rem;
  
  /* Hidden by default with smooth fade */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.shape-search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.shape-search-overlay-inner {
  width: 100%;
  max-width: 620px;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.shape-search-overlay.active .shape-search-overlay-inner {
  transform: translateY(0);
}

.shape-search-overlay-form {
  display: flex;
  align-items: center;
  height: 54px;
  border: 2px solid var(--sv-primary, #FAAE00);
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  transition: border-color .2s;
}

.shape-search-overlay-form:focus-within {
  border-color: var(--sv-primary-dark, #D99600);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(250, 174, 0, 0.15);
}

.shape-search-overlay-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 20px;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  color: #2D2D2D;
  box-shadow: none;
  -webkit-appearance: none;
}

.shape-search-overlay-input::placeholder {
  color: #999;
}

.shape-search-overlay-input::-webkit-search-cancel-button,
.shape-search-overlay-input::-webkit-search-decoration {
  display: none;
}

.shape-search-overlay-submit {
  border: none;
  background: var(--sv-primary, #FAAE00);
  height: 100%;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}

.shape-search-overlay-submit svg {
  stroke: #1a1a1a;
}

.shape-search-overlay-submit:hover {
  background: var(--sv-primary-dark, #D99600);
}

.shape-search-overlay-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.shape-search-overlay-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ── Auto-Suggestions Dropdown ── */
.shape-search-suggestions {
  display: none;
  background: #fff;
  border-radius: 20px;
  margin-top: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  max-height: 380px;
  overflow-y: auto;
}

.shape-search-suggestions.has-results {
  display: block;
}

.shape-search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  text-decoration: none;
  color: var(--sv-text-main, #2D2D2D);
  transition: background .15s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.shape-search-suggestion-item:last-child {
  border-bottom: none;
}

.shape-search-suggestion-item:hover {
  background: var(--sv-primary-light, #FFF8E6);
}

.shape-search-suggestion-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

.shape-search-suggestion-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shape-search-suggestion-info {
  flex: 1;
  min-width: 0;
}

.shape-search-suggestion-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--sv-text-dark, #111);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shape-search-suggestion-cat {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--sv-text-label, #888);
  margin-top: 2px;
}

.shape-search-view-all {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--sv-primary-dark, #D99600);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: rgba(250, 174, 0, 0.06);
  transition: background .2s;
}

.shape-search-view-all:hover {
  background: rgba(250, 174, 0, 0.12);
}

.shape-search-no-results {
  padding: 20px;
  text-align: center;
  color: var(--sv-text-muted, #666);
  font-size: .9rem;
}

.shape-search-loading {
  padding: 20px;
  text-align: center;
  color: var(--sv-text-label, #888);
  font-size: .85rem;
}

/* Mobile Adjustments for Search Overlay */
@media(max-width:991px) {
  .shape-search-overlay {
    padding: 8vh 1rem 2rem;
  }
  .shape-search-overlay-inner {
    max-width: 100%;
  }
  .shape-search-overlay-form {
    height: 48px;
  }
  .shape-search-overlay-input {
    font-size: 15px;
    padding: 0 14px;
  }
  .shape-search-overlay-submit {
    padding: 0 14px;
  }
  .shape-search-suggestions {
    max-height: 50vh;
  }
}
/* ═══════════════════════════════════════════════════════════════
   STICKY SCROLL FEATURES SECTION (V2)
   ═══════════════════════════════════════════════════════════════ */
.sticky-features-wrapper {
    display: flex;
    gap: 5rem;
    align-items: flex-start; /* Absolute requirement for sticky */
}

/* --- DESKTOP STICKY LEFT COLUMN --- */
.sticky-images-col {
    position: sticky;
    top: 15vh; /* Pins 15% from the top of the screen */
    width: 50%;
    height: 70vh; 
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--sv-shadow-card);
    background: #fff;
    flex-shrink: 0;
}

.sticky-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.sticky-img.active {
    opacity: 1;
    z-index: 2;
}

/* Hide mobile images on desktop */
.mobile-inline-img {
    display: none; 
}

/* --- SCROLLING RIGHT COLUMN --- */
.scrolling-text-col {
    width: 50%;
    padding-bottom: 20vh;
}

.feature-text-block {
    min-height: 70vh; /* Matches the image height to keep scrolling paced */
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.25;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(20px);
}

.feature-text-block.active {
    opacity: 1;
    transform: translateX(0);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--sv-text-dark);
}

.feature-desc {
    font-size: 1.05rem;
    color: var(--sv-text-muted);
    line-height: 1.6;
}

.pill-list {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.pill {
    padding: 8px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--sv-radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--sv-text-main);
    transition: all 0.2s;
}

.pill:hover {
    border-color: var(--sv-primary);
    background: var(--sv-primary-light);
    color: var(--sv-primary-dark);
}

/* --- MOBILE FALLBACK (Native Stacking) --- */
@media (max-width: 991px) {
    .desktop-only {
        display: none !important; /* Completely hide sticky column */
    }
    
    .mobile-inline-img {
        display: block; /* Reveal images inside the text blocks */
        width: 100%;
        height: auto;
        border-radius: 16px;
        margin-bottom: 1.5rem;
        box-shadow: var(--sv-shadow-card);
    }

    .sticky-features-wrapper {
        display: block; /* Remove flexbox split */
    }

    .scrolling-text-col {
        width: 100%;
        padding-bottom: 0;
    }

    .feature-text-block {
        min-height: auto;
        opacity: 1; /* Always fully visible on mobile */
        transform: translateX(0);
        margin-bottom: 4rem; /* Spacing between sections */
        padding: 0;
    }

    .feature-title {
        font-size: 2rem;
    }
}
/* ==========================================================================
   PRODUCT CATEGORY CARDS: MASSIVE IMAGES & PERFECT FIT
   ========================================================================== */

/* 1. Create a massive, responsive container (Perfect Square) */
.cat-grid .cat-card-img {
    aspect-ratio: 1 / 1 !important; /* Forces a massive, perfect square layout */
    width: 100% !important;
    height: auto !important;
    overflow: hidden !important;
    background-color: #fcfcfc !important; /* Adds a clean, premium background for transparent/smaller images */
}

/* 2. Force ANY uploaded image to fit completely inside the container */
.cat-grid .cat-card-img img {
    width: 100% !important;
    height: 100% !important;
    
    /* THE FIX: 'contain' ensures the ENTIRE image is visible, never cropped */
    object-fit: contain !important; 
    object-position: center !important;
    
    padding: 1.5rem !important; /* Adds a nice breathing room around the product so it doesn't touch the edges */
}
/* ==========================================================================
   PRODUCT CATEGORY CARDS: FORCE CENTER TITLE
   ========================================================================== */

/* Target the specific heading to override the theme's default left-alignment */
.cat-grid .cat-card-body h3 {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto 10px auto !important; /* Centers it horizontally and adds a little spacing above the tags */
}
/* ==========================================================================
   CATALOG LEAD PAGE UI
   ========================================================================== */

/* 1. The Split Layout (Desktop) */
.catalog-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* 2. Left Column Text Styling */
.catalog-info-column h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}
.catalog-info-column p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}
.catalog-benefits {
    list-style: none;
    padding: 0;
}
.catalog-benefits li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #333;
}
.catalog-benefits strong {
    color: #000;
}

/* 3. The Form Card (Right Column) */
.premium-form-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Deep, soft shadow for premium feel */
    border: 1px solid #eaeaea;
}
.premium-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* 4. Form Input Styling */
.modern-form .form-row {
    display: flex;
    gap: 1.5rem;
}
.modern-form .form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}
.modern-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}
.modern-form input,
.modern-form select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: inherit;
}
.modern-form input:focus,
.modern-form select:focus {
    outline: none;
    border-color: #000; /* Change this to your primary brand color if needed */
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

/* 5. Select Box Customization */
.custom-select-wrapper select {
    cursor: pointer;
    appearance: none; /* Removes default browser styling */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* 6. The Submit Button */
.form-submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 7. Error Message Styling */
.form-error {
    background: #fff0f0;
    color: #d32f2f;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* 8. Mobile Responsiveness */
@media (max-width: 768px) {
    .catalog-split-grid {
        grid-template-columns: 1fr; /* Stacks the columns on mobile */
        gap: 2rem;
    }
    .modern-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .premium-form-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   CATALOG BENEFITS ALIGNMENT FIX
   ========================================================================== */

.catalog-benefits li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important; /* Creates a consistent space between the icon, title, and text */
}

.catalog-benefits strong {
    flex: 0 0 210px !important; /* Locks every title to exactly 210px wide */
    display: block !important;
    line-height: 1.4 !important;
}

/* For mobile devices, stack the text so it doesn't get squeezed */
@media (max-width: 768px) {
    .catalog-benefits strong {
        flex: 0 0 140px !important; /* Slightly narrower on mobile */
    }
}