body {
    background: #000000;
}

.footer {
    background: #000000;
}

.store-hero {
    background: transparent;
    margin-top: 100px;
    padding: 40px 0 20px;
}

.store-hero-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.store-hero-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    overflow: hidden;
}

.store-hero-text {
    position: absolute;
    bottom: 30px;
    right: 40px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.store-section {
    background: transparent;
    padding: 40px 0 80px;
}

.store-section h2 {
    text-align: left;
    font-size: 28px;
    margin: 30px 0 24px;
    color: #ffffff;
}

.store-card {
    background: #0b0b0f;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 26px;
    display: flex;
    flex-direction: row;
    min-height: 280px;
    border: 1px solid #323743;
}

.store-card.reverse {
    flex-direction: row-reverse;
}

.store-card-img {
    width: 50%;
    min-height: 280px;
    background-size: cover;
    background-position: center;
}

.store-card-content {
    width: 50%;
    padding: 34px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-card-label {
    color: #ffd700;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.store-card-title {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 14px;
}

.store-card-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .store-hero-text {
        bottom: 16px;
        right: 20px;
        font-size: 14px;
    }

    .store-hero-text .hero-text-highlight {
        font-size: 18px;
    }

    .store-section h2 {
        text-align: left;
        font-size: 24px;
        margin-top: 18px;
    }

    .store-card,
    .store-card.reverse {
        flex-direction: column;
    }

    .store-card-img,
    .store-card-content {
        width: 100%;
    }

    .store-card-img {
        min-height: 200px;
    }

    .store-card-content {
        padding: 24px;
    }
}
