/* Start Related Product CSS */
.catalog-product-view .page {
    background: #f8f8f8;
}
.catalog-product-view .related-products {
    margin: 20px 0;
}
.catalog-product-view .related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.catalog-product-view .related-header h2 {
    font-size: 22px;
    margin: 0;
    color: #000;
    border-bottom: 1px solid;
    text-transform: none;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    color: #000;
    text-align: left;
    border-bottom: 1px solid #dcdcdc;
    /* border-top: 1px solid #dcdcdc; */
    padding: 0px 15px 15px 15px;
    letter-spacing: 1px;
}
.catalog-product-view .related-nav {
    display: flex;
    gap: 8px;
}
.catalog-product-view .related-products-slider .related-item {
    text-align: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
}
.catalog-product-view .related-products-slider .product-image img {
    /*max-width: 250px;*/
    height: auto;
    display: initial;
}
.catalog-product-view .related-products-slider .name {
    font-weight: 600;
    margin: 10px 0;
    text-align: left;
}
.catalog-product-view .related-products-slider .name a {
    color: #000;
    text-decoration: none;
}
.catalog-product-view .related-products-slider .name a:hover {
    text-decoration: underline;
}

.catalog-product-view .related-products-slider .price-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background: #477E00;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}



.catalog-product-view .related-products-slider .price-row .price {
    color: #fff !important;
    font-weight: bold;
}
.catalog-product-view .related-products-slider .price-row .inc-vat {
    font-size: 13px;
    opacity: 0.9;
    font-weight: normal;
}

.catalog-product-view .related-nav .owl-prev,
.catalog-product-view .related-nav .owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    font-size: 18px;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.catalog-product-view .related-nav .owl-prev:hover,
.catalog-product-view .related-nav .owl-next:hover {
    border-color: #bbb;
    color: #333;
    background: #f9f9f9;
}

/* End Related Product CSS */

/* Start Upsell Product CSS */

.catalog-product-view .upsell-products {
    margin: 20px 0;
}
.catalog-product-view .upsell-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.catalog-product-view .upsell-header h2 {
    font-size: 22px;
    margin: 0;
}
.catalog-product-view .upsell-nav {
    display: flex;
    gap: 8px;
}
.catalog-product-view .upsell-products-slider .upsell-item {
    text-align: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
}
.catalog-product-view .upsell-products-slider .product-image img {
    max-width: 100%;
    height: auto;
}
.catalog-product-view .upsell-products-slider .name {
    font-weight: 600;
    margin: 10px 0;
    text-align: left;
}
.catalog-product-view .upsell-products-slider .name a {
    color: #000;
    text-decoration: none;
}
.catalog-product-view .upsell-products-slider .name a:hover {
    text-decoration: underline;
}
.catalog-product-view .upsell-products-slider .price-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #477E00;
    color: #fff;
    padding: 0;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.catalog-product-view .upsell-products-slider .price-row .price-label {
    font-weight: 500;
}

/*.catalog-product-view .upsell-products-slider .price-row .price-value {
    font-weight: 700;
}*/
.catalog-product-view .upsell-products-slider .price-row .price {
    color: #fff !important;
    font-weight: bold;
}

.catalog-product-view .upsell-nav .owl-prev,
.catalog-product-view .upsell-nav .owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    font-size: 18px;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.catalog-product-view .upsell-nav .owl-prev:hover,
.catalog-product-view .upsell-nav .owl-next:hover {
    border-color: #bbb;
    color: #333;
    background: #f9f9f9;
}
/* End Upsell Product CSS */


/* Why Choose Us Design CSS */

/* Wrapper - flex row */
.catalog-product-view .why-choose-us-wrapper-product-page .wcu-items {
    display: flex;
    flex-wrap: nowrap;   /* keep in single row */
    justify-content: space-between; /* equal spacing */
    gap: 20px;           /* space between cards */
    margin: 20px 0;
    overflow-x: auto;    /* scroll if too many */
    padding: 10px 0;
}

