/* ===================================================
   MINI MATTERS
   Premium Brand Website
   style.css
=================================================== */

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#FAF8F5;

    color:#4A4038;

    overflow-x:hidden;

    line-height:1.8;

}

/* ==========================
   VARIABLES
========================== */

:root{

    --primary:#7F9C84;

    --secondary:#DCC9B6;

    --background:#FAF8F5;

    --dark:#4A4038;

    --light:#FFFFFF;

    --text:#666666;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --radius:20px;

}

/* ==========================
   CONTAINER
========================== */

.container{

    width:min(1180px,92%);

    margin:auto;

}

/* ==========================
   LINKS
========================== */

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

/* ==========================
   HEADER
========================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.85);

    transition:.35s;

    box-shadow:0 2px 15px rgba(0,0,0,.05);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:85px;

}

/* ==========================
   LOGO
========================== */

.logo{

    font-family:'Playfair Display',serif;

    font-size:34px;

    font-weight:700;

}

.logo a{

    color:var(--primary);

}

/* ==========================
   NAVIGATION
========================== */

nav ul{

    display:flex;

    align-items:center;

    gap:28px;

}

nav a{

    font-size:16px;

    font-weight:500;

    color:var(--dark);

    transition:.3s;

    position:relative;

}

nav a:hover{

    color:var(--primary);

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

nav a:hover::after{

    width:100%;

}

/* ==========================
   HERO
========================== */

.hero{

    position:relative;

    width:100%;

    line-height:0;

}

.hero-img{

    width:100%;

    height:auto;

    display:block;

}

.hero-content{

    position:relative;

    z-index:2;

    width:min(900px,90%);

}

.coming-badge{

    display:inline-block;

    background:var(--primary);

    color:white;

    padding:12px 30px;

    border-radius:50px;

    letter-spacing:2px;

    font-size:14px;

    margin-bottom:30px;

}

.hero h1{

    font-family:'Playfair Display',serif;

    font-size:88px;

    margin-bottom:15px;

    color:var(--dark);

}

.hero h2{

    font-size:34px;

    color:var(--primary);

    font-weight:500;

    margin-bottom:25px;

}

.hero p{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:20px;

    margin-bottom:45px;

}

/* ==========================
   BUTTON
========================== */

.btn{

    display:inline-block;

    padding:18px 45px;

    background:var(--primary);

    color:white;

    border-radius:50px;

    transition:.35s;

    box-shadow:var(--shadow);

}

.btn:hover{

    transform:translateY(-6px);

}

/* ==========================
   SECTION
========================== */

section{

    padding:120px 0;

}

section h2{

    text-align:center;

    font-family:'Playfair Display',serif;

    font-size:48px;

    margin-bottom:35px;

}

section p{

    color:#666;

}

/* ==========================
   STORY
========================== */

.story{

    background:white;

}

.story p{

    max-width:900px;

    margin:20px auto;

    text-align:center;

    font-size:19px;

}
/* ==========================
   FEATURES
========================== */

.features{

    background:#FAF8F5;

}

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.card{

    background:#FFFFFF;

    padding:45px 35px;

    border-radius:var(--radius);

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.card i{

    font-size:60px;

    color:var(--primary);

    margin-bottom:25px;

}

.card h3{

    margin-bottom:20px;

    font-size:28px;

    color:var(--dark);

}

.card p{

    font-size:17px;

    color:var(--text);

}

/* ==========================
   SOCIAL
========================== */

.social{

    background:#FFFFFF;

    text-align:center;

}

.social p{

    max-width:700px;

    margin:0 auto 45px;

    font-size:18px;

}

.icons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

}

.icons a{

    width:75px;

    height:75px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--primary);

    color:white;

    font-size:30px;

    transition:.35s;

    box-shadow:var(--shadow);

}

.icons a:hover{

    background:var(--dark);

    transform:translateY(-8px) scale(1.08);

}

/* ==========================
   CONTACT
========================== */

.contact{

    background:#FAF8F5;

    text-align:center;

}

.contact-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.contact-item{

    background:white;

    padding:40px 30px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:.35s;

}

.contact-item:hover{

    transform:translateY(-10px);

}

.contact-item i{

    font-size:45px;

    color:var(--primary);

    margin-bottom:20px;

}

.contact-item h3{

    margin-bottom:15px;

    font-size:24px;

}

