/* ===============================
   GLOBAL RESET
=============================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Segoe UI",sans-serif;
}

html,body{
height:100%;
}

body{
background:url("../images/bg.jpg") no-repeat center center fixed;
background-size:cover;
}


/* ===============================
   WRAPPER
=============================== */

.page-wrapper{
min-height:100vh;
padding:40px 68px;
backdrop-filter:blur(1px);
}
 

/* ===============================
   HEADER
=============================== */

.header{
text-align:center;
margin-bottom:40px;
}

.top-logo img{
height:120px;
margin: auto;


}




.section-title{
text-align:center;
margin:40px 0 20px;
font-size:28px;
color:#7a1c3a;
font-weight:bold;
}


/* ===============================
   NAVBAR
=============================== */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,0.95);
padding:12px 20px;
border-radius:10px;
margin-bottom:30px;
flex-wrap:wrap;
}

.nav-left a{
margin-right:15px;
text-decoration:none;
color:#7a1c3a;
font-weight:600;
}

.nav-left a:hover{
color:#c94b77;
}

.nav-center{
display:flex;
align-items:center;
}

.nav-center input{
padding:8px;
border-radius:5px;
border:1px solid #ccc;
}

.search-btn{
margin-left:5px;
padding:8px 14px;
background:#7a1c3a;
color:#fff;
border:none;
border-radius:5px;
cursor:pointer;
}

.nav-right{
display:flex;
gap:10px;
}

.cart-btn,
.login-btn,
.register-btn{
padding:8px 16px;
border-radius:6px;
text-decoration:none;
font-weight:600;
}

.cart-btn{
background:#7a1c3a;
color:#fff;
}

.login-btn{
background:#ffd700;
color:#000;
}

.register-btn{
background:#c94b77;
color:#fff;
}


/* ===============================
   PRODUCT GRID
=============================== */

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
max-width:1200px;
margin:auto;
}

.card{
background:#fff;
border-radius:12px;
padding:15px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
transition:.3s;
cursor:pointer;
}

.card:hover{
transform:translateY(-5px);
}


/* FIXED IMAGE SIZE */

.product-grid .card img{
width:100%;
height:300px;
object-fit:cover;
border-radius:10px;
margin-bottom:10px;
}

.card h3{
font-size:18px;
margin:8px 0;
}

.price{
color:#7a1c3a;
font-size:18px;
font-weight:bold;
}


/* ===============================
   BUTTONS
=============================== */

button{
background:#7a1c3a;
color:#fff;
border:none;
padding:10px 20px;
border-radius:8px;
cursor:pointer;
font-weight:600;
transition:.3s;
}

button:hover{
background:#5c142b;
}


/* ===============================
   VIEW MORE BUTTON
=============================== */

.view-more-container{
text-align:center;
margin:20px 0;
}

.view-more-btn{
background:#7a1c3a;
color:#fff;
padding:12px 25px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
}

.view-more-btn:hover{
background:#5c142b;
}


/* ===============================
   CTA CARD
=============================== */

.cta{
background:linear-gradient(135deg,#7a1c3a,#c94b77);
color:#fff;
display:flex;
flex-direction:column;
justify-content:center;
}

.cta h2{
margin-bottom:15px;
}

.demo-btn{
background:#ffd700;
color:#000;
font-weight:bold;
}

.brand{
margin-top:15px;
}


/* ===============================
   CART SIDEBAR (FINAL FIXED)
=============================== */

.cart-sidebar{

position:fixed;
top:0;
right:-380px;

width:360px;
height:100vh;

background:#f8f5ee;

display:flex;
flex-direction:column;

transition:.4s;

box-shadow:-5px 0 20px rgba(0,0,0,0.25);

z-index:9999;

}

.cart-sidebar.active{
right:0;
}


/* HEADER */

.cart-header{

display:flex;
justify-content:space-between;
align-items:center;

padding:20px;

border-bottom:1px solid #ddd;

}


/* ITEMS */

#cart-items{

flex:1;
overflow-y:auto;

padding:15px;

}

.cart-item{

display:flex;
justify-content:space-between;
align-items:center;

margin-bottom:15px;

border-bottom:1px solid #ddd;

padding-bottom:10px;

}


/* DELETE BUTTON */

.delete-btn{

background:#7a1c3a;
color:#fff;

padding:6px 12px;

border-radius:6px;

cursor:pointer;

}

.delete-btn:hover{
background:#5c142b;
}


/* FOOTER */

.cart-footer{

padding:20px;

border-top:1px solid #ddd;

background:#f8f5ee;

position:sticky;
bottom:0;

}


/* CHECKOUT BUTTON */

.checkout-btn{

width:100%;

background:#7a1c3a;

color:#fff;

padding:12px;

border:none;

border-radius:8px;

font-weight:bold;

cursor:pointer;

}

.checkout-btn:hover{
background:#5c142b;
}


/* ===============================
   MOBILE RESPONSIVE
=============================== */

@media(max-width:768px){

.product-grid{
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.cart-sidebar{
width:100%;
right:-100%;
}

.cart-sidebar.active{
right:0;
}

.top-logo img{
height:80px;
}

}

@media(max-width:480px){

.product-grid{
grid-template-columns:repeat(2,1fr);
}

}



@media(max-width:600px){

.navbar{

flex-direction:column;

gap:10px;

}

.nav-right{

width:100%;

justify-content:center;

}

}




.logi{

    margin:0;
    font-family:Georgia, serif;

    background:url("../images/login-bg.jpg") no-repeat center center fixed;
    background-size:cover;

}


.login-wrapper{

    width:420px;
    margin:40px auto;

    background:rgba(255,255,255,0.95);

    padding:30px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,0.3);

}


