.empty-cart {
    text-align: center;
    padding: 3.125rem 0;
  }
  
  .empty-cart i {
    font-size: 3.125rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
  }
  
  .empty-cart p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
  }
  
  .cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.875rem;
    margin-bottom: 3.125rem;
  }
  
  .cart-items table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }
  
  .cart-items th {
    text-align: left;
    padding: 0.9375rem;
    background-color: var(--light-color);
    border-bottom: 1px solid #eee;
  }
  
  .cart-items td {
    padding: 0.9375rem;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
  }
  
  .cart-items tr:last-child td {
    border-bottom: none;
  }
  
  .product-info {
    display: flex;
    align-items: center;
  }
  
  .product-image {
    width: 5rem;
    height: 5rem;
    margin-right: 0.9375rem;
    background-color: #f5f5f5;
    border-radius: 0.3125rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  .product-details h3 {
    font-size: 1rem;
    margin-bottom: 0.3125rem;
  }
  
  .product-details p {
    font-size: 0.875rem;
    color: var(--secondary-color);
    margin-bottom: 0.1875rem;
  }
  
  .quantity-input {
    width: 3.75rem;
    padding: 0.5rem;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 0.3125rem;
  }
  
  .remove-btn {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    font-size: 1rem;
  }
  
  .cart-summary {
    background-color: white;
    padding: 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: fit-content;
  }
  
  .cart-summary h3 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid #eee;
  }
  
  .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.9375rem;
  }
  
  .summary-row.total {
    font-weight: bold;
    font-size: 1.125rem;
    margin-top: 1.25rem;
    padding-top: 0.9375rem;
    border-top: 1px solid #eee;
  }
  
  .checkout-btn {
    display: block;
    width: 100%;
    padding: 0.9375rem;
    background-color: var(--success-color);
    color: white;
    text-align: center;
    border-radius: 0.3125rem;
    font-weight: bold;
    margin-bottom: 0.9375rem;
    transition: var(--transition);
  }
  
  .checkout-btn:hover {
    background-color: #218838;
  }
  
  .continue-shopping {
    display: block;
    text-align: center;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .continue-shopping:hover {
    color: #0056b3;
  }
  
  @media (max-width: 62rem) {
    .cart-container {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 48rem) {
    .cart-items table {
      display: block;
      overflow-x: auto;
    }
    
    .product-info {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .product-image {
      margin-right: 0;
      margin-bottom: 0.625rem;
    }
  }