/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f0f0f0;
    color: #fff;
}

/* Header */
.navbar {
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #00ffc3;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    color: #00ffc3;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.navbar ul li a.active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Layout */
.container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 30px;
}

/* Sidebar */
.sidebar {
    flex: 1;
    min-width: 240px;
}

.shop-card {
    background-color: #000;
    padding: 20px 10px;
    margin-bottom: 15px;
    text-align: center;
}

.shop-card a {
    color: #00ffc3;
    text-decoration: underline;
    font-weight: bold;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
}

.shop-card p {
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #fff;
}

/* Main Content */
.content {
    flex: 3;
}

.hero-image-wrapper {
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-image {
    width: 100%;
    display: block;
}

.info-block {
    background-color: #000;
    padding: 40px;
}

.info-block p {
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.info-block p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222;
    margin-top: 60px;
}

.footer-left p,
.footer-contact p {
    color: #00ffc3;
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-left a,
.footer-contact a {
    color: #00ffc3;
    text-decoration: underline;
}

.footer-center,
.footer-socials,
.social-icons {
    display: flex;
    gap: 12px;
}

.social-box,
.social-btn,
.social-icon {
    border: 1.5px solid #00ffc3;
    color: #00ffc3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
}

.footer-right p {
    color: #00ffc3;
    font-size: 12px;
}

/* Responsive Grid */
@media (max-width: 850px) {
    .container {
        flex-direction: column;
    }
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
}
