:root {
    --primary-gold: #fbb034;
    --primary-gold-light: #ffdd00;
    --primary-green: #2e7d32;
    --primary-green-dark: #1b5e20;
    --accent-brown: #4e342e;
    --bg-light: #fdfbf7;
    --text-dark: #333333;
    --text-light: #ffffff;
    --card-shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Typography Helpers */
h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
}

/* Header */
.header {
    background-color: var(--accent-brown);
    color: var(--text-light);
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 8px solid var(--primary-gold);
}

.logo {
    display: inline-block;
}

.logo h1 {
    font-size: 3rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-text-green {
    color: var(--primary-green-dark);
    background-color: var(--primary-gold-light);
    padding: 0 10px;
    font-size: 2.2rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px;
}

.logo-text-gold {
    color: var(--primary-gold-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-size: 4rem;
}

.logo-subtitle {
    margin-top: 5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Banner */
.notification-banner {
    background-color: var(--primary-green);
    color: var(--text-light);
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content .icon {
    font-size: 1.5rem;
}

.banner-content p {
    font-size: 1.1rem;
    font-weight: 500;
}

.banner-content strong {
    color: var(--primary-gold-light);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-green);
    color: var(--text-light);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    border-bottom: 4px solid var(--primary-gold);
}

.product-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-green);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 15px;
}

.product-action {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary-gold);
    color: var(--accent-brown);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.product-action:hover {
    background-color: var(--primary-gold-light);
}

/* Footer */
.footer {
    background-color: var(--accent-brown);
    color: #bdbdbd;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 4px solid var(--primary-green);
}

.footer p {
    margin-bottom: 5px;
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.6); 
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 40px 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    border-top: 6px solid var(--primary-gold);
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--accent-brown);
    text-decoration: none;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.modal h2 {
    color: var(--primary-green-dark);
    margin-bottom: 15px;
}

.modal p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.modal-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-brown);
    margin-bottom: 10px;
    background-color: var(--primary-gold-light);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
}

.modal-subtext {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.2rem;
    }
    .logo-text-gold {
        font-size: 3rem;
    }
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
}
