:root {
    --brand-green: #1B3022;
    --brand-cream: #F5F5F1;
    --brand-accent: #2D5A27;
    --brand-dark: #0D1A12;
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--brand-cream);
    color: var(--brand-green);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27, 48, 34, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 1.5rem;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 1.25rem;
}

.nav-menu {
    display: none;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        gap: 2.5rem;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(27, 48, 34, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-link:hover {
    color: var(--brand-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-container {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .search-container {
        display: block;
    }
}

.search-input {
    background: rgba(27, 48, 34, 0.05);
    border: none;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    padding-right: 2.5rem;
    font-size: 0.875rem;
    width: 12rem;
}

/* Footer */
footer {
    background-color: var(--brand-cream);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(27, 48, 34, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--brand-green);
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(27, 48, 34, 0.7);
    font-size: 0.875rem;
}

/* Common Components */
.btn-primary {
    background-color: var(--brand-green);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--brand-accent);
    transform: translateY(-2px);
}

.product-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(27, 48, 34, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(27, 48, 34, 0.1);
}

.product-img {
    height: 18rem;
    overflow: hidden;
    position: relative;
    background: #fdfdfd;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card:hover .product-overlay {
    opacity: 1 !important;
}

.product-details {
    padding: 1.5rem;
}

.flex { display: flex; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-6 { gap: 1.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

