/*==================================================
SHUKRAN SHOPPING
style.css
==================================================*/

/*================ GOOGLE FONT ================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*================ VARIABLES ================*/

:root{

--primary:#c59d5f;
--secondary:#a92c78;
--dark:#111111;
--dark2:#181818;
--white:#ffffff;
--gray:#777;
--light:#f5f5f5;

--shadow:0 10px 35px rgba(0,0,0,.15);

--radius:14px;

--transition:.35s ease;

}

/*================ RESET ================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;
background:#fff;
color:#333;
line-height:1.7;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

ul{

list-style:none;

}

a{

text-decoration:none;

}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

section{

padding:90px 0;

}

/*================ SECTION TITLE ================*/

.section-title{

text-align:center;
margin-bottom:60px;

}

.section-title span{

color:var(--secondary);
font-size:15px;
font-weight:600;
text-transform:uppercase;
letter-spacing:1px;

}

.section-title h2{

font-size:40px;
margin-top:10px;
color:var(--dark);

}

.section-title p{

margin-top:15px;
color:#666;
max-width:700px;
margin-left:auto;
margin-right:auto;

}

/*================ BUTTONS ================*/

.btn{

display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;

background:var(--primary);
color:#fff;

padding:15px 32px;

border-radius:40px;

font-weight:600;

transition:var(--transition);

}

.btn:hover{

background:var(--secondary);
transform:translateY(-3px);

}

.btn-outline{

background:transparent;

border:2px solid #fff;

}

.btn-outline:hover{

background:#fff;
color:#111;

}

/*================ HEADER ================*/

.header{

position:fixed;

top:0;
left:0;

width:100%;

z-index:9999;

padding:18px 0;

transition:.4s;

}

.header.sticky{

background:#111;

box-shadow:0 10px 30px rgba(0,0,0,.15);

padding:12px 0;

}

.header .container{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo img{

height:65px;

transition:.3s;

}

.header.sticky .logo img{

height:55px;

}

/*================ NAVIGATION ================*/

.navbar ul{

display:flex;

gap:40px;

}

.navbar a{

color:#fff;

font-weight:500;

position:relative;

transition:.3s;

}

.navbar a::after{

content:"";

position:absolute;

left:0;
bottom:-8px;

width:0;

height:2px;

background:var(--primary);

transition:.35s;

}

.navbar a:hover::after{

width:100%;

}

.navbar a:hover{

color:var(--primary);

}

/*================ HAMBURGER ================*/

.menu-btn{

display:none;

width:42px;
height:42px;

cursor:pointer;

position:relative;

}

.menu-btn span{

position:absolute;

width:30px;

height:3px;

background:#fff;

left:6px;

transition:.35s;

}

.menu-btn span:nth-child(1){

top:10px;

}

.menu-btn span:nth-child(2){

top:19px;

}

.menu-btn span:nth-child(3){

top:28px;

}

.menu-btn.active span:nth-child(1){

transform:rotate(45deg);

top:20px;

}

.menu-btn.active span:nth-child(2){

opacity:0;

}

.menu-btn.active span:nth-child(3){

transform:rotate(-45deg);

top:20px;

}

/*================ HERO ================*/

.hero{

background:linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.75)),
url(images/hero.png);

background-size:cover;
background-position:center;

min-height:100vh;

display:flex;

align-items:center;

}

.hero-container{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:70px;

}

.hero-tag{

display:inline-block;

background:rgba(255,255,255,.1);

padding:8px 18px;

border-radius:30px;

color:#fff;

margin-bottom:25px;

backdrop-filter:blur(10px);

}

.hero h1{

font-size:56px;

line-height:1.15;

color:#fff;

margin-bottom:25px;

}

.hero p{

font-size:18px;

color:#ddd;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.hero-image{

text-align:center;

}

