/* =========================

CURATED WORTH

Luxury Editorial Theme

========================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root{

--green:#18352D;

--green-dark:#11241F;

--cream:#F8F5EF;

--white:#ffffff;

--gold:#A98A5B;

--text:#222222;

--light:#6E6E6E;

--border:#E7E0D5;

--shadow:0 18px 60px rgba(0,0,0,.08);

--radius:24px;

--transition:.45s ease;

}

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

overflow-x:hidden;

width:100%;

}

body{

background:var(--cream);

font-family:'Inter',sans-serif;

color:var(--text);

line-height:1.7;

overflow-x:hidden;

width:100%;

position:relative;

}

img{

width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

}

.container{

width:min(1180px,92%);

margin:auto;

}

.container-small{

width:min(820px,90%);

margin:auto;

}



/* =========================

NAVBAR

========================= */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

backdrop-filter:blur(18px);

background:rgba(248,245,239,.72);

border-bottom:1px solid rgba(255,255,255,.35);

transition:.4s;

}

.navbar .container{

display:flex;

justify-content:space-between;

align-items:center;

height:82px;

}

.logo{

font-family:'Cormorant Garamond',serif;

font-size:34px;

font-weight:700;

letter-spacing:.5px;

color:var(--green);

}

nav ul{

display:flex;

list-style:none;

gap:42px;

}

nav a{

font-size:15px;

font-weight:500;

position:relative;

}

nav a::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:var(--gold);

transition:.35s;

}

nav a:hover::after{

width:100%;

}

/* Mobile hamburger toggle button (hidden on desktop) */
.nav-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    width:38px;
    height:38px;
    background:transparent;
    border:none;
    cursor:pointer;
    z-index:1001;
}

.nav-toggle span{
    display:block;
    width:24px;
    height:2px;
    background:var(--green);
    transition:.35s ease;
}

.nav-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2){
    opacity:0;
}

.nav-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}



/* =========================

HERO

========================= */

.hero{

position:relative;

height:100vh;

display:flex;

align-items:center;

justify-content:center;

padding-top:80px;

background:url("assets/main background.png") center center/cover;

overflow:hidden;

}

.hero::before{

content:"";

position:absolute;

inset:0;

background:linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35));

}

.hero-content{

position:relative;

z-index:5;

text-align:center;

max-width:820px;

padding:20px;

color:white;

}

.hero-tag{

display:inline-block;

padding:10px 22px;

border:1px solid rgba(255,255,255,.4);

border-radius:50px;

font-size:13px;

letter-spacing:2px;

text-transform:uppercase;

backdrop-filter:blur(10px);

margin-bottom:30px;

}

.hero h1{

font-family:'Cormorant Garamond',serif;

font-size:clamp(38px, 7vw, 88px);

font-weight:600;

line-height:1.05;

margin-bottom:28px;

}

.hero p{

max-width:640px;

margin:auto;

font-size:clamp(15px, 2vw, 20px);

opacity:.95;

margin-bottom:42px;

}

.hero-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 42px;

background:var(--green);

border-radius:100px;

color:white;

font-weight:600;

transition:var(--transition);

box-shadow:0 20px 40px rgba(0,0,0,.2);

}

.hero-btn:hover{

transform:translateY(-6px);

background:var(--green-dark);

}



/* Decorative Blur */

.hero::after{

content:"";

position:absolute;

width:500px;

height:500px;

border-radius:50%;

background:rgba(255,255,255,.08);

filter:blur(100px);

right:-120px;

bottom:-120px;

}



/* =========================

SECTION TITLE

========================= */

.section-heading{

text-align:center;

margin-bottom:70px;

}

.section-heading span{

color:var(--gold);

font-size:14px;

text-transform:uppercase;

letter-spacing:3px;

}

.section-heading h2{

font-family:'Cormorant Garamond',serif;

font-size:clamp(32px, 5vw, 60px);

margin:18px 0;

color:var(--green);

}

.section-heading p{

max-width:620px;

margin:auto;

color:var(--light);

font-size:18px;

padding:0 16px;

}
/* ===================================================
   PRODUCTS SECTION
=================================================== */

