.hero-slider-container {
    position: relative;
    width: 100%;
    height: 60vh;
    border-radius: 30px;
    overflow: hidden;
    background-color: var(--background-color);
    margin: 0 auto;
    max-width: 95%;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 5%;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-content {
    display: flex;
    justify-content: center;
    gap: 5rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 5;
    height: 100%;
    padding: 0 40px;
}

.left-content {
    flex: 1;
    max-width: 600px;
    padding-right: 20px;
    text-align: left;
    padding-left: 40px;
}

.region {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.main-heading {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--text-color);
}

.description {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    color: var(--text-light);
}

.view-products-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.view-products-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.view-products-btn i {
    font-size: 1rem;
}

.right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    max-height: 600px;
}

.meat-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 600px;
    border-radius: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-left: -50px;
    display: block;
    background-color: transparent !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.slider-nav {
    position: absolute;
    width: calc(100% - 80px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.slider-prev i,
.slider-next i {
    font-size: 1.2rem;
}

.slider-indicators {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(201, 75, 75, 0.5);
}

.scroll-down {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 10;
    color: var(--text-color);
    font-size: 1.5rem;
}

.scroll-down i {
    font-size: 2rem;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@media (max-width: 1400px) {
    .hero-content {
        gap: 3rem;
    }
    
    .left-content {
        padding-left: 20px;
    }
    
    .main-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        max-width: 1100px;
        gap: 2rem;
        padding: 0 30px;
    }
    
    .meat-image {
        max-width: 750px;
        
    }
    
    .main-heading {
        font-size: 3.2rem;
    }
}

@media (max-width: 1024px) {
    .hero-slider-container {
        height: auto;
        min-height: 80vh;
        padding-top: 0;
        max-width: 98%;
    }
    
    .hero-content {
        padding: 0 25px;
    }
    
    .main-heading {
        font-size: 2.8rem;
    }
    
    .meat-image {
        max-width: 450px;
        margin-left: 0;
    }
    
    .left-content {
        padding-left: 10px;
    }
    
    .slider-nav {
        width: calc(100% - 40px);
    }
    
    .description {
        font-size: 1.3rem;
    }
}

@media (max-width: 900px) {
    .hero-content {
        gap: 1rem;
    }
    
    .meat-image {
        max-width: 400px;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        padding-top: 0;
        height: 100vh;
        max-height: 700px;
        border-radius: 20px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        height: 100%;
        gap: 1rem;
        padding: 20px;
    }
    
    .left-content {
        margin: 0 auto;
        padding: 20px 15px;
        max-width: 100%;
        order: 0;
        text-align: center;
    }
    
    .right-content {
        order: 1;
        height: auto;
        max-height: 50%;
        margin: 0 auto;
        width: 100%;
    }
    
    .meat-image {
        max-width: 350px;
        margin: 0 auto;
        background-position: center;
    }
    
    .description {
        margin: 0 auto 1.5rem;
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .main-heading {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .slider-indicators {
        bottom: 5%;
    }
    
    .slider-nav {
        width: calc(100% - 30px);
    }
}

@media (max-width: 576px) {
    .hero-slider-container {
        border-radius: 15px;
        max-height: 600px;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .left-content {
        padding: 15px 10px;
    }
    
    .meat-image {
        max-width: 300px;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }
}
.meat-image > img,
.meat-image > svg,
.meat-image > picture,
.meat-image > picture > img,
.meat-image > picture > source,
.meat-image > div {
    border-radius: 40px !important;
}
@media (max-width: 480px) {
    .hero-slider-container {
        max-height: 550px;
        border-radius: 10px;
    }
    
    .left-content {
        padding: 10px 5px;
    }
    
    .meat-image {
        max-width: 250px;
    }
    
    .main-heading {
        font-size: 1.6rem;
    }
    
    .region {
        font-size: 1rem;
    }
    
    .description {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .view-products-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .slider-indicators {
        bottom: 3%;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
    }
    
    .slider-prev i,
    .slider-next i {
        font-size: 1rem;
    }
}

.hero-slide:first-child {
    opacity: 1;
    visibility: visible;
}