.hero-image img{

width:100%;

max-width:520px;

margin:auto;

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

/*================ FEATURES ================*/

.features{

margin-top:-70px;

position:relative;

z-index:100;

}

.features .container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.feature-box{

background:#fff;

padding:35px;

border-radius:15px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.feature-box:hover{

transform:translateY(-8px);

}

.feature-box i{

font-size:42px;

color:var(--primary);

margin-bottom:18px;

}

.feature-box h3{

margin-bottom:12px;

font-size:20px;

}

.feature-box p{

font-size:15px;

color:#666;

}
/*==================================================
PRODUCTS
==================================================*/

.products{
    background:#f8f8f8;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.product-image{
    height:260px;
    overflow:hidden;
    background:#fafafa;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

.product-content{
    padding:25px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.product-content h3{
    font-size:20px;
    line-height:1.5;
    margin-bottom:25px;
    color:#222;
    flex-grow:1;
}

.product-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    padding:14px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.product-btn:hover{
    background:#1da851;
}

/*==================================================
ABOUT
==================================================*/

.about{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.section-subtitle{
    display:inline-block;
    color:var(--secondary);
    font-weight:600;
    margin-bottom:15px;
}

.about-content h2{
    font-size:42px;
    margin-bottom:25px;
    color:#111;
}

.about-content p{
    margin-bottom:18px;
    color:#666;
}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-us{
    background:#111;
}

.why-us .section-title h2{
    color:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.why-card{
    background:#1d1d1d;
    padding:35px;
    border-radius:15px;
    text-align:center;
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
    background:#242424;
}

.why-card i{
    font-size:45px;
    color:var(--primary);
    margin-bottom:20px;
}

.why-card h3{
    color:#fff;
    margin-bottom:12px;
}

.why-card p{
    color:#bbb;
}

/*==================================================
CONTACT
==================================================*/

.contact{
    background:#f7f7f7;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-box{
    display:flex;
    gap:18px;
    margin-bottom:28px;
}

.contact-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.contact-box h3{
    margin-bottom:5px;
}

.contact-box p{
    color:#666;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.social-icons a{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111;
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--primary);
}

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:18px;
    font-family:Poppins,sans-serif;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--primary);
}

/*==================================================
MAP
==================================================*/

.map iframe{
    width:100%;
    height:420px;
    border:0;
    display:block;
}

/*==================================================
FOOTER
==================================================*/

.footer{
    background:#111;
    color:#fff;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    height:70px;
    margin-bottom:20px;
}

.footer h3{
    margin-bottom:20px;
    color:var(--primary);
}

.footer ul li{
    margin-bottom:12px;
}

.footer a{
    color:#ddd;
    transition:.3s;
}

.footer a:hover{
    color:var(--primary);
}

.footer p{
    color:#ccc;
    margin-bottom:10px;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:50px;
    padding-top:25px;
    text-align:center;
    color:#999;
}

/*==================================================
FLOATING WHATSAPP
==================================================*/

.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
}

.floating-whatsapp:hover{
    transform:scale(1.1);
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.hero-container,
.about-grid,
.contact-grid{
    grid-template-columns:1fr;
}

.features .container{
    grid-template-columns:repeat(2,1fr);
}

.footer-grid{
    grid-template-columns:1fr;
}

.hero{
    text-align:center;
}

.hero-image{
    margin-top:50px;
}

.hero h1{
    font-size:42px;
}

.section-title h2{
    font-size:34px;
}

.about-content h2{
    font-size:34px;
}

}

@media(max-width:768px){

.menu-btn{
    display:block;
}

.navbar{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#111;
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.navbar.active{
    max-height:400px;
}

.navbar ul{
    flex-direction:column;
    padding:20px 0;
}

.navbar li{
    text-align:center;
    margin:12px 0;
}

.hero{
    padding-top:120px;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.features .container{
    grid-template-columns:1fr;
}

.products-grid,
.why-grid{
    grid-template-columns:1fr;
}

.contact-form{
    padding:25px;
}

.section-title h2{
    font-size:30px;
}

}

@media(max-width:480px){

.logo img{
    height:50px;
}

.hero h1{
    font-size:28px;
}

.hero-buttons{
    flex-direction:column;
}

.btn{
    width:100%;
}

.product-content h3{
    font-size:18px;
}

.about-content h2{
    font-size:28px;
}

}
.navbar a.active{
    color: var(--primary);
}

.navbar a.active::after{
    width:100%;
}