/* NULLED THEME - MINIMALIST STYLE */
/* Zero Radius Policy */
* {
    border-radius: 0 !important;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #333333;
    --bg-color: #ffffff;
    --text-color: #000000;
    --text-muted: #666666;
    --border-color: #e5e5e5;
    --font-heading: 'Be Vietnam Pro', sans-serif;
    --font-body: 'Be Vietnam Pro', sans-serif;
    --container-width: 1440px;
    --spacing-unit: 1rem;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

/* Button Reset & Style */
button, .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 0 !important; /* Enforcement */
}

button:hover, .btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Form Elements */
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    background: #fff;
    border-radius: 0 !important; /* Enforcement */
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 20px;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 60px 0;
}

footer a {
    color: #ccc;
}

footer h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Product Card */
.product-card {
    position: relative;
    background: #fff;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.product-info {
    padding: 15px 0;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 5px 0;
    text-transform: uppercase;
}

.product-price {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Specific HBX-like overrides */
.thin-border {
    border: 1px solid #eee;
}

.uppercase {
    text-transform: uppercase;
}

.bg-black {
    background-color: #000;
    color: #fff;
}

.text-white {
    color: #fff;
}