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

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Roboto Mono', monospace;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 2rem;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header,
footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #444;
}

header {
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #444;
}

footer a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FFFFFF;
}

.product-listing {
    text-align: center;
    padding: 2rem 0;
}

.product-listing h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(2rem, 8vw, 4rem);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-item {
    background-color: #1a1a1a;
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 3px;
}

.product-item h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-item p {
    font-size: 0.9rem;
    color: #ccc;
}

.site-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(4rem, 15vw, 10rem);
    text-transform: uppercase;
    letter-spacing: -0.1em;
    line-height: 1;
    
    animation: pulse 5s ease-in-out infinite;
}

.subheading {
    margin-top: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #FFFFFF;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.8;
    }
}
