/* ===================================
   ISSY'S ACCESSORIES
   Boutique Theme
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{

    --pink:#ef8fb3;
    --pink-light:#f8d8e5;
    --pink-extra:#fff4f8;
    --white:#ffffff;
    --text:#4f4f4f;
    --shadow:0 15px 40px rgba(239,143,179,.15);

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--text);

    overflow-x:hidden;

}

/* ======================
   NAVIGATION
====================== */

header{

    position:sticky;

    top:0;

    width:100%;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(15px);

    z-index:1000;

    box-shadow:0 3px 20px rgba(0,0,0,.05);

}

nav{

    max-width:1300px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 40px;

}

.logo img{

    height:80px;

}

nav ul{

    display:flex;

    gap:35px;

    list-style:none;

}

nav a{

    color:var(--text);

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:var(--pink);

}

/* ======================
   HERO
====================== */

.hero{

    min-height:92vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:80px 25px;

    background:

    radial-gradient(circle at top,#ffeef5 0%,#ffffff 65%);

}

.hero-content{

    max-width:900px;

}

.hero h1{

    font-family:"Great Vibes",cursive;

    font-size:5.2rem;

    color:var(--pink);

    margin-bottom:20px;

}

.hero h2{

    font-size:2rem;

    margin-bottom:18px;

    font-weight:600;

}

.hero p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

    font-size:1.1rem;

}

/* ======================
   BUTTONS
====================== */

.buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    padding:17px 38px;

    border-radius:50px;

    text-decoration:none;

    transition:.35s;

    font-weight:600;

}

.pink{

    background:var(--pink);

    color:white;

    box-shadow:var(--shadow);

}

.white{

    background:white;

    border:2px solid var(--pink);

    color:var(--pink);

}

.btn:hover{

    transform:translateY(-5px);

}

/* ======================
   SECTIONS
====================== */

section{

    padding:100px 8%;

}

section h2{

    text-align:center;

    color:var(--pink);

    font-size:2.6rem;

    margin-bottom:20px;

}

section p{

    text-align:center;

    max-width:760px;

    margin:auto;

    line-height:1.8;

}
/* ===================================
   PRODUCT GALLERY
=================================== */

.featured{
    background:#fff8fb;
}

.product-grid{
    max-width:1400px;
    margin:60px auto 0;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
}

.product-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    border:1px solid #ffe3ee;

    box-shadow:0 15px 35px rgba(239,143,179,.12);

    transition:.35s ease;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(239,143,179,.22);

}

.product-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.4s;

}

.product-card:hover img{

    transform:scale(1.05);

}

.product-info{

    padding:22px;

    text-align:center;

}

.product-info h3{

    font-size:1.2rem;

    margin-bottom:10px;

}

.price{

    font-size:1.5rem;

    color:var(--pink);

    font-weight:700;

    margin-bottom:18px;

}

.buy-btn{

    display:inline-block;

    background:var(--pink);

    color:white;

    text-decoration:none;

    padding:14px 28px;

    border-radius:999px;

    font-weight:600;

    transition:.3s;

}

.buy-btn:hover{

    background:#e97fa8;

    transform:translateY(-3px);

}

/* ===================================
   VIEW ALL PRODUCTS
=================================== */

.view-all{

    background:white;

    text-align:center;

    padding:110px 30px;

}

.view-all h2{

    font-size:2.8rem;

}

.view-all p{

    margin:25px auto 45px;

    color:#666;

}

.view-all .btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

}

/* ===================================
   COMING SOON
=================================== */

.coming-soon{

    background:#fff8fb;

}

.coming-soon p{

    color:#666;

}

/* ===================================
   FORMS
=================================== */

.request,
.feedback{

    background:white;

}

form{

    max-width:750px;

    margin:45px auto 0;

    display:flex;

    flex-direction:column;

    gap:20px;

}

input,
textarea,
select{

    width:100%;

    padding:18px;

    border-radius:18px;

    border:2px solid var(--pink-light);

    font-size:16px;

    font-family:'Poppins',sans-serif;

    transition:.3s;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    border-color:var(--pink);

    box-shadow:0 0 0 6px rgba(239,143,179,.12);

}

textarea{

    resize:vertical;

}

button{

    border:none;

    background:var(--pink);

    color:white;

    padding:18px;

    border-radius:999px;

    cursor:pointer;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

button:hover{

    background:#e97fa8;

}

/* ===================================
   INSTAGRAM
=================================== */

.instagram{

    background:#fff8fb;

    text-align:center;

}

.instagram-button{

    margin-top:35px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    background:var(--pink);

    color:white;

    padding:18px 36px;

    border-radius:999px;

    font-size:18px;

    transition:.3s;

}

.instagram-button:hover{

    transform:translateY(-4px);

}

/* ===================================
   FOOTER
=================================== */

footer{

    background:#fff0f6;

    padding:70px 30px;

    text-align:center;

}

footer h3{

    color:var(--pink);

    margin-bottom:15px;

}

footer p{

    margin:10px 0;

}

footer a{

    color:var(--pink);

    text-decoration:none;

    font-weight:600;

}

.copyright{

    margin-top:25px;

    color:#888;

}

/* ===================================
   MOBILE
=================================== */

@media (max-width:900px){

    nav{

        flex-direction:column;

        gap:20px;

        padding:20px;

    }

    nav ul{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;

    }

    .hero h1{

        font-size:3.6rem;

    }

    .hero h2{

        font-size:1.5rem;

    }

    .buttons{

        flex-direction:column;

        align-items:center;

    }

    .btn{

        width:240px;

        text-align:center;

    }

    section{

        padding:70px 25px;

    }

    .product-card img{

        height:280px;

    }

}