/* =======================================================
   PILKHUWA HANDLOOM
   Premium Luxury Website
======================================================= */

/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

/* ================= VARIABLES ================= */

:root{

--primary:#8B5E3C;
--secondary:#C79B6C;
--accent:#E7D4BE;

--bg:#faf8f5;
--white:#ffffff;
--black:#1c1c1c;

--text:#444;

--shadow:0 15px 40px rgba(0,0,0,.12);

--radius:18px;

--transition:.4s ease;

}

/* ================= RESET ================= */

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;
background:var(--bg);
color:var(--black);
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;
color:inherit;

}

ul{

list-style:none;

}

section{

padding:100px 8%;

}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{

width:12px;

}

::-webkit-scrollbar-track{

background:#eee;

}

::-webkit-scrollbar-thumb{

background:var(--primary);
border-radius:20px;

}

/* ================= LOADER ================= */

#loader{

position:fixed;
inset:0;
background:#fff;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
z-index:99999;

}

.loader-circle{

width:80px;
height:80px;

border:6px solid #ddd;
border-top:6px solid var(--primary);

border-radius:50%;

animation:spin 1s linear infinite;

margin-bottom:20px;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/* ================= CURSOR ================= */

.cursor{

width:18px;
height:18px;

border-radius:50%;

background:var(--primary);

position:fixed;

pointer-events:none;

transform:translate(-50%,-50%);

mix-blend-mode:difference;

z-index:9999;

transition:.1s;

}

/* ================= TITLE ================= */

.title{

text-align:center;

margin-bottom:60px;

}

.title span{

color:var(--primary);

font-weight:600;

letter-spacing:2px;

font-size:.9rem;

}

.title h2{

font-family:'Playfair Display',serif;

font-size:3rem;

margin-top:10px;

}

/* ================= BUTTONS ================= */

button{

cursor:pointer;

border:none;

transition:.3s;

font-family:inherit;

}

.primary-btn,
.secondary-btn,
.quote-btn{

padding:15px 34px;

border-radius:50px;

font-size:16px;

font-weight:600;

}

.primary-btn,
.quote-btn{

background:var(--primary);

color:white;

}

.primary-btn:hover,
.quote-btn:hover{

transform:translateY(-4px);

box-shadow:var(--shadow);

}

.secondary-btn{

background:white;

border:2px solid var(--primary);

color:var(--primary);

}

.secondary-btn:hover{

background:var(--primary);

color:white;

}

/* ================= NAVBAR ================= */

header{

position:fixed;

top:0;
left:0;

width:100%;

z-index:999;

padding:15px 8%;

backdrop-filter:blur(20px);

background:rgba(255,255,255,.72);

box-shadow:0 8px 20px rgba(0,0,0,.06);

}

nav{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

font-size:2rem;

font-family:'Playfair Display';

font-weight:700;

}

.logo span{

color:var(--primary);

}

.nav-links{

display:flex;

gap:35px;

}

.nav-links a{

font-weight:500;

transition:.3s;

position:relative;

}

.nav-links a:hover{

color:var(--primary);

}

.nav-links a::after{

content:'';

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:var(--primary);

transition:.3s;

}

.nav-links a:hover::after{

width:100%;

}

.nav-right{

display:flex;

align-items:center;

gap:20px;

font-size:20px;

}

.nav-right i{

cursor:pointer;

transition:.3s;

}

.nav-right i:hover{

color:var(--primary);

transform:scale(1.15);

}

.menu-btn{

display:none;

flex-direction:column;

gap:6px;

cursor:pointer;

}

.menu-btn span{

width:28px;

height:3px;

background:#222;

}

/* ================= HERO ================= */

.hero{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

min-height:100vh;

padding-top:140px;

}

.hero-left h5{

letter-spacing:3px;

color:var(--primary);

margin-bottom:20px;

}

.hero-left h1{

font-family:'Playfair Display';

font-size:4.4rem;

line-height:1.1;

margin-bottom:25px;

}

.hero-left p{

font-size:18px;

color:#666;

line-height:1.8;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:60px;

}

.hero-stats{

display:flex;

gap:45px;

}

.hero-stats h3{

font-size:2rem;

color:var(--primary);

}

.hero-right{

position:relative;

}

.hero-right img{

border-radius:35px;

box-shadow:var(--shadow);

transition:.6s;

}

.hero-right img:hover{

transform:scale(1.03);

}

/* ================= COLLECTION ================= */

.collections{

background:white;

}

.collection-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.collection-card{

position:relative;

overflow:hidden;

border-radius:20px;

cursor:pointer;

box-shadow:var(--shadow);

}

.collection-card img{

height:320px;

width:100%;

object-fit:cover;

transition:.6s;

}

.collection-card:hover img{

transform:scale(1.1);

}

.overlay{

position:absolute;

left:0;

right:0;

bottom:0;

padding:25px;

background:linear-gradient(transparent,rgba(0,0,0,.82));

color:white;

}

.overlay h3{

font-size:1.4rem;

}

/* ================= TOP BUTTON ================= */

#topBtn{

position:fixed;

right:25px;

bottom:25px;

width:55px;

height:55px;

border-radius:50%;

background:var(--primary);

color:white;

display:flex;

align-items:center;

justify-content:center;

font-size:20px;

box-shadow:var(--shadow);

display:none;

z-index:999;

}

