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

body {
    background: #fff;
    color: #000;
    font-family: "Times New Roman", Times, serif;
    font-size: 11px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Layout */
.layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 160px;
    padding: 30px 28px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #f0f0f0;
    background: #fff;
    z-index: 100;
}

.logo {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nav a {
    font-size: 11px;
    letter-spacing: 0.04em;
    color: #666;
    transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
    color: #000;
}

/* Main content */
.main {
    flex: 1;
    margin-left: 160px;
}

/* Home */
.home {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.home-image {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
}

/* Shop */
.shop {
    padding: 60px 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
    max-width: 800px;
}

.product {
    cursor: pointer;
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 10px;
    background: #f7f7f7;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product:hover .product-image img {
    transform: scale(1.03);
}

.product-name {
    font-size: 11px;
    margin-bottom: 3px;
}

.product-price {
    font-size: 10px;
    color: #888;
}

/* About */
.about {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.about.center {
    text-align: center;
}

.about-inner {
    width: 100%;
}

.about-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.about-text {
    font-size: 13px;
    line-height: 1.8;
    color: #000;
    font-style: italic;
}

.about-location {
    margin-top: 30px;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #aaa;
    text-transform: uppercase;
}

/* Contact */
.contact {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px;
}

.contact-link {
    display: block;
    font-size: 11px;
    color: #666;
    margin-bottom: 14px;
}

.contact-link:hover {
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 20px;
    }

    .main {
        margin-left: 0;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
