    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #F0F5FF;
      --glass: rgba(255,255,255,0.28);
      --glass-strong: rgba(255,255,255,0.50);
      --glass-border: rgba(255,255,255,0.48);
      --glass-shadow: 0 8px 40px rgba(80,100,140,0.10);
      --glass-shadow-hover: 0 20px 64px rgba(80,100,140,0.18);
      --text: #2D3E4F;
      --text-muted: #6B7F94;
      --accent-sage: #C6DDB8;
      --accent-lavender: #D9C9F0;
      --accent-blush: #F0C9D9;
      --accent-gold: #E8C98A;
      --deep-rose: #C4547A;
      --radius: 22px;
      --serif: 'Cormorant Garamond', serif;
      --sans: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      font-weight: 300;
      color: var(--text);
      background: var(--bg);
      overflow-x: hidden;
      min-height: 100vh;
    }

    .parallax-container {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .parallax-layer {
      position: absolute;
      inset: 0;
      will-change: transform;
    }

    .bg-section {
      position: absolute;
      inset: 0;
      height: 100vh;
      opacity: 0;
      transition: opacity 1.6s cubic-bezier(0.4,0,0.2,1);
      pointer-events: none;
    }

    .bg-section.visible { opacity: 1; }

    .bg-section-1 {
      background:
        radial-gradient(circle at 30% 40%, rgba(198,221,184,0.45) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(217,201,240,0.35) 0%, transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(240,201,217,0.25) 0%, transparent 50%);
    }

    .bg-section-2 {
      background:
        radial-gradient(circle at 70% 30%, rgba(217,201,240,0.5) 0%, transparent 45%),
        radial-gradient(circle at 40% 80%, rgba(232,201,138,0.3) 0%, transparent 40%);
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.55;
      animation: orbPulse 12s ease-in-out infinite alternate;
    }

    .orb-1 {
      width: 700px;
      height: 700px;
      background: var(--accent-sage);
      top: -200px;
      left: -150px;
    }

    .orb-2 {
      width: 500px;
      height: 500px;
      background: var(--accent-lavender);
      top: 200px;
      right: -100px;
      animation-delay: -3s;
    }

    .orb-3 {
      width: 600px;
      height: 600px;
      background: var(--accent-blush);
      bottom: -100px;
      left: 30%;
      animation-delay: -6s;
    }

    @keyframes orbPulse {
      0% { transform: scale(1); opacity: 0.45; }
      100% { transform: scale(1.1); opacity: 0.65; }
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.28);
      backdrop-filter: blur(2px);
      border: 1px solid rgba(255,255,255,0.40);
      pointer-events: none;
      animation: particleFloat 20s infinite ease-in-out;
    }

    .particle-1 { width: 120px; height: 120px; top: 15%; left: 5%; animation-delay: 0s; }
    .particle-2 { width: 70px; height: 70px; top: 60%; right: 8%; animation-delay: -5s; }
    .particle-3 { width: 160px; height: 160px; bottom: 15%; left: 15%; animation-delay: -10s; }
    .particle-4 { width: 90px; height: 90px; top: 35%; right: 18%; animation-delay: -15s; }

    @keyframes particleFloat {
      0%,100% { transform: translateY(0) rotate(0deg); }
      33% { transform: translateY(-30px) translateX(15px) rotate(120deg); }
      66% { transform: translateY(20px) translateX(-20px) rotate(240deg); }
    }

    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-sage), var(--accent-lavender), var(--accent-blush), var(--accent-gold));
      z-index: 2000;
      transition: width 0.1s linear;
    }

    .glass {
      background: var(--glass);
      backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      box-shadow: var(--glass-shadow);
    }

    .glass-strong {
      background: var(--glass-strong);
      backdrop-filter: blur(22px);
      border: 1px solid rgba(255,255,255,0.58);
      border-radius: var(--radius);
      box-shadow: var(--glass-shadow);
    }

    .glass-sm {
      background: rgba(255,255,255,0.38);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.50);
      border-radius: 18px;
      box-shadow: 0 8px 28px rgba(80,100,140,0.08);
    }

    .top-bar {
      position: relative;
      z-index: 300;
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.30);
      padding: 9px 0;
      font-size: 11.5px;
      font-weight: 400;
      color: var(--text-muted);
    }

    .top-bar-center { font-weight: 500; color: var(--text); }
    .top-bar a {
      text-decoration: none;
      color: var(--text-muted);
      transition: color .2s;
      font-size: 11.5px;
    }
    .top-bar a:hover { color: var(--text); }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 500;
      background: rgba(240,245,255,0.62);
      backdrop-filter: blur(22px);
      border-bottom: 1px solid rgba(255,255,255,0.42);
      box-shadow: 0 2px 20px rgba(80,100,140,0.07);
      transition: background .3s, box-shadow .3s;
    }

    .site-header .navbar { min-height: 72px; }

    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-icon img {
      width: 55px;
      height: 55px;
      object-fit: contain;
    }

    .logo-text {
      font-family: var(--serif);
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--text);
      line-height: 1;
    }

    .logo-text em {
      display: block;
      font-style: italic;
      font-size: 9.5px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .nav-menu .nav-link {
      color: var(--text-muted) !important;
      font-size: 12.5px;
      font-weight: 400;
      letter-spacing: 0.04em;
      padding: 8px 13px !important;
      border-radius: 50px;
      transition: all .2s;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
      color: var(--text) !important;
      background: rgba(255,255,255,0.48);
    }

    .navbar-toggler {
      border: none !important;
      padding: 6px 8px;
    }

    .navbar-toggler:focus { box-shadow: none !important; }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232D3E4F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
      background: rgba(240,245,255,0.92);
      backdrop-filter: blur(22px);
      border-top: 1px solid rgba(255,255,255,0.42);
      padding: 12px 0 16px;
      margin-top: 4px;
      border-radius: 0 0 20px 20px;
      max-height: 80vh;
      overflow-y: auto;
    }

    .header-icons {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .icon-btn {
      width: 38px;
      height: 38px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      cursor: pointer;
      text-decoration: none;
      transition: all .22s;
      color: var(--text);
      position: relative;
    }

    .icon-btn:hover {
      background: rgba(255,255,255,0.58);
      transform: translateY(-2px);
    }

    .cart-badge {
      position: absolute;
      top: -3px;
      right: -3px;
      width: 16px;
      height: 16px;
      background: var(--deep-rose);
      color: white;
      border-radius: 50%;
      font-size: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      border: 2px solid var(--bg);
    }

    .support-page {
      position: relative;
      z-index: 1;
      padding: 48px 0 90px;
    }

    .breadcrumb-trail {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11.5px;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    .breadcrumb-trail a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color .2s;
    }

    .breadcrumb-trail a:hover { color: var(--text); }

    .breadcrumb-trail .sep { opacity: 0.4; }
    .breadcrumb-trail .current { color: var(--text); font-weight: 400; }

    .support-hero {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 42px;
    }

    .section-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #7C9A7C;
      margin-bottom: 12px;
    }

    .support-title {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 300;
      color: var(--text);
      line-height: 1.04;
      margin-bottom: 12px;
    }

    .support-title em {
      font-style: italic;
      color: #8099B0;
    }

    .support-sub {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.82;
      max-width: 700px;
      margin: 0 auto 26px;
    }

    .support-quick-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .quick-pill {
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,0.46);
      border: 1px solid rgba(255,255,255,0.58);
      color: var(--text);
      text-decoration: none;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: all .22s;
    }

    .quick-pill:hover {
      background: rgba(255,255,255,0.7);
      transform: translateY(-2px);
    }

    .support-grid {
      display: grid;
      gap: 18px;
    }

    .support-card {
      padding: 26px 24px;
      overflow: hidden;
      position: relative;
    }

    .support-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-sage), var(--accent-lavender), var(--accent-blush));
      opacity: 0.9;
    }

    .support-card-head {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
    }

    .support-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255,255,255,0.58);
      border: 1px solid rgba(255,255,255,0.65);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--deep-rose);
      font-size: 20px;
      flex-shrink: 0;
    }

    .support-card-head h2 {
      font-family: var(--serif);
      font-size: 1.85rem;
      font-weight: 400;
      color: var(--text);
      margin: 0 0 4px;
    }

    .support-card-head p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.75;
      margin: 0;
    }

    .support-info-list {
      display: grid;
      gap: 12px;
    }

    .info-item {
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255,255,255,0.34);
      border: 1px solid rgba(255,255,255,0.46);
    }

    .info-item strong {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
    }

    .info-item span,
    .info-item p {
      font-size: 12.5px;
      color: var(--text-muted);
      line-height: 1.75;
      margin: 0;
    }

    .contact-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 4px;
    }

    .mini-link-btn {
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.52);
      border: 1px solid rgba(255,255,255,0.62);
      text-decoration: none;
      color: var(--text);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: all .22s;
    }

    .mini-link-btn:hover {
      background: rgba(255,255,255,0.75);
      transform: translateY(-2px);
    }

    .care-grid,
    .delivery-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255,255,255,0.34);
      border: 1px solid rgba(255,255,255,0.46);
    }

    .faq-q {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 6px;
    }

    .faq-a {
      font-size: 12.5px;
      color: var(--text-muted);
      line-height: 1.78;
    }

    .location-box {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255,255,255,0.38);
      border: 1px solid rgba(255,255,255,0.50);
    }

    .map-placeholder {
      height: 260px;
      border-radius: 18px;
      background:
        linear-gradient(rgba(255,255,255,0.22), rgba(255,255,255,0.22)),
        radial-gradient(circle at 30% 40%, rgba(198,221,184,0.55), transparent 30%),
        radial-gradient(circle at 65% 60%, rgba(217,201,240,0.48), transparent 30%),
        radial-gradient(circle at 80% 25%, rgba(240,201,217,0.42), transparent 25%),
        rgba(255,255,255,0.5);
      border: 1px solid rgba(255,255,255,0.56);
      position: relative;
      overflow: hidden;
      margin-bottom: 14px;
    }

    .map-pin {
      position: absolute;
      top: 50%;
      left: 52%;
      transform: translate(-50%, -50%);
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: rgba(255,255,255,0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--deep-rose);
      font-size: 24px;
      box-shadow: 0 12px 30px rgba(80,100,140,0.14);
    }

    .location-meta {
      display: grid;
      gap: 10px;
    }

    .location-meta-row {
      display: grid;
      grid-template-columns: 105px 1fr;
      gap: 12px;
      align-items: start;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.38);
    }

    .location-meta-row:last-child { border-bottom: none; }

    .meta-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      font-weight: 600;
    }

    .meta-value {
      font-size: 12.5px;
      color: var(--text);
      line-height: 1.75;
    }

    .support-cta {
      margin-top: 42px;
    }

    .cta-card {
      padding: 30px 26px;
      text-align: center;
    }

    .cta-card h3 {
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 400;
      margin-bottom: 8px;
    }

    .cta-card p {
      font-size: 13px;
      color: var(--text-muted);
      max-width: 620px;
      margin: 0 auto 18px;
      line-height: 1.8;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .cta-btn {
      padding: 12px 20px !important;
      border-radius: 999px !important;
      font-size: 11px !important;
      font-weight: 600 !important;
      letter-spacing: 0.08em !important;
      text-transform: uppercase !important;
    }

    .cta-btn-primary {
      background: var(--text) !important;
      color: white !important;
      border: none !important;
      box-shadow: 0 8px 28px rgba(45,62,79,0.18) !important;
    }

    .cta-btn-secondary {
      background: rgba(255,255,255,0.58) !important;
      color: var(--text) !important;
      border: 1px solid rgba(255,255,255,0.66) !important;
    }

    footer {
      position: relative;
      z-index: 1;
      background: rgba(240,245,255,0.58);
      backdrop-filter: blur(18px);
      border-top: 1px solid rgba(255,255,255,0.42);
      padding: 64px 0 32px;
    }

    .footer-brand p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.72;
      margin: 14px 0 20px;
      font-weight: 300;
    }

    .social-icons {
      display: flex;
      gap: 8px;
    }

    .social-btn {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.48);
      border: 1px solid rgba(255,255,255,0.58);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      cursor: pointer;
      text-decoration: none;
      color: var(--text);
      transition: all .2s;
    }

    .social-btn:hover {
      background: rgba(255,255,255,0.72);
      transform: translateY(-2px);
    }

    .footer-col h5 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 18px;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
    }

    .footer-col ul li { margin-bottom: 10px; }

    .footer-col ul li a {
      font-size: 13px;
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 300;
      transition: color .2s;
    }

    .footer-col ul li a:hover { color: var(--text); }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.32);
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 52px;
    }

    .footer-bottom p {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 300;
      margin: 0;
    }

    .payment-icons {
      display: flex;
      gap: 8px;
    }

    .payment-icon {
      padding: 5px 10px;
      font-size: 11px;
      font-weight: 600;
      color: var(--text-muted);
      background: rgba(255,255,255,0.48);
      border: 1px solid rgba(255,255,255,0.58);
      border-radius: 6px;
    }

    .footer-legal {
      display: flex;
      gap: 18px;
    }

    .footer-legal a {
      font-size: 12px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-legal a:hover { color: var(--text); }

    @media (max-width: 991.98px) {
      .care-grid,
      .delivery-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 767.98px) {
      .support-page {
        padding-top: 36px;
      }

      .support-card,
      .cta-card {
        padding: 22px 18px;
      }

      .location-meta-row {
        grid-template-columns: 1fr;
        gap: 4px;
      }

      .footer-bottom {
        align-items: flex-start;
      }
    }