/* ==========================================
   LUXURY BOUTIQUE
   PART 1
   RESET + HEADER + HERO + ABOUT
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:#ffffff;
color:#222;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;
color:inherit;

}

ul{

list-style:none;

}

.container{

width:90%;
max-width:1300px;
margin:auto;

}

/* HEADER */

header{

position:fixed;
top:0;
left:0;

width:100%;

padding:20px 0;

background:rgba(255,255,255,.85);

backdrop-filter:blur(15px);

z-index:1000;

transition:.35s;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;


padding-left: 0;

}

.logo{

font-size:30px;
font-weight:800;

color:#222;

}

.logo span{

color:#d98c9f;

}

nav ul{

display:flex;
gap:35px;

}

nav a{

position:relative;

font-weight:500;

transition:.35s;

}

nav a::after{

content:"";

position:absolute;

left:0;
bottom:-7px;

width:0;

height:2px;

background:#d98c9f;

transition:.35s;

}

nav a:hover::after{

width:100%;

}

.shop-btn{

display:inline-flex;
align-items:center;
justify-content:center;

padding:12px 24px;
height: 50px;

margin-left: 25px;


background:#d98c9f;

color:#fff;

border-radius:25px;

font-size: 16px;
font-weight:600;

transition:.35s;

}

.shop-btn:hover{

background:#c7778c;

transform:translateY(-5px);

box-shadow:0 18px 35px rgba(217,140,159,.30);

}

/* HERO */

.hero{

height:100vh;

background:

linear-gradient(rgba(255,255,255,.20),
rgba(255,255,255,.25)),

url("images/boutik2.jpg");

background-size:cover;
background-position:center;

display:flex;
justify-content:center;
align-items:center;

text-align:center;

}

.hero-content{

max-width:850px;

}

.hero h1{

font-size:76px;

font-weight:800;

line-height:1.1;

margin-bottom:25px;

color:#222;

}