/* Individual card */
.catalog-product-view .why-choose-us-wrapper-product-page .wcu-item {
    flex: 1 1 0;
    max-width: 25%;               /* 4 cards per row */
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.catalog-product-view .why-choose-us-wrapper-product-page .wcu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.catalog-product-view .wcu-item-wrapper {
    display: flex;
    align-items: center;   /* vertical align center */
    gap: 15px;             /* space between image and text */
    text-align: left;      /* align text left */
}

/* Image styling */
.catalog-product-view .why-choose-us-wrapper-product-page .wcu-img img {
    max-width: 80px;
    height: auto;
    display: block;
    /* margin: 0 auto 10px auto;  */
}

.catalog-product-view .wcu-details {
    flex: 1;
}

/* Title */
.catalog-product-view .why-choose-us-wrapper-product-page .wcu-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0; /* tighter spacing */
    color: #333;
}

/* Text */
.catalog-product-view .why-choose-us-wrapper-product-page .wcu-text {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* End Why Choose Us Design CSS */


/* Product Additional Details Design CSS */

.catalog-product-view .product-description-block {
    padding: 20px;
    margin-bottom: 20px;
}


.catalog-product-view .desc-title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}


.catalog-product-view .description-text {
    list-style: disc;
    font-size: 15px;
    color: #444;
    line-height: 2.0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
.catalog-product-view .description-text.expanded {
    max-height: none;
}


.catalog-product-view .read-more-btn {
    margin-top: 15px;
    width: 100%;
    display: block;
    padding: 12px 0;
    border: 1px solid #4d8700;
    border-radius: 4px;
    background: #fff;
    color: #4d8700;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.catalog-product-view .read-more-btn:hover {
    background: #4d8700;
    color: #fff;
}


.catalog-product-view .additional-info {
    margin-top: 25px;
}
.catalog-product-view .info-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #555;
    background: #e5e5e5;
    padding: 8px 12px;
    border-radius: 4px 4px 0 0;
    margin-bottom: 0;
}
.catalog-product-view .info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0;
    font-size: 14px;
    color: #333;
}
.catalog-product-view .info-table th,
.info-table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
}
.catalog-product-view .info-table th {
    background: #f5f5f5;
    font-weight: 600;
    text-align: left;
    width: 25%;
}
.catalog-product-view .info-table td {
    background: #fff;
}

.catalog-product-view .product-collateral .collateral-tab-list{
    background-color: #eaeaea !important;
}

.catalog-product-view .product-collateral {
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 2px 2px 2px 2px rgba(214, 208, 208, 0.69);
    border-radius: 10px;
}

.catalog-product-view .product-collateral .toggle-tabs {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #eaeaea;
    border-bottom: 1px solid #ccc8c8;
}


/* End Product Additional Details Design CSS */


.catalog-product-view .product-shop .product-name h1 {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px !important;
    line-height: 30px;
    letter-spacing: 0;
    color: #000000 !important;
    text-transform: none !important;
}


.catalog-product-view .right-section .short-description ul {
    margin-bottom: 0;
    margin-left: 0;
    padding: 10px;
}


.catalog-product-view .right-section .short-description ul li {
    background-image: url("../images/Vector(1).png");
    background-repeat: no-repeat;
    list-style: none;
    position: relative;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 25px;
    background-position: 38px;
    background-size: 20px auto;
    padding-left: 72px;
    padding-right: 1px;
    letter-spacing: 0.5px;
    color: #000;
    margin-left: -1em;
    padding-bottom: 5px;
}



.catalog-product-view .product-view .product-shop {
    width: 100%;
    margin-bottom: 0;
    padding-left: 0;
}


.catalog-product-view .product-view .right-section .short-description > .std {
    padding: 10px 0px 10px 0px;
    background-color: #eaeaea;
    -webkit-box-shadow: 2px 2px 2px 0px rgba(214, 208, 208, 0.69);
    -moz-box-shadow: 2px 2px 2px 0px rgba(214, 208, 208, 0.69);
    box-shadow: 2px 2px 2px 0px rgba(214, 208, 208, 0.69);
    border-radius: 8px;
}