/* ================= WHATSAPP ================= */

.whatsapp{

position:fixed;

left:25px;

bottom:25px;

width:60px;

height:60px;

border-radius:50%;

background:#25D366;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:white;

box-shadow:var(--shadow);

z-index:999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

}

/* =======================================================
   PRODUCTS
======================================================= */

.products{
    background:linear-gradient(180deg,#ffffff,#f8f6f3);
}

.product-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;

}

.product-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.product-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.6s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#d62828;

    color:white;

    padding:8px 18px;

    border-radius:40px;

    font-size:.8rem;

    font-weight:600;

    z-index:5;

}

.product-info{

    padding:25px;

}

.product-info h3{

    font-size:1.35rem;

    margin-bottom:10px;

}

.product-info p{

    color:#666;

    margin-bottom:12px;

}

.rating{

    color:#f4b400;

    margin-bottom:18px;

    font-size:18px;

}

.price{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:22px;

}

.price span{

    color:var(--primary);

    font-size:1.5rem;

    font-weight:700;

}

.price del{

    color:#999;

}

.product-info button{

    width:100%;

    padding:14px;

    border-radius:40px;

    background:var(--primary);

    color:white;

    font-weight:600;

    transition:.3s;

}

.product-info button:hover{

    background:#6d472b;

}

/* =======================================================
   ABOUT
======================================================= */

.about{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.about-image img{

    border-radius:28px;

    box-shadow:var(--shadow);

}

.about-content span{

    color:var(--primary);

    font-weight:600;

    letter-spacing:2px;

}

.about-content h2{

    font-family:'Playfair Display';

    font-size:3rem;

    margin:20px 0;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.about-features div{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:500;

}

.about-features i{

    color:#22c55e;

    font-size:20px;

}

/* =======================================================
   WHY US
======================================================= */

.why-us{

    background:#fff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.why-card{

    padding:45px 30px;

    border-radius:20px;

    background:#fafafa;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(0,0,0,.05);

}

.why-card:hover{

    transform:translateY(-10px);

    background:var(--primary);

    color:white;

}

.why-card i{

    font-size:45px;

    color:var(--primary);

    margin-bottom:25px;

    transition:.35s;

}

.why-card:hover i{

    color:white;

}

.why-card h3{

    margin-bottom:15px;

    font-size:1.4rem;

}

.why-card p{

    line-height:1.7;

}

/* =======================================================
   STATS
======================================================= */

.stats{

    background:linear-gradient(135deg,#8B5E3C,#b57f52);

    color:white;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    text-align:center;

    gap:30px;

}

.stat-box{

    padding:20px;

}

.stat-box h2{

    font-size:3.4rem;

    margin-bottom:10px;

    font-weight:700;

}

.stat-box p{

    letter-spacing:1px;

    font-size:1rem;

}

/* =======================================================
   PROCESS
======================================================= */

.process{

    background:#fff;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:50px;

}

.step{

    background:#fafafa;

    padding:40px 25px;

    text-align:center;

    border-radius:20px;

    transition:.4s;

    position:relative;

}

.step:hover{

    transform:translateY(-12px);

    background:var(--primary);

    color:white;

}

.step i{

    font-size:48px;

    color:var(--primary);

    margin-bottom:20px;

    transition:.3s;

}

.step:hover i{

    color:white;

}

.step h3{

    font-size:1.2rem;

}

/* =======================================================
   SMALL ANIMATIONS
======================================================= */

.product-card,
.collection-card,
.why-card,
.step{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* =======================================================
   GLASS EFFECT
======================================================= */

.glass{

    backdrop-filter:blur(20px);

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.2);

}

/* =======================================================
   SECTION SPACING
======================================================= */

.products,
.about,
.why-us,
.stats,
.process{

    position:relative;

    overflow:hidden;

}

.products::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(199,155,108,.08);

    border-radius:50%;

    top:-180px;

    right:-180px;

}

.about::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(139,94,60,.05);

    border-radius:50%;

    bottom:-120px;

    left:-120px;

}

/* =======================================================
   GALLERY
======================================================= */

.gallery{

    background:#fff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.gallery-item{

    overflow:hidden;

    border-radius:22px;

    position:relative;

    box-shadow:var(--shadow);

}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(transparent,rgba(0,0,0,.45));

    opacity:0;

    transition:.4s;

}

