  :root {
      --blue: #006eb5;
      --blue-dark: #004b7d;
      --green: #4caf50;
      --green-dark: #388e3c;
      --brand-blue: #006eb5;
      --brand-blue-dark: #004b7d;
      --brand-green: #4caf50;
      --brand-green-dark: #388e3c;
      --light-bg: #f8fcff;
      --dark-text: #1a3c5e;
      --gray-50: #f9fafb;
      --gray-100: #f3f4f6;
      --gray-200: #e5e7eb;
      --gray-600: #4b5563;
      --gray-700: #374151;
  }

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

  .tail-container {
      font-family: 'Inter', system-ui, sans-serif;
  }

  .heading-font {
    font-family: 'Playfair Display', serif;
}

.stepper .step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}

.stepper .step.active {
    color: var(--blue);
    font-weight: 600;
}

.stepper .step .number {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid #d1d5db;
}

.stepper .step.active .number {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

.stepper .divider {
    flex: 1;
    height: 2px;
    background: #d1d5db;
    max-width: 120px;
}

.card {
    background: white;
    border-radius: 1.25rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.card:hover {
    box-shadow: 0 10px 30px -6px rgba(0, 110, 181, 0.1);
}

.input {
    transition: all 0.2s ease;
}

.input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 110, 181, 0.12);
    outline: none;
}
  .hero-bg {
      background: linear-gradient(135deg, rgba(0, 110, 181, 0.78), rgba(0, 110, 181, 0.65)),
          url('https://images.unsplash.com/photo-1618498082410-5c7e9e8b4b0f') center/cover no-repeat fixed;
  }

  html,
  body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
  }


  .heading-font {
      font-family: 'Playfair Display', serif;
  }

  .input-focus {
      transition: all 0.3s ease;
  }

  .input-focus:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(0, 110, 181, 0.15);
      outline: none;
  }

  .reason-option:hover {
      background: rgba(76, 175, 80, 0.07);
      border-color: var(--green);
  }

  .topbar {
      background: #0f2d45;
      /* deep blue, strong contrast */
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.75rem;
      position: sticky;
  }

  .topbar-inner {
      max-width: 1200px;
      margin: auto;
      padding: 6px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  /* LEFT */
  .topbar-left {
      display: flex;
      gap: 20px;
  }

  .topbar-left span {
      display: flex;
      align-items: center;
      gap: 6px;
      opacity: 0.85;
  }

  /* RIGHT */
  .topbar-right {
      display: flex;
      align-items: center;
      gap: 6px;
      opacity: 0.7;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
      .topbar-left span:last-child {
          display: none;
      }

      .topbar-right {
          display: none;
      }
  }

  /* NAV BASE */
  /* NAV BASE */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e6eef5;
}

/* CONTAINER */
.nav-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo-wrap img {
    height: 70px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a3f54;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
}

.nav-links a:hover {
    color: var(--brand-blue);
}

.nav-links a.active {
    color: var(--brand-blue);
    font-weight: 600;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--brand-blue);
    transition: width 0.25s ease;
}

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

/* ACTIONS */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* SAFETY STACKING */
.site-header,
.nav-container,
.nav-actions,
.nav-icon,
.menu-toggle {
    position: relative;
}

.nav-icon,
.menu-toggle {
    z-index: 20;
}

/* ICONS */
.nav-actions i {
    font-size: 1.25rem;
    color: #4a657d;
    cursor: pointer;
    transition: 0.25s;
}

.nav-actions i:hover {
    color: var(--brand-blue);
    transform: translateY(-1px);
}

/* CART */
.nav-icon.cart {
    position: relative;
}

.nav-icon.cart span {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--brand-green);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50%;
    padding: 3px 6px;
}

/* MENU BUTTON */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
}

/* MOBILE DRAWER */
/* === FINAL MOBILE MENU OVERRIDE FIX === */
.mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    left: -320px !important;
    right: auto !important;
    width: 300px !important;
    max-width: 85% !important;
    height: 100% !important;
    background: #ffffff !important;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1) !important;
    z-index: 1001 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    overflow-y: auto !important;
    transition: left 0.35s ease !important;
    transform: none !important;
}

.mobile-drawer.active {
    left: 0 !important;
}

.menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(4px) !important;
    z-index: 1000 !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: block !important;

    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

body.overflow-hidden {
    overflow: hidden !important;
}

#closeMenu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

#closeMenu:hover {
    color: #ff4d4d;
}

/* DRAWER LINKS */
.drawer-links {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 15px;
    padding: 20px;
}

.drawer-links a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    padding: 12px 0;
    border-bottom: 1px solid #f9f9f9;
    transition: padding-left 0.3s, color 0.3s;
}

.drawer-links a:hover {
    color: #007bff;
    padding-left: 10px;
}