.price-status-box {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: flex-end; */
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    background: #eee;
    margin: 15px 0 0 0;
    border-radius: 8px;
}
.product-view .price-info {
    /* float: left; */

    padding-left: 0px;
    width: 100%;
    /* text-align: right; */
}
.in-out-box .sticky-price-container .price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price-box p {
    margin-bottom: 0;
    /*padding: 5px;*/
}
.product-price-cart .price-info .price-including-tax .price-box p span {
    /* font-size: 32px !important;
    font-weight: 700;
    line-height: 53px;
    color: #d42934 !important; */
    /* line-height: 53px;
    margin: 0;
    display: ruby; */
    /* line-height: 53px; */
    /* margin: 1px -6px 2px; */
    margin-right: 10px;
    display: inline-block;
    /*margin-left: 26px;*/
    font-size: 20px;
    color: #000;
    font-weight: bold;
}
.product-view .price-box .price {
    /* color: #000000; */
    font-size: 18px;
    font-weight: 700;
    line-height: 38px;
    margin: 2px 0;
    /* margin-right: 30px; */
}
.in-out-box .add-to-box {
    padding-top: 15px;
}
.delivery-message {

    font-size: 16px;
    color: #347a00;

}
.catalog-product-view .qty-btn {
    width: 40px;
    height: 40px;
    font-size: 35px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #347a00;
    padding: 14px 50px;
    background: transparent;
}
.catalog-product-view .input-text.qty {
    text-align: center;
    border: medium;
    width: 60px;
    /* wider */
    height: 70px;
    /* taller */
    font-size: 24px;
    /* bigger text */
    border-radius: 4px;
    /* optional, replace empty value */
    padding: 10px 5px;
    background: #fff;
    color: #347a00;
    font-weight: bold;
}
.catalog-product-view .qty-btn {
    width: 40px;
    height: 40px;
    font-size: 35px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #347a00;
    padding: 14px 40px;
    background: transparent;
}
.catalog-product-view .btn-buy-now {
    display: flex;
    align-items: center;
    padding: 18px 45px;
    font-size: 14px;
    background-color: #4d8700;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    gap: 10px;
    /*margin-left: 17px;*/
    font-weight: bold;
    line-height: 1.5;
    height: 75px;

}
.catalog-product-view .btn-buy-now img {
    width: 22px;
    height: 22px;
    margin-right: 6px;
}
.catalog-product-view .btn-add-cart {
    display: flex;
    align-items: center;
    padding: 19px 45px;
    font-size: 14px;
    background-color: #1570EF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    gap: 10px;
    height: 75px;
}
.catalog-product-view .btn-add-cart {
    font-size: 14px;
    color: white;
    cursor: pointer;
}
.price-box .price-label {
    color: #fff;
}
.price-status-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    background: #eee;
    margin: 15px 0 0 0;
    border-radius: 8px;
    padding: 5px 0px 5px 0px;
}
.product-view .price-info {
    padding-left: 0px;
    width: 100%;
}
.in-out-box .sticky-price-container .price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}
.product-price-cart .percentage-wrap {
    display: inline-block;
    padding: 6px 0px;
    margin-bottom: 0;
}
.product-price-cart .price-info .price-including-tax .price-box p .percentage-off {

    margin-right: 10px;
    display: inline-block;
    margin-left: 26px;
    padding: 12px 22px;
    border-radius: 5px;
    color: #fff;
    background-color: #2F4858;
    font-size: 23px;
    font-weight: 800;
}
.product-view .price-box .special-price {
    padding: 0;
    line-height: normal;
    margin-right: 10px;
    margin-left: 10px;
    color: #0175c4;
    display: inline-block;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;


}
/*.product-price-cart .price-info .price-including-tax .price-box p span {
    margin-right: 10px;
    display: inline-block;
    margin-left: 26px;
    font-size: 23px;
    font-weight: 700;
    line-height: 38px;
    margin: 2px 0;
    color: #000000;
}*/
.product-price-cart .price-box .special-price .price-label {
    display: block;
    font-weight: normal !important;
    line-height: 16px;
    color: #6a963c !important;
    margin-bottom: 8px;
    font-size: 21px;
}
.price-box .old-price, .price-box .special-price {
    display: inline-block;
    margin-bottom: 0;
    padding: 20px;
    text-decoration: line-through;
    color: #999;
}
.product-view .price-box .old-price .price {
    font-size: 26px !important;
    font-weight: normal;
    line-height: 30px;
    margin-left: 30px;
    color: #A0A0A0 !important;
    text-decoration: line-through;
}

/* khanedit */

