:root {
    --primary-color: #232f3e;
    --secondary-color: #febd69;
    --text-color: #111;
    --bg-color: #f3f3f3;
    --card-bg: #fff;
    --font-family: 'Inter', sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.site-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

nav a {
    color: #ccc;
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #fff;
}

/* Hero */
.hero {
    text-align: center;
    padding: 3rem 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.product-image {
    height: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.product-description {
    font-size: 0.9rem;
    color: #555;
    flex-grow: 1;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #111;
    border: 1px solid #a88734;
}

.btn-primary:hover {
    background-color: #f9d8a3;
}

.btn-secondary {
    background-color: #e7e9ec;
    color: #111;
    border: 1px solid #adb1b8;
}

.btn-secondary:hover {
    background-color: #d0d2d6;
}

/* Load More */
.load-more-container {
    text-align: center;
    padding: 2rem 0;
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: #ccc;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 1rem;
    color: #999;
}
