:root {
    --primary: #0067b8;
    --bg-light: #f9fbfd;
    --border-light: #dbeaff;
}

.product-single {
    padding: 2.5rem 0;
    /* background: #fff; */
}
.product-single .row {
    margin-right: 0;
    margin-left: 0;
}
.slider-thumbnails2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 90px;
}
.slider-thumbnails2 .thumbnail-img {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-thumbnails2 .thumbnail-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    background: #f1f3f7;
    transition: all 0.3s ease;
}

/* Active thumbnail styling */
.slider-thumbnails2 .slick-slide.slick-active .thumbnail-img img {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 103, 184, 0.1), 
                0 4px 12px rgba(0, 103, 184, 0.2);
    transform: scale(1.05);
}

.slider-thumbnails2
.slick-current img {
    border-color: var(--primary) !important;

}

/* Hover state for other thumbnails */
.slick-active .thumbnail-img:hover img {
    border-color: var(--primary);
    opacity: 0.9;
}

/* Mobile: horizontal thumbnails below image */
@media (max-width: 991px) {
    .product-imagery-wrapper {
        flex-direction: column !important;
        align-items: center !important;
    }

    .slider-thumbnails2 {
        flex-direction: row;
        max-width: 100%;
        order: 2;
        margin-top: 1rem;
        justify-content: center;
    }

    .product-single-slider2 {
        order: 1;
        margin-left: 0 !important;
        max-width: 100%;
    }
}

/* slick arrow tweaks for product carousel */
.product-single-slider2 .slick-prev,
.product-single-slider2 .slick-next {
    position: absolute !important;
    top: 50% !important;
    z-index: 2;
    background: rgba(0,0,0,0.5) !important;
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s;
}
.product-single-slider2 .slick-prev {
    left: 10px !important;
    transform: translateY(-50%);
}
.product-single-slider2 .slick-next {
    right: 10px !important;
    transform: translateY(-50%);
}
.product-single-slider2 .slick-prev:hover,
.product-single-slider2 .slick-next:hover {
    background: rgba(0,0,0,0.8) !important;
}

/* hide default arrow icons, using font-awesome instead */
.slick-prev:before,
.slick-next:before {
    content: none;
}

/* Main product slider arrows - visible */
.product-single-slider2 .slick-prev i,
.product-single-slider2 .slick-next i {
    color: white;
    font-size: 18px;
}
.product-single-slider2 {
    flex-grow: 1;
    max-width: 410px;
    min-width: 0;
    margin-left: 1.5rem;
}
/* .product-single-slider2 .product-single-single-item {
  display: none;
} */
.product-single-slider2 .product-single-single-item:first-child {
    display: block;
}
.product-single-slider2 img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    border-radius: 10px;
    background: #f7faff;
    border: 1px solid #eef1f5;
}


/* Product details box */
.product-key-details {
    background: #fcfdfe;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 82, 156, 0.04);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 0;
}
@media (max-width: 575.98px) {
    .product-key-details {
        padding: 1.3rem 0.6rem;
    }

    .smc-tab-btn {
        border: 1px solid var(--border-light);
        background: #f6f8fa;
        color: #333;
        font-weight: 600;
        font-size: 14px;
        padding: 0.65rem 0.2rem;
        border-radius: 1rem 1rem 0 0;
        outline: 0;
    }
}

.smc-spec-section {
    background: #fff;

    border-radius: 8px;

    box-shadow: none;
    border: 1px solid var(--border-light);
}

.smc-spec-header {
    padding-bottom: 1rem;
}

.smc-tabs {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.5rem;
    margin-left: 0.1em;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.smc-tab-btn {
    border: 1px solid var(--border-light);
    background: #f6f8fa;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.65rem 1.6rem;
    border-radius: 1rem 1rem 0 0;
    outline: 0;
}

.smc-tab-btn.active,
.smc-tab-btn[aria-selected="true"] {
    color: var(--primary);
    background: #fff;
    border-bottom: 2px solid var(--primary);
    font-size: 1.05rem;
    font-weight: 700;
}

/* No hover effects */
.smc-spec-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: none;
    padding: 1.3rem 1rem 1.3rem 1rem;
    margin-bottom: 1.2rem;
    margin-top: 0.8rem;
}

.smc-table-wrap {
    margin-bottom: 1.2rem;
}

.smc-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1rem;
    background: none;
}