.gallery-item:hover::before{

    opacity:1;

}

/* =======================================================
   TESTIMONIALS
======================================================= */

.testimonials{

    background:#f8f6f3;

}

.testimonial-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:#fff;

    padding:40px;

    border-radius:22px;

    box-shadow:var(--shadow);

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-card i{

    color:var(--primary);

    font-size:35px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.testimonial-card h3{

    margin-bottom:8px;

}

.testimonial-card span{

    color:#ffb400;

}

/* =======================================================
   FEATURES
======================================================= */

.features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    background:white;

}

.feature{

    text-align:center;

    padding:35px;

    border-radius:18px;

    background:#fafafa;

    transition:.35s;

}

.feature:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-10px);

}

.feature i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:18px;

}

.feature:hover i{

    color:white;

}

.feature p{

    margin-top:10px;

    line-height:1.7;

}

/* =======================================================
   FAQ
======================================================= */

.faq{

    background:#f8f6f3;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:white;

    margin-bottom:20px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.faq-question{

    width:100%;

    padding:22px 30px;

    text-align:left;

    font-size:18px;

    font-weight:600;

    background:white;

}

.faq-answer{

    display:none;

    padding:0 30px 25px;

    color:#666;

    line-height:1.8;

}

/* =======================================================
   CONTACT
======================================================= */

.contact{

    background:white;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.contact-card{

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#fafafa;

    padding:25px;

    border-radius:18px;

}

.contact-card i{

    font-size:30px;

    color:var(--primary);

}

.contact-form{

    background:#fafafa;

    padding:40px;

    border-radius:22px;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,

.contact-form textarea{

    padding:18px;

    border:1px solid #ddd;

    border-radius:12px;

    outline:none;

    font-family:inherit;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    padding:16px;

    background:var(--primary);

    color:white;

    border-radius:50px;

    font-weight:600;

}

.contact-form button:hover{

    background:#6b452a;

}

/* =======================================================
   NEWSLETTER
======================================================= */

.newsletter{

    background:linear-gradient(135deg,#8B5E3C,#C79B6C);

    color:white;

    text-align:center;

}

.newsletter-content{

    max-width:700px;

    margin:auto;

}

.newsletter h2{

    font-size:2.7rem;

    margin-bottom:20px;

}

.newsletter p{

    line-height:1.8;

    margin-bottom:35px;

}

.newsletter-box{

    display:flex;

    background:white;

    border-radius:60px;

    overflow:hidden;

}

.newsletter-box input{

    flex:1;

    border:none;

    padding:18px 25px;

    outline:none;

}

.newsletter-box button{

    padding:18px 35px;

    background:var(--primary);

    color:white;

}

/* =======================================================
   MAP
======================================================= */

.map{

    padding:0;

}

.map iframe{

    width:100%;

    height:450px;

    border:none;

}

/* =======================================================
   FOOTER
======================================================= */

footer{

    background:#1d1d1d;

    color:white;

    padding:90px 8% 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:45px;

}

.footer-column h2,

.footer-column h3{

    margin-bottom:22px;

}

.footer-column p{

    color:#bbb;

    line-height:1.8;

}

.footer-column a{

    display:block;

    color:#bbb;

    margin-bottom:12px;

    transition:.3s;

}

.footer-column a:hover{

    color:white;

    padding-left:8px;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.1);

    display:flex;

    align-items:center;

    justify-content:center;

}

.social-icons a:hover{

    background:var(--primary);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    margin-top:50px;

    padding-top:25px;

    text-align:center;

    color:#999;

}

/* =======================================================
   RESPONSIVE
======================================================= */

@media(max-width:1100px){

.hero,
.about,
.contact-container{

grid-template-columns:1fr;

}

.collection-grid,
.gallery-grid,
.features,
.testimonial-container,
.footer-grid,
.process-grid,
.stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

section{

padding:70px 6%;

}

.nav-links{

display:none;

}

.menu-btn{

display:flex;

}

.hero{

padding-top:120px;

}

.hero-left h1{

font-size:2.8rem;

}

.hero-buttons{

flex-direction:column;

}

.hero-stats{

flex-direction:column;

gap:20px;

}

.collection-grid,
.gallery-grid,
.product-grid,
.why-grid,
.features,
.testimonial-container,
.process-grid,
.stats,
.footer-grid{

grid-template-columns:1fr;

}

.newsletter-box{

flex-direction:column;

border-radius:18px;

}

.newsletter-box button{

width:100%;

}

.about-features{

grid-template-columns:1fr;

}

.title h2{

font-size:2.2rem;

}

}