.contact-item p{

    color:var(--text);

    word-break:break-word;

}

.contact-item a{

    color:var(--primary);

    font-weight:600;

}

.contact-item a:hover{

    text-decoration:underline;

}

/* ==========================
   NEWSLETTER
========================== */

.newsletter{

    background:white;

    text-align:center;

}

.newsletter p{

    max-width:750px;

    margin:0 auto 35px;

    font-size:18px;

}

/* ==========================
   FOOTER
========================== */

footer{

    background:#EFE7DF;

    padding:60px 0;

    text-align:center;

}

.footer-logo{

    font-family:'Playfair Display',serif;

    font-size:36px;

    color:var(--primary);

    margin-bottom:15px;

}

.footer-icons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin:35px 0;

}

.footer-icons a{

    width:55px;

    height:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--primary);

    color:white;

    border-radius:50%;

    transition:.35s;

}

.footer-icons a:hover{

    background:var(--dark);

    transform:translateY(-5px);

}

footer hr{

    margin:35px auto;

    width:120px;

    border:none;

    border-top:1px solid #d4c8bd;

}

footer p{

    color:#666;

    margin-top:10px;

    font-size:15px;

}

/* ==========================
   UTILITIES
========================== */

.text-center{

    text-align:center;

}

.mt-1{

    margin-top:20px;

}

.mt-2{

    margin-top:40px;

}

.mt-3{

    margin-top:60px;

}

.sr-only{

    position:absolute;

    width:1px;

    height:1px;

    padding:0;

    margin:-1px;

    overflow:hidden;

    clip:rect(0,0,0,0);

    white-space:nowrap;

    border:0;

}

.hidden{

    opacity:0;

    transform:translateY(50px);

}

.show{

    opacity:1;

    transform:translateY(0);

    transition:all .8s ease;

}
/* ===================================================
   RESPONSIVE DESIGN
=================================================== */

/* ==========================
   Large Desktop
========================== */

@media (max-width:1400px){

.hero h1{

    font-size:72px;

}

.hero h2{

    font-size:30px;

}

.container{

    width:94%;

}

}

/* ==========================
   Laptop
========================== */

