/* =========================================
   PRODUCT SECTION
========================================= */

.netrvis-product-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #ffffff;
}

.netrvis-product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}


/* =========================================
   PRODUCT GALLERY
========================================= */

.netrvis-product-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.netrvis-main-product-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.netrvis-main-product-image img {
    display: block;
    width: 700px;
    height: 300px;
    max-width: 100%;
    object-fit: contain;
}


/* =========================================
   PRODUCT THUMBNAILS
========================================= */

.netrvis-product-thumbnails {
    width: 100%;
    margin-top: 25px;
   

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-bottom: 35px;
    flex-wrap: wrap;
}

.gallery-thumbnail {
    width: 80px;
    height: 65px;
    padding: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #dddddd;
    border-radius: 5px;

    background: #ffffff;
    cursor: pointer;

    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.active {
    border-color: #0878d1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gallery-thumbnail img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.netrvis-product-content {
    width: 100%;
}

.netrvis-product-content h2 {
    margin: 0 0 20px;

    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
}

.netrvis-product-content p {
    margin: 0;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================
   PRODUCT BUTTONS
========================================= */

.netrvis-product-buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  
    gap: 12px;
}

.netrvis-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 11px 24px;

    border: 1px solid #0878d1;
    border-radius: 4px;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;
    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.netrvis-btn-primary {
    background: #0878d1;
    color: #ffffff;
}

.netrvis-btn-primary:hover {
    background: #005fae;
    border-color: #005fae;
    color: white;
}

.netrvis-btn-secondary {
    background: #ffffff;
    color: #0878d1;
}

.netrvis-btn-secondary:hover {
    background: #0878d1;
    color: #ffffff;
}


/* =========================================
   BUY NOW
========================================= */

.netrvis-buy-now {
    margin-top: 25px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .netrvis-product-section {
        padding: 0;
        margin: 0;
    }

    .netrvis-product-grid {
        gap: 40px;
    }

    .netrvis-main-product-image img {
        width: 100%;
        height: auto;
        max-width: 700px;
    }

    .netrvis-product-content h2 {
        font-size: 32px;
    }

    .netrvis-product-content p {
        font-size: 17px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .netrvis-product-section {
        padding: 0;
        margin: 0;
    }

    .netrvis-product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .netrvis-main-product-image img {
        width: 100%;
        height: auto;
        max-width: 700px;
    }

    .netrvis-product-content {
        text-align: center;
    }

    .netrvis-product-content h2 {
        font-size: 30px;
    }

    .netrvis-product-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .netrvis-product-buttons {
        justify-content: center;
    }

    .netrvis-buy-now {
        display: flex;
        justify-content: center;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .netrvis-product-section {
        padding: 0;
        margin: 0;
    }

    .netrvis-main-product-image img {
        width: 100%;
        height: auto;
    }

    .netrvis-product-thumbnails {
        gap: 10px;
    }

    .gallery-thumbnail {
        width: 70px;
        height: 58px;
    }

    .netrvis-product-content h2 {
        font-size: 27px;
    }

    .netrvis-product-content p {
        font-size: 15px;
    }

    .netrvis-product-buttons {
        flex-direction: column;
        align-items: center;
    }

    .netrvis-btn {
        width: 100%;
        max-width: 280px;
    }
}


/* =========================================
   PRODUCT SLIDER DOTS
========================================= */

/* 
.netrvis-product-dots {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 15px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.product-dot {
    width: 18px;
    height: 18px;

    padding: 0;
    margin: 0;

    border: none;
    border-radius: 50%;

    background: #b7d99a;

    cursor: pointer;

    transition: background-color 0.2s ease;
}

.product-dot.active {
    background: #6aaa36;
}

.product-dot:hover {
    background: #6aaa36;
} */


/* =========================================
   MOBILE
========================================= */

/* @media (max-width: 767px) {

    .netrvis-product-dots {
        margin-top: 8px;
        margin-bottom: 12px;
        gap: 8px;
    }

    .product-dot {
        width: 16px;
        height: 16px;
    }
} */


/* =========================================
   NETRAVIS THUMBNAIL ACTIVE STYLE
========================================= */

.netrvis-product-thumbnails .gallery-thumbnail,
.netrvis-product-thumbnails .gallery-thumbnail.active {
    background: #e8efe7 !important;

    border: 1px solid #dddddd !important;
    border-bottom: 1px solid #dddddd !important;

    box-shadow: none !important;
}

/* Active thumbnail */
.netrvis-product-thumbnails .gallery-thumbnail.active {
    border: 1px solid #0878d1 !important;
    border-bottom: 1px solid #0878d1 !important;

    background: #ffffff !important;
    box-shadow: none !important;
}