

:root{
    --gold:#D4AF37;
    --dark:#111111;
    --light:#f8f5f1;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Noto Sans Thai',sans-serif;
    background:var(--light);
    color:#222;
}

h1,h2,h3{
    font-family:'Playfair Display',serif;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* HERO */

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url('img/wallet-4colors.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.hero-content{
    color:white;
    background-image:url('img/655888373_1814727946118158_4819167091908947331_n.jpg') ;
    padding:40px;
}

.hero h1{
    font-size:90px;
    font-weight:700;
}

.hero p{
    font-size:24px;
    margin:20px 0;
    line-height:1.7;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    text-decoration:none;
    border-radius:10px;
    margin-right:15px;
    font-weight:bold;
}

.btn-gold{
    background:var(--gold);
    color:black;
}

.btn-line{
    background:#06C755;
    color:white;
}

.btn-facebook {
    background:#1403f8;
    color:white;
}

/* FEATURES */

.features{
    background:#111;
    color:white;
    padding:80px 0;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    text-align:center;
}

.feature{
    padding:30px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:15px;
}

.feature h3{
    color:var(--gold);
    margin-bottom:15px;
}

/* PRODUCT SHOWCASE */

.showcase{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
}

.section-title p{
    color:#666;
    margin-top:10px;
}

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    
    width:100%;
    height:350px;
    object-fit:contain;
    background:#fff;

}

.card-content{
    padding:25px;
}

.card h3{
    font-size:28px;
    margin-bottom:10px;
}

.card p{
    color:#666;
    margin-bottom:20px;
}

.price{
    color:#b8860b;
    font-size:32px;
    font-weight:bold;
    margin-bottom:15px;
}

.line-btn{
    display:block;
    text-align:center;
    background:#06C755;
    color:white;
    text-decoration:none;
    padding:14px;
    border-radius:10px;
    font-weight:bold;
}

/* BANNER */

.banner{
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('img/handbag-collection.jpg');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:120px 20px;
}

.banner h2{
    font-size:60px;
    margin-bottom:20px;
}

.banner p{
    font-size:22px;
    margin-bottom:30px;
}

/* FOOTER */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:50px 20px;
}

footer h2{
    color:var(--gold);
    margin-bottom:15px;
}

/* FLOATING LINE */

.floating-line{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#06C755;
    color:white;
    text-decoration:none;
    padding:16px 25px;
    border-radius:50px;
    font-weight:bold;
    z-index:999;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

@media(max-width:768px){

.hero h1{
    font-size:60px;
}

.hero p{
    font-size:18px;
}

.banner h2{
    font-size:40px;
}

}
