body {
              background: #000;
              min-height: 100vh;
          }

          .starfield {
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              pointer-events: none;
              z-index: -1;
              opacity: 0;
              animation: fadeInStarfield 3s ease-in forwards;
              perspective: 800px;
          }

          @keyframes fadeInStarfield {
              to {
                  opacity: 1;
              }
          }

          .star {
              position: absolute;
              background: white;
              border-radius: 50%;
              animation: moveToward 3s linear infinite;
          }

          .star:nth-child(3n) {
              animation-duration: 2s;
          }

          .star:nth-child(3n+1) {
              animation-duration: 3s;
          }

          .star:nth-child(3n+2) {
              animation-duration: 4s;
          }

          @keyframes moveToward {
              0% {
                  transform: translateZ(-2000px) scale(0.5);
                  opacity: 0;
              }
              10% {
                  opacity: 1;
              }
              100% {
                  transform: translateZ(300px) scale(2.5);
                  opacity: 0;
              }
          }

          @media (max-width: 768px) {
              body {
                  overscroll-behavior-y: none;
              }
          }
  body, html {
      overflow-x: hidden;
  }
  // NAV
  .navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 6.64%, rgba(0, 0, 0, 0.3) 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-container {
    max-width: 1590px;
    margin: 0 auto;
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 50px;
  }

  .navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 2rem;
  }

  .navbar-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .navbar-brand:hover {
    opacity: 0.8;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
  }

  .brand-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
  }

  .navbar-separator {
    width: 1px;
    height: 40px;
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  }

  .navbar-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .navbar-links.desktop {
    display: none;
  }

  .nav-link {
    position: relative;
    text-decoration: none;
    color: white;
    font-size: 0.9375rem;
    font-weight: 500;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    padding: 0.5rem 0;
  }

  .nav-link:hover {
    opacity: 1;
    color: white;
  }

  .nav-link.active {
    opacity: 1;
  }

  .nav-link-text {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(150, 8, 34, 0) 410%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .navbar-modern.scrolled {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--nav-border);
    position: fixed;
  }

  .currency-selector {
    display: none;
  }

  /* Currency Selector Dropdown Fix */
  .currency-selector.lg .choices__list--dropdown {
    background: #121212 !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem !important;
    margin-top: 0.5rem !important;
    min-width: 200px !important;
  }

  .currency-selector.lg .choices__item {
    color: rgb(244, 244, 245) !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 0.375rem !important;
    transition: all 0.2s ease;
  }

  .currency-selector.lg .choices__item--selectable {
    padding-right: 0.75rem !important;
  }

  /* Remove "Press to select" text */
  .currency-selector.lg .choices__item[data-select-text]::after {
    display: none !important;
  }

  .currency-selector.lg .choices__item:hover,
  .currency-selector.lg .choices__item.is-highlighted {
    background: rgba(255, 255, 255, 0.05) !important;
  }

  .currency-selector.lg .choices__item.is-selected {
    background: rgba(128, 0, 255, 0.1) !important;
    color: rgb(128, 0, 255) !important;
  }

  .currency-selector.lg .choices__item .symbol {
    display: inline-block;
    min-width: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.25rem;
    text-align: center;
    padding: 0.125rem 0.25rem;
    margin-right: 0.5rem;
    color: rgb(244, 244, 245);
  }

  .currency-selector.lg .choices__item .code {
    color: rgb(244, 244, 245);
    font-weight: 500;
  }

  .currency-selector.lg .choices__item .default {
    color: rgba(244, 244, 245, 0.6);
    font-size: 0.75rem;
    margin-left: 0.5rem;
  }

  /* FIXED: Properly center currency icon vertically and horizontally */
  .currency-selector.lg .choices__inner {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 9999px !important;
    padding: 0.4375rem 0.75rem !important;
    min-height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
  }

  .currency-selector.lg .choices__list--single {
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    width: 100% !important;
  }

  .currency-selector.lg .choices__list--single .choices__item {
    padding: 0 !important;
    background: transparent !important;
    color: rgb(244, 244, 245) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* Hide currency code and default text in closed state, only show symbol */
  .currency-selector.lg .choices__list--single .choices__item .code,
  .currency-selector.lg .choices__list--single .choices__item .default {
    display: none !important;
  }

  .currency-selector.lg .choices__list--single .choices__item .symbol {
    margin-right: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    font-size: 1rem !important;
  }

  /* Hide the dropdown arrow */
  .currency-selector.lg .choices[data-type*=select-one]:after {
    display: none !important;
  }

  .currency-selector.lg .choices__input {
    background: transparent !important;
    color: rgb(244, 244, 245) !important;
    margin-bottom: 0 !important;
  }

  .currency-selector.lg .choices__input::placeholder {
    color: rgba(244, 244, 245, 0.6);
  }

  .cart-button {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .cart-button:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-1px);
  }

  .cart-icon {
    width: 20px;
    height: 20px;
    color: white;
  }

  .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: rgb(150, 8, 34) !important;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(75, 75, 75, 0.4);
  }

  .auth-button {
    display: none;
  }

  .btn-login {
    background: rgb(150, 8, 34) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 
      rgba(54, 54, 54, 0.5) 0px 8px 40px 0px,
      rgba(255, 255, 255, 0) 0px 0px 10px 1px inset,
      rgba(59, 59, 59, 0.12) 0px 0px 0px 1px;
    display: inline-block;
  }

  .btn-login:hover {
    background: rgb(150, 8, 34) !important;
    transform: translateY(-2px);
    box-shadow: 
      rgba(53, 53, 53, 0.6) 0px 12px 50px 0px,
      rgba(255, 255, 255, 0.1) 0px 0px 15px 1px inset,
      rgba(53, 53, 53, 0.15) 0px 0px 0px 1px;
    color: white;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }

  .menu-icon {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .menu-icon::before,
  .menu-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .menu-icon::before {
    transform: translateY(-6px);
  }

  .menu-icon::after {
    transform: translateY(4px);
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.show {
    display: block;
  }

  .mobile-menu-content {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mobile-nav-link {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    color: white;
  }

  .cart-badge {
    background: rgb(150, 8, 34) !important;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }

  /* Desktop styles */
  @media (min-width: 992px) {
    .navbar-links.desktop {
      display: flex;
    }

    .currency-selector {
      display: block;
    }

    .cart-button.desktop {
      display: flex;
    }

    .auth-button {
      display: block;
    }

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

  /* Tablet adjustments */
  @media (max-width: 991px) {
    .navbar-container {
      padding: 0 24px;
    }

    .navbar-separator {
      display: none;
    }
  }

  @media (max-width: 576px) {
    .navbar-container {
      padding: 0 16px;
    }

    .navbar-content {
      min-height: 60px;
    }

    .brand-logo {
      width: 40px;
      height: 40px;
    }

    .brand-name {
      font-size: 1rem;
    }
  }

  body {
    padding-top: 80px;
  }

  /* Mobile scroll fix - prevent bounce effect only */
  @media (max-width: 768px) {
    body {
      padding-top: 60px;
      overscroll-behavior-y: none;
    }
  }

  .navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 6.64%, rgba(0, 0, 0, 0.3) 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-container {
    max-width: 1590px;
    margin: 0 auto;
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 50px;
  }

  .navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 2rem;
  }

  .navbar-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .navbar-brand:hover {
    opacity: 0.8;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
  }

  .brand-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
  }

  .navbar-separator {
    width: 1px;
    height: 40px;
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  }

  .navbar-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .navbar-links.desktop {
    display: none;
  }

  .nav-link {
    position: relative;
    text-decoration: none;
    color: white;
    font-size: 0.9375rem;
    font-weight: 500;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    padding: 0.5rem 0;
  }

  .nav-link:hover {
    opacity: 1;
    color: white;
  }

  .nav-link.active {
    opacity: 1;
  }

  .nav-link-text {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(150, 8, 34, 0) 410%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .navbar-modern.scrolled {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--nav-border);
    position: fixed;
  }

  .currency-selector {
    display: none;
  }

  /* Currency Selector Dropdown Fix */
  .currency-selector.lg .choices__list--dropdown {
    background: #121212 !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem !important;
    margin-top: 0.5rem !important;
    min-width: 200px !important;
  }

  .currency-selector.lg .choices__item {
    color: rgb(244, 244, 245) !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 0.375rem !important;
    transition: all 0.2s ease;
  }

  .currency-selector.lg .choices__item--selectable {
    padding-right: 0.75rem !important;
  }

  /* Remove "Press to select" text */
  .currency-selector.lg .choices__item[data-select-text]::after {
    display: none !important;
  }

  .currency-selector.lg .choices__item:hover,
  .currency-selector.lg .choices__item.is-highlighted {
    background: rgba(255, 255, 255, 0.05) !important;
  }

  .currency-selector.lg .choices__item.is-selected {
    background: rgba(128, 0, 255, 0.1) !important;
    color: rgb(128, 0, 255) !important;
  }

  .currency-selector.lg .choices__item .symbol {
    display: inline-block;
    min-width: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.25rem;
    text-align: center;
    padding: 0.125rem 0.25rem;
    margin-right: 0.5rem;
    color: rgb(244, 244, 245);
  }

  .currency-selector.lg .choices__item .code {
    color: rgb(244, 244, 245);
    font-weight: 500;
  }

  .currency-selector.lg .choices__item .default {
    color: rgba(244, 244, 245, 0.6);
    font-size: 0.75rem;
    margin-left: 0.5rem;
  }

  /* FIXED: Properly center currency icon vertically and horizontally */
  .currency-selector.lg .choices__inner {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 9999px !important;
    padding: 0.4375rem 0.75rem !important;
    min-height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
  }

  .currency-selector.lg .choices__list--single {
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    width: 100% !important;
  }

  .currency-selector.lg .choices__list--single .choices__item {
    padding: 0 !important;
    background: transparent !important;
    color: rgb(244, 244, 245) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* Hide currency code and default text in closed state, only show symbol */
  .currency-selector.lg .choices__list--single .choices__item .code,
  .currency-selector.lg .choices__list--single .choices__item .default {
    display: none !important;
  }

  .currency-selector.lg .choices__list--single .choices__item .symbol {
    margin-right: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    font-size: 1rem !important;
  }

  /* Hide the dropdown arrow */
  .currency-selector.lg .choices[data-type*=select-one]:after {
    display: none !important;
  }

  .currency-selector.lg .choices__input {
    background: transparent !important;
    color: rgb(244, 244, 245) !important;
    margin-bottom: 0 !important;
  }

  .currency-selector.lg .choices__input::placeholder {
    color: rgba(244, 244, 245, 0.6);
  }

  .cart-button {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .cart-button:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-1px);
  }

  .cart-icon {
    width: 20px;
    height: 20px;
    color: white;
  }

  .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: rgb(150, 8, 34) !important;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(78, 78, 78, 0.4);
  }

  .auth-button {
    display: none;
  }

  .btn-login {
    background: rgb(150, 8, 34) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 
      rgba(56, 56, 56, 0.5) 0px 8px 40px 0px,
      rgba(255, 255, 255, 0) 0px 0px 10px 1px inset,
      rgba(49, 49, 49, 0.12) 0px 0px 0px 1px;
    display: inline-block;
  }

  .btn-login:hover {
    background: rgb(150, 8, 34) !important;
    transform: translateY(-2px);
    box-shadow: 
      rgba(59, 59, 59, 0.6) 0px 12px 50px 0px,
      rgba(255, 255, 255, 0.1) 0px 0px 15px 1px inset,
      rgba(54, 54, 54, 0.15) 0px 0px 0px 1px;
    color: white;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }

  .menu-icon {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .menu-icon::before,
  .menu-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .menu-icon::before {
    transform: translateY(-6px);
  }

  .menu-icon::after {
    transform: translateY(4px);
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.show {
    display: block;
  }

  .mobile-menu-content {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mobile-nav-link {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    color: white;
  }

  .cart-badge {
    background: rgb(150, 8, 34) !important;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }

  /* Desktop styles */
  @media (min-width: 992px) {
    .navbar-links.desktop {
      display: flex;
    }

    .currency-selector {
      display: block;
    }

    .cart-button.desktop {
      display: flex;
    }

    .auth-button {
      display: block;
    }

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

  /* Tablet adjustments */
  @media (max-width: 991px) {
    .navbar-container {
      padding: 0 24px;
    }

    .navbar-separator {
      display: none;
    }
  }

  @media (max-width: 576px) {
    .navbar-container {
      padding: 0 16px;
    }

    .navbar-content {
      min-height: 60px;
    }

    .brand-logo {
      width: 40px;
      height: 40px;
    }

    .brand-name {
      font-size: 1rem;
    }
  }

  body {
    padding-top: 80px;
  }

  /* Mobile scroll fix - prevent bounce effect only */
  @media (max-width: 768px) {
    body {
      padding-top: 60px;
      overscroll-behavior-y: none;
    }
  }



  .hero-section * {
      box-sizing: border-box;
  }
          .hero-section {
              padding: 60px 20px;
              overflow: hidden;
          }

          .hero-wrapper {
              max-width: 1590px;
              margin: 0 auto;
              margin-top: -5px;
              display: flex;
              align-items: center;
              justify-content: space-between;
              position: relative;
              gap: 40px;
          }

          .content-area {
              flex: 1;
              max-width: 800px;
              z-index: 2;
          }

          .heading-primary h1 {
              font-size: 64px;
              font-weight: 800;
              line-height: 1.1;
              margin-bottom: 30px;
              color: #ffffff;
          }

          .description-text p {
              font-size: 16px;
              line-height: 1.6;
              color: #ffffff;
              margin-bottom: 40px;
          }

          .cta-buttons {
              display: flex;
              gap: 20px;
              margin-bottom: 50px;
          }

          .btn-wrapper a {
              display: inline-block;
              padding: 16px 32px;
              text-decoration: none;
              font-size: 16px;
              font-weight: 600;
              border-radius: 10px;
              transition: all 0.3s ease;
              background: linear-gradient(135deg, #960822 0%, #960822 100%);
              color: white;
          }

          .btn-wrapper a:hover {
              transform: translateY(-2px);
              box-shadow: 0 10px 30px rgba(82, 82, 82, 0.4);
          }

          .btn-wrapper.secondary a {
              background: #960822;
              border: none;
          }

          .btn-wrapper.secondary a:hover {
              background: #b00a28;
          }

          .stats-container {
              display: flex;
              gap: 25px;
              flex-wrap: wrap;
          }

          .stat-card {
              display: flex;
              align-items: center;
              gap: 15px;
          }

          .stat-card img {
              width: 48px;
              height: 48px;
              padding: 12px;
              background: rgba(255, 255, 255, 0.05);
              border-radius: 50px;
          }

          .stat-info span {
              font-size: 24px;
              font-weight: 700;
              background-image: linear-gradient(120deg, #960822 0%, #960822 35%, #ffffff 50%, #960822 65%, #960822 100%);
              background-size: 200% 100%;
              background-position: 0% 50%;
              -webkit-background-clip: text;
              background-clip: text;
              -webkit-text-fill-color: transparent;
              color: transparent;
              animation: syncedGradientMove 3.5s ease-in-out infinite alternate;
              display: block;
          }

          .stat-info p {
              font-size: 14px;
              font-weight: 400;
              color: #ffffff !important;
              -webkit-text-fill-color: #ffffff !important;
              margin-top: 2px;
          }

          .character-image {
              flex: 1;
              max-width: 700px;
              height: auto;
              position: relative;
              z-index: 1;
              animation: float 3s ease-in-out infinite;
          }

          /* Floating animation */
          @keyframes float {
              0%, 100% {
                  transform: translateY(0px);
              }
              50% {
                  transform: translateY(-10px);
              }
          }

          @media (max-width: 968px) {
              .hero-wrapper {
                  flex-direction: column;
                  text-align: center;
              }

              .content-area {
                  max-width: 100%;
              }

              .heading-primary h1 {
                  font-size: 48px;
              }

              .cta-buttons {
                  justify-content: center;
              }

              .stats-container {
                  justify-content: center;
              }

              .character-image {
                  display: none;
              }
          }

          @media (max-width: 640px) {
              .heading-primary h1 {
                  font-size: 36px;
              }

              .cta-buttons {
                  flex-direction: column;
                  gap: 15px;
              }

              .btn-wrapper a {
                  width: 100%;
                  text-align: center;
              }

              .stats-container {
                  gap: 30px;
              }

              .character-image {
                  max-width: 350px;
              }
          }
          .marquee-container {
      position: relative;
      margin: 0 auto;
      width: 100%;
      max-width: 1590px;
      overflow: hidden;
      margin-top: -50px; 
      margin-bottom: 80px; 
  }
          
          .marquee {
              position: relative;
              height: 120px;
              display: flex;
              align-items: center;
              padding: 10px 0;
          }
          
          
          .marquee-content {
              display: flex;
              gap: 40px;
              width: max-content;
              animation: scroll-left 40s linear infinite;
              align-items: center;
              will-change: transform;
          }
          
          .marquee-content:hover {
              animation-play-state: paused;
          }
          
          .marquee img {
              height: 180px;
              width: auto;
              filter: grayscale(70%);
              opacity: 0.7;
              transition: all 0.3s ease;
              transform: scale(0.95);
          }
          
          .marquee img:hover {
              filter: grayscale(0%);
              opacity: 1;
              transform: scale(1.05);
          }
          .marquee-container::before,
          .marquee-container::after {
              content: "";
              position: absolute;
              top: 0;
              width: 100px;
              height: 100%;
              pointer-events: none;
              z-index: 1;
          }
          
          .marquee-container::before {
              left: 0;
              background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
          }
          
        .marquee-container::after {
            right: 0;
            background: linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        }
        
        /* Pagination Styling */
        .pagination {
            gap: 8px;
            margin-top: 0;
        }

        .pagination .page-item .page-link {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border-radius: 8px;
            padding: 8px 16px;
            transition: all 0.3s ease;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
        }

        .pagination .page-item .page-link:hover {
            background: rgba(150, 8, 34, 0.2);
            border-color: #960822;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .pagination .page-item.active .page-link {
            background: #960822;
            border-color: #960822;
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(150, 8, 34, 0.3);
        }

        .pagination .page-item.disabled .page-link {
            background: rgba(255, 255, 255, 0.02);
            border-color: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.3);
            cursor: not-allowed;
        }

        .pagination .page-item.disabled.ellipsis-item .page-link {
            background: transparent !important;
            border: none !important;
            color: rgba(255, 255, 255, 0.5) !important;
            cursor: default !important;
            box-shadow: none !important;
            transform: none !important;
        }

        .pagination-info {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .pagination-info span {
            color: #ffffff;
            font-weight: 600;
        }
          
          @keyframes scroll-left {
              0% {
                  transform: translateX(0);
              }
              100% {
                  transform: translateX(calc(-50% - 20px));
              }
          }
          @keyframes borderGlow {
              0%, 100% {
                  opacity: 0.5;
              }
              50% {
                  opacity: 1;
              }
          }
          @media (max-width: 768px) {
              .marquee {
                  height: 90px;
              }
              
              .marquee img {
                  height: 70px;
              }
              
              .marquee-content {
                  gap: 30px;
                  animation-duration: 40s;
              }
              
              .marquee-container::before,
              .marquee-container::after {
                  width: 60px;
              }
          }



    #{{ componentId }} .product-search::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }
    
    #{{ componentId }} .product-search:focus {
      outline: none !important;
      box-shadow: none !important;
      border-color: rgba(255, 255, 255, 0.2);
      background: rgba(255,255,255,0.08);
    }
    
    #{{ componentId }} .category-filter:hover {
      background: rgba(255, 255, 255, 0.1) !important;
    }
    
    #{{ componentId }} .category-filter.active {
      background: rgba(255, 255, 255, 0.15) !important;
    }
    
    #{{ componentId }} .btn-clear-search:hover {
      opacity: 0.8 !important;
    }
    
    #{{ componentId }} .products > [class*="col-"] {
      margin-bottom: 0 !important;
    }




    .saph-blog-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--saph-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .saph-blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
  }

  .saph-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  /* Image */
  .saph-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--saph-surface);
  }

  .saph-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

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

  .saph-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .saph-blog-card:hover .saph-card-overlay {
    opacity: 1;
  }

  .saph-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(150, 8, 34, 0.05);
  }

  .saph-card-placeholder svg {
    color: var(--saph-muted);
    opacity: 0.4;
  }

  .saph-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .saph-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--saph-muted);
    font-weight: 500;
  }

  .saph-card-dot {
    opacity: 0.5;
  }

  .saph-card-read {
    color: var(--saph-primary);
  }

  .saph-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--saph-text);
    margin: 0 0 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .saph-card-excerpt {
    font-size: 0.95rem;
    color: var(--saph-muted);
    line-height: 1.6;
    margin: 0 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .saph-card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--saph-border);
  }

  .saph-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--saph-primary);
    transition: gap 0.2s ease;
  }

  .saph-blog-card:hover .saph-card-cta {
    gap: 12px;
  }

  .saph-card-cta svg {
    transition: transform 0.2s ease;
  }

  .saph-blog-card:hover .saph-card-cta svg {
    transform: translateX(2px);
  }

  @media (max-width: 768px) {
    .saph-card-image {
      height: 200px;
    }

    .saph-card-content {
      padding: 20px;
    }

    .saph-card-title {
      font-size: 1.25rem;
    }
  }






  :root {
    --saph-primary: #960822;
    --saph-primary-hover: #960822;
    --saph-surface: #16161f;
    --saph-border: rgba(255, 255, 255, 0.08);
    --saph-text: #e9eef5;
    --saph-muted: #960822;
  }

  .saph-blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(40px, 8vw, 80px) 20px;
  }

  /* Header */
  .saph-post-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
    padding-bottom: 40px;
    border-bottom: 1px solid var(--saph-border);
  }

  .saph-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--saph-muted);
    font-weight: 500;
  }

  .saph-divider {
    opacity: 0.5;
  }

  .saph-read-time {
    color: var(--saph-primary);
  }

  .saph-post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--saph-text);
    margin: 0 0 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .saph-post-summary {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--saph-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 680px;
    margin: 0 auto;
  }

  /* Featured Image */
  .saph-featured-image {
    margin-bottom: 50px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--saph-border);
    background: var(--saph-surface);
  }

  .saph-featured-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Article Body */
  .saph-article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--saph-text);
    margin-bottom: 60px;
  }

  .saph-article-body h1,
  .saph-article-body h2,
  .saph-article-body h3,
  .saph-article-body h4 {
    color: var(--saph-text);
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 0.8em;
    line-height: 1.3;
  }

  .saph-article-body h1 {
    font-size: 2.2rem;
  }

  .saph-article-body h2 {
    font-size: 1.8rem;
  }

  .saph-article-body h3 {
    font-size: 1.5rem;
  }

  .saph-article-body h4 {
    font-size: 1.2rem;
  }

  .saph-article-body p {
    margin-bottom: 1.5em;
    color: var(--saph-text);
  }

  .saph-article-body a {
    color: var(--saph-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
  }

  .saph-article-body a:hover {
    border-bottom-color: var(--saph-primary);
  }

  .saph-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2em 0;
    border: 1px solid var(--saph-border);
  }

  .saph-article-body ul,
  .saph-article-body ol {
    margin: 1.5em 0;
    padding-left: 1.8em;
  }

  .saph-article-body li {
    margin-bottom: 0.8em;
    color: var(--saph-text);
  }

  .saph-article-body blockquote {
    margin: 2em 0;
    padding: 1.5em 2em;
    border-left: 4px solid var(--saph-primary);
    background: rgba(150, 8, 34, 0.05);
    border-radius: 8px;
    font-style: italic;
    color: var(--saph-text);
  }

  .saph-article-body code {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2em 0.5em;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--saph-primary);
    font-family: 'Courier New', monospace;
  }

  .saph-article-body pre {
    background: var(--saph-surface);
    border: 1px solid var(--saph-border);
    border-radius: 8px;
    padding: 1.5em;
    overflow-x: auto;
    margin: 2em 0;
  }

  .saph-article-body pre code {
    background: none;
    padding: 0;
    color: var(--saph-text);
  }

  /* Footer */
  .saph-post-footer {
    padding-top: 40px;
    border-top: 1px solid var(--saph-border);
  }

  .saph-share {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .saph-share-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--saph-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .saph-share-buttons {
    display: flex;
    gap: 12px;
  }

  .saph-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--saph-border);
    color: var(--saph-text);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .saph-share-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--saph-primary);
    color: var(--saph-primary);
    transform: translateY(-2px);
  }

  .saph-share-btn:active {
    transform: translateY(0);
  }

  @media (max-width: 768px) {
    .saph-blog-post {
      padding: 40px 16px;
    }

    .saph-post-header {
      margin-bottom: 40px;
      padding-bottom: 30px;
    }

    .saph-post-meta {
      font-size: 0.85rem;
    }

    .saph-article-body {
      font-size: 1.05rem;
    }

    .saph-article-body h1 {
      font-size: 1.8rem;
    }

    .saph-article-body h2 {
      font-size: 1.5rem;
    }

    .saph-article-body h3 {
      font-size: 1.3rem;
    }

    .saph-article-body blockquote {
      padding: 1em 1.2em;
      margin: 1.5em 0;
    }
  }




  .btn-custom-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #960822;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(63, 63, 63, 0.3);
  }

  .btn-custom-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 51, 51, 0.5);
    background: rgb(150, 8, 34);
    color: #fff;
  }

  .btn-custom-primary:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(51, 51, 51, 0.3);
  }

  .btn-custom-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(54, 54, 54, 0.2);
  }

  .btn-qty {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(51, 51, 51, 0.1);
    border: 1px solid rgba(51, 51, 51, 0.3);
    border-radius: 6px;
    color: #960822;
    transition: all 0.2s ease;
    padding: 0;
  }

  .btn-qty:hover:not(:disabled) {
    background: rgba(51, 51, 51, 0.2);
    border-color: #960822;
  }

  .btn-qty:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .btn-remove {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #dc3545;
    background: transparent;
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 6px;
    transition: all 0.2s ease;
  }

  .btn-remove:hover {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
  }

  .badge {
    padding: 0.35em 0.65em;
    font-weight: 500;
    font-size: 0.75rem;
    border-radius: 6px;
  }

  .bg-success-subtle {
    background-color: rgba(40, 167, 69, 0.2) !important;
  }

  .text-success {
    color: #28a745 !important;
  }

  .card {
    transition: all 0.3s ease;
  }

  .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
  }

  @media (max-width: 991.98px) {
    .sticky-top {
      position: relative !important;
      top: 0 !important;
    }
  }

  @media (max-width: 767.98px) {
    .col-auto:has(.btn-qty) {
      order: 3;
      width: 100%;
    }
    
    .col-auto:has(.btn-remove) {
      order: 4;
      width: 100%;
    }
    
    .btn-remove {
      width: 100%;
      justify-content: center;
    }
  }