/* ===========================
   BREADCRUMB
=========================== */

.breadcrumb{

    max-width:1200px;
    margin:40px auto 20px;
    padding:0 20px;

    font-size:15px;

}

.breadcrumb a{

    text-decoration:none;
    color:#1B5E20;
    font-weight:600;

}

.breadcrumb span{

    color:#777;

}

/* ===========================
   PAGE TITLE
=========================== */

.cart-header{

    max-width:1200px;
    margin:auto;
    padding:0 20px 30px;

}

.cart-header h1{

    font-size:40px;
    font-weight:700;

}

/* ===========================
   FREE DELIVERY
=========================== */

.free-delivery{

    max-width:1200px;
    margin:0 auto 40px;
    padding:18px 25px;

    background:#E8F5E9;

    border-left:5px solid #1B5E20;

    border-radius:12px;

    display:flex;
    align-items:center;
    gap:15px;

    color:#1B5E20;

}

.free-delivery i{

    font-size:24px;

}

/* ===========================
   CART WRAPPER
=========================== */

.cart-wrapper{

    max-width:1200px;

    margin:auto;

    padding:0 20px 60px;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

    align-items:start;

}

/* ===========================
   LEFT SIDE
=========================== */

.cart-left{

    display:flex;

    flex-direction:column;

    gap:25px;

}

/* ===========================
   PRODUCT CARD
=========================== */

.cart-card{

    background:#fff;

    border-radius:18px;

    padding:25px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.cart-card:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

/* ===========================
   PRODUCT
=========================== */

.cart-product{

    display:flex;

    gap:25px;

    align-items:center;

    margin-bottom:25px;

}

.product-image img{

    width:130px;

    height:130px;

    object-fit:cover;

    border-radius:12px;

}

.product-details{

    flex:1;

}

.product-details h2{

    margin-bottom:12px;

    font-size:24px;

}

.product-details p{

    margin:8px 0;

    color:#666;

}
.cart-variations{
    margin-top:10px;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.cart-variations span{
    font-size:14px;
    color:#666;
}

/* ===========================
   BOTTOM ROW
=========================== */

.cart-meta{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    border-top:1px solid #eee;

    padding-top:25px;

}

.meta-box{

    text-align:center;

}

.meta-box small{

    display:block;

    color:#888;

    margin-bottom:10px;

    text-transform:uppercase;

    font-size:12px;

}

.meta-box h3{

    font-size:22px;

}

/* ===========================
   QUANTITY
=========================== */

.quantity-box{

    display:inline-flex;

    align-items:center;

    gap:18px;

    padding:12px 20px;

    border:1px solid #ddd;

    border-radius:40px;

}

.quantity-box a{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#1B5E20;

    color:#fff;

    text-decoration:none;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.quantity-box a:hover{

    background:#2E7D32;

}

.quantity-box span{

    font-size:18px;

    font-weight:bold;

}

/* ===========================
   REMOVE
=========================== */

.remove a{

    width:45px;

    height:45px;

    background:#ffebee;

    color:#d32f2f;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    text-decoration:none;

    transition:.3s;

}

.remove a:hover{

    background:#d32f2f;

    color:#fff;

}

/* ===========================
   CART ACTIONS
=========================== */

.cart-actions{

    display:flex;

    justify-content:space-between;

    margin-top:10px;

}

.continue-btn{

    padding:15px 30px;

    border:2px solid #1B5E20;

    border-radius:10px;

    text-decoration:none;

    color:#1B5E20;

    font-weight:600;

    transition:.3s;

}

.continue-btn:hover{

    background:#1B5E20;

    color:#fff;

}


/* ===========================
   SUMMARY
=========================== */

.cart-summary{

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    position:sticky;

    top:120px;

}

.cart-summary h2{

    margin-bottom:25px;

}

.summary-row{

    display:flex;

    justify-content:space-between;

    margin:18px 0;

}

.total{

    font-size:22px;

    font-weight:bold;

}

.checkout-btn{

    display:block;

    width:100%;

    margin:30px 0;

    padding:18px;

    background:#1B5E20;

    color:#fff;

    text-align:center;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.checkout-btn:hover{

    background:#2E7D32;

}

/* ===========================
   SECURE BOX
=========================== */

.secure-box{

    display:flex;

    gap:15px;

    align-items:center;

    margin-top:30px;

    padding:18px;

    background:#f8f8f8;

    border-radius:12px;

}

.secure-icon{

    font-size:28px;

    color:#1B5E20;

}

/* ===========================
   PAYMENT
=========================== */

.payments{

    margin-top:35px;

}

.payment-icons{

    display:flex;

    gap:15px;

    margin-top:15px;

}

.payment-icons img{

    height:35px;

}

/* ===========================
   EMPTY CART
=========================== */

.empty-cart{

    max-width:700px;

    margin:80px auto;

    text-align:center;

}

.empty-cart-icon{

    width:130px;

    height:130px;

    margin:auto;

    border-radius:50%;

    background:#f5f5f5;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:55px;

    color:#1B5E20;

}

.empty-cart h2{

    margin:30px 0 15px;

    font-size:34px;

}

.empty-cart p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.shop-btn{

    display:inline-block;

    background:#1B5E20;

    color:#fff;

    padding:16px 35px;

    border-radius:10px;

    text-decoration:none;

    transition:.3s;

}

.shop-btn:hover{

    background:#2E7D32;

}

/* ===========================
   FEATURES
=========================== */

.cart-features{

    max-width:1200px;

    margin:70px auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    padding:0 20px;

}

.feature{

    background:#fff;

    padding:30px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.feature i{

    font-size:34px;

    color:#1B5E20;

    margin-bottom:15px;

}

.feature h4{

    margin-bottom:10px;

}

.feature p{

    color:#777;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.cart-wrapper{

grid-template-columns:1fr;

}

.cart-summary{

position:static;

}

.cart-meta{

grid-template-columns:1fr 1fr;

}

.cart-features{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.cart-product{

flex-direction:column;

text-align:center;

}

.cart-meta{

grid-template-columns:1fr;

}

.cart-actions{

flex-direction:column;

gap:15px;

}

.cart-features{

grid-template-columns:1fr;

}

}