       /*@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');*/


    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    a{
        text-decoration: none;
    }

    body {
      /*font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;*/
      /*font-family: 'Rajdhani', sans-serif;*/
      line-height: 1.6;
      color: #000;
      background: #fff;
      overflow-x: hidden;
    }

    .wrapper {
      width: 100%;
      min-height: 100%;
    }

    /* Navigation */
    .nav {
      background: #fff;
      padding: 1rem 5%;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 100;
      width: 100%;
    }

    .nav-content {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: #000;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: #000;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 12px 15px;
    border-radius: 10px;
    }


     .nav-links a:hover {
    transform: rotate3d(1, 1, 0, 45deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #000;
}

    .nav-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn {
          position: relative;
          font-size: 1.1rem;
          padding: 0.9rem 2.4rem;
          color: #fff;
          background: #fff;
          border: none !important;
          border-radius: 12px;
          cursor: pointer;
          overflow: hidden;
          z-index: 1;
          letter-spacing: 0.5px;
          display: flex;
          align-items: center;
          justify-content: center;
    }

       .btn::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(
            90deg,
            #ff0000,
            #ff7300,
            #fffb00,
            #48ff00,
            #00ffd5,
            #002bff,
            #7a00ff,
            #ff00c8,
            #ff0000
          );
          background-size: 400%;
          border-radius: 14px;
          animation: glowBor 8s linear infinite;
          z-index: -1;
        }

           .btn::after {
          content: "";
          position: absolute;
          top: 2px;
          left: 2px;
          right: 2px;
          bottom: 2px;
          background: #fff;
          border-radius: 10px;
          z-index: -1;
        }

        .btn:hover::after{
            background: #000;
            color: #fff;
        }
        
        /* Animation */
        @keyframes glowBor {
          0% {
            background-position: 0% 50%;
          }
          50% {
            background-position: 100% 50%;
          }
          100% {
            background-position: 0% 50%;
          }
        }

    .btn-primary {
      background: #000;
      color: #000;
    }

    .btn-primary:hover {
      background: #1565C0;
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: #fff;
      color: #000;
    }

    .btn-secondary:hover {
      background: #000;
    }

    
     .btn:hover {
          box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
          transform: translateY(-2px);
          transition: 0.25s ease;
          color: #fff;
        }
    
        .glow-btn {
          position: relative;
          font-size: 1.1rem;
          padding: 0.6rem 2.4rem;
          color: #fff;
          background: #0a0a0a;
          border: none;
          border-radius: 12px;
          cursor: pointer;
          overflow: hidden;
          z-index: 1;
          letter-spacing: 0.5px;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        
        /* RGB Border Effect */
        .glow-btn::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(
            90deg,
            #ff0000,
            #ff7300,
            #fffb00,
            #48ff00,
            #00ffd5,
            #002bff,
            #7a00ff,
            #ff00c8,
            #ff0000
          );
          background-size: 400%;
          border-radius: 14px;
          animation: glowBorder 8s linear infinite;
          z-index: -1;
        }
        
        /* Inner dark background */
        .glow-btn::after {
          content: "";
          position: absolute;
          top: 2px;
          left: 2px;
          right: 2px;
          bottom: 2px;
          background: #0a0a0a;
          border-radius: 10px;
          z-index: -1;
        }
        
        /* Animation */
        @keyframes glowBorder {
          0% {
            background-position: 0% 50%;
          }
          50% {
            background-position: 100% 50%;
          }
          100% {
            background-position: 0% 50%;
          }
        }
        
        /* Hover Glow */
        .glow-btn:hover {
          box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
          transform: translateY(-2px);
          transition: 0.25s ease;
        }

   /* Hero Section */
    .hero {
      position: relative;
      background: url('img/1.png') center/cover no-repeat;
      color: #fff;
      padding: 5rem 5% 4rem;
      text-align: center;
      width: 100%;
      overflow: hidden;
      height: 90vh;
      margin: auto;
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: center;
    }
    
    /* Black Overlay or Blue Overlay */
    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      /* BLACK overlay (recommended for Rentify) */
      background: rgba(0, 0, 0, 0.65);
      
      /* BLUE overlay (your old theme) */
      /* background: rgba(21, 101, 192, 0.65); */
      
      z-index: 1;
    }
    
    /* Make content sit above overlay */
    .hero > * {
      position: relative;
      z-index: 2;
    }


    .hero-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      font-weight: 800;
      line-height: 1.2;
    }

    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      opacity: 0.95;
    }

  /* Search Box - Gradient Glow Card */
    .search-box {
      position: relative;
      padding: 1.5rem;
      border-radius: 14px;
    
      /* Glass effect */
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
    
      /* Blue glow border */
      border: 1px solid rgba(41,121,255,0.3);
      box-shadow: 
        0 0 25px rgba(41,121,255,0.25),
        inset 0 0 15px rgba(41,121,255,0.15);
    
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      max-width: 820px;
      margin: 0 auto;
      z-index: 3;
    }
    
    /* Search Input */
    .search-input {
      flex: 1;
      min-width: 200px;
      padding: 1rem;
      border-radius: 10px;
    
      /* semi-transparent input background */
      background: rgba(0,0,0,0.35);
      border: 1px solid rgba(255,255,255,0.15);
    
      color: #fff;
      font-size: 1rem;
    
      transition: all .25s ease;
    }
    
    .search-input::placeholder {
      color: rgba(255,255,255,0.6);
    }
    
    .search-input:focus {
      outline: none;
      border-color: #2979FF;
      box-shadow: 0 0 12px rgba(41,121,255,0.6);
    }


    /* Categories */
    .section {
      padding: 4rem 2%;
      width: 100%;
    }

    .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      font-weight: 700;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .category-card {
      background: #fff;
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: all 0.3s;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(41,121,255,0.2);
    }

    .category-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    
    .category-icon img {
      width: 100px;
      height: 100px;
      object-fit: contain;
      border-radius: 20px;
      background: rgba(255,255,255,0.06);
      padding: 12px;
      backdrop-filter: blur(4px);
    }

    .category-card h3 {
      font-size: 0.9rem;
      font-weight: 600;
    }

    /* How It Works */
    .how-it-works {
      background: #F5F5F5;
    }

    .earn-calculator{
        width: 50%;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .step-card {
      background: #fff;
      padding: 2.5rem;
      border-radius: 12px;
      text-align: center;
    }

    .step-number {
      width: 60px;
      height: 60px;
      background: #2979FF;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0 auto 1.5rem;
    }

    .step-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    /* Featured Gadgets */
    .gadgets-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 20px;
      row-gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .gadget-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: all 0.3s;
      cursor: pointer;
      width: 100%;
    }

    .gadget-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    .gadget-image {
      width: 100%;
      height: 200px;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
    }
    
    .gadget-image img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .gadget-info {
      padding: 1.5rem;
    }

    .gadget-info h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }

    .gadget-price {
      color: #2979FF;
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0.5rem 0;
    }

    .gadget-location {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .rating {
      color: #FFA000;
      font-size: 0.9rem;
    }

    /* Vendor CTA */
    .vendor-cta {
      background: linear-gradient(135deg, #000 0%, #333 100%);
      color: #fff;
      text-align: center;
    }

    .vendor-content {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .vendor-content h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .vendor-content p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .testimonial-text {
      font-style: italic;
      margin-bottom: 1.5rem;
      font-size: 1.05rem;
      line-height: 1.7;
      font-weight: 600;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-weight: 500;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      background: #2979FF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 1.2rem;
    }

    .author-info h4 {
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .author-info p {
      font-size: 0.9rem;
      color: #666;
    }

    /* Footer */
    .footer {
      background: #000;
      color: #fff;
      padding: 3rem 5% 2rem;
      width: 100%;
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 {
      margin-bottom: 1.5rem;
      color: #2979FF;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: #fff;
      text-decoration: none;
      opacity: 0.8;
      transition: opacity 0.3s;
    }

    .footer-links a:hover {
      opacity: 1;
      color: #2979FF;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #333;
      opacity: 0.7;
    }

    /* AI Assistant Widget */
    .ai-widget {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: #2979FF;
      color: #fff;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 4px 16px rgba(41,121,255,0.4);
      cursor: pointer;
      transition: all 0.3s;
      z-index: 99;
    }

    .ai-widget:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 24px rgba(41,121,255,0.6);
    }

    /* Page Navigation */
    .page-nav {
      background: #F5F5F5;
      padding: 2rem 5%;
      width: 100%;
    }

    .page-nav-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
    }

    .page-link-card {
      background: #fff;
      padding: 1.5rem;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      color: #000;
      border-radius: 50px;
    }

    .page-link-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 16px rgba(41,121,255,0.2);
      color: #2979FF;
      background: #000;
      color: #fff;
    }

    /* Content Pages */
    .content-page {
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 0%;
    }

        .checkout-grid label {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 13px !important;
        gap: 7px;
    }

    .content-page h1 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: #2979FF;
    }

    .content-page h2 {
      font-size: 1.3rem;
      margin: 2.5rem 0 1rem;
      color: #000;
    }

    .content-page h3 {
      font-size: 1.5rem;
      margin: 2rem 0 1rem;
    }

    .content-page p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      line-height: 1.8;
      font-weight: 500;
    }

    .content-page ul, .content-page ol {
      margin-bottom: 1.5rem;
      padding-left: 2rem;
    }

    .content-page li {
      margin-bottom: 0.75rem;
      line-height: 1.7;
    }

    .faq-item {
      background: #F5F5F5;
      padding: 1.5rem;
      border-radius: 8px;
      margin-bottom: 1.5rem;
    }

    .faq-question {
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
      color: #2979FF;
    }

    /* Vendor Dashboard */
    .dashboard {
      display: grid;
      grid-template-columns: 250px 1fr;
      gap: 2rem;
      max-width: 1400px;
      margin: 0 auto;
      padding: 2rem 5%;
    }

    .sidebar {
      background: #F5F5F5;
      padding: 2rem;
      border-radius: 12px;
      height: fit-content;
    }

    .sidebar h3 {
      margin-bottom: 1.5rem;
      color: #2979FF;
    }

    .sidebar-menu {
      list-style: none;
    }

    .sidebar-menu li {
      padding: 1rem;
      margin-bottom: 0.5rem;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .sidebar-menu li:hover, .sidebar-menu li.active {
      background: #2979FF;
      color: #fff;
    }

    .dashboard-content {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .stat-card {
      background: linear-gradient(135deg, #2979FF 0%, #1565C0 100%);
      color: #fff;
      padding: 2rem;
      border-radius: 12px;
      text-align: center;
    }

    .stat-value {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      opacity: 0.9;
      font-size: 1rem;
    }

    /* Forms */
    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 1rem;
      border: 2px solid #E0E0E0;
      border-radius: 8px;
      font-size: 1rem;
    }

    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: #2979FF;
    }
    
    
    /* --- Base Container Styling --- */
.custom-select {
    position: relative; /* Crucial for positioning the options list */
    display: inline-block;
    min-width: 250px; /* Adjust as needed */
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    user-select: none; /* Prevent text selection */
}

/* --- Trigger/Display Styling (The main button) --- */
.select-trigger {
    padding: 0.75rem 1rem;
    border: 2px solid #E0E0E0; /* Light gray border */
    border-radius: 8px;
    background-color: #FFFFFF; /* White background */
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.2s, box-shadow 0.2s; /* Smooth transitions */
}

.select-trigger:after {
    content: '▼'; /* Down arrow icon (you can use an SVG icon instead) */
    font-size: 0.7rem;
    margin-left: 10px;
    transition: transform 0.2s;
}

/* Style when the dropdown is open (active) */
.custom-select.active .select-trigger {
    border-color: #007bff; /* Example highlight color */
    box-shadow: 0 0 0 0.15rem rgba(0, 123, 255, 0.25);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Rotate the arrow when active */
.custom-select.active .select-trigger:after {
    transform: rotate(180deg);
}

/* --- Options List Styling --- */
.options-list {
    position: absolute;
    top: 100%; /* Position right below the trigger */
    left: 0;
    right: 0;
    z-index: 1000; /* Ensure it overlays other elements */
    background-color: #fff;
    border: 2px solid #007bff; /* Match the active border color */
    border-top: none; /* No top border to connect to the trigger */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    max-height: 200px; /* Scrollable list for many items */
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default, toggled by JavaScript */
}

/* Show the options list when the custom-select is active */
.custom-select.active .options-list {
    display: block;
}

/* --- Individual Option Styling --- */
.option {
    padding: 0.75rem 1rem;
    color: #333;
    transition: background-color 0.15s;
}

/* Hover/Focus state for options */
.option:hover,
.option.selected {
    background-color: #f8f9fa; /* Light background on hover/selected */
    color: #007bff; /* Highlight text color */
}

/* Remove bottom border on the last item for a cleaner look */
.options-list .option:last-child {
    border-bottom: none;
}

    /* Table */
    .table-container {
      overflow-x: auto;
    }

    .data-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 2rem;
    }

    .data-table th {
      background: #2979FF;
      color: #fff;
      padding: 1rem;
      text-align: left;
      font-weight: 600;
    }

    .data-table td {
      padding: 1rem;
      border-bottom: 1px solid #E0E0E0;
    }

    .data-table tr:hover {
      background: #F5F5F5;
    }

    .status-badge {
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .status-active {
      background: #4CAF50;
      color: #fff;
    }

    .status-pending {
      background: #FFA000;
      color: #fff;
    }

    .status-inactive {
      background: #757575;
      color: #fff;
    }

    /* Product Details Page */
    .product-detail {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 5%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    .image-gallery {
      background: #F5F5F5;
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
    }

    .main-image {
      width: 100%;
      height: 400px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8rem;
      margin-bottom: 1rem;
    }

    .thumbnail-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-top: 1rem;
    }

    .thumbnail {
      width: 100%;
      height: 80px;
      background: #E0E0E0;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .thumbnail:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .product-info h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .price-section {
      background: #F5F5F5;
      padding: 1.5rem;
      border-radius: 8px;
      margin: 1.5rem 0;
    }

    .price-section h3 {
      margin-bottom: 1rem;
    }

    .price-options {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .price-option {
      flex: 1;
      min-width: 120px;
      text-align: center;
      padding: 1rem;
      background: #fff;
      border-radius: 8px;
    }

    .price-option .amount {
      font-size: 1.5rem;
      font-weight: 700;
      color: #2979FF;
    }

    .price-option .period {
      font-size: 0.9rem;
      color: #666;
    }

    .owner-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.5rem;
      background: #F5F5F5;
      border-radius: 8px;
      margin: 1.5rem 0;
    }

    .owner-avatar {
      width: 60px;
      height: 60px;
      background: #2979FF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.5rem;
      font-weight: 700;
    }

    .reviews-section {
      margin-top: 3rem;
    }

    .review-card {
      background: #F5F5F5;
      padding: 1.5rem;
      border-radius: 8px;
      margin-bottom: 1rem;
    }

    .review-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1rem;
    }
    
        .agree{
        display: flex;
        align-items: baseline;
        gap: 7px;
    }
    
    .filters{
        max-width: 100%; margin: 0 auto; display: grid; grid-template-columns: 250px 1fr; gap: 2rem;
    }
    
    .filter-box{
        background: #F5F5F5; padding: 1rem; border-radius: 12px; height: fit-content;
    }
    
    .checkout-grid{
        display: grid; grid-template-columns: 1fr 400px; gap: 3rem;
    }



    /* BACKDROP */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity .3s ease;
}

