body {
    margin: 0;
    color: #171717;
    background: #fff;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    padding: 0 32px;
    border-bottom: 1px solid #e5e5e5;
}

.site-name {
    color: inherit;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.site-nav a {
    color: #404040;
    font-size: 14px;
    text-decoration: none;
}

.site-nav a.active,
.site-nav a:hover {
    color: #171717;
    text-decoration: underline;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.location-selector label {
    color: #525252;
    font-size: 13px;
}

.location-selector select,
.location-selector button {
    height: 36px;
    border: 1px solid #d4d4d4;
    border-radius: 6px;
    background: #fff;
    color: #171717;
    font: inherit;
}

.location-selector select {
    min-width: 150px;
    padding: 0 10px;
}

.location-selector button {
    padding: 0 14px;
    cursor: pointer;
}

.hero,
.product-section,
.product-detail,
.page-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 24px;
}

.eyebrow {
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.product-card a {
    color: inherit;
    text-decoration: none;
}

.product-card h3 {
    margin-bottom: 6px;
}

.availability {
    margin: 6px 0 0;
    font-size: 13px;
}

.availability.in-stock {
    color: #15803d;
}

.availability.out-of-stock {
    color: #b91c1c;
}

.product-card img,
.product-detail img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f5f5f5;
}

.price {
    font-weight: 700;
}