:root {
    --primary-color: #1a5632; /* Deep green from reference */
    --secondary-color: #f7f1eb; /* Soft beige background */
    --accent-color: #d1b894; /* Gold/Tan accent */
    --text-dark: #333333;
    --text-muted: #777777;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: #f7f1eb;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* Category Pills */
.category-pill {
    background: white;
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
}

.category-pill:hover {
    transform: translateY(-5px);
}

.category-pill img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Product Cards */
.product-card {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: transparent;
}

.product-image {
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
    width: 100%;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff5252;
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
}

.product-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.product-old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 5px;
}

/* Section Headings */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
