/* assets/css/style.css */

:root {
    --black: #0a0a0a;
    --gold: #C5A059; /* Premium muted gold */
    --gold-hover: #D4AF37;
    --white: #ffffff;
    --off-white: #fafafa;
    --text-gray: #666666;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--black);
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* === Navbar === */
.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: var(--font-heading);
    color: var(--gold) !important;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link {
    color: var(--white) !important;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-icons a {
    color: var(--white);
    font-size: 1.2rem;
}

.nav-icons a:hover {
    color: var(--gold);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Hero Section === */
.hero {
    position: relative;
    height: 100vh;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero .subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero p {
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Buttons */
.btn-premium {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--gold);
    padding: 15px 45px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.btn-premium:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* === Product Section === */
.featured-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title h2 {
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto;
}

.product-card {
    background: transparent;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-action {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    transition: all 0.4s ease;
    opacity: 0;
}

.product-card:hover .product-action {
    bottom: 0;
    opacity: 1;
}

.btn-add-cart {
    width: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    color: var(--white);
    border: none;
    padding: 15px 0;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-add-cart:hover {
    background-color: var(--gold);
    color: var(--black);
}

.product-info {
    padding: 20px 0;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-title a {
    color: var(--black);
}

.product-title a:hover {
    color: var(--gold);
}

.product-price {
    color: var(--text-gray);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* === Footer === */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-brand {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #999;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    color: var(--white);
    margin: 0 10px;
}

.social-links a:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    margin-top: 40px;
    color: #666;
    font-size: 0.85rem;
}