:root {
        /* Clean Light-mode Glossy Glass Palette */
        --bg-gradient: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        --glass-bg: rgba(255, 255, 255, 0.45);
        --glass-border: rgba(255, 255, 255, 0.6);
        --card-shadow: 0 8px 32px 0 rgba(148, 163, 184, 0.15);
        --text-main: #1e293b;
        --text-muted: #64748b;
        --primary-accent: #4f46e5;
      }

      body {
        font-family: "Plus Jakarta Sans", sans-serif;
        background: var(--bg-gradient);
        color: var(--text-main);
        min-height: 100vh;
      }

      /* Glossy Navbar styling */
      .navbar-glass {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 4px 12px rgba(148, 163, 184, 0.08);
      }

      /* Hero Search Section styling */
      .hero-search-container {
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid var(--glass-border);
      }

      .search-glass-wrapper {
        position: relative;
        box-shadow: var(--card-shadow);
        border-radius: 50px;
        overflow: hidden;
        border: 1px solid var(--glass-border);
        background: rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
      }

      .search-glass-wrapper:focus-within {
        border-color: var(--primary-accent);
        box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
        transform: translateY(-1px);
      }

      .search-glass-input {
        border: none !important;
        background: transparent !important;
        padding: 1.1rem 1.5rem 1.1rem 3.5rem;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-main);
      }

      .search-glass-input:focus {
        box-shadow: none !important;
      }

      .search-icon-decor {
        position: absolute;
        left: 1.4rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.4rem;
        color: var(--text-muted);
        pointer-events: none;
      }

      /* Light Glossy Card Components */
      .glass-card {
        background: var(--glass-bg);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        box-shadow: var(--card-shadow);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .glass-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px 0 rgba(148, 163, 184, 0.25);
        border-color: rgba(79, 70, 229, 0.3);
      }

      /* Form styling custom tweaks */
      .form-control,
      .form-select {
        background-color: rgba(255, 255, 255, 0.7);
        border: 1px solid var(--glass-border);
        color: var(--text-main);
        border-radius: 8px;
      }

      .form-control:focus,
      .form-select:focus {
        background-color: #ffffff;
        color: var(--text-main);
        border-color: var(--primary-accent);
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
      }

      /* Custom Brand Scroll Container (Triggers scrollbar on more than 4 options) */
      .brand-scroll-group {
        max-height: 145px;
        overflow-y: auto;
        padding: 6px 8px;
        background: rgba(255, 255, 255, 0.4);
        border: 1px solid var(--glass-border);
        border-radius: 8px;
      }

      /* Custom Scrollbar Styles for Glass aesthetics */
      .brand-scroll-group::-webkit-scrollbar {
        width: 6px;
      }
      .brand-scroll-group::-webkit-scrollbar-track {
        background: transparent;
      }
      .brand-scroll-group::-webkit-scrollbar-thumb {
        background: rgba(148, 163, 184, 0.4);
        border-radius: 10px;
      }
      .brand-scroll-group::-webkit-scrollbar-thumb:hover {
        background: rgba(79, 70, 229, 0.5);
      }

      .product-img {
        border-radius: 12px;
        height: 180px;
        object-fit: cover;
        width: 100%;
        background-color: #cbd5e1;
        cursor: zoom-in;
        transition: opacity 0.2s;
      }

      .product-img:hover {
        opacity: 0.9;
      }

      @media (max-width: 576px) {
        .product-img {
          height: 130px;
        }
      }

      .btn-accent {
        background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-weight: 600;
      }

      .btn-accent:hover {
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
        opacity: 0.95;
      }

      @media (max-width: 991.98px) {
        .filter-collapse-container {
          background: var(--glass-bg);
          backdrop-filter: blur(16px);
          -webkit-backdrop-filter: blur(16px);
          border: 1px solid var(--glass-border);
          border-radius: 12px;
          padding: 1rem;
        }
      }

      /* Lightbox Architecture styles */
      .lightbox-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(20px) saturate(160%);
        -webkit-backdrop-filter: blur(20px) saturate(160%);
        z-index: 2000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .lightbox-overlay.active {
        opacity: 1;
        pointer-events: auto;
      }

      .lightbox-wrap {
        position: relative;
        width: 90%;
        max-width: 900px;
        height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }

      .lightbox-img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 12px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        user-select: none;
        -webkit-user-drag: none;
        transform: scale(0.9) translate(0px, 0px);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        cursor: grab;
      }

      .lightbox-img:active {
        cursor: grabbing;
      }

      .lightbox-overlay.active .lightbox-img {
        transform: scale(1) translate(0px, 0px);
      }

      .lightbox-controls {
        position: absolute;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        padding: 8px 16px;
        border-radius: 30px;
        display: flex;
        gap: 12px;
        box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.2);
        z-index: 2010;
      }

      .lightbox-btn {
        background: transparent;
        border: none;
        color: #0f172a;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        transition: all 0.2s;
      }

      .lightbox-btn:hover {
        background: rgba(79, 70, 229, 0.1);
        color: var(--primary-accent);
        transform: scale(1.05);
      }

      .lightbox-close-top {
        position: absolute;
        top: 24px;
        right: 24px;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        color: #0f172a;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        cursor: pointer;
        box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1);
        z-index: 2010;
        transition: all 0.2s;
      }

      .lightbox-close-top:hover {
        background: #ef4444;
        color: white;
        border-color: #ef4444;
        transform: rotate(90deg);
      }

      /* API Loader Overlay Styling */
      .api-loader-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 250px;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 100;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        transition: opacity 0.3s ease;
      }