 .main-content {
      margin-top: 80px;
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }
    
    .cart-section {
      flex: 1;
    }
    
    .cart-table {
      border: 1px solid #e6e6e6;
      border-radius: 8px;
      padding: 40px 14px;
      margin-bottom: 14px;
      margin-left: 16px;
    }
    
    .table-header {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
      gap: 16px;
      padding: 0 8px;
      margin-bottom: 32px;
    }
    
    .table-header h3 {
      font-size: 18px;
      font-family: Exo, sans-serif;
      font-weight: 600;
      color: #121535;
    }
    
    .cart-item {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
      gap: 16px;
      align-items: center;
      padding: 20px 8px;
      border-bottom: 1px solid #f0f0f0;
    }
    
    .cart-item:last-child {
      border-bottom: none;
    }
    
    .item-remove {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #4d4d4d;
      text-decoration: none;
      font-size: 16px;
    }
    
    .item-remove-icon {
      width: 24px;
      height: 24px;
    }
    
    .item-details {
      display: flex;
      gap: 32px;
      align-items: center;
    }
    
    .item-image-container {
      border: 1px solid #e6e6e6;
      border-radius: 8px;
      padding: 14px 12px;
      width: 150px;
      height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .item-image {
      max-width: 122px;
      max-height: 120px;
      object-fit: contain;
    }
    
    .item-info h4 {
      font-size: 20px;
      font-family: Quicksand, sans-serif;
      font-weight: 600;
      color: #191c1e;
      margin-bottom: 8px;
    }
    
    .item-tags {
      display: flex;
      gap: 8px;
      margin-top: 24px;
    }
    
    .chip {
      background-color: #f1f1f1;
      color: #121535;
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 500;
    }
    
    .item-price {
      font-size: 18px;
      font-family: Exo, sans-serif;
      font-weight: 600;
      color: #333333;
    }
    
    .quantity-control {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 1px solid #cccccc;
      border-radius: 4px;
      padding: 8px 14px;
      width: 120px;
    }
    
    .quantity-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    
    .quantity-btn img {
      width: 12px;
      height: 12px;
    }
    
    .quantity-value {
      font-size: 16px;
      font-weight: 500;
      color: #191919;
      margin: 0 16px;
    }
    
    .coupon-section {
      display: flex;
      gap: 16px;
      align-items: center;
      margin-top: 40px;
      padding: 0 8px;
    }
    
    .coupon-input {
      flex: 1;
      padding: 18px 30px;
      border: 1px solid #cccccc;
      border-radius: 4px;
      font-size: 18px;
      color: #7f7f7f;
    }
    
    .coupon-button {
      background-color: #d84818;
      color: white;
      padding: 18px 12px;
      border-radius: 8px;
      font-size: 18px;
      font-weight: 500;
    }
    
    .cart-summary {
      width: 354px;
      border: 1px solid #e6e6e6;
      border-radius: 8px;
      padding: 34px 24px;
    }
    
    .summary-title {
      font-size: 20px;
      font-family: Exo, sans-serif;
      font-weight: 600;
      color: #191919;
      margin-bottom: 34px;
      margin-left: 16px;
    }
    
    .summary-details {
      background-color: #f1f1f1;
      border-radius: 8px;
      padding: 16px;
      margin-bottom: 24px;
    }
    
    .summary-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }
    
    .summary-row:last-child {
      margin-bottom: 0;
    }
    
    .summary-label {
      font-size: 16px;
      font-family: Exo, sans-serif;
      color: #191919;
    }
    
    .summary-value {
      font-size: 16px;
      font-weight: 600;
      color: #191919;
    }
    
    .summary-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #f1f1f1;
      border-radius: 8px;
      padding: 16px 24px;
      margin-bottom: 24px;
    }
    
    .total-label {
      font-size: 20px;
      font-family: Exo, sans-serif;
      font-weight: 600;
      color: #191919;
    }
    
    .total-value {
      font-size: 16px;
      font-weight: 600;
      color: #191919;
    }
    
    .checkout-button {
      width: 100%;
      background-color: #a7573cff;
      color: white;
      padding: 14px 34px;
      border-radius: 8px;
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 4px;
    }
    .empty{
      width:max-content !important;
    }
    