.mhs-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    font-family: sans-serif;
}
.mhs-hero-area {
    background: #F7EFE6;
    position: relative;
}
.mhs-slide {
    display: flex;
    flex-direction: column-reverse; /* Changed back to ensure image is on top on mobile if desired, or column if you want image on top. Usually, hero puts text below image on mobile */
    align-items: center;
    background: #F7EFE6;
}
.mhs-slide-content {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    z-index: 2; 
    position: relative;
    /* Added to prevent absolute positioning overlap issues */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mhs-slide-image {
    width: 100%;
    height: var(--mhs-img-height-mobile, 400px);
    position: relative;
    background: #eaeaea;
    z-index: 1;
}
.mhs-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--mhs-img-object-position, top center);
    display: block;
}
.mhs-label {
    font-size: 13px;
    letter-spacing: 2px;
    color: #8A6A4F;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.mhs-main-heading {
    font-size: clamp(32px, 10vw, 54px);
    font-family: 'Playfair Display', serif;
    margin: 0 0 10px;
    color: #171313;
    line-height: 1.15;
}
.mhs-subheading {
    font-size: clamp(18px, 5vw, 24px);
    color: #5B5552;
    margin: 0 0 15px;
    font-weight: 400;
}
.mhs-desc {
    font-size: 15px;
    color: #5B5552;
    margin: 0 0 25px;
    line-height: 1.6;
}
.mhs-dyn-title {
    font-weight: bold;
    color: #171313;
    margin-bottom: 5px;
}
.mhs-dyn-price {
    color: #8A6A4F;
    font-weight: 600;
    margin-bottom: 20px;
}
.mhs-btn-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.mhs-btn {
    display: inline-flex;
    align-items: center;
    background: #1D1018;
    color: #FFFFFF;
    padding: 14px 28px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mhs-btn:hover {
    background: #3a2224;
}

/* Hover Animations */
.mhs-btn-hover-grow .mhs-btn:hover {
    transform: scale(1.05);
}
.mhs-btn-hover-shrink .mhs-btn:hover {
    transform: scale(0.95);
}
@keyframes mhs-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.mhs-btn-hover-pulse .mhs-btn:hover {
    animation: mhs-pulse 1s infinite;
}

.mhs-sec-btn {
    display: inline-block;
    color: #171313;
    text-decoration: underline;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.mhs-sec-btn:hover {
    color: #8A6A4F;
}

/* Trust Row Mobile Default */
.mhs-trust-row {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    background: #ffffff;
    padding: 15px 5px;
    border-top: 1px solid #DED0C2;
}

.mhs-trust-item {
    text-align: center;
    flex: 1 1 50%; 
    padding: 10px 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mhs-trust-icon-img {
    max-width: 24px; 
    height: auto;
    margin-bottom: 6px;
    display: block;
}

.mhs-trust-text {
    width: 100%;
}

.mhs-trust-text strong {
    display: block;
    font-size: 10px;
    color: #171313;
    margin-bottom: 2px;
    font-weight: 600;
    line-height: 1.2;
}

.mhs-trust-text span {
    display: block;
    font-size: 9px;
    color: #5B5552;
    line-height: 1.1;
}

.mhs-pagination {
    margin-top: 15px;
    position: relative;
    bottom: auto !important;
}
.swiper-pagination-bullet-active {
    background: #171313 !important;
}
.mhs-prev, .mhs-next {
    color: #171313;
}

@media (min-width: 768px) {
    .mhs-slide {
        flex-direction: row;
        min-height: 600px;
    }
    .mhs-slide-content {
        width: 50%;
        padding: 60px 5% 60px 10%;
    }
    .mhs-slide-image {
        width: 50%;
        height: var(--mhs-img-height-desktop, 600px);
        min-height: 600px;
    }
    .mhs-trust-row {
        flex-wrap: nowrap !important;
        overflow: visible !important;
    }
    .mhs-trust-item {
        flex: 1 1 25% !important;
        border-right: 1px solid #f0f0f0;
    }
    .mhs-trust-item:last-child {
        border-right: none;
    }
    .mhs-trust-icon-img {
        max-width: 36px;
    }
    .mhs-trust-text strong {
        font-size: 13px;
        white-space: normal;
    }
    .mhs-trust-text span {
        font-size: 12px;
        white-space: normal;
    }
}