.product-collateral .toggle-tabs li:first-child {
    border-width: 1px 1px 0 1px;
}
.product-collateral .toggle-tabs li {
    width: calc(100% / 7);
    display: block;
    text-align: center;
    border-color: #cccccc;
}
.product-collateral .toggle-tabs li > span {
    user-select: none;
    display: block;
    padding: 0 5px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    color: #8a8a8a;
    font-weight: 700;
    letter-spacing: 1px;
}
.product-collateral .toggle-tabs li.current {
    background: #2F4858 !important;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.product-collateral > dl {
    width: 100%;
}
.product-collateral > dl > dt::after {
    display: block;
    content: '+';
    position: absolute;
    top: 0px;
    right: 10px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    font-size: 1.8em;
    line-height: 40px;
    font-weight: 900;
}
.product-collateral > dl > dd.current {
    display: block;
}
.product-collateral > dl > dd {
    width: 100%;
    display: none;
}
.description-tab-main {
    padding: 25px;
}
.product-collateral.accordion-open > dl > dt.current {
    border-bottom: 1px solid #cccccc;
}
.product-collateral > dl > dt {
    width: 100%;
    padding: 9px 10px 9px 80px;
    font-weight: 700;
    border: 1px solid #cccccc;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(204, 204, 204);
    text-transform: none;
}
.product-collateral > dl > dt {
    display: none;
}
.video-wrapper {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 1px solid #6a973c;
    padding: 25px;
}
.video-wrapper .left, .video-wrapper .right {
    width: calc(50% - 12px);
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.video-iframe {
    padding-bottom: 56.25%;
    position: relative;
}
.video-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-list {
    height: 100%;
    overflow-y: auto;
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
}
.active .video-item-wrap {
    border-color: #6a963c;
    background-color: #eaeaea;
}
.video-item-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
    background-color: transparent;
    border-style: solid;
    border-color: transparent;
    border-width: 1px 13px 1px 1px;
    position: relative;
}
.video-item-wrap .image {
    width: 31%;
}
.video-item-wrap .image img {
    width: 100%;
    display: block;
}
.video-item-wrap .text {
    width: 69%;
    padding-left: 15px;
}
.active .video-item-wrap .text .title, .active .video-item-wrap .text .subtitle {
    color: #000000;
}
.video-item-wrap .text .title {
    font-weight: 700;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    height: 1.5em;
}
.video-item-wrap .text .subtitle {
    text-transform: capitalize;
    overflow: hidden;
    height: 4.5em;
}
.delivery-block {
    margin-bottom: 20px;
}
.delivery-block, .warranty-block {
    padding: 1px 20px;
}
.collateral-tabs dd .delivery-block h2, .delivery-bottom h2 {
    font-weight: 700;
    letter-spacing: 1.5px;
}
.collateral-tabs dd h2 {
    font-size: 20px;
    margin: 20px 0;
    font-weight: 600;
    text-transform: none;
    color: #000;
}
.delivery-main p, .warranty-main p {
    margin: 20px 0;
}
.delivery-main ul, .warranty-main ul {
    list-style: disc;
    margin: 20px 0 20px 70px;
}
.delivery-main ul, .warranty-main ul {
    list-style: disc;
}
.delivery-block:nth-child(2n), .warranty-block:nth-child(2n+1) {
    background-color: #eaeaea;
}

.delivery-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.delivery-extra.expanded {
    max-height: 5000px;
}
.delivery-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.delivery-left {
    width: 60%;
}
.delivery-right {
    width: 40%;
}
.collateral-tabs dd .delivery-bottom h2 {
    padding: 20px;
    margin: 0;
}
.delivery-left img {
    display: block;
    width: 100%;
}
.zone-wrap {
    display: flex;
    align-items: center;
}
.zone-wrap:nth-child(2) .zone-number::after {
    border-left-color: #70282c;
}
.zone-number::after {
    content: "";
    display: block;
    border-right: 0;
    border-bottom: 38px solid transparent;
    border-top: 38px solid transparent;
    border-left: 17px solid #9e3a3c;
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
}
.zone-number {
    background-color: #9e3a3c;
    color: #fff;
    padding: 19px 44px 19px 53px;
    font-size: 37px;
    line-height: 39px;
    font-weight: 700;
    position: relative;
    margin-right: 45px;
    white-space: nowrap;
}
.zone-content {
    font-weight: 700;
    text-transform: uppercase;
}
.delivery-partners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
}
.partner-item {
    width: 50%;
    padding: 50px 25px;
}
.partner-item img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    max-height: 104px;
    width: 151px;
}
.zone-wrap:nth-child(2) .zone-number::after {
    border-left-color: #70282c;
}

