.hero-overlay-text .hero__text span {
    color: #016f73;
}

.hero-overlay-text .hero__text h1 {
    color: #abe10c;
}

.hero-overlay-text .hero__text p {
    color: #016f73;
}

.hero-overlay-text .primary-btn {
    color: #ffffff;
    background: #016f73;
}

.hero-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-wrapper img.hero-side-img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.hero-overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 3rem;
    background: linear-gradient(to right, rgb(0 187 195) 0%, rgb(2 115 94 / 70%) 70%, transparent 100% 100%);
}

/* Mobile: stacked layout */
@media (max-width: 768px) {
    .hero-wrapper {
        display: flex;
        flex-direction: column;
    }

    .hero-wrapper img.hero-side-img {
        position: relative;
        width: 100%;
        height: 250px;
        object-fit: cover;
        object-position: right center;
        order: 2;
    }

    .hero-overlay-text {
        position: relative;
        width: 100%;
        height: auto;
        background: #ffffff;
        padding: 2rem 1.5rem;
        order: 1;
    }

    .hero-overlay-text .hero__text h1 {
        font-size: 2rem;
        line-height: 2.4rem;
    }

    .hero-overlay-text .hero__text span {
        font-size: 12px;
        color: #2fb9c4;
        letter-spacing: 2px;
    }

    .hero-overlay-text .hero__text p {
        color: #6f6f6f;
    }    

    .hero-overlay-text .primary-btn {
        color: #ffffff;
        background: #2fb9c4;
    }
}

/* How to Buy Section */
.howtobuy-section {
    padding: 60px 0;
    background: linear-gradient(
        135deg,
        rgba(2, 111, 115, 0.05) 0%,
        rgba(47, 185, 196, 0.05) 100%
    );
}

.howtobuy__header {
    text-align: center;
    margin-bottom: 50px;
}

.howtobuy__label {
    display: inline-block;
    color: #2fb9c4;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.howtobuy__title {
    font-size: 36px;
    font-weight: 700;
    color: #016f73;
    margin-bottom: 20px;
    line-height: 1.2;
}

.howtobuy__desc {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps Container */
.howtobuy__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.howtobuy__step {
    display: flex;
    justify-content: center;
}

/* Step Card */
.step__card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    /* transition: all 0.3s ease;
            border-top: 4px solid #abe10c; */
    position: relative;
    overflow: hidden;
}

.step__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(47, 185, 196, 0.03) 0%,
        rgba(171, 225, 12, 0.03) 100%
    );
    pointer-events: none;
}

.step__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(2, 111, 115, 0.15);
}

.step__number {
    font-size: 48px;
    font-weight: 700;
    color: #2fb9c4;
    margin-bottom: 15px;
    opacity: 0.3;
    position: relative;
    z-index: 1;
}

.step__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2fb9c4 0%, #016f73 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step__icon i {
    color: white;
    font-size: 28px;
}

.step__title {
    font-size: 18px;
    font-weight: 700;
    color: #016f73;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.step__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Footer */
.howtobuy__footer {
    text-align: end;
}

.howtobuy__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #016f73;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.howtobuy__link:hover {
    color: #2fb9c4;
    border-bottom-color: #abe10c;
}

.howtobuy__link i {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .howtobuy__title {
        font-size: 32px;
    }

    .howtobuy__steps {
        gap: 15px;
    }

    .step__card {
        padding: 25px 20px;
    }

    .step__number {
        font-size: 42px;
    }

    .step__icon {
        width: 65px;
        height: 65px;
    }

    .step__icon i {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .howtobuy-section {
        padding: 50px 0;
    }

    .howtobuy__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .howtobuy__title {
        font-size: 28px;
    }

    .step__card {
        padding: 20px 15px;
    }

    .step__number {
        font-size: 36px;
    }

    .step__icon {
        width: 60px;
        height: 60px;
    }

    .step__icon i {
        font-size: 24px;
    }

    .step__title {
        font-size: 16px;
    }

    .step__desc {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .howtobuy-section {
        padding: 40px 0;
    }

    .howtobuy__header {
        margin-bottom: 40px;
    }

    .howtobuy__title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .howtobuy__desc {
        font-size: 14px;
    }

    .howtobuy__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .step__card {
        padding: 18px 12px;
    }

    .step__number {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .step__icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .step__icon i {
        font-size: 22px;
    }

    .step__title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .step__desc {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .howtobuy-section {
        padding: 30px 0;
    }

    .howtobuy__header {
        margin-bottom: 30px;
    }

    .howtobuy__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .howtobuy__desc {
        font-size: 13px;
    }

    .howtobuy__steps {
        /* grid-template-columns: 1fr; */
        gap: 10px;
    }

    .step__card {
        padding: 15px 12px;
    }

    .step__number {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .step__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .step__icon i {
        font-size: 20px;
    }

    .step__title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .step__desc {
        font-size: 11px;
    }
}

/* Banner Section */
.banner-section {
    padding: 30px 0;
    background: #fff;
}

/* Banner Slider */
.banner__slider {
    display: flex;
    gap: 10px;
}

.banner__slide {
    width: 100%;
    flex: 1;
}

.banner__pic {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    aspect-ratio: 4 / 2;
    background: #f0f0f0;
}

.banner__pic img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.banner__pic a {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.banner__pic a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner__pic:hover img {
    transform: scale(1.05);
}

/* Owl Carousel Customization */
.banner__slider {
    position: relative;
}

.banner__slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
    pointer-events: none;
}

.banner__slider .owl-nav button {
    background: rgba(2, 111, 115, 0.6) !important;
    color: white !important;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    pointer-events: all;
}

.banner__slider .owl-nav button:hover {
    background: #2fb9c4 !important;
    transform: scale(1.1);
}

.banner__slider .owl-nav button span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner__slider .owl-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.banner__slider .owl-dot {
    width: 12px;
    height: 12px;
    background: #d9d9d9 !important;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.banner__slider .owl-dot.active {
    background: #016f73 !important;
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 3px rgba(2, 111, 115, 0.3);
}

/* Responsive Banner */
@media (max-width: 992px) {
    .banner__pic {
        aspect-ratio: 3 / 2;
    }

    .banner__slider .owl-nav button {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .banner-section {
        padding: 20px 0;
    }

    .banner__pic {
        aspect-ratio: 5 / 3;
        border-radius: 6px;
    }

    .banner__slider .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }

    .banner__slider .owl-dots {
        margin-top: 12px;
        gap: 6px;
    }

    .banner__slider .owl-dot {
        width: 10px;
        height: 10px;
    }

    .banner__slider .owl-dot.active {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .banner-section {
        padding: 15px 0;
    }

    .banner__pic {
        aspect-ratio: 2 / 1;
        border-radius: 4px;
    }

    .banner__slider .owl-nav button {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .banner__slider .owl-dots {
        margin-top: 10px;
        gap: 4px;
    }

    .banner__slider .owl-dot {
        width: 8px;
        height: 8px;
    }

    .banner__slider .owl-dot.active {
        width: 8px;
        height: 8px;
    }
}

.featured__item__pic__label.out-of-stock {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.featured__item__pic__hover .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
