/* ==========================================
   MRINMOYEE
   Premium Fashion Landing Page
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

--primary:#d63384;
--secondary:#ffeff7;

--dark:#222;

--light:#ffffff;

--text:#666;

--border:#ececec;

--shadow:0 15px 40px rgba(0,0,0,.08);

--radius:20px;

--transition:.35s;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:#fff;

color:var(--dark);

line-height:1.7;

overflow-x:hidden;

}

img{

width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:min(1200px,92%);

margin:auto;

}

/* =======================
HEADER
======================= */

header{

position:fixed;

top:0;

left:0;

width:100%;

background:rgba(255,255,255,.95);

backdrop-filter:blur(15px);

box-shadow:0 5px 25px rgba(0,0,0,.05);

z-index:999;

}

.navbar{

height:85px;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

font-size:32px;

font-weight:700;

color:var(--primary);

}

nav ul{

display:flex;

align-items:center;

gap:35px;

}

nav a{

font-weight:500;

color:#444;

transition:.3s;

}

nav a:hover{

color:var(--primary);

}

.order-btn{

padding:13px 30px;

border-radius:40px;

background:var(--primary);

color:#fff;

font-weight:600;

transition:.35s;

}

.order-btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(214,51,132,.25);

}

/* =======================
HERO
======================= */

.hero{

padding-top:150px;

padding-bottom:90px;

background:linear-gradient(180deg,#fff,#fff7fb);

}

.hero-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.badge{

display:inline-block;

padding:10px 18px;

background:#ffe5f2;

color:var(--primary);

border-radius:50px;

font-size:14px;

font-weight:600;

margin-bottom:25px;

}

.hero h1{

font-size:62px;

line-height:1.15;

margin-bottom:25px;

font-weight:800;

}

.hero p{

font-size:18px;

color:var(--text);

margin-bottom:35px;

max-width:560px;

}

.hero-buttons{

display:flex;

gap:18px;

margin-bottom:45px;

}

.primary-btn{

background:var(--primary);

color:#fff;

padding:16px 38px;

border-radius:40px;

font-weight:600;

transition:.3s;

}

.primary-btn:hover{

transform:translateY(-4px);

box-shadow:0 20px 35px rgba(214,51,132,.25);

}

.secondary-btn{

padding:16px 38px;

border-radius:40px;

border:2px solid var(--primary);

color:var(--primary);

font-weight:600;

transition:.3s;

}

.secondary-btn:hover{

background:var(--primary);

color:#fff;

}

.hero-features{

display:flex;

gap:40px;

}

.hero-features h3{

font-size:30px;

color:var(--primary);

}

.hero-features p{

font-size:15px;

margin-top:5px;

color:var(--text);

}

.hero-image img{

border-radius:30px;

box-shadow:0 25px 55px rgba(0,0,0,.12);

transition:.5s;

}

.hero-image img:hover{

transform:scale(1.03);

}
/* ==========================================
SECTION TITLE
========================================== */

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title span{

display:inline-block;

padding:10px 22px;

background:#ffe8f4;

color:var(--primary);

border-radius:50px;

font-size:14px;

font-weight:600;

margin-bottom:18px;

}

.section-title h2{

font-size:46px;

font-weight:700;

margin-bottom:15px;

}

.section-title p{

color:var(--text);

max-width:650px;

margin:auto;

}


/* ==========================================
COLLECTION
========================================== */

.collection{

padding:110px 0;

background:#fff;

}

.product-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

}


/* ==========================================
PRODUCT CARD
========================================== */

.product-card{

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:var(--shadow);

transition:var(--transition);

position:relative;

}

.product-card:hover{

transform:translateY(-12px);

}

.product-image{

position:relative;

overflow:hidden;

background:#fafafa;

}

.product-image img{

height:420px;

object-fit:cover;

transition:.6s;

}

.product-card:hover img{

transform:scale(1.08);

}


/* ==========================================
SALE BADGE
========================================== */

.sale-badge{

position:absolute;

top:18px;

left:18px;

background:var(--primary);

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:13px;

font-weight:700;

letter-spacing:.5px;

z-index:5;

}


/* ==========================================
PRODUCT INFO
========================================== */

.product-info{

padding:28px;

}