.products{

    padding:140px 0;

    position:relative;

    overflow:hidden;

}

.products::before{

    content:"";

    position:absolute;

    top:120px;

    left:-180px;

    width:420px;

    height:420px;

    background:rgba(169,138,91,.06);

    border-radius:50%;

    filter:blur(120px);

}

.product-grid{

    width:min(1200px,92%);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:34px;

}



/* ===================================================
   CARD
=================================================== */

.card{

    position:relative;

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    border:1px solid var(--border);

    transition:.45s ease;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 80px rgba(0,0,0,.14);

}

.card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.7s ease;

}

.card:hover img{

    transform:scale(1.06);

}



/* ===================================================
   BADGE
=================================================== */

.badge{

    position:absolute;

    top:22px;

    left:22px;

    background:rgba(24,53,45,.95);

    color:#fff;

    padding:10px 18px;

    border-radius:999px;

    font-size:12px;

    letter-spacing:1px;

    text-transform:uppercase;

    z-index:50;

}



/* ===================================================
   CARD CONTENT
=================================================== */

.card-content{

    padding:34px;

}

.card-content h3{

    font-family:'Cormorant Garamond',serif;

    font-size:36px;

    color:var(--green);

    margin-bottom:16px;

}

.card-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:28px;

}



/* ===================================================
   AMAZON BUTTON
=================================================== */

.amazon-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    background:transparent;

    border:2px solid var(--green);

    color:var(--green);

    padding:15px 30px;

    border-radius:100px;

    font-weight:600;

    transition:.35s;

}

.amazon-btn:hover{

    background:var(--green);

    color:#fff;

    transform:translateY(-3px);

}



/* ===================================================
   ABOUT
=================================================== */

.about{

    padding:150px 0;

    background:#FDFBF7;

    text-align:center;

}

.about span{

    color:var(--gold);

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:14px;

}

.about h2{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(30px, 5vw, 62px);

    margin:20px 0;

}

.about p{

    max-width:760px;

    margin:auto;

    color:#666;

    font-size:19px;

    line-height:1.9;

    padding:0 16px;

}



/* ===================================================
   DISCLOSURE
=================================================== */

.disclosure{

    padding:80px 20px;

    background:var(--green);

    color:#fff;

    text-align:center;

}

.disclosure p{

    max-width:900px;

    margin:auto;

    opacity:.9;

    line-height:1.8;

}



/* ===================================================
   FOOTER
=================================================== */

footer{

    background:#10211D;

    color:#ddd;

    padding:90px 0 40px;

}

footer p{

    text-align:center;

    font-size:15px;

    letter-spacing:.4px;

}



/* ===================================================
   HOVER SHINE
=================================================== */

.card::before{

    content:"";

    position:absolute;

    top:-120%;

    left:-60%;

    width:40%;

    height:250%;

    background:rgba(255,255,255,.28);

    transform:rotate(25deg);

    transition:.8s;

}

.card:hover::before{

    left:150%;

}



/* ===================================================
   IMAGE OVERLAY
=================================================== */

.card::after{

    content:"";

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    height:120px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.02)
    );

    pointer-events:none;

}



/* ===================================================
   SOFT FADE
=================================================== */

.section-heading,

.card,

.about{

    animation:fadeUp .9s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* =========================================================
   CURATED WORTH
   PART 3 - RESPONSIVE + PREMIUM FINISH
=========================================================*/


/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f3efe8;

}

::-webkit-scrollbar-thumb{

    background:var(--green);

    border-radius:100px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--green-dark);

}



/* ===========================
   TEXT SELECTION
=========================== */

::selection{

    background:var(--green);

    color:#fff;

}



/* ===========================
   SMOOTH IMAGE RENDERING
=========================== */

img{

    image-rendering:auto;

}



/* ===========================
   FOCUS STATES
=========================== */

a:focus,

button:focus{

    outline:none;

}



/* ===========================
   HOVER TRANSITIONS
=========================== */

.card,
.hero-btn,
.amazon-btn,
nav a{

    transition:all .4s ease;

}



/* ===========================
   HERO PARALLAX EFFECT
=========================== */

.hero{

    background-attachment:fixed;

}



/* ===========================
   BUTTON RIPPLE EFFECT
=========================== */

