  :root {
      --primary-color: #06b6e2;
      --primary-gradient: linear-gradient(135deg, #06b6e2 0%, #06b6e2 100%);
      --nav-link-color: #555;
      --nav-link-hover: #06b6e2;
  }

  body {
      font-family: 'Plus Jakarta Sans', sans-serif;
  }

  /* =========================
   NAVBAR
========================= */

  .navbar-premium {
      background: #fff;
      padding: 12px 0;
      /* balanced height */
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* =========================
   LOGO (FIXED SIZE)
========================= */

  .navbar-brand {
      display: flex;
      align-items: center;
  }

  .navbar-brand img {
      height: 175px;
      /* 🔥 LOGO SIZE (change here) */
      width: auto;
      max-height: 100%;
      transition: transform 0.3s ease;
  }

  .navbar-brand:hover img {
      transform: scale(1.05);
  }

  /* Mobile Logo */
  @media (max-width: 768px) {
      .navbar-brand img {
          height: 52px;
      }
  }

  /* =========================
   TOGGLER
========================= */

  .navbar-toggler {
      border: none;
      padding: 0;
      box-shadow: none !important;
  }

  /* =========================
   NAV LINKS
========================= */

  .nav-link-custom {
      font-weight: 600;
      color: var(--nav-link-color);
      margin: 0 10px;
      position: relative;
      padding: 8px 0;
      transition: color 0.3s;
      font-size: 0.95rem;
  }

  .nav-link-custom:hover,
  .nav-link-custom.active {
      color: var(--nav-link-hover);
  }

  .nav-link-custom::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      background: var(--primary-gradient);
      transition: all 0.3s ease;
      transform: translateX(-50%);
  }

  .nav-link-custom:hover::after,
  .nav-link-custom.active::after {
      width: 100%;
  }

  /* =========================
   BUTTONS
========================= */

  .btn-login {
      color: var(--primary-color);
      font-weight: 700;
      padding: 10px 20px;
      border-radius: 50px;
      transition: all 0.3s;
      border: 1px solid transparent;
  }

  .btn-login:hover {
      background: rgba(13, 110, 253, 0.05);
      color: #06b6e2;
  }

  .btn-signup-premium {
      background: var(--primary-gradient);
      color: #fff;
      font-weight: 700;
      padding: 10px 25px;
      border-radius: 50px;
      border: none;
      box-shadow: 0 4px 15px rgba(13, 110, 253, 0.25);
      transition: all 0.3s;
  }

  .btn-signup-premium:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(13, 110, 253, 0.35);
      color: #fff;
  }

  /* =========================
   USER DROPDOWN
========================= */

  .user-dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 5px 15px;
      border-radius: 50px;
      border: 1px solid #e9ecef;
      transition: all 0.3s;
      background: #fff;
      cursor: pointer;
  }

  .user-dropdown-toggle:hover,
  .user-dropdown-toggle[aria-expanded="true"] {
      border-color: #0d6efd;
      box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
  }

  .user-avatar-circle {
      width: 32px;
      height: 32px;
      background: var(--primary-gradient);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
  }

  .dropdown-menu-premium {
      border: none;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      padding: 10px;
      margin-top: 15px;
  }

  .dropdown-item-premium {
      border-radius: 8px;
      padding: 10px 15px;
      font-weight: 500;
      color: #495057;
      transition: all 0.2s;
  }

  .dropdown-item-premium:hover {
      background: #f8f9fa;
      color: var(--primary-color);
      transform: translateX(5px);
  }

  .dropdown-item-premium.text-danger:hover {
      color: #dc3545;
      background: #fff5f5;
  }

  .footer-premium {
      background-color: #0f172a;
      color: #94a3b8;
      font-family: 'Plus Jakarta Sans', sans-serif;
      padding-top: 80px;
      position: relative;
      overflow: hidden;
  }

  /* .footer-logo-img {
      height: 50px;
      object-fit: contain;
      background: rgba(255, 255, 255, 1);
      padding: 5px;
      border-radius: 8px;
  } */

  .footer-logo-img {
      height: 200px;
      object-fit: contain;
      /* background: rgba(255, 255, 255, 1); */
      padding: 5px;
      border-radius: 8px;
      margin-top: -70px;
      margin-left: -40px;
      margin-bottom: -60px !important;
  }

  .social-icon-btn {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.05);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      margin-right: 10px;
      transition: all 0.3s;
      text-decoration: none;
  }

  .social-icon-btn:hover {
      background: linear-gradient(135deg, #03b8e9 0%, #03b8e996 100%);
      transform: translateY(-3px);
      color: #fff;
  }

  .footer-heading {
      color: #fff;
      font-weight: 700;
      margin-bottom: 25px;
      font-size: 1.1rem;
  }

  .footer-links li {
      margin-bottom: 12px;
  }

  .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
  }

  .footer-links a:hover {
      color: #03b8e9;
      padding-left: 5px;
  }

  .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 20px;
  }

  .footer-contact-icon {
      color: #03b8e9;
      font-size: 1.1rem;
      margin-top: 3px;
  }

  .newsletter-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      padding: 30px;
      border-radius: 16px;
      margin-bottom: 30px;
  }

  .newsletter-input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      border-radius: 8px;
  }

  .newsletter-input:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: #03b8e9;
      color: #fff;
      box-shadow: none;
  }

  .btn-subscribe {
      background: #03b8e9;
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
  }

  .copyright-bar {
      background: rgba(0, 0, 0, 0.2);
      padding: 25px 0;
      margin-top: 60px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Page Header */
  .dashboard-header {
      background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
      padding: 40px 0;
      color: white;
      margin-bottom: 30px;
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
      box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
  }

  /* Sidebar Menu Pro */
  .dashboard-sidebar {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
      padding: 20px;
      border: 1px solid #f0f0f0;
      position: sticky;
      top: 100px;
  }

  .sidebar-link {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 12px 20px;
      border-radius: 12px;
      color: #495057;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      margin-bottom: 5px;
  }

  .sidebar-link i {
      font-size: 1.1rem;
      width: 20px;
      text-align: center;
      color: #adb5bd;
      transition: all 0.3s;
  }

  .sidebar-link:hover,
  .sidebar-link.active {
      background-color: #f0f7ff;
      color: #0d6efd;
  }

  .sidebar-link:hover i,
  .sidebar-link.active i {
      color: #0d6efd;
      transform: scale(1.1);
  }

  .sidebar-link.text-danger:hover {
      background-color: #fff5f5;
      color: #dc3545;
  }

  .sidebar-link.text-danger:hover i {
      color: #dc3545;
  }

  /* Dashboard Cards */
  .dashboard-card-pro {
      background: #fff;
      border-radius: 20px;
      padding: 25px;
      border: 1px solid #f0f0f0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
      margin-bottom: 25px;
  }

  .card-title-pro {
      font-size: 1.1rem;
      font-weight: 800;
      color: #1a1f2c;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .card-title-pro::after {
      content: '';
      height: 1px;
      background: #f0f0f0;
      flex-grow: 1;
  }

  /* Stats Widget */
  .stat-widget-pro {
      background: #fff;
      border-radius: 20px;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 20px;
      border: 1px solid #f0f0f0;
      transition: all 0.3s;
  }

  .stat-widget-pro:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  .stat-icon-box {
      width: 55px;
      height: 55px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
  }

  .stat-info .stat-label {
      font-size: 0.85rem;
      color: #6c757d;
      font-weight: 600;
      margin-bottom: 2px;
  }

  .stat-info .stat-value {
      font-size: 1.4rem;
      font-weight: 800;
      color: #1a1f2c;
      margin-bottom: 0;
  }

  /* Table Styling */
  .table-pro thead th {
      background-color: #f8f9fa;
      border-bottom: none;
      color: #6c757d;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.5px;
      padding: 15px 20px;
  }

  .table-pro tbody td {
      padding: 15px 20px;
      vertical-align: middle;
      color: #495057;
      font-weight: 500;
      border-bottom: 1px solid #f8f9fa;
  }

  .badge-pro {
      padding: 6px 12px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.75rem;
  }

  /* Profile Summary */
  .profile-summary {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 10px;
  }

  .profile-avatar-pro {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
  }

  .profile-info-pro h4 {
      margin-bottom: 2px;
      font-weight: 800;
      color: white;
  }

  .profile-info-pro p {
      margin-bottom: 0;
      opacity: 0.8;
      font-size: 0.9rem;
  }

  /* Global Card Styles */
  .product-card {
      background: #fff;
      border: 1px solid #efefef;
      border-radius: 16px;
      transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
      position: relative;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
  }

  .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
      border-color: transparent;
  }

  /* Badge */
  .product-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      /* Changed from left to right */
      left: auto;
      padding: 3px 8px;
      /* Slightly smaller padding */
      font-size: 0.6rem;
      /* Slightly smaller font */
      font-weight: 700;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      z-index: 5;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .bg-gradient-success {
      background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
      color: white;
  }

  /* Image Area */
  .product-image-box {
      height: 220px;
      width: 100%;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #f8f9fa;
      padding: 20px;
      position: relative;
  }

  .product-image-box img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.5s ease;
      filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
  }

  .product-card:hover .product-image-box img {
      transform: scale(1.08);
  }

  /* Card Body */
  .product-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
  }

  .product-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-decoration: none;
      line-height: 1.4;
  }

  .product-title:hover {
      color: #07b5e7;
  }

  .product-rating {
      margin-bottom: 10px;
      font-size: 0.9rem;
      color: #ffc107;
      display: flex;
      align-items: center;
      gap: 5px;
  }

  .rating-text {
      color: #95a5a6;
      font-size: 0.8rem;
      font-weight: 500;
  }

  .product-price {
      font-size: 1.15rem;
      font-weight: 800;
      color: #2c3e50;
      margin-bottom: 4px;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 5px;
  }

  .price-unit {
      font-size: 0.85rem;
      color: #7f8c8d;
      font-weight: 500;
  }

  .product-meta {
      font-size: 0.85rem;
      color: #7f8c8d;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 6px;
  }

  /* Button */
  .btn-view-details {
      margin-top: auto;
      border-radius: 10px;
      padding: 10px 0;
      font-weight: 600;
      letter-spacing: 0.3px;
      background-color: #f8f9fa;
      color: #2c3e50;
      border: 1px solid #e9ecef;
      transition: all 0.3s;
  }

  .btn-view-details:hover {
      background-color: #09b7e6;
      color: white;
      border-color: #09b7e6;
      box-shadow: 0 4px 12px rgba(13, 189, 253, 0.25);
  }

  /* Search & Filter enhancements (if any) */
  /* Categories */
  .category-card {
      background: #fff;
      border-radius: 16px;
      padding: 30px 20px;
      transition: all 0.35s ease;
      border: 1px solid #f0f0f0;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
      border-color: transparent;
  }

  /* Top Gradient Line on Hover */
  .category-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #0d6efd, #00d2ff);
      transform: scaleX(0);
      transition: transform 0.4s ease;
      transform-origin: left;
  }

  .category-card:hover::before {
      transform: scaleX(1);
  }

  .category-icon {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: all 0.4s ease;
  }

  .category-card:hover .category-icon {
      background: #e7f1ff;
      transform: scale(1.1) rotate(3deg);
  }

  .category-icon img {
      width: 60px;
      height: 60px;
      object-fit: contain;
  }

  .category-title {
      font-weight: 700;
      font-size: 1.1rem;
      color: #2c3e50;
      margin: 0;
      transition: color 0.3s;
  }

  .category-card:hover .category-title {
      color: #0d6efd;
  }

  /* Supplier Card Pro */
  .supplier-card {
      background: #fff;
      border: 1px solid #efefef;
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
      height: 100%;
      display: flex;
      flex-direction: column;
  }

  .supplier-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
      border-color: transparent;
  }

  .supplier-header {
      position: relative;
      height: 100px;
      background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      display: flex;
      justify-content: center;
      align-items: flex-end;
      padding-bottom: 20px;
      /* Spacer for logo overlay */
  }

  .supplier-logo-wrapper {
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 80px;
      background: #fff;
      border-radius: 50%;
      padding: 5px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 2;
  }

  .supplier-logo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
  }

  .verified-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255, 255, 255, 0.9);
      color: #198754;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      gap: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  .supplier-body {
      padding: 45px 20px 20px;
      /* Top padding accounts for logo overlap */
      text-align: center;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
  }

  .supplier-name {
      font-size: 1.15rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 5px;
  }

  .supplier-location {
      color: #7f8c8d;
      font-size: 0.85rem;
      margin-bottom: 12px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5px;
  }

  .supplier-stats {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
  }

  .stat-badge {
      background: #f8f9fa;
      color: #495057;
      font-size: 0.75rem;
      padding: 5px 10px;
      border-radius: 6px;
      border: 1px solid #e9ecef;
      font-weight: 500;
  }

  .btn-view-profile {
      margin-top: auto;
      border-radius: 50px;
      font-weight: 600;
      border: 2px solid #06b6e7;
      color: #06b6e7;
      background: transparent;
      transition: all 0.3s;
      text-decoration: none;
      display: block;
      text-align: center;
  }

  .btn-view-profile:hover {
      background: #06b6e7;
      color: white;
      box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
  }

  .navbar>.container,
  .navbar>.container-fluid,
  .navbar>.container-lg,
  .navbar>.container-md,
  .navbar>.container-sm,
  .navbar>.container-xl,
  .navbar>.container-xxl {
      display: flex;
      flex-wrap: inherit;
      align-items: center;
      justify-content: space-between;
      height: 70px;
  }

  /* Hero Banner */
  .hero-banner {
      position: relative;
      min-height: 500px;
      overflow: hidden;
  }

  .banner-slide {
      height: 500px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      position: relative;
  }

  .banner-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  }

  .banner-content {
      position: relative;
      z-index: 2;
  }

  .banner-title {
      font-size: 3rem;
      font-weight: 700;
      color: white;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .banner-desc {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2rem;
      max-width: 600px;
  }

  .btn-banner {
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 50px;
      font-size: 1rem;
      transition: all 0.3s ease;
  }

  .btn-banner-primary {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border: none;
      color: white;
  }

  .btn-banner-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
  }

  .carousel-control-icon-bg {
      width: 50px;
      height: 50px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
  }

  .carousel-control-icon-bg:hover {
      background: rgba(102, 126, 234, 0.8);
  }

  /* Skeleton Loaders */
  .skeleton {
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: loading 1.5s ease-in-out infinite;
      border-radius: 15px;
  }

  @keyframes loading {
      0% {
          background-position: 200% 0;
      }

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

  .banner-skeleton {
      height: 500px;
      padding: 20px;
  }

  .skeleton-slide {
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: loading 1.5s ease-in-out infinite;
      border-radius: 15px;
  }

  .skeleton-category {
      height: 250px;
  }

  .skeleton-product {
      height: 350px;
  }

  /* Category Card */
  .category-card {
      background: white;
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      border: 2px solid transparent;
      height: 100%;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
      border-color: #667eea;
  }

  .category-image-container {
      width: 120px;
      height: 120px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .category-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 50%;
      border: 3px solid #f0f0f0;
      padding: 5px;
      background: white;
  }

  .category-card h5 {
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
      font-size: 1.1rem;
  }

  .category-card p {
      color: #666;
      font-size: 0.9rem;
      margin: 0;
  }

  /* Product Card */
  .product-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      height: 100%;
      cursor: pointer;
      position: relative;
  }

  .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  }

  .product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background: #f5f5f5;
  }

  .product-body {
      padding: 15px;
  }

  .product-title {
      font-size: 1rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 48px;
  }

  .product-price {
      font-size: 1.2rem;
      font-weight: 700;
      color: #667eea;
      margin-bottom: 5px;
  }

  .product-seller {
      font-size: 0.85rem;
      color: #666;
      margin-bottom: 3px;
  }

  .product-location {
      font-size: 0.75rem;
      color: #999;
  }

  .badge-verified {
      background: #10b981;
      color: white;
      padding: 0px 0px;
      border-radius: 10px;
      font-size: 0.65rem;
      margin-left: 5px;
  }

  .badge-featured {
      position: absolute;
      top: 10px;
      right: 10px;
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      color: white;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      z-index: 1;
  }

  /* Feature Box */
  .feature-box {
      text-align: center;
      padding: 30px 20px;
      border-radius: 15px;
      transition: all 0.3s ease;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      height: 100%;
  }

  .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
  }

  .feature-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: white;
  }

  .feature-box h5 {
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
  }

  .feature-box p {
      color: #666;
      font-size: 0.9rem;
      margin: 0;
  }

  /* Page Header */
  .page-header {
      background: linear-gradient(135deg, #03b8e5 0%, #07b7e4 100%);
      padding: 60px 0;
      color: white;
      margin-bottom: 40px;
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
      box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
      position: relative;
      overflow: hidden;
  }

  .search-input {
      border-radius: 50px 0 0 50px;
      border: none;
      padding: 15px 25px;
      font-size: 1rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .search-btn {
      border-radius: 0 50px 50px 0;
      padding: 10px 25px;
      background: #2c3e50;
      border: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .search-btn:hover {
      background: #1a252f;
  }

  /* Filter Sidebar */
  .filter-sidebar {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
      padding: 30px;
      border: 1px solid #f0f0f0;
      position: sticky;
      top: 30px;
  }

  .filter-title {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #adb5bd;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .filter-title::after {
      content: '';
      height: 1px;
      background: #e9ecef;
      flex-grow: 1;
  }

  .custom-checkbox {
      margin-bottom: 12px;
      padding-left: 2rem;
  }

  .custom-checkbox .form-check-input {
      width: 1.3em;
      height: 1.3em;
      margin-left: -2rem;
      border: 2px solid #dee2e6;
      cursor: pointer;
      transition: all 0.2s;
  }

  .custom-checkbox .form-check-input:checked {
      background-color: #0d6efd;
      border-color: #0d6efd;
      box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
  }

  .custom-checkbox .form-check-label {
      font-size: 0.95rem;
      color: #495057;
      padding-top: 2px;
      cursor: pointer;
      transition: color 0.2s;
  }

  .custom-checkbox:hover .form-check-label {
      color: #0d6efd;
  }

  .btn-filter {
      background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
      border: none;
      color: white;
      font-weight: 600;
      padding: 12px;
      border-radius: 12px;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  }

  .btn-filter:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
      color: white;
  }

  .btn-reset {
      border-radius: 12px;
      font-weight: 600;
      padding: 12px;
      border: 2px solid #e9ecef;
      color: #6c757d;
      transition: all 0.3s;
  }

  .btn-reset:hover {
      background: #e9ecef;
      color: #495057;
  }

  /* Product Card Professional */
  .product-card {
      background: #fff;
      border: 1px solid #f0f0f0;
      border-radius: 20px;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  }

  .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      border-color: transparent;
  }

  .product-image-box {
      height: 240px;
      width: 100%;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #fff;
      padding: 30px;
      position: relative;
  }

  .product-image-box img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.5s ease;
      filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
  }

  .product-card:hover .product-image-box img {
      transform: scale(1.1);
  }

  .product-body {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      background: #fff;
  }

  .product-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-decoration: none;
      line-height: 1.4;
      transition: color 0.2s;
  }

  .product-title:hover {
      color: #07b5e7;
  }

  .product-rating {
      margin-bottom: 15px;
      font-size: 0.9rem;
      color: #ffc107;
      display: flex;
      align-items: center;
      gap: 5px;
      background: #fff9e6;
      width: fit-content;
      padding: 4px 10px;
      border-radius: 20px;
  }

  .rating-text {
      color: #2c3e50;
      font-weight: 600;
      font-size: 0.8rem;
  }

  .product-price {
      font-size: 1.15rem;
      font-weight: 800;
      color: #2c3e50;
      margin-bottom: 5px;
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 5px;
  }

  .price-unit {
      font-size: 0.9rem;
      color: #95a5a6;
      font-weight: 500;
  }

  .product-meta {
      font-size: 0.9rem;
      color: #6c757d;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .btn-view-details {
      margin-top: auto;
      border-radius: 12px;
      padding: 12px 0;
      font-weight: 600;
      letter-spacing: 0.3px;
      background-color: #f8f9fa;
      color: #2c3e50;
      border: 1px solid #e9ecef;
      transition: all 0.3s;
  }

  .btn-view-details:hover {
      background-color: #0d6efd;
      color: white;
      border-color: #0d6efd;
      box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
      transform: translateY(-2px);
  }

  /* Hero Banner */
  .hero-banner {
      position: relative;
      min-height: 500px;
      overflow: hidden;
  }

  .banner-slide {
      height: 500px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      position: relative;
  }

  .banner-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  }

  .banner-content {
      position: relative;
      z-index: 2;
  }

  .banner-title {
      font-size: 3rem;
      font-weight: 700;
      color: white;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .banner-desc {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2rem;
      max-width: 600px;
  }

  .btn-banner {
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 50px;
      font-size: 1rem;
      transition: all 0.3s ease;
  }

  .btn-banner-primary {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border: none;
      color: white;
  }

  .btn-banner-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
  }

  .carousel-control-icon-bg {
      width: 50px;
      height: 50px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
  }

  .carousel-control-icon-bg:hover {
      background: rgba(102, 126, 234, 0.8);
  }

  /* Skeleton Loaders */
  .skeleton {
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: loading 1.5s ease-in-out infinite;
      border-radius: 15px;
  }

  @keyframes loading {
      0% {
          background-position: 200% 0;
      }

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

  .banner-skeleton {
      height: 500px;
      padding: 20px;
  }

  .skeleton-slide {
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: loading 1.5s ease-in-out infinite;
      border-radius: 15px;
  }

  .skeleton-category {
      height: 250px;
  }

  .skeleton-product {
      height: 350px;
  }

  /* Category Card */
  .category-card {
      background: white;
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      border: 2px solid transparent;
      height: 100%;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
      border-color: #667eea;
  }

  .category-image-container {
      width: 120px;
      height: 120px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .category-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 50%;
      border: 3px solid #f0f0f0;
      padding: 5px;
      background: white;
  }

  .category-card h5 {
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
      font-size: 1.1rem;
  }

  .category-card p {
      color: #666;
      font-size: 0.9rem;
      margin: 0;
  }

  /* Product Card */
  .product-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      height: 100%;
      cursor: pointer;
      position: relative;
  }

  .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  }

  .product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background: #f5f5f5;
  }

  .product-body {
      padding: 15px;
  }

  .product-title {
      font-size: 1rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 48px;
  }

  .product-price {
      font-size: 1.2rem;
      font-weight: 700;
      color: #667eea;
      margin-bottom: 5px;
  }

  .product-seller {
      font-size: 0.85rem;
      color: #666;
      margin-bottom: 3px;
  }

  .product-location {
      font-size: 0.75rem;
      color: #999;
  }

  .badge-verified {
      background: #10b981;
      color: white;
      padding: 0px 0px;
      border-radius: 10px;
      font-size: 0.65rem;
      margin-left: 5px;
  }

  .badge-featured {
      position: absolute;
      top: 10px;
      right: 10px;
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      color: white;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      z-index: 1;
  }

  /* Supplier Card */
  .supplier-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      height: 100%;
      border: 1px solid #eef2f7;
  }

  .supplier-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
      border-color: #66cbea;
  }

  .supplier-header {
      background: linear-gradient(135deg, #66cbea 0%, #764ba2 100%);
      padding: 25px 20px 15px;
      position: relative;
      text-align: center;
  }

  .supplier-logo-wrapper {
      width: 80px;
      height: 80px;
      margin: 0 auto 15px;
      border-radius: 50%;
      background: white;
      padding: 5px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .supplier-logo {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 50%;
  }

  .verified-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255, 255, 255, 0.9);
      color: #10b981;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      gap: 5px;
  }

  .verified-badge i {
      font-size: 0.7rem;
  }

  .supplier-body {
      padding: 20px;
      text-align: center;
  }

  .supplier-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: #333;
      margin-bottom: 8px;
  }

  .supplier-location {
      font-size: 0.85rem;
      color: #666;
      margin-bottom: 15px;
  }

  .supplier-location i {
      font-size: 0.8rem;
  }

  .rating {
      margin-bottom: 15px;
  }

  .rating i {
      font-size: 0.9rem;
  }

  .rating-text {
      color: #666;
      font-weight: 600;
      margin-left: 5px;
  }

  .supplier-stats {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
  }

  .stat-badge {
      background: #f8f9fa;
      color: #555;
      font-size: 0.8rem;
      padding: 5px 12px;
      border-radius: 15px;
      display: inline-flex;
      align-items: center;
      font-weight: 500;
  }

  .stat-badge i {
      font-size: 0.75rem;
  }

  .btn-view-profile {
      background: #4cccee;;
      color: white;
      border: none;
      border-radius: 10px;
      padding: 10px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
  }

  .btn-view-profile:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
      color: white;
  }

  /* Feature Box */
  .feature-box {
      text-align: center;
      padding: 30px 20px;
      border-radius: 15px;
      transition: all 0.3s ease;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      height: 100%;
  }

  .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
  }

  .feature-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: white;
  }

  .feature-box h5 {
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
  }

  .feature-box p {
      color: #666;
      font-size: 0.9rem;
      margin: 0;
  }

  /* Alert */
  .alert-info {
      background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
      border: none;
      border-radius: 15px;
      padding: 20px;
      color: #333;
  }

  .rating-stars {
      margin-bottom: 15px;
      color: #ffc107;
  }

  .text-primary {
      --bs-text-opacity: 1;
      color: rgb(9, 183, 230) !important;
  }

  .btn:hover {
      color: #f6f3f3;
      background-color: #0ab8e7;
      border-color: #0ab8e7;
  }

  .carousel-control-prev:hover .carousel-control-icon-bg,
  .carousel-control-next:hover .carousel-control-icon-bg {
      background: rgb(2, 182, 232);
  }

  .btn-outline-primary {
      --bs-btn-color: #05b7e1;
      --bs-btn-border-color: #02b6e8;
  }

  .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
  .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
  .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,
  .input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      background: #fff;
      color: #000000a3;
  }