html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.shop-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.main-nav {
    background: rgba(18, 18, 18, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-content {
    flex: 1;
    padding-top: 80px;
    padding-bottom: 100px;
}

.shop-container {
    padding: 2rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    margin-top: 2rem;
    text-align: center;
    font-size: 2.5rem;
}

.shop-tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.shop-tab.active {
    background: linear-gradient(137.44deg, #d6268e -44.76%, #ff4432 91.94%);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.shop-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.shop-card:hover {
    transform: translateY(-5px);
}

.shop-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.shop-card-content {
    padding: 1.5rem;
    text-align: center;
}

.shop-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.shop-card-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(137.44deg, #d6268e -44.76%, #ff4432 91.94%);
    color: white;
    padding: 0.75rem;
    border-radius: 5rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    height: 3rem;
    width: 10.625rem;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.shop-card-button:hover {
    transform: scale(1.05);
}

.closeButton_button__oAlug {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border-radius: 50%;
    transition: all .2s cubic-bezier(.4,0,.2,1);
    min-width: 1.5rem;
    min-height: 1.5rem;
    opacity: .4;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.closeButton_button__oAlug:hover {
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.modal-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.modal-input {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border-radius: 0.5rem;
    border: none;
    background: #333;
    color: white;
}

.modal-button {
    background: linear-gradient(137.44deg, #d6268e -44.76%, #ff4432 91.94%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    cursor: pointer;
    font-weight: 600;
}

.error-message {
    color: #ff4432;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    text-align: left;
    display: none;
}

.footer {
    background: url('/assets/images/footer_bg.4e632182.png') no-repeat center center;
    background-size: cover;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    margin-top: auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

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

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 70px;
        padding-bottom: 80px;
    }
    .shop-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    .shop-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer {
        padding: 2rem 0;
    }
}