/* assets/css/style.css */
:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #2c3e50; /* Dark Blue Gray */
    --light-bg: #fdfdfd;
    --dark-bg: #1a1a1a;
    --text-color: #333;
    --text-light: #777;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.navbar {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #c09d2d;
    border-color: #c09d2d;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border-radius: 0;
    padding: 10px 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
}

.card-product {
    border: none;
    transition: 0.3s;
    height: 100%;
}

.card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card-product .card-img-top {
    border-radius: 0;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.card-product .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card-product .price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.sticky-whatsapp:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
}

footer {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 60px 0 30px;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

.category-chip {
    display: inline-block;
    padding: 5px 15px;
    background: #f0f0f0;
    border-radius: 20px;
    margin-right: 5px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.category-chip:hover, .category-chip.active {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/hero-bg.jpg'); /* Placeholder */
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