.zone-wrap:nth-child(2) .zone-number {
    background-color: #70282c;
}
.zone-wrap:nth-child(3) .zone-number::after {
    border-left-color: #aeaeae;
}
.zone-wrap:nth-child(3) .zone-number {
    background-color: #aeaeae;
}
.warranty-main {
    padding: 20px;
}
.warranty-block {
    margin-bottom: 1.5em;

}
.warranty-block p {
    margin: 0.5em 0;
}
.warranty-main p, .warranty-main ul {
    letter-spacing: 1px;
}
.warranty-block-title {
    font-weight: bold;
}
.warranty__more.expanded {
    display: block;
}
.warranty__more {
    display: none;
}
@media (min-width: 770px) {
    .product-img-box {
        display: flex;           /* make it a flex container */
        gap: 15px;               /* space between thumbs and main image */
        /*width: 100%;*/
        width: 50%;
        float: left;
        padding-right: 0;
        max-height: 550px;
    }

    .more-views {
        order: -1;               /* move before main image */
    }

    .product-image-thumbs {
        display: flex;
        flex-direction: column;  /* stack thumbnails vertically */
        gap: 0px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .product-image-thumbs li {
        display: block;          /* each thumbnail is full block */
    }

    .product-image-thumbs img {
        width: 60px;             /* thumbnail size */
        height: auto;
        border: 1px solid #ddd;
        cursor: pointer;
        transition: border 0.3s;
    }

    .product-image-thumbs img:hover {
        border: 1px solid #333;
    }

    .product-image {
        flex: 1;                 /* main image takes remaining space */
    }

    .product-image img {
        max-width: 100%;
        height: auto;
        max-height: 550px;
    }
    .catalog-product-view .product-view .right-section {
        float: left;
        width: 50%;
        /*padding-left: 11px;*/
        margin-top: -6px;
    }
    .delivery-message {
        font-size: 16px;
        color: #347a00;
        display: flex;
        align-items: center;
        padding: 5px 0px 10px 0;
        margin: 5px 0px 10px 0;
    }
    .delivery-message span {
        font-size: 16px !important;
    }
    .product-price-cart .price-info .price-including-tax .price-box .price {
        font-size: 28px;

    }
}

.product-view .add-to-cart-wrapper, .product-view .block-related {
    width: auto;
    float: none;
    clear: none;
    padding: 10px 0px 0px 0px;

}
.product-view .product-shop {

    float: none;
}
.product-view .product-shop .extra-info {
    margin-bottom: 0;
}
.main-container {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    /*padding-inline: 0.5rem;*/
    margin-left: 4%;
    margin-right: 5%;
}
.catalog-product-view .related-products-slider .price-row .price-box {
    margin: 0;
}

.catalog-product-view .related-products-slider .related-item .product-image{
    border: none;
}
.product-image-gallery {
    display: flex;
    flex-direction: column; /* main image on top, gallery images below */
    align-items: center;    /* center everything */
    gap: 15px;
    max-width: 600px;       /* controls total gallery width */
    margin: 0 auto;         /* center on page */
}

.product-image-gallery .gallery-image.visible {
    /*max-width: 100%;    never overflow the container */
    height: auto;      /* keep aspect ratio */
    /*border: 1px solid #ddd;*/
    /*border-radius: 6px;*/
}

.product-image-gallery .gallery-image {
    max-width: 80px;   /* size of thumbnails */
    height: auto;
    cursor: pointer;
    /*border: 1px solid #ccc;*/
    border-radius: 4px;
    margin: 4px;
}

.product-image-gallery .gallery-image:hover {
    border-color: #000;
}
.product-img-box .product-image {
    border: none;
}
@media (min-width: 600px) {
    .related-item .name a {
        display: inline-block;
        max-width: 210px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }
    .upsell-item .name a {
        display: inline-block;
        max-width: 210px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }
}
.product-collateral .toggle-tabs li.current > span {
    z-index: 5;
    color: #ffffff;
}

@media (max-width: 770px) {
    .product-img-box .product-name h1 {
        color: #000000 !important;
        text-transform: none !important;
        font-size: 20px !important;
    }
    .product-price-cart .price-info .price-including-tax .price-box p span {

        font-size: 18px !important;
        color: #000;
        font-weight: bold;
        margin-left: 5px;
        margin-right: 0;
    }
    .price-box .old-price, .price-box .special-price {
        padding: 0;
    }
    .product-price-cart .price-info .price-including-tax .price-box p .percentage-off {
        margin-right: 10px;
        display: inline-block;
        margin-left: 15px;
        padding: 10px 19px;
        border-radius: 5px;
        color: #fff;
        background-color: #2F4858;
        font-size: 18px;
        font-weight: 800;
    }
    .catalog-product-view .qty-btn {
        width: 100px;
        height: 55px;
        font-size: 35px;
        font-weight: bold;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #347a00;
        padding: 0 0 0 55px;
        background: transparent;
    }
    .qty-wrapper {
        transform: unset !important;
    }
    .catalog-product-view .input-text.qty {
        text-align: center;
        border: medium;
        width: 25px;
        height: 55px;
        font-size: 15px;
        border-radius: 4px;
        padding: 0 0 0 50px;
        background: #fff;
        color: #347a00;
        font-weight: bold;
    }
    .catalog-product-view .btn-buy-now {
        margin-left: 0;

    }
    .catalog-product-view .why-choose-us-wrapper-product-page .wcu-item {
        max-width: 100%;
        margin-top: 5px;
    }
    .catalog-product-view .why-choose-us-wrapper-product-page .wcu-items {
        display: block;
    }

    .catalog-product-view .product-collateral .toggle-tabs {
        display: block;
    }
    .product-collateral .toggle-tabs li {
        width: 100%;
    }
}
.right-section .sticky-price-container .regular-price {
    padding: 10px 20px;
}






.vertical-owl-carousel {
    max-height: 500px; /* adjust */
    overflow: hidden;
}

.vertical-owl-carousel .owl-nav .prev,
.vertical-owl-carousel .owl-nav .next {
    cursor: pointer;
    font-size: 20px;
    margin: 5px 0;
}

.related-products .owl-carousel .owl-stage::after {
    display: contents;
}
.upsell-item .owl-carousel .owl-stage::after {
    display: contents;
}
.related-item .regular-price {
    padding-right: 10px;
}
.related-products .price-box .price-label {

    display: none;
}
.related-item {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px; /* optional, for smoother edges */
    padding: 10px;      /* optional, to give some spacing inside */
    background: #fff;   /* ensures shadow looks clean */
}
.upsell-item {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px; /* optional, for smoother edges */
    padding: 10px;      /* optional, to give some spacing inside */
    background: #fff;   /* ensures shadow looks clean */
}

.catalog-product-view .upsell-products-slider .price-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background: #477E00;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}
.upsell-item .price-label {
    display: none;
}
.catalog-product-view .upsell-products-slider .price-row .price-box {
    margin: 0;
}
.catalog-product-view .upsell-products-slider .price-row .price-value {
    /* font-weight: 700; */
    font-size: 18px;
    padding-right: 10px;
}
.catalog-product-view .upsell-products-slider .price-row .inc-vat {
    font-size: 13px;
    font-weight: normal;
}
.upsell-item .product-image {
    border: none;
}
.catalog-product-view .upsell-header h2 {
    font-size: 22px;
    margin: 0;
    color: #000;
    border-bottom: 1px solid;
    text-transform: none;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    color: #000;
    text-align: left;
    border-bottom: 1px solid #dcdcdc;
    /* border-top: 1px solid #dcdcdc; */
    padding: 0px 15px 15px 15px;
    letter-spacing: 1px;
}
.product-img-box .product-image {
    border: none;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.breadcrumbs strong {
    color: #d52a34;
    font-weight: normal;
}
.why-choose-us-wrapper-product-page {
    padding: 10px 0 10px 0;
}
@media (min-width: 770px) {
    /* slick slider */
    .slick-next::before {
        content: none !important;
    }
    .slider-for .slick-prev, .slider-for .slick-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #000;
        font-size: 24px;
        padding: 5px 10px;
        cursor: pointer;
        z-index: 2;
    }
    .slider-for .slick-next {
        right: 0px;
    }
    .slick-prev::before {
        content: none !important;
    }
    .slider-for .slick-prev {
        left: -15px;
    }
    .slider-for {
        position: relative;
    }



    .product-gallery {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 500px;
        margin: 0 auto;
    }

    .slider-for {
        width: 500px; /* adjust as needed */
    }

    .slider-for img {
        width: 100%;
        height: 550px !important;
        object-fit: contain;
    }

    .slider-nav {
        width: 100px;
    }

    .slider-nav img {
        width: 100%;
        height: 95px;
        object-fit: cover;
        cursor: pointer;
        border: 1px solid transparent;
        margin-top: 5px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        border-radius: 6px;
        transition: all 0.2s ease-in-out;
        background: #fff;
    }

    /*    .slider-nav .slick-current img {
            border-color: #d52a34;  highlight active thumb 
        }*/
    .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
        color: #000 !important;
        outline: none;
        background: transparent;
    }
/*    .delivery-message {
        margin-bottom: 20px !important;

    }*/
    .slider-nav img {
        width: 100%;
        height: 100px;
        padding: 5px;
        object-fit: cover;
        border: 2px solid transparent;
        box-shadow: 0 2px 6px rgba(0,0,0,.15);
        border-radius: 6px;
        cursor: pointer;
    }


}

