body {
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333333;
    line-height: 1.5;
    font-size: 16px;
}
header {
    background-color: #ffffff;
    padding: 12px 24px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    max-width: 150px;
    height: auto;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
}
nav a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}
nav a:hover {
    text-decoration: underline;
    color: #3498db;
}
nav a.active {
    font-weight: 700;
    color: #3498db;
}
.store-locations {
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 24px;
    gap: 32px;
}
.store-link {
    flex: 1;
    max-width: 50%;
    text-align: center;
    text-decoration: none;
    color: #333333;
    background: #ffffff;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.store-link:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.store-link img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 12px 0;
}
.store-link h3 {
    margin: 0 0 8px;
    font-size: 1.4em;
    font-weight: 500;
}
.store-link .phone {
    font-size: 0.9em;
    color: #3498db;
    margin: 8px 0;
    text-decoration: none;
    display: block;
}
.store-link .phone:hover {
    text-decoration: underline;
    color: #2ecc71;
}
.store-link .address {
    font-size: 0.9em;
    color: #3498db;
    margin: 8px 0;
    text-decoration: none;
    display: block;
}
.store-link .address:hover {
    text-decoration: underline;
    color: #2ecc71;
}
.store-link .shop-button {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 24px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease;
}
.store-link .shop-button:hover {
    background-color: #2ecc71;
}
footer {
    background-color: #f9f9f9;
    color: #555555;
    text-align: center;
    padding: 24px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9em;
}
footer a {
    color: #3498db;
    margin: 0 12px;
}
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.age-gate-content {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.age-gate-content h2 {
    margin: 0 0 16px;
    font-size: 1.8em;
    font-weight: 500;
    color: #333333;
}
.age-gate-content p {
    margin: 0 0 24px;
    font-size: 1.1em;
    color: #555555;
}
.age-gate-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.age-button {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.age-button-yes {
    background-color: #3498db;
    color: #ffffff;
}
.age-button-yes:hover {
    background-color: #2ecc71;
}
.age-button-no {
    background-color: #e74c3c;
    color: #ffffff;
}
.age-button-no:hover {
    background-color: #c0392b;
}
@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: center;
    }
    .logo {
        margin-bottom: 12px;
    }
    nav ul {
        flex-direction: column;
        gap: 12px;
    }
    .store-locations {
        flex-direction: column;
        gap: 24px;
    }
    .store-link {
        max-width: 100%;
    }
    .age-gate-content {
        padding: 16px;
        max-width: 80%;
    }
    .age-gate-buttons {
        flex-direction: column;
        gap: 12px;
    }
}