.cart-container-div {
    max-width: 900px;
    margin: 32px auto;
    padding: 32px;
    background-color: #ffffff;
    box-shadow: 0px -1px 10px rgba(0, 0, 0, 0.2);

    border-radius: 8px;

    border-top: 2px solid #edb76f;
}

@media (max-width:480px) {
    .cart-container-div {
        max-width: 900px;
        margin: 12px auto;
        padding: 12px;
    }
    .quantity-form{
        width: 30%;
    }

}
h1{
    font-size:20px;
    font-weight:600;
    margin-bottom:14px;
}

.cart-layout{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.cart-item {
    display: flex;
    width: 100%;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
    align-items: center;

    margin: 8px 0px;
}

.cart-product-image{
    width:85px;
    flex-shrink:0;
}

.cart-product-image img{
    width:76px;
    height:76px;
    object-fit:cover;
    border-radius:8px;
}

.cart-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: flex-start;
    width: 72%;
    padding: 0px 10px;
    gap: 0.4rem;
}

.cart-product-details h3{
    font-size:14px;
    font-weight:600;
    margin:0 0 2px;
    line-height:1.3;
}

.cart-product-name {
    color: #222;
    font-size: 14px;
    font-weight: 500;

}

.cart-product-attributes{
    font-size:12px;
    color:#777;
    gap:6px;
    display:flex;
}

.bottom-row{
    display:flex;

    align-items:center;
    gap: 0.8rem;
}

.cart-price{
    font-size:15px;
    font-weight:600;

    color: #5c3d00;
}

.quantity-form{
    width: 25%;
}
.cart-quantity-controls{
    display:flex;
    border:1px solid #e2e2e2;
    border-radius:8px;
    overflow:hidden;
    width: 64px;
    height: 27px;
}

.qty-btn{
    width:50px;
    height:26px;
    font-size:16px;

    background:#f1f1f1;
    border:none;
    cursor:pointer;
}

.qty-input{
    width:32px;
    font-size:12px;
    font-weight:600;
    text-align:center;
    border:none;
}

.remove-form {
    display: flex;
    justify-content: flex-end;
    align-self: flex-start;
    width: 10%;
}

.cart-remove-btn{
    font-size:14px;
    top:6px;
    right:6px;
    color: red;
}

.delete-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-btn .material-symbols-outlined {
    font-size: 18px;
}

.summary-card {
    position: sticky;
    top: 100px;
    /* border: 2px solid #5c3d00; */
    box-shadow: 0 3px 10px rgb(0 0 0 / 21%);
    padding: 1rem;
    border-radius: 12px;
}

@media(min-width:768px){

    .cart-layout{
        display:grid;
        grid-template-columns:1.8fr 1fr;
        gap:22px;
    }

    .cart-item{
        padding:14px 16px;
        min-height:120px;

    }

    .cart-product-image{
        width:95px;
    }

    /* .cart-product-image img{
        height:115px;
    } */
    .qty-btn{
        width:36px;
    }
    .bottom-row{
        gap: 18px;
    }

}

@media(min-width:360px){
    .cart-quantity-controls {
        width: 90px;
        height: 27px;
    }
}

.qty-spinner{
    width:13px;
    height:13px;
    border:2px solid #ddd;
    border-top:2px solid #000;

    border-radius:50%;
    animation: spin .6s linear infinite;
    transition: opacity .2s ease;
    display:none;
    margin-left:32px;
}

@keyframes spin{
    to{ transform:rotate(360deg); }
}

.cart-total-amount{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #777;
}

.btn-checkout{
    display:block;
    width:100%;
    padding:12px;
    border-radius:8px;
    text-align:center;
    text-decoration:none;
    background:#111;
    color:#fff;
    margin:8px 0px;
}

.continue-link {
    color: #777;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.continue-link:hover{
    color: #4e2100d9;
}

.empty-cart-container {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: #ffffff;
}

.empty-cart-illustration {

  margin: 0 auto;

}

.empty-cart-illustration svg {
    width: 60%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.empty-cart-container h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d2926;
  margin-bottom: 10px;
}

.empty-cart-container p {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 24px;
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: #2d2926;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-btn:hover {
  background: #44403c;
  transform: translateY(-2px);
}

.taxes-note {
    font-size: 10px;
    color: #666;
    font-weight: 400;
    text-align: center;
    padding: 4px;
    margin-top: 4px;
}

@media(max-width:770px){
    .cart-product-name {
        font-size: 12px;
    }
    .cart-item{
        margin: 10px 0px;
    }

}