.smc-spec-table th,
.smc-spec-table td {
    padding: 0.6em 0.8em;
    background: transparent;
    vertical-align: top;
    font-weight: 400;
    border: none;
}

.smc-spec-table th {
    color: #fff;
    background: var(--primary);
    font-size: 1rem;
    text-align: left;
    border-radius: 8px 8px 0 0;
    font-weight: 700;
    letter-spacing: 0.025em;
    border-bottom: 1px solid var(--border-light);
    box-shadow: none;
}

.smc-spec-table tr:not(:last-child) td {
    border-bottom: 1px solid #f0f5fa;
}

.smc-spec-table tr.section-row th,
.smc-spec-table tr.section-row td {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.smc-spec-table .label {
    color: var(--primary);
    font-weight: 500;
    background: #eef6fd;
    border-radius: 5px;
    padding: 0.1em 0.4em;
}

.smc-spec-table ul {
    margin: 0;
    padding-left: 1em;
}

.smc-spec-table a,
.smc-resource-card a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
}

/* No link hover effect */
@media (max-width: 991px) {
    .smc-spec-card,
    .smc-table-wrap {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .smc-table-wrap,
    .smc-spec-card {
        padding: 0.8rem 0.1rem;
    }

    .smc-spec-table th,
    .smc-spec-table td {
        font-size: 0.92rem;
    }
}

/* Resource Cards */
.smc-resource-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: none;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.smc-resource-icon {
    width: 50px;
    height: 50px;
    background: #0067b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.smc-resource-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.smc-resource-desc {
    color: #444;
    font-size: 0.93rem;
    margin-bottom: 0.12rem;
}

.smc-resource-badges .badge {
    font-size: 0.75rem;
    background: #f0f7fb;
    color: #0067b8;
    margin-right: 0.16em;
}

.smc-resource-btns .smc-btn {
    padding: 0.32em 0.85em;
    font-size: 0.95rem;
    color: var(--primary);
    background: #f0f7fb;
    border-radius: 99px;
    border: 1px solid var(--border-light);
    margin-right: 0.45em;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.smc-resource-btns .smc-btn:last-child {
    margin-right: 0;
}

.smc-resource-btns .smc-btn.outline {
    background: #fff;
    border: 1px solid var(--primary);
    color: var(--primary);
}

/* Remove button hover/focus effects */
/* Parts Table */
.smc-parts-table-wrap {
    margin-top: 1.5em;
}

.smc-clean-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    box-shadow: none;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    font-size: 0.98rem;
    margin-bottom: 1rem;
}

.smc-clean-table th,
.smc-clean-table td {
    padding: 0.7rem 0.8rem;
    vertical-align: top;
}

.smc-clean-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid #b8cdf3;
    font-size: 0.98rem;
}

.smc-clean-table tr.category-row th {
    font-size: 1.06rem;
    letter-spacing: 0.03em;
    background: var(--primary) !important;
    color: #fff;
    border-bottom: 1px solid #b8cdf3;
}

.smc-clean-table .section-label {
    color: var(--primary);
    font-weight: 600;
    background: #eef6fd;
    border-radius: 5px;
}

.smc-clean-table tr:not(:last-child) td {
    border-bottom: 1px solid #f0f5fa;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}

.product-card h6 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #222;
}

.product-card p {
    font-weight: 600;
    color: #007bff;
    margin: 0;
}

.product-card a {
    text-decoration: none;
}

.thumbnail-img.active {
    border: 2px solid #ff6600;
}

.product-single-single-item {
    display: none;
}

.product-single-single-item.active {
    display: block;
}

/* Radio Group Container */
.contact-method-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Each Radio Item */
.contact-method-group .form-check {
    display: flex;
    align-items: center;
    padding: 4px 8px;
}

/* Radio Input Styling */
.contact-method-group .form-check-input {
    width: 16px !important;
    height: 16px !important;
    margin: 0;
    margin-right: 6px;
    cursor: pointer;
    accent-color: #0067b8;
    padding: 0px !important;
}

