:root {
    --primary: #1a1a1a;
    --gold: #c9a96e;
    --gold-light: #e0c992;
    --cream: #f5f0e8;
    --white: #ffffff;
    --gray: #f8f8f8;
    --text: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Georgia', serif;
    color: var(--text);
    background: var(--white);
}

.announcement-bar {
    background: var(--primary);
    color: var(--gold-light);
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.special-offer {
    background: #8b0000;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-bottom: 2px solid var(--gold);
}

.logo h1 { color: var(--primary); font-size: 28px; }

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 15px;
    padding: 5px 10px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.hero h2 { font-size: 42px; color: var(--primary); margin-bottom: 20px; }

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 16px;
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: var(--gray);
}

.view-toggle button {
    background: none;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.view-toggle button.active { color: var(--gold); }

.filters select {
    padding: 8px 15px;
    margin-left: 10px;
    border: 1px solid #ddd;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 50px;
}

.products-grid.list-view { grid-template-columns: 1fr; }

.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card:hover .product-image img { transform: scale(1.05); }

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.product-info { padding: 20px; }

.product-name { font-size: 20px; margin-bottom: 12px; color: var(--primary); }

.product-description { color: #666; margin-bottom: 15px; font-size: 14px; }

.price-section { margin-bottom: 15px; }

.original-price { text-decoration: line-through; color: #999; font-size: 16px; }

.sale-price { color: #cc0000; font-size: 28px; font-weight: bold; }

.regular-price { color: var(--primary); font-size: 28px; font-weight: bold; }

.action-buttons { display: flex; gap: 10px; }

.call-btn, .whatsapp-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
}

.call-btn { background: var(--primary); }
.call-btn:hover { background: #333; }

.whatsapp-btn { background: #25D366; }
.whatsapp-btn:hover { background: #128C7E; }

.inquire-btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
}

.close {
    position: absolute;
    right: 20px; top: 15px;
    font-size: 28px;
    cursor: pointer;
}

#contactForm input, #contactForm textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
}

#contactForm textarea { height: 100px; }

.contact-options { display: flex; gap: 10px; margin: 15px 0; }

.submit-inquiry {
    width: 100%;
    padding: 12px;
    background: var(--gold);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

@media (max-width: 768px) {
    .main-nav { flex-direction: column; gap: 15px; }
    .products-grid { grid-template-columns: 1fr; padding: 20px; }
    .controls { flex-direction: column; gap: 15px; padding: 20px; }
}