
:root {
    --gold: #d4af37;
    --deep-black: #0a0a0a;
    --soft-white: #f4f4f4;
    --glass: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--deep-black);
    color: var(--soft-white);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), var(--deep-black)), 
    url('https://upba711.myueeshop.com/tmp/photo/2602/02/epylaseapplicationscene1920x700.webp');
    background-size: cover;
    background-position: center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-content h1{
    font-family:'Cinzel',serif;
    font-size:3.5rem;
    letter-spacing:5px;
    margin-bottom:10px;
    color:var(--gold);
}

/* Titles */
.section-title{
    text-align:center;
    font-family:'Cinzel',serif;
    font-size:2.2rem;
    margin:60px 0;
    color:var(--gold);
}

/* Cards */
.head-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    padding:0 20px;
}

.head-card{
    background:var(--glass);
    border:1px solid rgba(212,175,55,.2);
    border-radius:15px;
    padding:30px;
    text-align:center;
    transition:.4s;
    backdrop-filter:blur(10px);
}

.head-card:hover{
    border-color:var(--gold);
    transform:translateY(-10px);
    background:rgba(212,175,55,.05);
}

.head-img{
    width:100%;
    height:250px;
    object-fit:contain;
    margin-bottom:20px;
    filter:drop-shadow(0 0 10px rgba(212,175,55,.3));
}

.dimension-tag{
    display:inline-block;
    border:1px solid var(--gold);
    color:var(--gold);
    padding:5px 15px;
    border-radius:5px;
    font-weight:600;
    margin-bottom:15px;
}

/* Product */
.product-info{
    max-width:800px;
    margin:80px auto;
    text-align:center;
    padding:40px;
    border-top:1px solid var(--glass);
}

.gold-link{
    color:var(--gold);
    text-decoration:none;
    font-weight:bold;
    font-size:1.2rem;
    border-bottom:1px solid var(--gold);
}

/* FAQ */
.faq-grid{
    max-width:900px;
    margin:60px auto;
    padding:0 20px;
}

.faq-item{
    background:rgba(255,255,255,0.03);
    margin-bottom:15px;
    padding:25px;
    border-radius:10px;
}

.faq-item h3{
    color:var(--gold);
    font-size:1.1rem;
}

@media(max-width:768px){
    .hero-content h1{font-size:2rem;}
}
