/* Prevent horizontal scrolling, allow vertical scrolling */
html, body {
    width: 100%;
    min-height: 100vh;
    font-family: 'Cinzel', serif;
    background: #0f0f1f;
    color: #ffffff;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
}

/* HEADER */
.site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a2e;
    padding: 1.2rem 0;
}

/* NAVIGATION MENU */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-nav ul li {
    display: inline;
}

.main-nav a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 1.8rem;
    font-family: 'Cinzel', serif;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #e8c547;
}

.active {
    font-weight: 700;
    color: #e8c547;
}

/* SHOP PAGE CONTAINER */
.shop-container {
    text-align: center;
    padding: 3rem 0;
}

.shop-container h1 {
    font-size: 2.5rem;
    font-family: 'Cinzel', serif;
    color: #e8c547;
    margin-bottom: 1rem;
}

.shop-container p {
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
    margin-bottom: 2rem;
}

/* SHOP ITEMS GRID */
.shop-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem;
}

/* INDIVIDUAL ITEM CONTAINER */
.shop-item {
    width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.shop-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.shop-item h2 {
    font-size: 1.4rem;
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.shop-item p {
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
}

/* AMAZON AFFILIATE BUTTON */
.buy-button {
    display: inline-block;
    background: #e8c547;
    color: #0f0f1f;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    margin-top: 0.75rem;
}

.buy-button:hover {
    background: #ffd700;
}

/* FOOTER */
.site-footer {
    background: #1a1a2e;
    text-align: center;
    padding: 1rem;
    flex-shrink: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .shop-items {
        flex-direction: column;
        align-items: center;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
