@font-face {
     font-family: 'Ethnocentric';
    src: url('../fonts/Ethnocentric-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.logo img{
  max-width: 200px;
}

.irrigation-equipment-section {
    position: relative;
}


/* Main Layout */

.irrigation-equipment-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 45px;
    align-items: start;
}


/* =========================================
   LEFT TABS
========================================= */

.irrigation-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 100px;
    z-index: 2;
}


.irrigation-tab {
    width: 100%;
    border: 1px solid #e7e7e7;
    background: #fff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}


.irrigation-tab .tab-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f8f2;
    font-size: 21px;
    transition: all 0.3s ease;
}


.irrigation-tab strong {
    display: block;
    font-size: 15px;
    line-height: 1.4;
}


.irrigation-tab small {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    opacity: 0.65;
}


/* Active */

.irrigation-tab:hover,
.irrigation-tab.active {
    background: var(--thm-primary, #198754);
    border-color: var(--thm-primary, #198754);
    color: #fff;
    transform: translateX(5px);
}


.irrigation-tab.active .tab-icon,
.irrigation-tab:hover .tab-icon {
    background: rgba(255,255,255,0.15);
    color: #fff;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.irrigation-products-area {
    min-width: 0;
}


.irrigation-tab-content {
    display: none;
}


.irrigation-tab-content.active {
    display: block;
}


/* Heading */

.equipment-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}


.category-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    margin-bottom: 8px;
    color: var(--thm-primary, #198754);
}


.equipment-heading h3 {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 10px;
}


.equipment-heading p {
    max-width: 650px;
    margin: 0;
    line-height: 1.7;
    color: #777;
}


/* View All */

.view-all-btn {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: var(--thm-primary, #198754);
}


.view-all-btn i {
    margin-left: 5px;
}


/* =========================================
   PRODUCT CARD
========================================= */

.single-shop-item--style2 {
    height: 100%;
}


.single-shop-item--style2 .single-shop-item_inner {
    
    overflow: hidden;
    transition: all 0.3s ease;
}


.single-shop-item--style2 .single-shop-item_inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}


/* Image */

.single-shop-item--style2 .img-holder {
    position: relative;
    overflow: hidden;
    background: #f6f6f6;
}


.single-shop-item--style2 .img-holder img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.single-shop-item--style2:hover .img-holder img {
    transform: scale(1.05);
}


/* Overlay */

.single-shop-item--style2 .img-holder .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}


.single-shop-item--style2:hover .img-holder .overlay {
    opacity: 1;
    visibility: visible;
}


.single-shop-item--style2 .overlay a {
    background: #fff;
    padding: 11px 18px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
}


.single-shop-item--style2 .overlay span {
    color: #fff;
}


/* Title */

.single-shop-item--style2 .title-holder {
    padding: 20px 20px 12px;
}


.product-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--thm-primary, #198754);
}


.single-shop-item--style2 .title-holder h3 {
    font-size: 19px;
    line-height: 1.35;
    margin: 6px 0 8px;
}


.single-shop-item--style2 .title-holder p {
    font-size: 13px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}


/* Product Features */

.product-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 20px;
}


.product-info span {
    font-size: 11px;
    background: #f6f8f6;
    padding: 6px 9px;
    border-radius: 4px;
}


.product-info i {
    color: var(--thm-primary, #198754);
    margin-right: 3px;
}


/* Owl dots */

.irrigation-tab-content .owl-dots {
    margin-top: 25px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .irrigation-equipment-wrapper {
        grid-template-columns: 220px 1fr;
        gap: 25px;
    }

    .equipment-heading {
        display: block;
    }

    .equipment-heading .view-all-btn {
        display: inline-block;
        margin-top: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .irrigation-equipment-wrapper {
        display: block;
    }


    .irrigation-tabs {
        position: relative;
        top: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 30px;
    }


    .irrigation-tab {
        padding: 12px;
        gap: 9px;
    }


    .irrigation-tab .tab-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 17px;
    }


    .irrigation-tab strong {
        font-size: 12px;
    }


    .irrigation-tab small {
        font-size: 10px;
    }


    .irrigation-tab:hover,
    .irrigation-tab.active {
        transform: none;
    }


    .equipment-heading h3 {
        font-size: 23px;
    }


    .equipment-heading p {
        font-size: 13px;
    }

}


/* Small Mobile */

@media (max-width: 480px) {

    .irrigation-tabs {
        grid-template-columns: 1fr;
    }

}

.bg-primary{
    background-color: var(--thm-base) !important;
}

.text-primary{
    color: var(--thm-base) !important;
}
/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 95px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    font-size: 30px;

    z-index: 9999;

    text-decoration: none;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);

    transition: all 0.3s ease;
}


/* Hover */
.floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


/* Tooltip */
.whatsapp-tooltip {
    position: absolute;

    right: 70px;
    top: 50%;

    transform: translateY(-50%);

    background: #222;
    color: #fff;

    padding: 8px 12px;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
}


/* Tooltip arrow */
.whatsapp-tooltip::after {
    content: "";

    position: absolute;

    right: -5px;
    top: 50%;

    transform: translateY(-50%);

    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent #222;
}


/* Show tooltip */
.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}


/* Mobile */
@media (max-width: 576px) {

    .floating-whatsapp {
        right: 15px;
        bottom: 95px;

        width: 52px;
        height: 52px;

        font-size: 26px;
    }

    .whatsapp-tooltip {
        display: none;
    }

}
.gap-2{
    gap: 10px;
}