.hero p{

font-size:22px;

color:#444;

line-height:1.8;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn-primary{

padding:18px 45px;

background:#d98c9f;

color:#fff;

border-radius:50px;

font-weight:700;

transition:.35s;

}

.btn-primary:hover{

background:#c7778c;

transform:translateY(-5px);

}

.btn-secondary{

padding:18px 45px;

border:2px solid #222;

border-radius:50px;

transition:.35s;

}

.btn-secondary:hover{

background:#222;

color:#fff;

}

/* SECTION */

section{

padding:120px 0;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title h2{

font-size:48px;

margin-bottom:15px;

}

.section-title p{

font-size:18px;

color:#666;

}

/* ABOUT */

.about{

background:#fafafa;

}

.about .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

border-radius:20px;

box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.about-text h2{

font-size:44px;

margin-bottom:20px;

}

.about-text p{

font-size:18px;

line-height:1.9;

color:#555;

margin-bottom:35px;

}

.stats{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.stats div{

background:#fff;

padding:25px;

border-radius:18px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.35s;

}

.stats div:hover{

transform:translateY(-8px);

}

.stats h3{

font-size:34px;

color:#d98c9f;

margin-bottom:8px;

}

.stats p{

font-size:15px;

color:#666;

}

/* ==========================================
   PART 2
   COLLECTION + GALLERY
========================================== */

/* ================= COLLECTION ================= */

.collection{

background:#ffffff;

}

.products-grid{

width:90%;
max-width:1300px;

margin:auto;

display:grid;
grid-template-columns:repeat(4,1fr);

gap:30px;

}

.product-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

cursor:pointer;

}

.product-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 45px rgba(217,140,159,.25);

}

.product-card img{

width:100%;

height:320px;

object-fit:cover;

transition:.45s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-card h3{

font-size:24px;

padding:22px 22px 10px;

text-align:center;

color:#222;

}

.product-card span{

display:block;

width:170px;

margin:0 auto 25px;

padding:10px;

background:#d98c9f;

color:#fff;

font-weight:600;

border-radius:30px;

text-align:center;

}

/* ================= GALLERY ================= */

.gallery{

background:#fafafa;

}

.gallery-grid{

width:90%;
max-width:1300px;

margin:auto;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}

.gallery-grid img{

width:100%;

height:320px;

object-fit:cover;

border-radius:18px;

cursor:pointer;

transition:.4s;

box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.gallery-grid img:hover{

transform:scale(1.05);

box-shadow:0 20px 40px rgba(217,140,159,.25);

}

/* ================= EFFECTS ================= */

.product-card h3{

transition:.35s;

}

.product-card:hover h3{

color:#d98c9f;

}

.product-card img{

filter:brightness(.98);

}

.product-card:hover img{

filter:brightness(1.05);

}

.gallery-grid img{

filter:saturate(105%);

}

.gallery-grid img:hover{

filter:saturate(120%);

}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

.products-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.products-grid{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.product-card img{

height:280px;

}

.gallery-grid img{

height:260px;

}

}

/* ==========================================
   PART 3
   REVIEWS + NEWSLETTER + CONTACT
========================================== */

/* ================= REVIEWS ================= */

.reviews{

background:#ffffff;

}

.reviews-grid{

width:90%;
max-width:1300px;

margin:auto;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.review-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.review-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(217,140,159,.25);

}

.stars{

margin-bottom:20px;

}

.stars i{

color:#FFD700;

font-size:20px;

margin:0 2px;

}

.review-card p{

color:#666;

line-height:1.8;

margin-bottom:20px;

}

.review-card h3{

font-size:20px;

color:#d98c9f;

}

/* ================= NEWSLETTER ================= */

.shop{

background:#fafafa;

}

.shop-form{

width:90%;
max-width:700px;

margin:auto;

display:flex;

flex-direction:column;

gap:20px;

background:#fff;

padding:45px;

border-radius:22px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.shop-form input{

padding:18px;

border:2px solid #ececec;

border-radius:12px;

font-size:16px;

outline:none;

transition:.35s;

}

.shop-form input:focus{

border-color:#d98c9f;

}

.shop-form button{

padding:18px;

border:none;

background:#d98c9f;

color:#fff;

font-size:18px;

font-weight:700;

border-radius:12px;

cursor:pointer;

transition:.35s;

}

.shop-form button:hover{

background:#c7778c;

transform:translateY(-5px);

box-shadow:0 18px 35px rgba(217,140,159,.30);

}

/* ================= CONTACT ================= */

.contact{

background:#ffffff;

}

.contact-container{

width:90%;
max-width:1300px;

margin:auto;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.contact-box{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.contact-box:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(217,140,159,.25);

}

.contact-box i{

width:70px;
height:70px;

margin:auto;
margin-bottom:20px;

display:flex;
justify-content:center;
align-items:center;

background:#d98c9f;

color:#fff;

font-size:26px;

border-radius:50%;

}

.contact-box h3{

margin-bottom:10px;

font-size:22px;

color:#222;

}

.contact-box p{

color:#666;

line-height:1.7;

}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

.reviews-grid{

grid-template-columns:1fr;

}

.contact-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contact-container{

grid-template-columns:1fr;

}

.shop-form{

padding:30px;

}

}

/* ==========================================
   PART 4
   MAP + FOOTER + TOP BUTTON + RESPONSIVE
========================================== */

/* ================= MAP ================= */

.map{

width:100%;
height:450px;

}

.map iframe{

width:100%;
height:100%;

border:none;

filter:grayscale(15%);

}

/* ================= FOOTER ================= */

footer{

background:#181818;

padding:70px 0 25px;

color:#fff;

}

.footer-container{

width:90%;
max-width:1300px;

margin:auto;

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:60px;

}

.footer-logo h2{

font-size:34px;

font-weight:800;

}

.footer-logo span{

color:#d98c9f;

}

.footer-logo p{

margin-top:15px;

color:#d0d0d0;

line-height:1.8;

}

.footer-links{

display:flex;

flex-direction:column;

gap:15px;

}

.footer-links h3,
.footer-social h3{

margin-bottom:15px;

}

.footer-links a{

color:#d7d7d7;

transition:.3s;

}

.footer-links a:hover{

color:#d98c9f;

padding-left:8px;

}

.footer-social a{

display:inline-flex;

justify-content:center;
align-items:center;

width:48px;
height:48px;

margin-right:12px;

border-radius:50%;

background:#2a2a2a;

transition:.35s;

}

.footer-social a:hover{

background:#d98c9f;

color:#fff;

transform:translateY(-5px);

}

.copyright{

margin-top:50px;

padding-top:20px;

text-align:center;

border-top:1px solid rgba(255,255,255,.08);

color:#aaa;

}

/* ================= TOP BUTTON ================= */

#topBtn{

position:fixed;

right:30px;
bottom:30px;

width:55px;
height:55px;

border:none;

background:#d98c9f;

color:#fff;

font-size:22px;

border-radius:50%;

cursor:pointer;

display:none;

transition:.35s;

z-index:999;

}

#topBtn:hover{

transform:translateY(-6px);

box-shadow:0 20px 35px rgba(217,140,159,.35);

}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

background:#d98c9f;

border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

background:#c7778c;

}

/* ================= ANIMATIONS ================= */

@keyframes fadeUp{

0%{

opacity:0;
transform:translateY(50px);

}

100%{

opacity:1;
transform:translateY(0);

}

}

.hero-content,
.about,
.collection,
.gallery,
.reviews,
.shop,
.contact{

animation:fadeUp 1s ease;

}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

}