/* DRAWER FOOTER */
.drawer-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.drawer-footer p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.drawer-footer span {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

/* OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9998;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

    .menu-toggle {
        display: block;
    }
}

  /* === HERO ANIMATIONS === */

  .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
  }

  .fade-up.show {
      opacity: 1;
      transform: translateY(0);
  }

  .fade-in {
      opacity: 0;
      transition: opacity 1s ease;
  }

  .fade-in.show {
      opacity: 1;
  }

  /* floating effect */
  .float-soft {
      animation: floatSoft 6s ease-in-out infinite;
  }

  @keyframes floatSoft {

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

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

  /* glow breathing */
  .glow-move {
      animation: glowMove 12s ease-in-out infinite alternate;
  }

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

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

  .card {
      position: relative;
      background: white;
      border-radius: 18px;
      border: 1px solid #e2e8f0;
      overflow: hidden;

      transition:
          transform 0.45s cubic-bezier(.21, 1.02, .73, 1),
          box-shadow 0.45s ease,
          border-color 0.35s ease;

      /* ensure stacking context */
      z-index: 1;
  }

  /* 🔥 IMPORTANT FIX */
  .card::before,
  .card::after {
      pointer-events: none;
      /* THIS is what fixes your button issue */
  }

  /* soft glow layer */
  .card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(circle at 20% 10%,
              rgba(0, 110, 181, 0.08),
              transparent 55%);
      opacity: 0;
      transition: opacity 0.45s ease;
      z-index: 0;
  }

  /* edge shimmer */
  .card::after {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: linear-gradient(120deg,
              transparent,
              rgba(0, 110, 181, 0.15),
              transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 0;
  }

  /* ensure content sits ABOVE effects */
  .card>* {
      position: relative;
      z-index: 2;
  }

  /* HOVER */
  .card:hover {
      transform: translateY(-10px) scale(1.01);
      border-color: #dbe7f2;

      box-shadow:
          0 30px 60px -15px rgba(0, 110, 181, 0.18),
          0 12px 25px -10px rgba(0, 110, 181, 0.12),
          0 2px 6px rgba(0, 0, 0, 0.04);
  }

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

  .card:hover::after {
      opacity: 1;
  }

  .card button {
      position: relative;
      z-index: 3;
      /* extra safety */

      transition: all 0.25s ease;
  }

  .card button:hover {
      transform: scale(1.05);
  }

  .card button:active {
      transform: scale(0.95);
  }

  .card img,
  .card .card-icon {
      transition: transform 0.5s ease;
  }

  .card:hover img,
  .card:hover .card-icon {
      transform: scale(1.05);
  }

  .card h3,
  .card h4 {
      transition: color 0.3s ease;
  }

  .card:hover h3,
  .card:hover h4 {
      color: var(--blue);
  }



  .floating-card {
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .product-card {
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .product-card:hover {
      transform: translateY(-20px) scale(1.04);
      box-shadow: 0 25px 50px -12px rgb(0 110 181 / 0.25);
  }

  .category-card {
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .category-card:hover {
      transform: scale(1.08) rotate(1deg);
  }

  .horizontal-scroll {
      scrollbar-width: none;
  }

  .horizontal-scroll::-webkit-scrollbar {
      display: none;
  }

  .products-section {
      padding: 100px 20px;
      background: #ffffff;
  }

  .products-container {
      max-width: 1200px;
      margin: auto;
  }

  /* HEADER */
  .products-header {
      margin-bottom: 50px;
  }

  .products-badge {
      background: #e8f7ef;
      color: var(--brand-green-dark);
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 600;
  }

  .products-header h2 {
      font-size: 2.4rem;
      font-weight: 700;
      margin-top: 12px;
      color: #0e2a47;
  }

  /* GRID (REAL RESPONSIVE FIX) */
  .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
  }

  /* CARD */
  .product-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid #eef3f7;
      transition: 0.3s ease;
  }

  /* hover lift */
  .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  }

  /* IMAGE */
  .product-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
  }

  /* CONTENT */
  .product-card .card-body {
      padding: 18px;
  }

  .product-card h5 {
      font-size: 1rem;
      font-weight: 600;
      color: #1a3c5e;
  }

  .product-card p {
      font-size: 0.8rem;
      color: #6b8aa6;
      margin-top: 4px;
  }

  /* BOTTOM */
  .product-bottom {
      margin-top: 18px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
  }

  /* PRICE */
  .price {
      font-size: 1.3rem;
      font-weight: 700;
      color: #0e2a47;
  }

  .price span {
      font-size: 0.7rem;
      color: #8aa0b5;
  }

  /* BUTTON */
  .add-btn {
      background: var(--brand-blue);
      color: white;
      border: none;
      padding: 8px 18px;
      border-radius: 999px;
      font-size: 0.8rem;
      cursor: pointer;
      transition: 0.25s;
  }

  .add-btn:hover {
      background: var(--brand-green);
      transform: scale(1.05);
  }

  /* RESPONSIVE (this fixes your mobile issue) */
  @media (max-width: 992px) {
      .products-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 500px) {
      .products-grid {
          grid-template-columns: 1fr;
      }
  }

  .why-section {
      padding: 100px 20px;
  }

  .why-container {
      max-width: 1200px;
      margin: auto;
      background: linear-gradient(135deg, #0e2a47, #1a3c5e);
      border-radius: 28px;
      padding: 70px 60px;
      position: relative;
      overflow: hidden;
  }

  /* subtle glow background */
  .why-container::before {
      content: "";
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(0, 174, 255, 0.2), transparent);
  }

  /* HEADER */
  .why-header span {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.75rem;
      color: var(--brand-green);
      font-weight: 600;
  }

  .why-header h2 {
      font-size: 2.6rem;
      font-weight: 700;
      margin-top: 10px;
      color: white;
      max-width: 600px;
  }

  /* GRID */
  .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 50px;
  }

  /* CARD */
  .why-card {
      background: rgba(255, 255, 255, 0.06);
      border-radius: 20px;
      padding: 28px;
      backdrop-filter: blur(10px);
      transition: 0.3s ease;
  }

  /* hover effect */
  .why-card:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  /* ICON */
  .why-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 1.4rem;
      color: var(--brand-green);
  }

  /* TEXT */
  .why-card h4 {
      font-size: 1.2rem;
      font-weight: 600;
      color: white;
  }

  .why-card p {
      margin-top: 10px;
      font-size: 0.9rem;
      color: #c7d6e5;
      line-height: 1.6;
  }

  .why-card {
      animation: fadeUp 0.8s ease forwards;
      opacity: 0;
  }

  .why-card:nth-child(1) {
      animation-delay: 0.1s;
  }

  .why-card:nth-child(2) {
      animation-delay: 0.2s;
  }

  .why-card:nth-child(3) {
      animation-delay: 0.3s;
  }

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

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

  /* RESPONSIVE */
  @media (max-width: 992px) {
      .why-container {
          padding: 50px 30px;
      }

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

  @media (max-width: 600px) {
      .why-grid {
          grid-template-columns: 1fr;
      }

      .why-header h2 {
          font-size: 2rem;
      }
  }

  .newsletter-section {
      position: relative;
      padding: 120px 20px;
      overflow: hidden;
      text-align: center;
      color: white;
  }

  /* 🌊 ANIMATED GRADIENT */
  .newsletter-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(270deg, #006eb5, #00a8e8, #4caf50);
      background-size: 500% 500%;
      animation: flowGradient 10s ease infinite;
      z-index: 0;
  }

  @keyframes flowGradient {
      0% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }

      100% {
          background-position: 0% 50%;
      }
  }

  /* subtle glow */
  .newsletter-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.12), transparent 60%);
  }

  /* CONTENT */
  .newsletter-content {
      position: relative;
      max-width: 600px;
      margin: auto;
      z-index: 1;
  }

  /* TEXT */
  .newsletter-content h2 {
      font-size: 2.4rem;
      font-weight: 700;
  }

  .newsletter-content p {
      margin-top: 12px;
      opacity: 0.9;
      font-size: 1.05rem;
  }

  /* FORM WRAPPER (GLASS CARD) */
  .newsletter-form {
      margin-top: 40px;
      display: flex;
      gap: 10px;
      padding: 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(14px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  /* INPUT */
  .newsletter-form input {
      flex: 1;
      border: none;
      outline: none;
      padding: 14px 18px;
      border-radius: 999px;
      font-size: 0.95rem;
      background: rgba(255, 255, 255, 0.9);
      color: #0e2a47;
  }

  .newsletter-form input::placeholder {
      color: #6b8aa6;
  }

  /* BUTTON */
  .newsletter-form button {
      border: none;
      border-radius: 999px;
      padding: 14px 22px;
      font-weight: 600;
      background: #ffffff;
      color: #006eb5;
      cursor: pointer;
      transition: 0.25s;
  }

  /* HOVER */
  .newsletter-form button:hover {
      transform: scale(1.05);
      background: #eaf6ff;
  }

  /* FOCUS GLOW */
  .newsletter-form input:focus {
      box-shadow: 0 0 0 2px rgba(0, 174, 255, 0.4);
  }

  .marquee {
      animation: marquee 25s linear infinite;
  }

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

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

  .blog-card {
      transition: all 0.4s ease;
  }

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

  /* Shop Page */
  .product-card {
      background: white;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.35s ease;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 35px -10px rgba(0, 110, 181, 0.18);
      border-color: #cbd5e1;
  }

  .product-img-container {
      position: relative;
      overflow: hidden;
      background: #f8fafc;
      height: 240px;
  }

  .product-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      transition: transform 0.55s ease;
  }

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

  .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #e0f2fe;
      color: #0369a1;
      font-size: 0.8125rem;
      font-weight: 500;
      padding: 0.375rem 0.75rem;
      border-radius: 9999px;
      border: 1px solid #bae6fd;
  }

  .pill-remove {
      cursor: pointer;
      font-size: 1.1rem;
      line-height: 1;
      color: #0369a1;
      opacity: 0.7;
  }

  .pill-remove:hover {
      opacity: 1;
  }

  .stock-in {
      background: #ecfdf5;
      color: #065f46;
      border: 1px solid #a7f3d0;
  }

  .stock-low {
      background: #fffbeb;
      color: #92400e;
      border: 1px solid #fde68a;
  }

  .stock-backorder {
      background: #fef2f2;
      color: #991b1b;
      border: 1px solid #fecaca;
  }

  /* Container allows clicks only on children */
  #toast-container>* {
      pointer-events: auto;
  }

  /* Toast base */
  .toast {
      min-width: 260px;
      max-width: 360px;
      background: #1a3c5e;
      color: white;
      padding: 16px 18px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

      display: flex;
      align-items: flex-start;
      gap: 12px;

      opacity: 0;
      transform: translateY(20px) scale(0.95);
      transition: all 0.3s ease;
  }

  /* visible */
  .toast.show {
      opacity: 1;
      transform: translateY(0) scale(1);
  }

  /* exit */
  .toast.hide {
      opacity: 0;
      transform: translateY(10px) scale(0.95);
  }

  /* icon */
  .toast-icon {
      font-size: 20px;
      margin-top: 2px;
  }

  /* close btn */
  .toast-close {
      margin-left: auto;
      font-size: 16px;
      opacity: 0.7;
      cursor: pointer;
      transition: opacity 0.2s;
  }

  .toast-close:hover {
      opacity: 1;
  }

  .star {
      color: #facc15;
  }

  /* Bulk Page */
  .tier-card {
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .tier-card:hover {
      transform: translateY(-14px);
      box-shadow: 0 25px 50px -12px rgb(0 110 181 / 0.25);
  }

  .quote-table tr {
      transition: background 0.2s ease;
  }

  .quote-table tr:hover {
      background: #f8fcff;
  }


  .custom-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
      background-position: right 1rem center;
      background-repeat: no-repeat;
      background-size: 1.2em;
  }

  .custom-select:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px var(--ring);
      transform: translateY(-1px);
  }

  select.custom-select {
      appearance: none;
      background-image:
          linear-gradient(45deg, transparent 50%, var(--blue) 50%),
          linear-gradient(135deg, var(--blue) 50%, transparent 50%);
      background-position:
          calc(100% - 22px) 55%,
          calc(100% - 16px) 55%;
      background-size: 6px 6px;
      background-repeat: no-repeat;
  }

  select option {
      background-color: white;
      color: #1e293b;
  }

  /*blog page*/
  .article-card {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .article-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 24px -6px rgba(0, 110, 181, 0.12);
  }

  .article-img {
      transition: transform 0.5s ease;
  }

  .article-card:hover .article-img {
      transform: scale(1.04);
  }

  .category-pill {
      transition: all 0.2s ease;
  }

  .category-pill.active {
      background: var(--blue);
      color: white;
      border-color: var(--blue);
  }

  /* Site FOOTER */
  .site-footer {
      position: relative;
      overflow: hidden;

      background:
          radial-gradient(circle at top left,
              rgba(0, 174, 255, 0.07),
              transparent 28%),

          radial-gradient(circle at bottom right,
              rgba(76, 175, 80, 0.07),
              transparent 28%),

          linear-gradient(180deg,
              #102b46 0%,
              #0a1d31 100%);

      color: #d6e4f0;
      padding-top: 72px;
  }

  /* subtle glows */
  .footer-glow {
      position: absolute;
      border-radius: 999px;
      filter: blur(90px);
      pointer-events: none;
  }

  .footer-glow-1 {
      width: 240px;
      height: 240px;
      background: rgba(0, 174, 255, 0.10);
      top: -100px;
      left: -100px;
  }

  .footer-glow-2 {
      width: 220px;
      height: 220px;
      background: rgba(76, 175, 80, 0.08);
      bottom: -90px;
      right: -90px;
  }

  /* ========================= */
  /* CONTAINER */
  /* ========================= */

  .footer-container {
      position: relative;
      z-index: 2;

      max-width: 1280px;
      margin: auto;

      padding: 0 24px 48px;

      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.3fr;
      gap: 42px;
      align-items: start;
  }

  /* ========================= */
  /* BRAND */
  /* ========================= */

  .footer-brand {
      max-width: 320px;
  }

  .footer-logo-clean {
      margin-bottom: 18px;
  }

  .logo-shell {
      display: inline-flex;
      align-items: center;
      justify-content: center;

      padding: 12px 16px;

      border-radius: 22px;

      background:
          linear-gradient(145deg,
              rgba(255, 255, 255, 0.11),
              rgba(255, 255, 255, 0.03));

      border: 1px solid rgba(255, 255, 255, 0.08);

      backdrop-filter: blur(10px);

      box-shadow:
          0 14px 35px rgba(0, 0, 0, 0.18),
          inset 0 1px 0 rgba(255, 255, 255, 0.05);

      transition: 0.3s ease;
  }

  .logo-shell:hover {
      transform: translateY(-3px);

      box-shadow:
          0 18px 45px rgba(0, 0, 0, 0.22),
          0 0 24px rgba(0, 174, 255, 0.10);
  }

  .logo-shell img {
      height: 56px;
      width: auto;
      object-fit: contain;
      mix-blend-mode: screen;
  }

  .footer-brand p {
      color: rgba(214, 228, 240, 0.76);

      line-height: 1.7;
      font-size: 0.94rem;
  }

  /* ========================= */
  /* PAYMENT */
  /* ========================= */

  .payment-methods {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;

      margin-top: 22px;
  }

  .payment-pill {
      height: 40px;

      padding: 0 14px;

      border-radius: 13px;

      display: flex;
      align-items: center;
      gap: 8px;

      background: rgba(255, 255, 255, 0.05);

      border: 1px solid rgba(255, 255, 255, 0.07);

      backdrop-filter: blur(8px);

      font-size: 0.82rem;
      font-weight: 600;

      transition: 0.3s ease;
  }

  .payment-pill:hover {
      transform: translateY(-2px);

      background: rgba(255, 255, 255, 0.09);
  }

  .payment-pill i {
      font-size: 1rem;
  }

  /* mastercard */
  .mastercard {
      position: relative;
      gap: 0;
      padding-left: 12px;
  }

  .mc-circle {
      width: 12px;
      height: 12px;

      border-radius: 999px;
      background: #eb001b;
  }

  .mc-circle.second {
      background: #f79e1b;
      margin-left: -4px;
  }

  .mastercard small {
      margin-left: 8px;
      font-size: 0.76rem;
  }

  /* ========================= */
  /* SOCIALS */
  /* ========================= */

  .footer-socials {
      display: flex;
      gap: 12px;

      margin-top: 22px;
  }

  .footer-socials a {
      width: 42px;
      height: 42px;

      border-radius: 14px;

      display: flex;
      align-items: center;
      justify-content: center;

      background:
          linear-gradient(145deg,
              rgba(255, 255, 255, 0.08),
              rgba(255, 255, 255, 0.02));

      border: 1px solid rgba(255, 255, 255, 0.08);

      color: white;

      font-size: 1rem;

      transition: 0.3s ease;
  }

  .footer-socials a:hover {
      transform: translateY(-4px);

      background:
          linear-gradient(135deg,
              var(--brand-blue),
              var(--brand-green));

      box-shadow:
          0 14px 28px rgba(0, 174, 255, 0.16);
  }

  /* ========================= */
  /* FOOTER COLUMNS */
  /* ========================= */

  .footer-col {
      display: flex;
      flex-direction: column;
  }

  .footer-col h6 {
      position: relative;

      display: inline-block;

      margin-bottom: 18px;

      color: #8fe28f;

      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
  }

  .footer-col h6::after {
      content: "";

      position: absolute;

      left: 0;
      bottom: -7px;

      width: 22px;
      height: 2px;

      border-radius: 999px;

      background: var(--brand-green);
  }

  /* LINKS */
  .footer-col a {
      position: relative;

      display: inline-flex;

      margin-bottom: 12px;

      text-decoration: none;

      color: rgba(214, 228, 240, 0.80);

      font-size: 0.92rem;
      line-height: 1.4;

      transition: 0.25s ease;
  }

  .footer-col a:hover {
      color: white;
      transform: translateX(4px);
  }

  .footer-col a::before {
      content: "";

      position: absolute;

      left: 0;
      bottom: -3px;

      width: 0%;
      height: 1px;

      background: var(--brand-green);

      transition: 0.25s ease;
  }

  .footer-col a:hover::before {
      width: 100%;
  }
  /* ========================= */
  /* CONTACT */
  /* ========================= */

  .contact .phone {
      margin-top: 10px;

      font-size: 1.3rem;
      font-weight: 700;

      color: white;
  }

  .contact p {
      margin-top: 6px;

      color: rgba(214, 228, 240, 0.72);

      line-height: 1.65;
      font-size: 0.92rem;
  }

  .contact-link {
      margin-bottom: 10px !important;
  }

  /* registered */
  .registered-box {
      margin-top: 18px;

      display: inline-flex;
      align-items: center;
      gap: 8px;

      padding: 10px 14px;

      border-radius: 14px;

      background: rgba(76, 175, 80, 0.10);

      border: 1px solid rgba(76, 175, 80, 0.14);

      color: #b6f5ba;

      font-size: 0.8rem;
      font-weight: 600;
  }

  .registered-box i {
      color: #8ff39a;
  }

  /* ========================= */
  /* BOTTOM BAR */
  /* ========================= */

  .footer-bottom {
      position: relative;
      z-index: 2;

      max-width: 1280px;
      margin: auto;

      padding: 18px 24px;

      border-top: 1px solid rgba(255, 255, 255, 0.08);

      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;

      font-size: 0.82rem;

      color: rgba(214, 228, 240, 0.60);
  }

  .footer-bottom-left {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
  }

  .footer-bottom-right a {
      color: white;
      text-decoration: none;
      font-weight: 600;

      position: relative;
  }

  .footer-bottom-right a::after {
      content: "";

      position: absolute;

      left: 0;
      bottom: -3px;

      width: 100%;
      height: 1px;

      background: linear-gradient(to right,
              var(--brand-blue),
              var(--brand-green));
  }

  /* ========================= */
  /* RESPONSIVE */
  /* ========================= */

  @media (max-width: 1100px) {

      .footer-container {
          grid-template-columns: 1fr 1fr;
          gap: 36px;
      }
  }

  @media (max-width: 768px) {

      .site-footer {
          padding-top: 56px;
      }

      .footer-container {
          grid-template-columns: 1fr;
          gap: 34px;

          padding-bottom: 36px;
      }

      .footer-brand {
          max-width: 100%;
      }

      .footer-bottom {
          flex-direction: column;
          text-align: center;
      }

      .footer-bottom-left {
          justify-content: center;
      }

      .payment-methods {
          gap: 8px;
      }

      .payment-pill {
          flex: 1 1 calc(50% - 8px);
          justify-content: center;
      }

      .footer-socials {
          margin-top: 18px;
      }
  }


  /* Account Pages */

  .reorder-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all 0.3s ease;
      border: 1px solid #e5e7eb;
      border-radius: 1rem;
      overflow: hidden;
  }

  .reorder-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 28px -8px rgba(0, 110, 181, 0.14);
      border-color: #cbd5e1;
  }

  .reorder-img {
      height: 140px;
      object-fit: contain;
      object-position: center;
      padding: 1.25rem 1rem 0.75rem;
      background: #f9fafb;
  }

  .btn-reorder {
      background: var(--blue);
      transition: all 0.2s ease;
      font-size: 0.875rem;
      padding: 0.75rem 1.25rem;
  }

  .btn-reorder:hover {
      background: var(--blue-dark);
  }

  .stock-badge {
      font-size: 0.6875rem;
      padding: 0.25rem 0.625rem;
      border-radius: 9999px;
  }

  .edit-input-field {
      transition: all 0.2s ease;
      border: 1px solid #d1d5db;
      border-radius: 0.75rem;
  }

  .edit-input-field:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(0, 110, 181, 0.12);
      outline: none;
  }

  .btn-save {
      background: var(--green);
      transition: all 0.2s ease;
  }

  .btn-save:hover {
      background: var(--green-dark);
  }

  .table-row {
      transition: background 0.2s ease;
  }

  .table-row:hover {
      background: #f0f9ff;
  }

  .status-pending {
      background: #fef3c7;
      color: #92400e;
  }

  .status-processing {
      background: #dbeafe;
      color: #1e40af;
  }

  .status-shipped {
      background: #d1fae5;
      color: #065f46;
  }

  .status-delivered {
      background: #ecfdf5;
      color: #065f46;
      font-weight: 600;
  }

  .status-cancelled {
      background: #fee2e2;
      color: #991b1b;
  }

  .btn-download {
      background: var(--blue);
      transition: all 0.2s ease;
  }

  .btn-download:hover {
      background: var(--blue-dark);
  }

  .stat-number {
      font-variant-numeric: tabular-nums;
  }

  .bundle-section {
      background:
          radial-gradient(circle at top left, rgba(0, 110, 181, 0.06), transparent 30%),
          radial-gradient(circle at bottom right, rgba(76, 175, 80, 0.08), transparent 35%),
          #ffffff;
  }

  /* floating glows */
  .bundle-glow {
      position: absolute;
      border-radius: 999px;
      filter: blur(90px);
      opacity: 0.25;
      pointer-events: none;
  }

  .bundle-glow-1 {
      width: 320px;
      height: 320px;
      background: #006eb5;
      top: -100px;
      left: -100px;
  }

  .bundle-glow-2 {
      width: 280px;
      height: 280px;
      background: #4caf50;
      bottom: -100px;
      right: -100px;
  }

  /* CARD */
  .bundle-card {
      position: relative;
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(18px);

      border: 1px solid rgba(226, 232, 240, 0.8);

      border-radius: 32px;
      padding: 36px;

      overflow: hidden;

      transition:
          transform 0.45s cubic-bezier(.21, 1.02, .73, 1),
          box-shadow 0.4s ease,
          border-color 0.3s ease;
  }

  /* hover glow */
  .bundle-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
          radial-gradient(circle at top left,
              rgba(0, 110, 181, 0.08),
              transparent 40%);
      opacity: 0;
      transition: 0.4s ease;
  }

  .bundle-card:hover {
      transform: translateY(-12px);
      border-color: #dbeafe;

      box-shadow:
          0 30px 60px rgba(0, 110, 181, 0.12),
          0 12px 25px rgba(0, 0, 0, 0.06);
  }

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

  /* TOP */
  .bundle-top {
      display: flex;
      align-items: center;
      gap: 18px;
  }

  .bundle-icon {
      width: 70px;
      height: 70px;
      border-radius: 22px;

      background:
          linear-gradient(135deg,
              rgba(0, 110, 181, 0.12),
              rgba(0, 110, 181, 0.04));

      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 1.6rem;
      color: var(--blue);

      transition: 0.4s ease;
  }

  .bundle-card:hover .bundle-icon {
      transform: scale(1.08) rotate(-4deg);
  }

  .bundle-top h3 {
      font-size: 1.6rem;
      font-weight: 700;
      color: #1a3c5e;
  }

  .bundle-top span {
      color: var(--green);
      font-weight: 600;
  }

  /* LIST */
  .bundle-list {
      margin-top: 34px;
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .bundle-list li {
      display: flex;
      align-items: start;
      gap: 12px;
      color: #526377;
      line-height: 1.6;
  }

  .bundle-list i {
      color: var(--green);
      margin-top: 2px;
  }

  /* BUTTON */
  .bundle-btn {
      margin-top: 38px;
      width: 100%;
      border: none;

      background: linear-gradient(135deg,
              var(--blue),
              #008fe7);

      color: white;
      padding: 16px;
      border-radius: 18px;

      font-weight: 600;
      cursor: pointer;

      transition: 0.3s ease;
  }

  .bundle-btn:hover {
      transform: translateY(-2px);
      box-shadow:
          0 18px 35px rgba(0, 110, 181, 0.22);
  }

  /* FEATURED CARD */
  .featured-card {
      background:
          linear-gradient(180deg,
              rgba(0, 110, 181, 0.05),
              rgba(76, 175, 80, 0.04)),
          white;

      border: 1px solid rgba(76, 175, 80, 0.22);
  }

  .featured-btn {
      background:
          linear-gradient(135deg,
              var(--green),
              #67c96b);
  }

  .featured-btn:hover {
      box-shadow:
          0 18px 35px rgba(76, 175, 80, 0.22);
  }

  .featured-icon {
      color: var(--green);
  }

  /* BADGE */
  .popular-badge {
      position: absolute;


      background: var(--green);

      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 1px;

      padding: 8px 14px;
      border-radius: 999px;

      box-shadow:
          0 8px 20px rgba(76, 175, 80, 0.3);
  }

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

      .bundle-section {
          padding-top: 5rem;
          padding-bottom: 5rem;
      }

      .bundle-card {
          padding: 28px;
      }

      .bundle-top h3 {
          font-size: 1.35rem;
      }

      .bundle-icon {
          width: 58px;
          height: 58px;
          border-radius: 18px;
      }
  }

  /* prevent overlays blocking clicks */
  .bundle-card::before,
  .bundle-card::after,
  .bundle-glow {
      pointer-events: none;
  }

  /* keep actual content above effects */
  .bundle-card>* {
      position: relative;
      z-index: 2;
  }
 /* ========================= */
  /* POLICY PAGE */
  /* ========================= */

  .policy-hero {
      position: relative;
      overflow: hidden;

      padding: 7rem 0;

      background:
          radial-gradient(circle at top left,
              rgba(0, 110, 181, 0.08),
              transparent 30%),
          radial-gradient(circle at bottom right,
              rgba(76, 175, 80, 0.08),
              transparent 30%),
          #f8fbff;
  }

  /* glows */
  .policy-glow {
      position: absolute;
      border-radius: 999px;
      filter: blur(100px);
      opacity: 0.22;
      pointer-events: none;
  }

  .glow-1 {
      width: 320px;
      height: 320px;
      background: #006eb5;
      top: -120px;
      left: -120px;
  }

  .glow-2 {
      width: 260px;
      height: 260px;
      background: #4caf50;
      bottom: -100px;
      right: -100px;
  }

  /* heading */
  .policy-heading {
      max-width: 850px;
      margin: 0 auto 5rem;
  }

  .policy-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;

      background: white;

      border: 1px solid rgba(226, 232, 240, 0.8);

      padding: 12px 22px;

      border-radius: 999px;

      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1px;

      color: var(--blue);

      box-shadow:
          0 10px 25px rgba(0, 0, 0, 0.05);
  }

  .policy-badge span {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--green);
      animation: pulse 2s infinite;
  }

  .policy-heading h1 {
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 800;

      color: #1a3c5e;

      line-height: 1.05;

      margin-top: 2rem;
  }

  .policy-heading p {
      margin-top: 1.8rem;

      font-size: 1.15rem;
      line-height: 1.8;

      color: #64748b;
  }

  /* layout */
  .policy-layout {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 2rem;
  }

  /* sidebar */
  .policy-sidebar {
      position: sticky;
      top: 120px;

      height: fit-content;

      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(20px);

      border: 1px solid rgba(226, 232, 240, 0.7);

      padding: 1rem;

      border-radius: 28px;

      box-shadow:
          0 20px 45px rgba(0, 0, 0, 0.04);
  }

  .policy-tab {
      width: 100%;
      border: none;
      background: transparent;

      display: flex;
      align-items: center;
      gap: 14px;

      padding: 18px 20px;

      border-radius: 18px;

      color: #475569;
      font-weight: 600;

      cursor: pointer;

      transition: 0.3s ease;
  }

  .policy-tab i {
      font-size: 1.15rem;
  }

  .policy-tab:hover {
      background: rgba(0, 110, 181, 0.06);
      color: var(--blue);
  }

  .policy-tab.active {
      background:
          linear-gradient(135deg,
              var(--blue),
              #008fe7);

      color: white;

      box-shadow:
          0 16px 30px rgba(0, 110, 181, 0.2);
  }

  /* content */
  .policy-content {
      display: none;
  }

  .policy-content.active {
      display: block;
      animation: fadeSlide .45s ease;
  }

  .policy-card {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(18px);

      border: 1px solid rgba(226, 232, 240, 0.7);

      border-radius: 36px;

      padding: 3rem;

      box-shadow:
          0 30px 60px rgba(0, 0, 0, 0.04);
  }

  .policy-card h2 {
      font-size: 2.7rem;
      font-weight: 800;

      color: #1a3c5e;

      margin-bottom: 1.5rem;
  }

  .policy-card>p {
      color: #64748b;
      line-height: 1.8;
      margin-bottom: 2rem;
  }

  .policy-block {
      margin-top: 2.5rem;
  }

  .policy-block h3 {
      font-size: 1.35rem;
      font-weight: 700;

      color: #1a3c5e;

      margin-bottom: 1rem;
  }

  .policy-block p {
      color: #64748b;
      line-height: 1.8;
  }

  .policy-block ul {
      display: flex;
      flex-direction: column;
      gap: 14px;

      margin-top: 1rem;
  }

  .policy-block li {
      position: relative;

      padding-left: 1.8rem;

      color: #475569;
      line-height: 1.7;
  }

  .policy-block li::before {
      content: "";

      width: 9px;
      height: 9px;

      border-radius: 999px;

      background: var(--green);

      position: absolute;
      left: 0;
      top: 11px;
  }

  /* highlight */
  .highlight-box {
      background:
          linear-gradient(135deg,
              rgba(0, 110, 181, 0.06),
              rgba(76, 175, 80, 0.06));

      border: 1px solid rgba(0, 110, 181, 0.08);

      padding: 2rem;

      border-radius: 24px;
  }

  /* animation */
  @keyframes fadeSlide {
      from {
          opacity: 0;
          transform: translateY(12px);
      }

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

  /* mobile */
  @media (max-width: 992px) {

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

      .policy-sidebar {
          position: relative;
          top: auto;

          display: flex;
          gap: 12px;

          overflow-x: auto;

          padding: 14px;

          scrollbar-width: none;
      }

      .policy-sidebar::-webkit-scrollbar {
          display: none;
      }

      .policy-tab {
          white-space: nowrap;
          min-width: fit-content;
      }
  }

  @media (max-width: 768px) {

      .policy-hero {
          padding: 5rem 0;
      }

      .policy-card {
          padding: 2rem;
          border-radius: 28px;
      }

      .policy-card h2 {
          font-size: 2rem;
      }

      .policy-heading h1 {
          line-height: 1.1;
      }
  }

  /* ========================= */
  /* ABOUT PAGE */
  /* ========================= */

  .about-page {
      position: relative;
      overflow: hidden;

      padding: 7rem 0;

      background:
          radial-gradient(circle at top left,
              rgba(0, 110, 181, 0.06),
              transparent 30%),
          radial-gradient(circle at bottom right,
              rgba(76, 175, 80, 0.06),
              transparent 30%),
          #f8fbff;
  }

  /* glows */
  .about-glow {
      position: absolute;
      border-radius: 999px;
      filter: blur(100px);
      opacity: 0.2;
      pointer-events: none;
  }

  .glow-1 {
      width: 340px;
      height: 340px;
      background: #006eb5;

      top: -120px;
      left: -120px;
  }

  .glow-2 {
      width: 260px;
      height: 260px;
      background: #4caf50;

      bottom: -100px;
      right: -100px;
  }

  /* hero */
  .about-hero {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 4rem;
      align-items: center;
  }

  .about-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;

      padding: 12px 20px;

      background: white;

      border-radius: 999px;

      border: 1px solid rgba(226, 232, 240, 0.8);

      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1px;

      color: var(--blue);

      box-shadow:
          0 10px 25px rgba(0, 0, 0, 0.05);
  }

  .about-badge span {
      width: 10px;
      height: 10px;

      border-radius: 999px;

      background: var(--green);

      animation: pulse 2s infinite;
  }

  .about-left h1 {
      font-size: clamp(3.2rem, 6vw, 6rem);
      line-height: 0.98;
      font-weight: 800;

      color: #1a3c5e;

      margin-top: 2rem;
  }

  .hero-text {
      margin-top: 2rem;

      color: #64748b;

      font-size: 1.12rem;
      line-height: 1.9;

      max-width: 700px;
  }

  /* hero points */
  .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;

      margin-top: 2.5rem;
  }

  .hero-point {
      display: flex;
      align-items: center;
      gap: 10px;

      background: rgba(255, 255, 255, 0.8);

      padding: 14px 18px;

      border-radius: 18px;

      border: 1px solid rgba(226, 232, 240, 0.7);

      color: #1a3c5e;
      font-weight: 600;

      backdrop-filter: blur(10px);
  }

  .hero-point i {
      color: var(--green);
  }

  /* image */
  .about-image-wrap {
      position: relative;
  }

  .image-glow {
      position: absolute;
      inset: 0;

      background:
          radial-gradient(circle,
              rgba(0, 110, 181, 0.16),
              transparent 60%);

      filter: blur(60px);

      transform: scale(1.2);
  }

  .about-image-card {
      position: relative;

      background: rgba(255, 255, 255, 0.7);

      border: 1px solid rgba(226, 232, 240, 0.7);

      backdrop-filter: blur(20px);

      padding: 1rem;

      border-radius: 36px;

      box-shadow:
          0 35px 70px rgba(0, 0, 0, 0.08);
  }

  .about-image {
      width: 100%;
      height: 640px;

      object-fit: cover;

      border-radius: 28px;
  }

  .founder-card {
      position: absolute;

      left: 24px;
      bottom: 24px;
  }

  .founder-mini {
      display: flex;
      align-items: center;
      gap: 14px;

      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);

      padding: 16px 18px;

      border-radius: 20px;

      border: 1px solid rgba(255, 255, 255, 0.7);
  }

  .founder-avatar {
      width: 48px;
      height: 48px;

      border-radius: 14px;

      background:
          linear-gradient(135deg,
              var(--blue),
              #008fe7);

      display: flex;
      align-items: center;
      justify-content: center;

      color: white;
  }

  .founder-mini h4 {
      font-weight: 700;
      color: #1a3c5e;
  }

  .founder-mini p {
      font-size: 0.92rem;
      color: #64748b;
  }

  /* cards */
  .about-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 2rem;

      margin-top: 7rem;
  }

  .about-card {
      background: rgba(255, 255, 255, 0.78);

      backdrop-filter: blur(18px);

      border: 1px solid rgba(226, 232, 240, 0.7);

      border-radius: 36px;

      padding: 3rem;

      box-shadow:
          0 25px 55px rgba(0, 0, 0, 0.04);
  }

  .section-tag {
      display: inline-block;

      padding: 10px 16px;

      border-radius: 999px;

      background: rgba(0, 110, 181, 0.08);

      color: var(--blue);

      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1px;
  }

  .section-tag.green {
      background: rgba(76, 175, 80, 0.12);
      color: var(--green-dark);
  }

  .about-card h2,
  .about-card h3 {
      margin-top: 1.5rem;

      color: #1a3c5e;

      font-weight: 800;

      line-height: 1.2;
  }

  .about-card h2 {
      font-size: 2.6rem;
  }

  .about-card h3 {
      font-size: 2rem;
  }

  .about-card p {
      margin-top: 1.5rem;

      color: #64748b;
      line-height: 1.9;
  }

  /* commitment */
  .commitment-list {
      margin-top: 2rem;

      display: flex;
      flex-direction: column;
      gap: 1.4rem;
  }

  .commitment-item {
      display: flex;
      gap: 16px;
  }

  .commitment-item i {
      width: 52px;
      height: 52px;

      flex-shrink: 0;

      border-radius: 16px;

      background:
          linear-gradient(135deg,
              rgba(0, 110, 181, 0.12),
              rgba(76, 175, 80, 0.08));

      display: flex;
      align-items: center;
      justify-content: center;

      color: var(--blue);
  }

  .commitment-item h4 {
      font-weight: 700;
      color: #1a3c5e;
  }

  .commitment-item p {
      margin-top: 0.4rem;
  }

  /* mission */
  .mission-section {
      margin-top: 7rem;
  }

  .mission-card {
      position: relative;

      background:
          linear-gradient(135deg,
              var(--blue),
              #008fe7);

      color: white;

      border-radius: 42px;

      padding: 5rem;

      overflow: hidden;

      box-shadow:
          0 35px 70px rgba(0, 110, 181, 0.18);
  }

  .mission-card::before {
      content: "";

      position: absolute;

      width: 320px;
      height: 320px;

      border-radius: 999px;

      background:
          rgba(255, 255, 255, 0.08);

      top: -120px;
      right: -120px;
  }

  .mission-small {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;

      opacity: 0.85;
  }

  .mission-card h2 {
      margin-top: 1.8rem;

      font-size: clamp(2rem, 4vw, 4rem);
      line-height: 1.2;
      font-weight: 800;

      max-width: 1000px;

      position: relative;
      z-index: 2;
  }

  /* products */
  .products-section {
      margin-top: 7rem;
  }

  .section-heading-center {
      text-align: center;
  }

  .section-heading-center span {
      color: var(--green-dark);

      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;
  }

  .section-heading-center h2 {
      margin-top: 1rem;

      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;

      color: #1a3c5e;
  }

  .products-grid {
      margin-top: 4rem;

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

  .product-mini-card {
      display: flex;
      align-items: center;
      gap: 14px;

      background: rgba(255, 255, 255, 0.8);

      padding: 1.5rem;

      border-radius: 24px;

      border: 1px solid rgba(226, 232, 240, 0.7);

      transition: 0.35s ease;
  }

  .product-mini-card:hover {
      transform: translateY(-6px);

      box-shadow:
          0 18px 35px rgba(0, 110, 181, 0.08);
  }

  .product-mini-card i {
      width: 52px;
      height: 52px;

      border-radius: 16px;

      background:
          linear-gradient(135deg,
              rgba(0, 110, 181, 0.12),
              rgba(76, 175, 80, 0.08));

      display: flex;
      align-items: center;
      justify-content: center;

      color: var(--blue);
  }

  .product-mini-card span {
      font-weight: 700;
      color: #1a3c5e;
  }

  /* final */
  .final-commitment {
      margin-top: 7rem;
  }

  .final-box {
      text-align: center;
  }

  .commitment-line {
      width: 80px;
      height: 5px;

      border-radius: 999px;

      margin: 0 auto 2rem;

      background:
          linear-gradient(to right,
              var(--blue),
              var(--green));
  }

  .final-box h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;

      color: #1a3c5e;
  }

  .final-box p {
      margin-top: 1.2rem;

      color: #64748b;

      font-size: 1.1rem;
  }

  /* mobile */
  @media (max-width: 992px) {

      .about-hero,
      .about-grid {
          grid-template-columns: 1fr;
      }

      .about-image {
          height: 520px;
      }

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

  @media (max-width: 768px) {

      .about-page {
          padding: 5rem 0;
      }

      .about-card,
      .mission-card {
          padding: 2rem;
      }

      .about-left h1 {
          line-height: 1.05;
      }

      .about-card h2 {
          font-size: 2rem;
      }

      .about-card h3 {
          font-size: 1.7rem;
      }

      .mission-card h2 {
          line-height: 1.25;
      }

      .about-image {
          height: 420px;
      }

      .hero-points {
          flex-direction: column;
      }
  }