@media (max-width:1200px){

.cards{

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.contact-grid{

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.hero h1{

    font-size:64px;

}

.hero p{

    font-size:18px;

}

}

/* ==========================
   Tablet
========================== */

@media (max-width:992px){

header .container{

    flex-direction:column;

    justify-content:center;

    height:auto;

    padding:18px 0;

}

nav{

    margin-top:18px;

}

nav ul{

    gap:20px;

    flex-wrap:wrap;

    justify-content:center;

}

.cards{

    grid-template-columns:1fr;

}

.contact-grid{

    grid-template-columns:1fr;

}

section{

    padding:90px 0;

}

}

/* ==========================
   Mobile
========================== */

@media (max-width:768px){

.logo{

    font-size:28px;

}

.hero-content{

    width:100%;

}

.hero h1{

    font-size:46px;

    line-height:1.2;

}

.hero h2{

    font-size:24px;

}

.hero p{

    font-size:17px;

    line-height:1.8;

}

.coming-badge{

    font-size:12px;

    padding:10px 20px;

}

.btn{

    width:100%;

    max-width:320px;

    padding:16px;

}

section h2{

    font-size:36px;

}

.story p{

    font-size:17px;

}

.icons{

    gap:18px;

}

.icons a{

    width:65px;

    height:65px;

    font-size:26px;

}

.footer-icons{

    gap:15px;

}

.footer-icons a{

    width:50px;

    height:50px;

}

}

/* ==========================
   Small Mobile
========================== */

@media (max-width:480px){

header{

    padding:5px 0;

}

.logo{

    font-size:24px;

}

nav ul{

    gap:12px;

}

nav a{

    font-size:14px;

}

.hero h1{

    font-size:36px;

}

.hero h2{

    font-size:20px;

}

.hero p{

    font-size:15px;

}

.btn{

    font-size:15px;

}

.card{

    padding:30px 20px;

}

.card h3{

    font-size:22px;

}

.card i{

    font-size:46px;

}

.contact-item{

    padding:30px 20px;

}

section{

    padding:70px 0;

}

section h2{

    font-size:30px;

}

.footer-logo{

    font-size:28px;

}

}

/* ==========================
   Ultra Small Devices
========================== */

@media (max-width:360px){

.hero h1{

    font-size:32px;

}

.hero h2{

    font-size:18px;

}

.hero p{

    font-size:14px;

}

nav a{

    font-size:13px;

}

}

/* ===================================================
   IMAGE OPTIMIZATION
=================================================== */

img{

    max-width:100%;

    height:auto;

    display:block;

}

/* ===================================================
   SELECTION
=================================================== */

::selection{

    background:#7F9C84;

    color:#ffffff;

}

/* ===================================================
   SCROLLBAR
=================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F5F3EF;

}

::-webkit-scrollbar-thumb{

    background:#7F9C84;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#69866E;

}

/* ===================================================
   ACCESSIBILITY
=================================================== */

a:focus,
button:focus{

    outline:2px solid #7F9C84;

    outline-offset:4px;

}

/* ===================================================
   COLLECTION / SHOP GRID
=================================================== */

.shop-banner{

    background:var(--primary);

    color:white;

    text-align:center;

    padding:14px 20px;

    font-size:15px;

    font-weight:500;

    letter-spacing:.3px;

}

.shop-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

    margin-top:60px;

}

.product-card{

    background:#FFFFFF;

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.product-img-wrap{

    width:100%;

    aspect-ratio:1/1;

    background:#F3EFE9;

    overflow:hidden;

    cursor:zoom-in;

    position:relative;

}

.stock-badge{

    position:absolute;

    top:14px;

    left:14px;

    background:var(--dark);

    color:white;

    font-size:12px;

    font-weight:600;

    letter-spacing:.3px;

    padding:6px 12px;

    border-radius:50px;

    z-index:2;

}

.product-img-wrap img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.4s ease;
}

.product-card:hover .product-img-wrap img{

    transform:scale(1.05);

}

.product-info{

    padding:22px 22px 26px;

    text-align:center;

    flex:1;

    display:flex;

    flex-direction:column;

}

.product-title{

    font-size:17px;

    font-weight:600;

    color:var(--dark);

    margin-bottom:10px;

    min-height:44px;

}

.product-price{

    font-family:'Playfair Display',serif;

    font-size:26px;

    color:var(--primary);

    font-weight:700;

    margin-bottom:4px;

}

.product-shipping-note{

    font-size:13px;

    color:#999;

    margin-bottom:18px;

}

.btn-instagram{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    margin-top:auto;

    padding:12px 20px;

    background:var(--primary);

    color:white;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.btn-instagram:hover{

    background:var(--dark);

    transform:translateY(-3px);

}

.policy-note{

    max-width:800px;

    margin:70px auto 0;

    text-align:center;

    background:#FFF6ED;

    border:1px solid #F0DFC9;

    border-radius:var(--radius);

    padding:28px 30px;

    color:#8a6d3b;

    font-size:15px;

    line-height:1.9;
}

.policy-note strong{

    color:#5c4522;

}

@media (max-width:1200px){

.shop-grid{

    grid-template-columns:repeat(3,1fr);

}

}

@media (max-width:992px){

.shop-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

}

@media (max-width:576px){

.shop-grid{

    grid-template-columns:1fr;

}

}

/* ===================================================
   LIGHTBOX (full-size product view)
=================================================== */

.lightbox-overlay{

    display:none;

    position:fixed;

    inset:0;

    z-index:99999;

    background:rgba(20,16,12,.88);

    align-items:center;

    justify-content:center;

    padding:30px;

}

.lightbox-overlay.active{

    display:flex;

}

.lightbox-overlay img{

    max-width:min(600px,90vw);

    max-height:85vh;

    width:auto;

    border-radius:14px;

    box-shadow:0 20px 60px rgba(0,0,0,.5);

    background:white;

    object-fit:contain;

}

.lightbox-close{

    position:absolute;

    top:24px;

    right:30px;

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.15);

    color:white;

    border-radius:50%;

    font-size:22px;

    cursor:pointer;

    transition:.25s;

    border:none;

}

.lightbox-close:hover{

    background:var(--primary);

    transform:rotate(90deg);

}

.lightbox-caption{

    position:absolute;

    bottom:26px;

    left:0;

    right:0;

    text-align:center;

    color:white;

    font-size:15px;

    letter-spacing:.3px;

}

/* ===================================================
   END OF FILE
=================================================== */