.product-info h3{

font-size:24px;

margin-bottom:15px;

font-weight:600;

}


/* ==========================================
RATING
========================================== */

.rating{

display:flex;

align-items:center;

gap:10px;

font-size:18px;

color:#ffb400;

margin-bottom:18px;

}

.rating span{

font-size:15px;

color:var(--text);

}


/* ==========================================
PRICE
========================================== */

.price{

display:flex;

align-items:center;

gap:16px;

margin-bottom:25px;

}

.new-price{

font-size:28px;

font-weight:700;

color:var(--primary);

}

.old-price{

font-size:18px;

text-decoration:line-through;

color:#999;

}


/* ==========================================
CARD BUTTON
========================================== */

.card-btn{

display:inline-block;

width:100%;

text-align:center;

padding:16px;

background:var(--primary);

color:#fff;

border-radius:14px;

font-weight:600;

transition:.35s;

}

.card-btn:hover{

background:#bf2d73;

transform:translateY(-2px);

box-shadow:0 12px 25px rgba(214,51,132,.25);

}


/* ==========================================
IMAGE OVERLAY EFFECT
========================================== */

.product-image::after{

content:"";

position:absolute;

inset:0;

background:linear-gradient(

180deg,

transparent,

rgba(0,0,0,.12)

);

opacity:0;

transition:.4s;

}

.product-card:hover .product-image::after{

opacity:1;

}
/* ==========================================
WHY CHOOSE US
========================================== */

.why-us{

padding:110px 0;

background:linear-gradient(180deg,#fff,#fff8fb);

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

}

.why-card{

background:#fff;

padding:45px 30px;

border-radius:25px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.06);

transition:.35s;

border:1px solid #f4f4f4;

}

.why-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(214,51,132,.12);

}

.icon{

width:80px;

height:80px;

margin:auto;

border-radius:50%;

background:#ffe7f3;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

margin-bottom:25px;

}

.why-card h3{

font-size:24px;

margin-bottom:15px;

}

.why-card p{

color:#666;

font-size:15px;

line-height:1.8;

}

/* ==========================================
REVIEWS
========================================== */

.reviews{

padding:110px 0;

background:#fff;

}

.review-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

gap:35px;

}

.review-card{

background:#fff;

padding:35px;

border-radius:25px;

box-shadow:0 15px 40px rgba(0,0,0,.07);

transition:.35s;

position:relative;

}

.review-card:hover{

transform:translateY(-10px);

}

.review-card::before{

content:"★★★★★";

color:#ffc107;

font-size:18px;

display:block;

margin-bottom:20px;

}

.review-card p{

color:#666;

line-height:1.8;

margin-bottom:25px;

}

.review-card h4{

color:var(--primary);

font-size:18px;

}

/* ==========================================
SIZE GUIDE
========================================== */

.size-guide{

padding:110px 0;

background:#fff7fb;

}

.size-table{

width:100%;

border-collapse:collapse;

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.size-table th{

background:var(--primary);

color:#fff;

padding:22px;

font-size:18px;

}

.size-table td{

padding:20px;

text-align:center;

border-bottom:1px solid #eee;

font-size:17px;

}

.size-table tr:hover{

background:#fff2f8;

}

/* ==========================================
DELIVERY
========================================== */

.delivery{

padding:110px 0;

background:#fff;

}

.delivery-box{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:25px;

}

.delivery-box div{

background:#fff;

padding:30px;

border-radius:20px;

text-align:center;

font-size:18px;

font-weight:600;

box-shadow:0 10px 30px rgba(0,0,0,.07);

transition:.35s;

}

.delivery-box div:hover{

background:var(--primary);

color:#fff;

transform:translateY(-8px);

}

/* ==========================================
FAQ
========================================== */

.faq{

padding:110px 0;

background:#fff8fb;

}

.faq-item{

background:#fff;

padding:30px;

border-radius:20px;

margin-bottom:20px;

box-shadow:0 10px 30px rgba(0,0,0,.05);

transition:.3s;

}

.faq-item:hover{

transform:translateX(8px);

}

.faq-item h3{

margin-bottom:12px;

font-size:22px;

color:var(--dark);

}

.faq-item p{

color:#666;

line-height:1.8;

}
/* ==========================================
ORDER FORM
========================================== */

.order-section{

padding:120px 0;

background:#ffffff;

}

#orderForm{

max-width:750px;

margin:auto;

background:#fff;

padding:50px;

border-radius:25px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

}

