* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background-color: #f8f8f8;
  }
  :root {
    --primary-color: #2196f3;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
  }
  .checkout-container {
    max-width: 1600px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 20px;
    margin: 20px auto;
  }
  .checkout-header {
    text-align: center;
    padding: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
  }
  /*
  table.checkout-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    table-layout: fixed;
    padding: 20px;
    background-color: #fbfbfb !important;
    border-radius: 10px;
    border:none
  }
  table.checkout-table th{
    border:none
  }
  table.checkout-table td{
    border:none
  }
  .checkout-table > tbody > tr:nth-child(odd) {
    background-color: #f8f9fa;
  }
  
  .checkout-table > tbody > tr:nth-child(odd) td {
    background-color: #f8f9fa !important;
  }
  
  .checkout-table > tbody > tr:nth-child(even) td {
    background-color: #ffffff !important;
  }*/

  /* Table Styles */
  table.checkout-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    table-layout: fixed;
    padding: 20px;
    background-color: #fbfbfb;
    border-radius: 10px;
    border: none;
    font-size: 14px;
  }

  table.checkout-table th {
    padding: 10px;
    text-align: left;
    color: var(--text-secondary);
    font-weight: 500;
     
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    background-color: white;
    border: none;
  }

  table.checkout-table td {
    padding: 12px 10px;
    vertical-align: middle;
    /* font-size: 11px; */
    font-size: 14px;
    border: none;
  }
  table.checkout-table td .remove-btn {
    background: #fee2e2;
    color: #ef4444;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    padding: 0;
    box-shadow: none;
  }
  
 /* Footer Styles */
 .checkout-table > tfoot > tr {
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .checkout-table > tfoot > tr > td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    text-align: left;
  }

  .checkout-table > tfoot > tr > td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  /* .checkout-table tbody tr {
    background: var(--bg-light);
  } */
  
  .checkout-table tbody td,
  .checkout-table tfoot td {
    padding: 16px;
  }


  .cart-items {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  .checkout-table tbody {
    border-radius: 10px;
  }
  .checkout-table tbody tr {
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    margin-bottom: 15px;
  }

  /* Alternating Row Colors */
  .checkout-table > tbody > tr:nth-child(even) {
    background: white !important;
  }
  .checkout-table > tbody > tr:nth-child(odd) {
    background: var(--bg-light);
  }
  /* Product Details */
  .product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
  }

  .product-variant {
    font-size: 11px;
    color: var(--text-secondary);
  }

  /* Quantity Controls */
  .quantity-control {
    display: inline-flex;
    align-items: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
  }

  .quantity-btn {
    border: none;
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 6px 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 11px;
  }

  .quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 11px;
    padding: 6px;
    background: white;
  }

  /* Price and Total */
 
  .total,
  .subtotal,
  .tax {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
  }

  
  /* Summary Values */
  .total-summary {
    text-align: right;
    white-space: nowrap;
  }

  .total-summary span {
    font-weight: 600;
    color: var(--primary-color);
  }

  /* Row Styles with Border Radius */
  .checkout-table > tbody > tr {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .checkout-table > tbody > tr:nth-child(even) {
    background: #f1f5f9;
  }

  .checkout-table > tbody > tr > td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .checkout-table > tbody > tr > td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  /* Table Spacing */
  .checkout-table {
    border-collapse: separate;
    border-spacing: 0 10px;
  }
  /* Hover state for rows */
  /* .checkout-table > tbody > tr:hover td {
    background-color: #f1f5f9 !important;
  } */
  
  /* Main container styles */
  .view-cart-container {
    margin: 20px auto;
    padding: 0 20px;
  }
  
  /* Enhanced Filters Section */
  .filters-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    gap: 20px;
  }
  
  .filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
  }
  
  .filters-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .filters-title i {
    color: #3b82f6;
  }
  
  .filters-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .filter-group {
    min-width: 150px;
  }
  
  .filter-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 5px;
  }
  
  .filter-select,
  .sort-select {
    padding: 10px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: #fff;
    color: #374151;
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
  }
  
  .filter-select:focus,
  .sort-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6;
  }
  
  /* Price Range Styles */
  .price-range-filter {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1.5px solid #e2e8f0;
  }
  
  .price-range-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .price-range-title i {
    color: #3b82f6;
  }
  
  .range-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .field {
    flex: 1;
    position: relative;
  }
  
  .field span {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: #94a3b8;
  }
  
  .field input {
    width: 100%;
    padding: 12px 12px 12px 25px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #334155;
    transition: all 0.3s ease;
  }
  
  .field input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }
  
  .separator {
    font-size: 1.2rem;
    color: #94a3b8;
    margin: 0 5px;
  }
  
  /* Active Filters */
  .active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
  }
  
  .filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #334155;
    transition: all 0.3s ease;
  }
  
  .filter-tag:hover {
    background: #e2e8f0;
  }
  
  .filter-tag i {
    font-size: 0.8rem;
    color: #64748b;
    cursor: pointer;
  }
  
  .view-all-container {
    max-width: 1600px;
    margin: 20px auto;
    padding: 0 20px;
  }
  /* Products grid */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
  }
  
  /* Product card styles */
  .product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-image-container {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
  }
  
  .product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    object-fit: cover;
  }
  
  .product-info {
    padding: 15px;
  }
  
  .product-title {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    color: #333;
  }
  
  .product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 10px;
  }
  
  .product-rating {
    color: #fbbf24;
    margin-bottom: 15px;
  }
  
  /* Add to cart button */
  .add-to-cart {
    width: 100%;
    padding: 10px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
  }
  
  .add-to-cart:hover {
    background: #1d4ed8;
  }
  
  /* No products message */
  .no-products {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    grid-column: 1 / -1;
  }
  
  .no-products h3 {
    color: #1f2937;
    margin-bottom: 10px;
  }
  
  .no-products p {
    color: #6b7280;
  }
  
  /* Responsive Design */
  
  
  @media (max-width: 480px) {
    .products-grid {
      grid-template-columns: 1fr;
    }
  
    .price-range-filter {
      padding: 15px;
    }
  
    .range-inputs {
      flex-direction: column;
      gap: 10px;
    }
  
    .field {
      width: 100%;
    }
  
    .separator {
      display: none;
    }
  
    .item-image {
      height: 35px;
    }
  }
  
  /* Loading Spinner */
  .loading-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .loading-spinner i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 10px;
  }
  
  /* Cart Message */
  .cart-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(150%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .cart-message.show {
    transform: translateY(0);
  }
  
  .cart-message i {
    font-size: 1.2rem;
  }
  
  /* Product Grid Animations */
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Product Image Hover Effect */
  .product-card:hover .product-image {
    transform: scale(1.05);
  }
  
  /* Responsive Grid */
  @media (max-width: 1200px) {
    .products-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (max-width: 900px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .products-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Add these styles to ensure products are visible */
  
 
  
  /* Updated Search Bar Styles without animations */
  .search-section {
    flex: 1;
    max-width: 600px;
  }
  
  /* .search-bar {
    position: relative;
    width: 100%;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
  }
  
  .search-bar:focus-within {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .search-icon {
    color: #6b7280;
    font-size: 1.1rem;
    margin-right: 12px;
  }
  
  #searchInput {
    border: none;
    background: transparent;
    padding: 8px 0;
    width: 100%;
    font-size: 0.95rem;
    color: #374151;
  }
  
  #searchInput:focus {
    outline: none;
  }
  
  #searchInput::placeholder {
    color: #9ca3af;
  } */
  
  /* Container adjustments */
  .container {
    max-width: 1600px;
    margin: 0 auto;
  
    border-radius: 8px;
  
  }
 
  
  /* Search Bar Styles */
  /* .search-section {
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
  }
  
  .search-bar {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
  }
  
  .search-bar:focus-within {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .search-icon {
    color: #6b7280;
    font-size: 1.1rem;
    margin-right: 12px;
  }
  
  #searchInput {
    border: none;
    background: transparent;
    padding: 8px 0;
    width: 100%;
    font-size: 1rem;
    color: #374151;
  }
  
  #searchInput:focus {
    outline: none;
  }
  
  #searchInput::placeholder {
    color: #9ca3af;
    font-size: 0.95rem;
  } */
  
  /* Container and Grid Styles */
  
  .category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  .category-header h2 {
    font-size: 1.5rem;
    color: #1f2937;
    margin: 0;
  }
  
  .view-all {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  
  /* Product Card Styles */
  .product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .product-image {
    position: relative;
    padding-top: 100%;
  }
  
  .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #3b82f6;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
  }
  
  .product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .product-actions button {
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4b5563;
  }
  
  .product-info {
    padding: 15px;
  }
  
  .product-info h3 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    color: #1f2937;
  }
  
  /* .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
  } */
  
  .original-price {
    color: #6b7280;
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: normal;
  }
  
  .rating {
    color: #f59e0b;
    font-size: 0.9rem;
  }
  
  /* No Results Message */
  .no-results {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
  }
  
  .no-results h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: #374151;
  }
  
 
  @media (max-width: 480px) {
    .products-grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
  
    .product-info h3 {
      font-size: 0.9rem;
    }
  
    .price {
      font-size: 1rem;
    }
  }
  
  /* Pagination Styles */
  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 8px;
    color: #374151;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .page-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
  }
  
  .page-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
  }
  
  /* Previous and Next buttons */
  .page-btn:first-child,
  .page-btn:last-child {
    padding: 0 20px;
  }
  
  
  /* Responsive Design */
  @media (max-width: 480px) {
    .pagination {
      gap: 4px;
    }
  
    .page-btn {
      min-width: 35px;
      height: 35px;
      padding: 0 10px;
      font-size: 0.9rem;
    }
  
    .page-btn:first-child,
    .page-btn:last-child {
      padding: 0 15px;
    }
  }
  
  /* Cart Container */
  .cart-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 16px;
    background: #fff;
  }
  
  /* Cart Title */
  .cart-container h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
  }
  
  .cart-list{
    display:none;
  }
  /* Mobile View */
  @media (max-width: 768px) {
    .checkout-container{
        padding:0px;
        border-radius:12px !important;
    }
    .checkout-header{
        border-radius:12px 12px 0px 0px;
    }
    .container {
        padding:0px;
      }
    .filters-section {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
      }
    
      .filter-group,
      .search-section {
        width: 100%;
        max-width: 100%;
      }
    
      .sort-select {
        width: 100%;
      }
    
      .search-bar {
        border-radius: 6px;
      }
    
      .filters-content {
        grid-template-columns: 1fr;
      }
    
      .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
    
      .range-inputs {
        flex-direction: column;
      }
    
      .separator {
        display: none;
      }
    
      .item-image {
        width: 100%;
        height: 40px;
        position: relative;
        background: #f8f8f8;
        margin-bottom: 8px;
      }
    
      .item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    
      .item-details {
        padding: 12px;
        margin-top: 20px;
      }
    
      .product-name {
        font-size: 18px;
        font-weight: 600;
        color: #000;
        margin-bottom: 4px;
      }
    
      .product-variant {
        color: #666;
        font-size: 14px;
        margin-bottom: 16px;
      }
    
      /* .delete-item-btn {
        position: absolute;
        top: 4px;
        right: 4px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        color: #ff4444;
        border: none;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      } */
    
      /* Quantity Controls */
      .quantity-control {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #f5f5f5;
        padding: 8px;
        border-radius: 8px;
        margin-bottom: 16px;
      }
    
      .quantity-btn {
        width: 28px;
        height: 28px;
        border: none;
        background: transparent;
        color: #000;
        font-size: 18px;
        cursor: pointer;
      }
    
      .quantity-input {
        width: 40px;
        text-align: center;
        border: none;
        background: transparent;
        font-size: 16px;
        font-weight: 500;
      }
    
      /* Price Information */
      .price {
        font-size: 18px;
        font-weight: 600;
        color: #000;
        margin-bottom: 16px;
      }
      .cart-item-wrapper {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        border-radius: 10px;
      }
    
      .cart-summary {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        padding: 10px;
      }

    
   

      .item-totals {
        display: flex;
        justify-content: space-evenly;
        border-top: 1px solid #eee;
        padding: 16px;
        font-size: 14px;
        color: #666;
       
      }
    
      .item-totals div {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        
      }
    
      .item-totals .total {
        color: #000;
        font-weight: 600;
      }
      .checkout-actions {
          padding: 12px;
          margin-top: 16px;
        }
      
        .btn {
          padding: 12px 20px;
          font-size: 14px;
        }
    .checkout-table {
      display: none !important;
    }
  
    .cart-list {
      display: flex !important;
      flex-direction: column;
      gap: 16px;
    }
  
    .wrapper-cart-item {
      position: relative;
      /* display: grid;
      grid-template-columns: 1fr 1fr; */
  
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
  
    .item-image {
      /* width: 200px; */
      height: auto;
      position: relative;
      background: #f8f8f8;
      margin-bottom: 8px;
    }
  
    .item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
    .item-details {
      padding: 12px;
    }
  
    .product-name {
      font-size: 18px;
      font-weight: 600;
      color: #000;
      margin-bottom: 4px;
    }
  
    .product-variant {
      color: #666;
      font-size: 14px;
      margin-bottom: 16px;
    }
  
    .delete-item-btn {
      position: absolute;
      bottom:90px;
      right: 12px;
      /* width: 16px;
      height: 16px; */
      /* border-radius: 50%; */
      background: rgba(255, 255, 255, 0.9);
      color: #ff4444;
      border: none;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      /* transform: translate(50%, -50%); */
    }
     
  
    /* Quantity Controls */
    .quantity-control {
      /* display: flex;
      align-items: center;
      gap: 12px;
      background: #f5f5f5;
      padding: 8px;
      border-radius: 8px;
      margin-bottom: 16px; */
      display: inline-flex
;
    align-items: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    }
  
    .quantity-btn {
      width: 28px;
      height: 28px;
      border: none;
      background: transparent;
      color: #000;
      font-size: 18px;
      cursor: pointer;
    }
  
    .quantity-input {
      width: 40px;
      text-align: center;
      border: none;
      background: transparent;
      font-size: 16px;
      font-weight: 500;
    }
  
    /* Price Information */
    .price {
      font-size: 18px;
      font-weight: 600;
      color: #000;
      margin-bottom: 16px;
    }
  
    
    .search-section {
        padding: 15px;
      }
    
      .search-bar {
        border-radius: 8px;
      }
    
      .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        padding: 15px;
      }
    
      .category-header {
        padding: 15px;
      }
    
      .category-header h2 {
        font-size: 1.25rem;
      }
      .search-section {
          padding: 15px;
        }
      
        .search-bar {
          border-radius: 8px;
        }
  }
  
   
  /* Desktop styles remain unchanged */
  
  /* Quantity Controls - Shared Styles */
   
  
  /* Remove Button - Shared Styles */
  .delete-item-btn {
    /* width: 20px;
    height: 20px; */
    border: none;
    background: #fff;
    color: #ff4444;
    border-radius: 5px;
    font-size: 11px;
    cursor: pointer;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    padding:8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
  }
  
  .delete-item-btn:hover {
    background: #ffe5e5;
    color: #ff0000;
  }

 
  /* Focus States */
  .quantity-btn:focus,
  .quantity-input:focus,
  .delete-item-btn:focus {
    outline: none;
  }
  
  .quantity-btn:focus-visible,
  .delete-item-btn:focus-visible {
    box-shadow: 0 0 0 2px #e5e5e5;
  }
  
  /* Disabled State */
  .quantity-btn:disabled {
    color: #ccc;
    cursor: not-allowed;
  }
  
  /* Input Selection Prevention */
  .quantity-input {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Checkout Actions Container */
  .checkout-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
  }
  
  /* Base Button Styles */
  .btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    background: #000;
    color: #fff;
  }
  
  /* Continue Shopping Button */
  .btn-shop {
    background: #22c55e;
    color: #fff;
  }
  
  .btn-shop:active {
    background: #1a1a1a;
  }
  
  /* Proceed to Checkout Button */
  .btn-checkout {
    background: var(--primary-color);
    color: #fff;
  }
  
  .btn-checkout:active {
    background: #1a1a1a;
  }
  
 
  