/* Label Styling */
.contact-method-group .form-check-label {
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Remove Bootstrap extra spacing */
.form-check {
    margin-bottom: 0;
}


@media (max-width: 991.98px) {
    .slider-thumbnails2 {
        flex-direction: row;
        max-width: none;
        margin-bottom: 1rem;
    }
    .slider-thumbnails2 .thumbnail-img img {
        width: 56px;
        height: 56px;
    }
    .product-single-slider2 {
        margin-left: 0;
        max-width: 100%;
    }
}
@media (max-width: 767.98px) {
    .product-single .row {
        flex-direction: column;
    }
    .col-lg-6 {
        width: 100% !important;
    }
    .product-single-slider2 img {
        height: 220px;
    }

    .smc-tab-btn {
    border: 1px solid var(--border-light);
    background: #f6f8fa;
    color: #333;
    font-weight: 600;
    font-size: 12px !important;
    padding: 0.65rem 0.2rem;
    border-radius: 1rem 1rem 0 0;
    outline: 0;
}

.smc-table-wrap {
    margin-bottom: -2rem;
}


.smc-resource-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: none;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start;
    align-items: flex-start !important;
}


.contact-method-group {

    gap: 0px;
  
}



.carousel-shadow {
    padding-bottom: 0px !important;
}
.contact-query-section .card-body {
    padding: 20px;
}
.contact-method-group {
    display: flex;
    gap: 0px !important;
  
}
}

/* Related Products Carousel Styling */
.related-products {
    background: #f9fbfd;
}

/* Category listing cards */
.category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.category-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f1f3f7;
    display: block;
}
.category-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.2rem;
}
.category-card .card-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-card .btn1 {
    margin-top: 1rem;
    align-self: center;
    width: 100%;
}

#related-products-carousel {
    display: flex;
}

#related-products-carousel .item {
    padding: 10px;
}

#related-products-carousel .item {
    padding: 10px;
    display: flex;
    align-items: stretch;
}

.related-product-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.related-product-card:hover {
    box-shadow: 0 12px 32px rgba(0, 103, 184, 0.18);
    border-color: var(--primary);
    transform: translateY(-6px);
}

.related-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f1f3f7;
    display: block;
}

.related-product-card .card-body {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-product-card .card-title {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-product-card .btn1 {
    margin-top: 1rem;
    align-self: center;
    width: 100%;
}

/* Owl Carousel Navigation - Arrows */
.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.owl-nav button {
    background: var(--primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0 !important;
    pointer-events: all;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav button span {
    font-size: 18px;
    color: white;
}

.owl-prev {
    left: -25px !important;
}

.owl-next {
    right: -25px !important;
}

.owl-nav button:hover {
    background: rgba(0, 103, 184, 0.85) !important;
    box-shadow: 0 6px 16px rgba(0, 103, 184, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.owl-nav button:active {
    transform: translateY(-50%) scale(0.95);
}

/* Owl Carousel Dots */
.owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.owl-dot {
    background: #d0d0d0 !important;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 103, 184, 0.2);
    transform: scale(1.2);
}

.owl-dot:hover {
    background: var(--primary) !important;
}

#related-products-carousel {
    position: relative;
    padding: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .related-product-card img {
        height: 160px;
    }

    .owl-nav button {
        width: 38px;
        height: 38px;
    }

    .owl-nav button span {
        font-size: 16px;
    }
    
    .owl-prev {
        left: -15px !important;
    }

    .owl-next {
        right: -15px !important;
    }
    
    #related-products-carousel .item {
        padding: 8px;
    }
    
    .related-product-card .card-body {
        padding: 1rem;
    }
}


.related-products
.owl-carousel .owl-dots .owl-dot.active {
    height: 10px;
    width: 10px;
    background: #ffffff;
    border: 2px solid #0d1e67;
}
.related-products

.owl-theme .owl-dots .owl-dot span {
 
    display: none;
}
#related-products-carousel {
    display: flex;
    display: flex;
    flex-direction: column;
}

@media (max-width: 576px) {
    .related-product-card img {
        height: 140px;
    }
    
    .related-product-card .card-title {
        font-size: 12px;
        margin-bottom: 0.6rem;
        min-height: 2.4rem;
    }
    
    .owl-nav button {
        width: 36px;
        height: 36px;
    }
}



.spec-box{
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    background: #eef6fd;
    transition: 0.3s;
}

.spec-box:hover{
box-shadow:0 6px 15px rgba(0,0,0,0.08);
}

.feature-item{
border-bottom:1px solid #eee;
padding-bottom:10px;
height: 90%;
}

.product-key-details h5{

    color: #004da6;
    color: var(--primary);
}
.product-key-details

 h6 {
    font-size: 1rem;
    color: var(--b);
}