@media(max-width:768px){

nav{

display:none;

}

.hero h1{

font-size:46px;

}

.hero p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.about .container{

grid-template-columns:1fr;

}

.stats{

grid-template-columns:1fr;

}

.section-title h2{

font-size:38px;

}

section{

padding:90px 0;

}

}

@media(max-width:500px){

.logo{
font-size:24px;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.shop-btn,
.btn-primary,
.btn-secondary{

padding:15px 30px;

}

}

.back-btn{
position:fixed;
top:92px;
left:clamp(16px,5vw,42px);
display:inline-flex;
align-items:center;
flex-direction:row-reverse;
gap:10px;
padding:13px 22px;
background:#fff;
color:#111;
border-radius:50px;
font-size:14px;
font-weight:600;
line-height:1;
white-space:nowrap;
box-shadow:0 10px 25px rgba(0,0,0,.15);
z-index:1001;
transition:.3s;
}

.back-btn:hover{
background:#111;
color:#fff;
transform:translateY(-4px);
}

.menu-toggle{
display:none;
}

@media (max-width:768px){

header{
padding:14px 0;
}

header .container{
width:min(92%,1300px);
display:grid;
grid-template-columns:42px 1fr 42px;
align-items:center;
gap:12px;
padding-left:0;
}

.logo{
grid-column:2;
justify-self:center;
margin:0;
font-size:26px;
line-height:1;
}

.shop-btn{
display:none;
}

.menu-toggle{
grid-column:1;
grid-row:1;
display:flex;
align-items:center;
justify-content:center;
width:42px;
height:42px;
font-size:24px;
cursor:pointer;
}

nav{
display:none;
}

nav.active{
display:block;
position:absolute;
top:100%;
left:0;
width:100%;
background:#fff;
padding:18px 0;
box-shadow:0 18px 30px rgba(0,0,0,.12);
z-index:9999;
}

nav.active ul{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:8px;
list-style:none;
margin:0;
padding:0;
}

nav.active li{
width:100%;
text-align:center;
}

nav.active a{
display:block;
width:100%;
padding:13px 0;
font-size:16px;
font-weight:600;
}

.back-btn{
top:74px;
right:20px;
left:auto;
padding:8px 0;
background:transparent;
box-shadow:none;
border-radius:0;
font-size:14px;
}

.back-btn:hover{
background:transparent;
color:#111;
transform:none;
}

body.mobile-menu-open .back-btn{
display:none;
}

}

@media(max-width:500px){

.logo{
font-size:22px;
}

.menu-toggle{
width:38px;
height:38px;
font-size:22px;
}

.back-btn{
right:16px;
max-width:calc(100vw - 32px);
}

}

.back-btn{
position:fixed;
top:92px;
display:flex;
align-items:center;
gap:10px;
padding:14px 24px;
background:#fff;
color:#111;
border-radius:50px;
font-weight:600;
box-shadow:0 10px 25px rgba(0,0,0,.15);
z-index:9999;
transition:.3s;
}

.back-btn:hover{
background:#111;
color:#fff;
transform:translateY(-4px);
}