.main-title{

    font-size:32px;
    margin-bottom:15px;
    color:#7a1c3a;

}


.model-section img{

    width:100%;
    border-radius:10px;
    margin-bottom:20px;

}


/* TAB */

.tab-buttons{

    display:flex;
    margin-bottom:20px;

}

.tab{

    flex:1;
    padding:12px;

    border:none;
    cursor:pointer;

    /* background:#eee; */
    font-weight:bold;

}

.tab.active{

    background:#c9a227;
    color:white;

}


/* FORM */

.form-box{

    display:none;

}

.form-box.active{

    display:block;

}


.input-group{

    margin-bottom:15px;

}

.input-group input{

    width:100%;
    padding:12px;

    border-radius:6px;
    border:1px solid #ccc;

}


.form-options{

    display:flex;
    justify-content:space-between;
    font-size:14px;
    margin-bottom:15px;

}


.login-btn{

    /* width:100%; */

    padding:12px;

    background:linear-gradient(#c9a227,#e6c96f);

    border:none;
    border-radius:6px;

    font-weight:bold;
    cursor:pointer;

}


/* SOCIAL */

.social-section{

    margin-top:20px;

}

.social{

    width:100%;
    padding:12px;

    margin-top:10px;

    border:none;
    border-radius:6px;

    cursor:pointer;

}

.fb{

    background:#3b5998;
    color:white;

}

.google{

    /* background:#fff; */
    border:1px solid #ccc;

}

.apple{

    background:black;
    color:white;

}


.bottom-text{

    margin-top:15px;

}

.bottom-text span{

    color:#c9a227;
    cursor:pointer;
    font-weight:bold;

}



body{

margin:0;
font-family:Segoe UI;
background:url("../images/bg.jpg") center/cover no-repeat fixed;

}


.success-wrapper{

text-align:center;
padding:40px 20px;
color:#5a1e2c;

}


.logo img{

height:80px;

}


.logo h2{

margin:5px 0;
color:#7a1c3a;

}


.success-message h1{

font-size:42px;

}


.success-message span{

color:#c94b77;

}


.success-container{

display:flex;
justify-content:center;
align-items:center;
gap:40px;
margin-top:30px;
flex-wrap:wrap;

}


.success-left img{

width:300px;
border-radius:15px;

}


.summary-box{

background:#fff;
padding:20px;
border-radius:15px;
width:300px;
box-shadow:0 10px 30px rgba(0,0,0,0.2);

}


.summary-box h3{

margin-bottom:15px;

}


.summary-item{

display:flex;
gap:10px;
align-items:center;
margin-bottom:10px;

}


.summary-item img{

width:60px;
border-radius:10px;

}


.summary-row{

display:flex;
justify-content:space-between;
margin:8px 0;

}


.discount{

color:red;

}


.total{

font-weight:bold;
font-size:18px;

}


.order-id{

margin:15px 0;
font-weight:bold;

}


.track-btn{

width:100%;
padding:12px;
background:#7a1c3a;
color:white;
border:none;
border-radius:8px;
margin-bottom:10px;
cursor:pointer;

}


.whatsapp-btn{

width:100%;
padding:12px;
background:#25D366;
color:white;
border:none;
border-radius:8px;
cursor:pointer;

}


.features{

display:flex;
justify-content:center;
gap:20px;
margin-top:30px;
flex-wrap:wrap;

}


.feature{

background:white;
padding:15px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.15);

}


/* MOBILE */

@media(max-width:768px){

.success-container{

flex-direction:column;

}

.success-left img{

width:200px;

}

}






/* MAIN LAYOUT */



/* CATEGORY SIDEBAR */


/* CATEGORY TITLE */

.cat-title{
font-size:18px;
font-weight:600;
margin-bottom:15px;
display:flex;
gap:10px;
}

/* CATEGORY LIST */

.cat-list{
list-style:none;
padding:0;
margin:0;
}

.cat-list li{
margin-bottom:5px;
}

.cat-list a{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px;
border-radius:8px;
text-decoration:none;
color:#333;
transition:0.3s;
}

.cat-list a:hover{
background:#f5f7fa;
color:#7a1c3a;
}

/* SLIDER */



/* TITLE */

.cat-title{
font-size:18px;
font-weight:600;
margin-bottom:15px;
display:flex;
align-items:center;
gap:8px;
color:#333;
}

/* LIST */

.cat-list{
list-style:none;
padding:0;
margin:0;
}

/* ITEM */

.cat-list li{
margin-bottom:5px;
}

/* LINK */

.cat-list a{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 12px;
border-radius:8px;
text-decoration:none;
color:#333;
font-size:14px;
transition:0.3s;
}

/* LEFT ICON */

.cat-left{
display:flex;
align-items:center;
gap:10px;
}

/* ARROW */

.cat-arrow{
color:#999;
font-size:12px;
}

/* HOVER EFFECT */

.cat-list a:hover{
background:#f5f7fa;
color:#7a1c3a;
transform:translateX(3px);
}

/* HOVER ARROW */

.cat-list a:hover .cat-arrow{
color:#7a1c3a;
}




 






