.hero-banner {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 400px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 4px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #2c2c2c;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.shop-now-btn {
    background-color: #2c2c2c;
    color: white;
    padding: 12px 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
}

.shop-now-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .hero-content {
        right: 5%;
        max-width: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 500px;
    }

    .hero-content {
        right: 50%;
        transform: translate(50%, -50%);
        width: 90%;
        max-width: 400px;
        text-align: center;
    }
}