 .cart-sidebar {
    position: fixed;
    top: 0; right: -350px;
    width: 320px; height: 100%;
    background: #fff;
    box-shadow: -4px 0 15px rgba(0,0,0,0.15);
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    font-family: Inter, sans-serif;
    color: #2c3e50; /* default text color */
  }

  .cart-sidebar.active { right: 0; }

  /* Header */
  .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .cart-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111;
  }
  .close-cart {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #888;
    transition: color 0.2s ease;
  }
  .close-cart:hover { color: #e74c3c; }

  /* Cart items */
  #cartItems {
    flex: 1;
    overflow-y: auto;
    margin: 10px 0 15px;
  }
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 8px;
    border-radius: 6px;
    background: #fafafa;
  }
  .cart-item span:first-child {
    font-weight: 500;
    color: #333;
  }
  .cart-item span:last-child {
    font-weight: 600;
    color: #27ae60; /* green for price */
  }
  .cart-item button {
    border: none;
    background: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 16px;
    margin-left: 8px;
  }

  /* Footer */
  .cart-footer {
    border-top: 1px solid #eee;
    padding-top: 12px;
  }
  .cart-footer div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
  }
  .cart-footer strong {
    font-weight: 600;
  }
  #cartTotal {
    font-weight: 700;
    color: #2c3e50;
  }

  /* Checkout button */
  .checkout-btn {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .checkout-btn:hover {
    background: linear-gradient(135deg, #732d91, #8e44ad);
  }

  .main-header {
  text-align: center;
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.floating-cart{
    position:fixed;
    bottom:24px;
    right:24px;
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#071847;
    color:#fff;

    border-radius:50%;
    cursor:pointer;

    font-size:1.4rem;

    box-shadow:0 8px 25px rgba(0,0,0,.25);

    z-index:9998;

    transition:all .25s ease;
}

.floating-cart:hover{
    transform:translateY(-3px);
}

.floating-cart span{
    position:absolute;
    top:-5px;
    right:-5px;

    min-width:22px;
    height:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#ff6b00;
    color:#fff;

    border-radius:50%;

    font-size:.75rem;
    font-weight:700;

    padding:0 4px;
}

@media(max-width:768px){

    .floating-cart{
        width:56px;
        height:56px;
        bottom:18px;
        right:18px;
    }
}