
/* Exact .org Design System */
:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Adjustments */
.site-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Shop Page Adjustments */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-price {
    font-weight: bold;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.button.add_to_cart_button {
    background: var(--primary) !important;
    color: white !important;
    width: 100%;
    text-align: center;
    padding: 12px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
}

.button.add_to_cart_button:hover {
    background: var(--primary-dark) !important;
}