.hero-btn,
.amazon-btn{

    position:relative;

    overflow:hidden;

}

.hero-btn::before,
.amazon-btn::before{

    content:"";

    position:absolute;

    width:0;

    height:0;

    left:50%;

    top:50%;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    transform:translate(-50%,-50%);

    transition:.6s;

}

.hero-btn:hover::before,
.amazon-btn:hover::before{

    width:420px;

    height:420px;

}



/* ===========================
   CARD BORDER GLOW
=========================== */

.card:hover{

    border-color:rgba(169,138,91,.35);

}



/* ===========================
   NAVBAR SCROLL EFFECT
=========================== */

.navbar{

    box-shadow:0 8px 30px rgba(0,0,0,.04);

}



/* ===========================
   RESPONSIVE 1100px
=========================== */

@media(max-width:1100px){

.hero h1{

font-size:72px;

}

.product-grid{

grid-template-columns:repeat(2,1fr);

}

.section-heading h2{

font-size:50px;

}

.about h2{

font-size:52px;

}

}



/* ===========================
   RESPONSIVE 768px
=========================== */

@media(max-width:768px){

/* Mobile nav: hamburger shows, links collapse into dropdown */
.nav-toggle{
    display:flex;
}

nav ul{

    position:fixed;

    top:72px;

    left:0;

    width:100%;

    flex-direction:column;

    gap:0;

    background:rgba(248,245,239,.98);

    backdrop-filter:blur(18px);

    border-bottom:1px solid var(--border);

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

nav ul.open{

    max-height:300px;

}

nav ul li{

    width:100%;

    text-align:center;

}

nav ul li a{

    display:block;

    padding:18px 20px;

    font-size:16px;

}

/* Prevent background-attachment:fixed glitches on mobile browsers */
.hero{

    background-attachment:scroll;

}

.navbar .container{

height:72px;

}

.logo{

font-size:28px;

}

.hero{

height:92vh;

padding:100px 20px 60px;

background-position:center;

}

.hero-tag{

font-size:11px;

padding:8px 16px;

}

.hero-btn{

padding:16px 30px;

}

.products{

padding:90px 0;

}

.section-heading{

margin-bottom:50px;

}

.product-grid{

grid-template-columns:1fr;

gap:30px;

}

.card img{

height:280px;

}

.card-content{

padding:28px;

}

.card-content h3{

font-size:32px;

}

.about{

padding:100px 0;

}

.about p{

font-size:17px;

}

footer{

padding:60px 20px;

}

}



/* ===========================
   RESPONSIVE 480px
=========================== */

@media(max-width:480px){

.card img{

height:240px;

}

.card-content h3{

font-size:28px;

}

.amazon-btn{

width:100%;

justify-content:center;

}

.hero-btn{

width:100%;

justify-content:center;

}

}



/* ===========================
   RESPONSIVE 380px (small phones)
=========================== */

@media(max-width:380px){

.logo{

font-size:22px;

}

.navbar .container{

height:64px;

}

nav ul{

top:64px;

}

.hero{

padding:90px 16px 50px;

}

.hero-tag{

font-size:10px;

padding:7px 14px;

}

.card-content{

padding:22px;

}

.card-content h3{

font-size:24px;

}

.about p,
.section-heading p{

font-size:15.5px;

}

}



/* ===========================
   FADE ANIMATION
=========================== */

@keyframes floatUp{

0%{

opacity:0;

transform:translateY(30px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

.hero-content{

animation:floatUp 1s ease;

}



/* ===========================
   PREMIUM SPACING
=========================== */

section{

position:relative;

z-index:2;

}



/* ===========================
   LUXURY DIVIDER
=========================== */

.section-heading::after{

content:"";

display:block;

width:70px;

height:2px;

background:var(--gold);

margin:22px auto 0;

border-radius:100px;

}



/* ===========================
   CARD SHADOW LAYER
=========================== */

.card{

isolation:isolate;

}



/* ===========================
   PREMIUM FINISH
=========================== */

body{

-webkit-font-smoothing:antialiased;

-moz-osx-font-smoothing:grayscale;

text-rendering:optimizeLegibility;

}
