/* hero slider */
.hero-slider-wrapper .hero-slide {
    display: flex !important;
}

.hero-slider-wrapper .hero-slide h2 {
    font-size: 46px;
    line-height: 55px;
    font-weight: 600;
}

.hero-slider-wrapper .hero-slide .img-wrapper {
    flex: 0 0 38.35%;
    position: relative;
    padding-top: 32.77%;
}

.hero-slider-wrapper .hero-slide .img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider-wrapper .hero-slide .slider-details h2 span {
    color: #007b8e;
}

.hero-slider-wrapper .hero-slide .slider-details {
    max-width: 669px;
    width: 100%;
    justify-content: center;
    align-items: start;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 20px;
}

.hero-slider-wrapper .hero-slide .slider-details p {
    margin: 22px 0;
}

.hero-slider-wrapper .hero-slide .slider-details button:hover {
    background-color: #ffffff;
    color: #007b8e;
    border: 1px solid #007b8e;
}

.hero-slider-wrapper .hero-slide .slider-details button span {
    display: flex;
}

.hero-slider-wrapper .hero-slide .slider-details button:hover svg path {
    stroke: #007b8e;
}

.hero-slider-wrapper .hero-slide .slider-details button {
    margin-top: 44px;
    padding: 13px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    background-color: #007b8e;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.hero-slider-wrapper .slick-dots li button:before {
    font-size: 15px;
    color: #c9c9c9;
}

.hero-slider-wrapper .slick-dots li.slick-active button:before {
    font-size: 15px;
    color: #007b8e;
}

/* our product section */

.our-products-wrapper {
    padding: 48px 0;
}

.our-products-wrapper .title-wrapper {
    margin-bottom: 20px;
}

.our-products-section {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
}

.our-products-section .product .img {
    position: relative;
    padding-top: 100%;
}

.certification {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.certification .img-wrapper {
    flex: 0 0 auto;
    height: 30vh; /* responsive relative height */
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
}

.certification .img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.features-wrapper .feature-main {
    display: flex;
    gap: 20px;
    margin-top: 48px;
}

.features-wrapper .feature-main .column-left {
    flex: 0 0 40.9%;
}

.features-wrapper .feature-main .column-left .img-wrapper {
    position: relative;
    padding-top: 80%;
}

.features-wrapper .feature-main .column-left .img-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
}

.features-wrapper .feature-main .column-right ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.features-wrapper .feature-main .column-right li {
    padding: 14px;
    border-bottom: 1px solid #ededed;
}

.features-wrapper .feature-main .column-right h3 {
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.features-wrapper .feature-main .column-right p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #797979;
}

@media only screen and (max-width: 1024px) {
    .hero-slider-wrapper .hero-slide h2 {
        font-size: 36px;
        line-height: 42px;
    }
    .hero-slider-wrapper .hero-slide .img-wrapper {
        flex: 0 0 50.35%;
    }
    .features-wrapper .feature-main {
        flex-direction: column;
    }
    .features-wrapper .feature-main .column-left .img-wrapper {
        padding-top: 40%;
    }
}

@media only screen and (max-width: 768px) {
    .hero-slider-wrapper .hero-slide {
        flex-direction: column;
    }

    .hero-slider-wrapper .hero-slide .slider-details {
        max-width: 100%;
    }

    .hero-slider-wrapper .hero-slide .slider-details button {
        margin-top: 0;
    }
    .features-wrapper .feature-main .column-left .img-wrapper {
        padding-top: 70%;
    }
    .our-products-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-wrapper .feature-main .column-right li {
        padding: 14px 0;
    }
    .features-wrapper .feature-main .column-right h3 {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 8px;
    }
    .features-wrapper .feature-main .column-right p {
        font-size: 16px;
        line-height: 21px;
    }
    .features-wrapper .feature-main .column-right ul {
        gap: 0;
    }
}

@media only screen and (max-width: 600px) {
    .hero-slider-wrapper .hero-slide h2 {
        font-size: 26px;
        line-height: 31px;
    }
    .hero-slider-wrapper .hero-slide .slider-details p {
        margin: 16px 0;
    }
    .hero-slider-wrapper .hero-slide .slider-details button {
        font-size: 16px;
        padding: 8px 16px;
    }
}

@media only screen and (max-width: 425px) {
    .our-products-section {
        grid-template-columns: repeat(1, 1fr);
    }
    .section-title h2 {
        font-size: 16px;
        line-height: 21px;
        padding: 16px 12px;
    }
    .section-title h2::after,
    .section-title h2::before {
        width: 8px;
        height: 8px;
    }
    .features-wrapper .feature-main {
        margin-top: 24px;
    }
}

.search-box-text.container {
    max-width: 500px;
    width: 100%;
    position: relative;
    padding: 0;
}

.search-box-text .search-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
}

.search-box-text .search-results .search_items {
    padding-bottom: 16px;
    border-bottom: 1px solid;
}

.search-box-text .search-results .search_items:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.search-box-text .search-results .search_items a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
}

.search-box-text .search-results .search_items .item_type {
    text-transform: capitalize;
}

.no-result {
    text-align: center;
    color: #010101;
    font-weight: 600;
    font-size: 24px;
}

.search-box-text .search-results .search_items a .category_name {
    font-size: 16px;
    line-height: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    max-height: 54px;
    font-weight: 600;
}

.search-box-text .search-results .search_items h4 {
    color: #007b8e;
    font-weight: 400;
}

.search-box-text .search_list {
    max-height: 200px;
    overflow: auto;
    position: absolute;
    background: white;
    border-radius: 8px;
    width: 100%;
    left: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    margin-top: 12px;
}


.not-found-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 3rem 1rem;
    text-align: center;
    background: #f9fafb;
    margin-bottom: 60px;
}

.not-found-illustration {
    margin-bottom: 1.5rem;
}

.not-found-page h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #007681;
    margin-bottom: 1rem;
}

.not-found-page p {
    font-size: 1.1rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.btn-theme {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #007681;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.btn-theme:hover {
    background: #005f66;
}