#orderForm input,
#orderForm select,
#orderForm textarea{

width:100%;

padding:18px 22px;

margin-bottom:22px;

border:1px solid #e7e7e7;

border-radius:15px;

font-size:16px;

font-family:'Poppins',sans-serif;

transition:.35s;

background:#fff;

}

#orderForm textarea{

height:140px;

resize:none;

}

#orderForm input:focus,
#orderForm textarea:focus,
#orderForm select:focus{

outline:none;

border-color:var(--primary);

box-shadow:0 0 0 5px rgba(214,51,132,.12);

}

#orderForm button{

width:100%;

padding:18px;

border:none;

border-radius:50px;

background:var(--primary);

color:#fff;

font-size:18px;

font-weight:600;

cursor:pointer;

transition:.35s;

}

#orderForm button:hover{

transform:translateY(-3px);

box-shadow:0 20px 40px rgba(214,51,132,.25);

}

/* ==========================================
FOOTER
========================================== */

footer{

padding:70px 0;

background:#1f1f1f;

color:#fff;

text-align:center;

}

footer h2{

font-size:34px;

margin-bottom:15px;

}

footer p{

opacity:.75;

margin-bottom:8px;

}

/* ==========================================
SCROLLBAR
========================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:20px;

}

/* ==========================================
SMOOTH ANIMATION
========================================== */

.product-card,
.review-card,
.why-card,
.faq-item,
.delivery-box div{

animation:fadeUp .8s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

.hero-container{

grid-template-columns:1fr;

text-align:center;

}

.hero h1{

font-size:46px;

}

.hero p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

justify-content:center;

flex-wrap:wrap;

}

nav{

display:none;

}

}

@media(max-width:768px){

.section-title h2{

font-size:34px;

}

.product-grid{

grid-template-columns:1fr;

}

.review-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.delivery-box{

grid-template-columns:1fr;

}
.thank-you-section{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    background:#faf7f2;
}

.thank-box{
    background:white;
    padding:40px 30px;
    max-width:450px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.check-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#111;
    color:white;
    font-size:40px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.thank-box h1{
    font-size:40px;
    margin:20px 0 10px;
}

.thank-box h2{
    font-size:20px;
}

.thank-box p{
    color:#555;
    line-height:1.7;
}

.brand{
    letter-spacing:5px;
    font-weight:bold;
    margin:25px 0;
}

.home-btn{
    display:inline-block;
    padding:14px 30px;
    background:#111;
    color:white;
    text-decoration:none;
    border-radius:30px;
}

#orderForm{

padding:30px;

}

.hero{

padding-top:120px;

}

.hero h1{

font-size:38px;

}

}

@media(max-width:480px){

.logo{

font-size:26px;

}

.hero h1{

font-size:32px;

}

.primary-btn,
.secondary-btn{

display:block;

width:100%;

text-align:center;

margin-bottom:15px;

}

.hero-buttons{

display:block;

}

}
/* ===============================
   PREMIUM PRICE SUMMARY
================================ */


.price-box{

margin-top:25px;

background:linear-gradient(135deg,#fff7fb,#ffffff);

border:1px solid #f1d5df;

border-radius:22px;

padding:25px;

box-shadow:0 12px 35px rgba(0,0,0,0.08);

}



.summary-title{

font-size:20px;

font-weight:700;

color:#b02a5b;

margin-bottom:20px;

text-align:center;

}



.summary-row{

display:flex;

justify-content:space-between;

align-items:center;

padding:12px 0;

font-size:15px;

color:#555;

}



.summary-row strong{

color:#222;

font-size:16px;

}



.divider{

height:1px;

background:#eee;

margin:15px 0;

}



.total-row{

display:flex;

justify-content:space-between;

align-items:center;

font-size:20px;

font-weight:700;

}



.total-row span{

color:#222;

}



.total-row strong{

color:#b02a5b;

font-size:24px;

}



@media(max-width:600px){

.price-box{

padding:20px;

}

.total-row{

font-size:18px;

}

.total-row strong{

font-size:22px;

}

}