/* EasyZoom overlay effect */
.easyzoom--overlay .easyzoom-flyout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;  /* cover full image */
    height: 100%;
    border: none;
    background: transparent;
    z-index: 10;
}
.easyzoom-flyout img {
    max-width: none !important;
    max-height: none !important;
    width: auto !important;
    height: auto !important;
}
.qty-wrappers {
    display: flex;
    align-items: center;
    gap: 5px;
    /* border: 1px solid #ccc; */
    /*padding: 0px 7px;*/
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    background: #dae5cc;
    height: 75px;
}

.more-views .slick-slide.slick-current.slick-active {
	border: 1px solid #4D8700;
}

@media (min-width: 1024px) and (max-width: 1400px) {

    .slider-for {
        width: 450px;
    }

}
@media (min-width: 1024px) and (max-width: 1500px) {
    .slick-vertical .slick-slide {

        width: 75px !important;
    }
    .catalog-product-view .input-text.qty {
        text-align: center;
        border: medium;
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 4px;
        padding: 10px 5px;
        background: #fff;
        color: #347a00;
        font-weight: bold;
    }
    .catalog-product-view .btn-buy-now {
        display: flex;
        align-items: center;
        padding: 20px 40px;
        font-size: 14px;
        background-color: #4d8700;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 4px;
        gap: 0px;
        margin-left: 17px;
        font-weight: bold;
        line-height: 1.5;
    }
    .catalog-product-view .btn-add-cart {
        display: flex;
        align-items: center;
        padding: 20px 40px;
        font-size: 14px;
        background-color: #1570EF;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 4px;
        font-weight: bold;
        gap: 0px;
    }
    .catalog-product-view .qty-btn {
        width: 40px;
        height: 40px;
        font-size: 35px;
        font-weight: bold;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #347a00;
        padding: 14px 28px;
        background: transparent;
    }
    .action-bar {
        display: flex;
        flex-flow: row nowrap;   /* force row, no wrapping */
        align-items: center;
        justify-content: flex-start; /* keep them in one line */
        gap: 15px;               /* spacing between items */
    }

    .action-bar .qty-wrapper {
        flex: 0 0 auto;          /* qty box keeps natural size */
    }

    .action-bar .btn-buy-now,
    .action-bar .btn-add-cart {
        flex: 0 0 auto;          /* buttons don’t stretch */
    }

}
/*@media (min-width: 1501px) {
    .action-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
         align-items: center; 
        justify-content: space-between;
    }

}*/

.product-collateral > dl > dd.video .not-available {
	border: 1px solid #6a973c;
}
.not-available {
	padding: 55px 0;
}
.not-available p {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-align: center;
  color: #000;
}
