.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .cart-overlay.show {
    opacity: 1;
    visibility: visible;
  }
  
  .cart-content-wide {
    display: flex;
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    gap: 40px;
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .cart-overlay.show .cart-content-wide {
    transform: translateY(0);
    opacity: 1;
  }
  
  .cart-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cart-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
  }
  
  .cart-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .cart-title {
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .cart-info {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .cart-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #555;
  }
  
  .cart-details li {
    margin-bottom: 6px;
  }
  
  .cart-quantity {
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    font-weight: bold;
  }
  
  .cart-quantity label {
    display: block;
    margin-bottom: 8px;
  }
  
  .quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .qty-btn {
    width: 32px;
    height: 32px;
    background-color: #fe9d34;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
  }
  
  .qty-btn:hover {
    background-color: #e5892a;
  }
  
  .cart-quantity input {
    width: 40px;
    padding: 6px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
  }
  
  .cart-add {
    background: #fe9d34;
    color: white;
    font-weight: bold;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
    width: fit-content;
  }
  
  .cart-add img {
    width: 16px;
    height: 16px;
  }
  
  .cart-add:hover {
    background: #e5892a;
  }
  
  .cart-close {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 26px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
  }
  