.cart-backdrop.active {
  opacity: 1;
}

/* SIDEBAR - DESKTOP */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 450px;
  height: 100vh;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  z-index: 1000;
  transition: right .35s ease-in-out;
  box-shadow: -3px 0 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

/* BOTTOM PANEL - MOBILE */
.cart-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -60%;
  height: 60%;
  background: #fff;
  z-index: 1000;
  transition: bottom .35s ease-in-out;
  box-shadow: 0 -3px 10px rgba(0,0,0,0.2);
  border-radius: 18px 18px 0 0;
  display: flex;
  flex-direction: column;
}

.cart-bottom.active {
  bottom: 0;
}

/* HEADER */
.close-btn {
  cursor: pointer;
  border: none;
  background: none;
  font-size: 28px;
  line-height: 28px;
}

.cart-header,
.cart-bottom-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
    align-items: center;
    padding: 10px 20px;
}

.cart-bottom-header h3{
    font-size: 16px;
    font-weight: 600;
}

/* HIDE BOTH BY DEFAULT */
.hidden {
  display: none;
}


.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
}

.cart-item-title {
  font-weight: 600;
  flex: 1;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-controls button {
  border: none;
  background: #ddd;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.checkout-btn {
  background: #0a66ff;
  color: white;
  width: 100%;
  border: none;
  padding: 15px;
  margin-top: 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.cart-image img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.cart-price {
  font-size: 12px;
  color: #252525;
  margin-bottom: 6px;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-controls button{
    width: 25px;
    height: 25px;
    background: #f2f2f2;
    border-radius: 5px;
}

.cart-change-btn {
  background: #eee;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.cart-summary{
    position: absolute;
    bottom: 2%;
    width: 410px;
}

.cart-bottom .cart-summary{
    width: 100%;
    padding: 10px 15px;
}

.cart-summary p{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.cart-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.cart-header h3{
    font-size: 16px;
    font-weight: 600;
}

.cart-body{
    padding: 0px;
}

.cart-empty{
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    padding-top: 40px;
}

.close-btn-cart{
    background: #f2f2f2;
    padding: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cart-total {
  width: 80px;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 6px;
}

.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: #f2f2f2;
}


.back-btn{
        position: absolute;
        top: 20px;
        right: 20px;
      }
      
      .price-side{
          display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem;
      }


    /* Responsive */
    @media (max-width: 768px) {
        .hero {
        height: 93vh;
        display: flex;
        align-items: center;
        }
        .hero h1 {
        font-size: 2rem;
        }
        
        .form-group input {
            border-radius: 40px;
        }
        
        .form-group textarea, .form-group select{
            border-radius: 14px;
        }
        
        .content-page h2 {
            font-size: 23px;
            margin: 0.1rem 0 1rem;
            color: #000;
            font-weight: 900;
        }
        
        .hero p {
        font-size: 1rem;
        }
        
        .section-title {
        font-size: 1.75rem;
        }
        
        .nav-links {
        display: none;
        }
        
        .btn{
        padding: 0.1rem 1.5rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 3px solid #000;
        height: 45px;
        }
        
        .gadgets-grid {
            grid-template-columns: 1fr 1fr;
            gap: 0.3rem;
            row-gap: 0.7rem;
        }
        
        .gadget-info h3 {
            font-size: 12px;
            font-weight: 600;
        }
        
        .gadget-info {
            padding: 0.5rem 0.7rem;
        }
        
        .gadget-location {
            font-size: 12px;
            font-weight: 500;
        }
        
        .gadget-price {
            font-size: 14px;
            font-weight: 800;
        }
        
        
        .glow-btn {
        position: relative;
        font-size: 12px;
        padding: 0.8rem 1.5rem;
        color: #fff;
        background: #0a0a0a;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        overflow: hidden;
        z-index: 1;
        letter-spacing: 0.5px;
        }
        
        .dashboard {
         display: flex;
        padding: 0;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        }
        .dashboard-content {
            padding: 1rem;
            width: 100%;
        }
        
   
        .categories-grid {
        grid-template-columns: 1fr 1fr;

        } 
        
        .category-icon img {
            padding: 0;
            width: 80px;
            border-radius: 20px;
        }
        
        .page-link-card {
            border-radius: 40px;
        }
        
        .page-nav-content {
            gap: 1rem ;
        }
        
        .content-page p {
        margin-bottom: 1.5rem;
        font-size: 12px;
        line-height: 1.8;
        font-weight: 500;
    }
    
    .agree{
        display: flex;
        align-items: baseline;
        gap: 7px;
    }
        .category-card h3 {
            font-size: 15px;
        }
        
        .step-card h3 {
            font-weight: 600;
        }
        
        .vendor-content h2 {
            font-weight: 700;
        }
        
        .testimonial-text {
            font-weight: 600;
        }

        .steps-grid {
            gap: 1rem;
        }

        .category-icon {
            width: 80px;
        }
        
        .section-title {
            margin-bottom: 1rem;
        }
        
        .category-card {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0.7rem;
        }
                
        .sidebar {
        display: none;
        }
        
        .product-detail {
        grid-template-columns: 1fr;
        }
        
        .ai-widget {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        }
        
        .filters{
            display: flex;
            flex-direction: column;
        }
        .filter-box{
            padding: 12px;
        }
        
        .image-gallery {
            padding: 1rem;
        }
        
        .product-info h1 {
            font-size: 20px;
            font-weight: 600;
        }
        
        .price-option .amount {
            font-size: 18px;
        }
        
        .owner-card {
            padding: 0.6rem;
            display: grid;
            grid-template-columns: 18% 82%;
            align-items: flex-start;
        }
        
        .owner-card h4{
            font-weight: 600;
        }
        .owner-card p{
            font-weight: 500;
            font-size: 13px;
            width: 80%;
        }
        
        .checkout-grid{
            display: flex;
            flex-direction: column;
        }
         .checkout-grid label{
             display: flex;
             flex-direction: column;
             align-items: flex-start;
             justify-content: center;
            padding: 13px !important;
            gap: 7px;
         }
        
        .checkout-grid strong{
            font-size: 13px;
        }
        .checkout-grid span{
            font-size: 13px;
            font-weight: 500;
        }

         .earn-calculator{
            width: 100%;
        }
            .content-page {
            padding: 4rem 4%;
            position: relative;
        }
        .product-info h3{
            font-weight: 600;
            margin: 3% 0;
        }
        .stat-value {
             font-size: 12px ;
        }
        .stat-label {
          font-size: 12px;
      }
        
        .stats-grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .data-table {
          width: 300%;
          margin: 0;
      }

        .stat-card {
          padding: 1rem;
          border-radius: 10px;
          background: #000;
          color: #fff;
      }
      .table-container {
          overflow-x: auto;
          border: 2px solid #000;
          border-radius: 7px;
      }
      .data-table td {
        padding: 7px 10px;
        border-right: 2px solid #000;
        text-align: center;

      }
      thead{
        background: #fff;
        border-bottom: 2px solid #000;
      }

      .data-table th{
        background: none;
                color: #000;
                text-align: center;

      }

      .back-btn{
        position: absolute;
        top: 20px;
        right: 20px;
      }
        .price-side{
          display: flex;
          flex-direction: column;
      }
    }


      
    /* Current Page Styles */
    .current-page {
      display: block;
    }

    .hidden-page {
      display: none;
    }