@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

.main-footer{
    background:#041b53;
    color:#fff;
    margin-top:50px;
}

/* NEWSLETTER */

.newsletter-section{
    width:90%;
    margin:auto;
    background:linear-gradient(90deg,#006b5f,#00796b);
    border-radius:25px;
    padding:40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    transform:translateY(-50px);
}

.newsletter-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.newsletter-icon{
    width:90px;
    height:90px;
    background:rgba(255,255,255,.12);
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
}

.newsletter-text h2{
    font-size:38px;
    margin-bottom:10px;
}

.newsletter-text p{
    font-size:17px;
    color:#e7e7e7;
    line-height:28px;
}

.newsletter-right{
    flex:1;
}

.newsletter-right form{
    display:flex;
    overflow:hidden;
    border-radius:15px;
    background:#fff;
}

.newsletter-right input{
    flex:1;
    height:65px;
    border:none;
    padding:0 25px;
    font-size:16px;
    outline:none;
}

.newsletter-right button{
    width:180px;
    border:none;
    background:#ffc107;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}

.newsletter-right span{
    display:block;
    margin-top:15px;
    color:#ddd;
    font-size:14px;
}

/* FOOTER AREA */

.footer-area{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1.2fr;
    gap:40px;
    padding-bottom:50px;
}

.footer-logo{
    font-size:52px;
    margin-bottom:20px;
}

.footer-logo span{
    color:#b84dff;
}

.footer-about{
    color:#d7d7d7;
    line-height:32px;
    font-size:18px;
    margin-bottom:30px;
}

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#0f8f7f;
}

.footer-column h3{
    font-size:28px;
    margin-bottom:25px;
}

.footer-column ul{
    list-style:none;
    padding:0;
}

.footer-column ul li{
    margin-bottom:18px;
}

.footer-column ul li a{
    color:#d7d7d7;
    text-decoration:none;
    transition:.3s;
    font-size:17px;
}

.footer-column ul li a:hover{
    color:#fff;
    padding-left:5px;
}

.contact-list li{
    color:#d7d7d7;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:17px;
}

.contact-list i{
    color:#ffc107;
}

/* BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    width:90%;
    margin:auto;
    padding:25px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    color:#d7d7d7;
    font-size:15px;
}

.payment-icons img{
    height:35px;
}

/* MOBILE */
/* MOBILE NEWSLETTER FIX */

@media(max-width:768px){

.newsletter-section{
    padding:25px 20px;
    border-radius:25px;
}

.newsletter-text h2{
    font-size:24px;
    line-height:36px;
}

.newsletter-text p{
    font-size:16px;
    line-height:28px;
}

.newsletter-right{
    width:100%;
}

.newsletter-right form{
    display:flex;
    flex-direction:column;
    gap:15px;
    width:100%;
}

.newsletter-right input{
    width:100%;
    height:55px;
    border-radius:14px;
    padding:0 20px;
    font-size:16px;
    box-sizing:border-box;
}

.newsletter-right button{
    width:100%;
    height:55px;
    border-radius:14px;
    font-size:18px;
}

.newsletter-right span{
    display:block;
    margin-top:10px;
    font-size:14px;
    line-height:24px;
    text-align:center;
}

}
/* =========================
MOBILE FOOTER FIX
========================= */

@media(max-width:768px){

.newsletter-section{
    width:90%;
    padding:25px 20px;
    box-sizing:border-box;
    overflow:hidden;
}

.newsletter-left{
    width:100%;
    text-align:center;
}

.newsletter-text h2{
    font-size:22px;
    line-height:34px;
}

.newsletter-text p{
    font-size:15px;
    line-height:26px;
}

.newsletter-right{
    width:100%;
}

.newsletter-right form{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.newsletter-right input{
    width:100%;
    height:55px;
    border-radius:12px;
    padding:0 18px;
    font-size:16px;
    box-sizing:border-box;
}

.newsletter-right button{
    width:100%;
    height:55px;
    border-radius:12px;
    font-size:18px;
}

.footer-area{
    grid-template-columns:1fr;
    gap:35px;
}

.footer-column{
    width:100%;
}

.footer-bottom{
    flex-direction:column;
    gap:15px;
    text-align:center;
}

.payment-icons img{
    max-width:100%;
    height:auto;
}

}
/* =========================
FINAL MOBILE NEWSLETTER FIX
========================= */

@media(max-width:768px){

.newsletter-section{
    width:90%;
    padding:30px 20px;
    box-sizing:border-box;
    overflow:hidden;
    flex-direction:column;
    text-align:center;
}

.newsletter-left{
    width:100%;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.newsletter-right{
    width:100%;
}

.newsletter-right form{
    width:100%;
    display:block;
}

.newsletter-right input{
    width:100%;
    height:55px;
    border:none;
    border-radius:12px;
    padding:0 15px;
    margin-bottom:15px;
    box-sizing:border-box;
}

.newsletter-right button{
    width:100%;
    height:55px;
    border:none;
    border-radius:12px;
    display:block;
}

.newsletter-text h2{
    font-size:22px;
    line-height:34px;
}

.newsletter-text p{
    font-size:15px;
    line-height:28px;
}

}
<style>

/* =========================
CART PAGE
========================= */

.cart-page{
padding:50px 5%;
background:#f5f7fb;
}

.cart-container{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
align-items:flex-start;
}

.cart-left{
background:#fff;
padding:30px;
border-radius:24px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.cart-right{
background:#fff;
padding:30px;
border-radius:24px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.cart-title{
font-size:34px;
font-weight:800;
margin-bottom:30px;
}

.cart-item{
display:flex;
gap:20px;
padding:20px 0;
border-bottom:1px solid #eee;
align-items:center;
}

.cart-image{
width:130px;
height:130px;
border-radius:18px;
overflow:hidden;
background:#f8fafc;

display:flex;
align-items:center;
justify-content:center;
}

.cart-image img{
width:100%;
height:100%;
object-fit:contain;
padding:10px;
}

.cart-details{
flex:1;
}

.cart-details h3{
font-size:24px;
line-height:32px;
margin-bottom:10px;
}

.cart-price{
font-size:26px;
font-weight:700;
color:#0f8a7b;
margin-bottom:10px;
}

.cart-qty{
font-size:15px;
color:#666;
margin-bottom:15px;
}

.remove-btn{
display:inline-block;
padding:10px 18px;
background:#ef4444;
color:#fff;
border-radius:10px;
font-size:14px;
text-decoration:none;
}

.cart-right h3{
font-size:30px;
margin-bottom:25px;
}

.summary-box{
display:flex;
flex-direction:column;
gap:20px;
}

.summary-line,
.summary-total{
display:flex;
justify-content:space-between;
align-items:center;
}

.summary-total{
padding-top:20px;
border-top:1px solid #eee;
font-size:28px;
font-weight:800;
}

.checkout-btn{
display:block;
width:100%;
padding:18px;
background:#0f8a7b;
color:#fff;
text-align:center;
border-radius:14px;
font-size:18px;
font-weight:700;
text-decoration:none;
}

@media(max-width:768px){

.cart-page{
padding:25px 12px;
}

.cart-container{
grid-template-columns:1fr;
}

.cart-left,
.cart-right{
padding:20px;
}

.cart-item{
flex-direction:column;
text-align:center;
}

.cart-image{
width:100%;
height:220px;
}

}

</style>