/* --- Base Resets & Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&display=swap');

:root {
    --primary: #000000;
    --secondary: #ffffff;
    --border: #000000;
    --font-heading: 'Supreme', 'Inter', system-ui, sans-serif;
    --font-body: 'Neue Haas Grotesk', 'Inter', system-ui, sans-serif;
}

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

body, html {
    font-family: var(--font-body);
    background-color: var(--secondary);
    color: var(--primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-black {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
}

/* --- MINIMALIST B&W GRID WITH LINES --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.product-card {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0;
    background: #fff;
    transition: background 0.2s ease;
}

.product-card:hover {
    background: #fafafa;
}

.product-image-wrap {
    aspect-ratio: 1/1; /* Square for simple look */
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Force B&W for premium look */
    transition: filter 0.5s ease;
}

.product-card:hover .product-image-wrap img {
    filter: grayscale(0%);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-name {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.product-category {
    font-size: 9px;
    opacity: 0.5;
    letter-spacing: 0.1em;
}

.product-price {
    font-size: 11px;
    font-weight: 900;
    margin-top: 0.5rem;
}

/* Responsive Grid */
@media (min-width: 768px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}

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

/* Layout Utilities */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

nav {
    border-bottom: 1px solid var(--border);
}

.blend-multiply { mix-blend-mode: multiply; }
.blend-screen { mix-blend-mode: screen; }
