/* Start Related Product CSS */
.catalog-product-view .page {
    background: #f8f8f8;
}

/* HP design tokens (shared with homepage) */
.catalog-product-view {
    --hp-green: #5B8C2A;
    --hp-green-dark: #2D5A1E;
    --hp-green-hover: #4A7322;
    --hp-gold: #F5A623;
    --hp-card-border: #E8E8E8;
    --hp-text: #333333;
    --hp-text-light: #666666;
    --hp-text-muted: #999999;
    --hp-grey-bg: #F5F5F5;
    --hp-radius: 8px;
    --hp-radius-sm: 4px;
    --hp-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Related & Upsell section layout */
.catalog-product-view .related-products,
.catalog-product-view .upsell-products {
    margin: 20px 0;
}
.catalog-product-view .hp-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.catalog-product-view .hp-section__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #000;
    border-bottom: 1px solid #dcdcdc;
    padding: 0 15px 15px 15px;
    letter-spacing: 1px;
    text-transform: none;
}
.catalog-product-view .hp-carousel-nav {
    display: flex;
    gap: 8px;
}
.catalog-product-view .hp-carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--hp-card-border);
    background: #fff;
    color: var(--hp-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    padding: 0;
}
.catalog-product-view .hp-carousel-btn:hover {
    background: var(--hp-grey-bg);
    border-color: #CCC;
}
.catalog-product-view .hp-carousel-btn svg {
    width: 16px;
    height: 16px;
}
.catalog-product-view .hp-product-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.catalog-product-view .hp-product-carousel::-webkit-scrollbar {
    display: none;
}
.catalog-product-view .hp-product-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--hp-card-border);
    border-radius: var(--hp-radius);
    overflow: hidden;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.catalog-product-view .hp-product-card:hover {
    box-shadow: var(--hp-shadow-hover);
}
.catalog-product-view .hp-product-card__image-wrap {
    position: relative;
    padding: 12px;
    background: #FAFAFA;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.catalog-product-view .hp-product-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--hp-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 1;
}
.catalog-product-view .hp-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.catalog-product-view .hp-product-card__body {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.catalog-product-view .hp-product-card__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--hp-text);
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
    text-decoration: none;
}
.catalog-product-view .hp-product-card__name:hover {
    color: var(--hp-green);
}
.catalog-product-view .hp-product-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}
.catalog-product-view .hp-stars {
    display: flex;
    gap: 1px;
    color: var(--hp-gold);
}
.catalog-product-view .hp-stars svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.catalog-product-view .hp-product-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    margin-top: auto;
}
.catalog-product-view .hp-product-card__current-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--hp-green-dark);
}
.catalog-product-view .hp-product-card__vat {
    font-size: 11px;
    color: var(--hp-text-muted);
    font-weight: 400;
}
.catalog-product-view .hp-product-card__old-price {
    font-size: 13px;
    color: var(--hp-text-muted);
    text-decoration: line-through;
}
.catalog-product-view .hp-product-card__atc {
    width: 100%;
    padding: 10px;
    background: var(--hp-green);
    color: #fff;
    border: none;
    border-radius: var(--hp-radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    text-align: center;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
}
.catalog-product-view .hp-product-card__atc:hover {
    background: var(--hp-green-hover);
}

/* End Related & Upsell Product CSS */


/* Why Choose Us Design CSS */

/* Wrapper - flex row */
.catalog-product-view .why-choose-us-wrapper-product-page .wcu-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0;
    padding: 10px 0;
}

/* Individual card */
.catalog-product-view .why-choose-us-wrapper-product-page .wcu-item {
    min-width: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    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 */
}

/* Icon styling */
.catalog-product-view .why-choose-us-wrapper-product-page .wcu-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: #3a4f5c;
}

.catalog-product-view .why-choose-us-wrapper-product-page .wcu-icon svg {
    width: 100%;
    height: 100%;
}

.catalog-product-view .why-choose-us-wrapper-product-page .wcu-icon img {
    max-width: 40px;
    height: auto;
    display: block;
}

.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 {
    font-size: 15px;
    color: #444;
    line-height: 2.0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
.catalog-product-view .description-text p {
    margin-bottom: 1em;
}
.catalog-product-view .description-text ul {
    list-style: disc;
    padding-left: 25px;
    margin: 10px 0;
}
.catalog-product-view .description-text ul li {
    list-style: disc;
}
.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;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}


/* 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: none;
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 4px;
    padding: 4px;
    background: #fff;
    color: #347a00;
    font-weight: bold;
}
.catalog-product-view .qty-btn {
    width: 32px;
    height: 32px;
    font-size: 24px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #347a00;
    padding: 4px 8px;
    background: transparent;
}
.catalog-product-view .action-bar {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 10px;
}
.catalog-product-view .btn-buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    font-size: 14px;
    background-color: #4d8700;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    gap: 8px;
    font-weight: bold;
    line-height: 1.5;
    height: 48px;
    flex: 1 1 0;
    min-width: 170px;
    white-space: nowrap;
    overflow: hidden;
}
.catalog-product-view .btn-buy-now img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.catalog-product-view .btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    font-size: 14px;
    background-color: #1570EF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    gap: 8px;
    height: 48px;
    flex: 1 1 0;
    min-width: 170px;
    white-space: nowrap;
    overflow: hidden;
}
.catalog-product-view .btn-add-cart img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.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: 50%;
        float: left;
        padding-right: 0;
        max-height: 550px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .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;
        border-radius: 8px;
        cursor: pointer;
        transition: border 0.3s;
    }

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

    .product-image {
        flex: 1;                 /* main image takes remaining space */
        min-width: 0;            /* allow flex item to shrink below content size */
    }

    .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%;
}
.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;
}
.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: 40px;
        height: 48px;
        font-size: 22px;
        font-weight: bold;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #347a00;
        padding: 0;
        background: transparent;
    }
    .qty-wrapper {
        transform: unset !important;
    }
    .catalog-product-view .qty-wrappers {
        height: 48px;
    }
    .catalog-product-view .input-text.qty {
        text-align: center;
        border: none;
        width: 36px;
        height: 48px;
        font-size: 18px;
        border-radius: 4px;
        padding: 0;
        background: #fff;
        color: #347a00;
        font-weight: bold;
    }
    .catalog-product-view .action-bar {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 10px;
    }
    .catalog-product-view .btn-buy-now {
        margin-left: 0;
        height: 48px;
        font-size: 16px;
        min-width: 0;
        padding: 0 20px;
    }
    .catalog-product-view .btn-add-cart {
        grid-column: 1 / -1;
        height: 48px;
        font-size: 16px;
        min-width: 0;
        padding: 0 20px;
        width: 100%;
    }
    .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%;
    }

    .slider-nav {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        width: 100% !important;
        margin-top: 10px;
    }

    .slider-nav img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1;
        object-fit: cover;
        border-radius: 4px;
        border: 1px solid #ddd;
        cursor: pointer;
    }

    .catalog-product-view .right-section .short-description ul li {
        background-size: 14px auto;
        background-position: 10px center;
        padding-left: 32px;
        font-size: 14px;
        margin-left: 0;
    }

    .catalog-product-view .right-section .short-description ul {
        padding: 8px 10px;
    }
}
.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;
}

.product-img-box .product-image {
    border: none;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
}
.breadcrumbs strong {
    color: #d52a34;
    font-weight: normal;
}
.why-choose-us-wrapper-product-page {
    padding: 10px 0 10px 0;
}
@media (max-width: 1200px) and (min-width: 771px) {
    .catalog-product-view .why-choose-us-wrapper-product-page .wcu-items {
        grid-template-columns: repeat(2, 1fr);
    }
}
@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%);
        width: 44px;
        height: 44px;
        background: transparent;
        border: 2px solid rgba(0, 0, 0, 0.25);
        border-radius: 50%;
        color: #333;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        transition: all 0.15s;
        padding: 0;
    }
    .slider-for .slick-prev:hover, .slider-for .slick-next:hover {
        background: rgba(0, 0, 0, 0.08);
        border-color: rgba(0, 0, 0, 0.4);
    }
    .slider-for .slick-next {
        right: 10px;
    }
    .slick-prev::before {
        content: none !important;
    }
    .slider-for .slick-prev {
        left: 10px;
    }
    .slider-for {
        position: relative;
    }



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

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

    .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;
        border-radius: 8px;
        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: #333 !important;
        outline: none;
        background: transparent;
    }
    .slick-prev:active, .slick-next:active {
        background: rgba(0, 0, 0, 0.08);
    }
/*    .delivery-message {
        margin-bottom: 20px !important;

    }*/
    .slider-nav img {
        width: 100%;
        height: 100px;
        padding: 5px;
        object-fit: cover;
        border: 2px solid transparent;
        border-radius: 8px;
        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-radius: 5px;
    border: 1px solid #d9d9d9;
    background: #dae5cc;
    height: 48px;
    flex: 0 0 auto;
}

.more-views .slick-slide.slick-current.slick-active img {
	border: 1px solid #4D8700;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

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

    .slider-for {
        max-width: 450px;
    }

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

        width: 75px !important;
    }
    .catalog-product-view .btn-buy-now {
        padding: 0 20px;
    }
    .catalog-product-view .btn-add-cart {
        padding: 0 20px;
    }

}
/*@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: none;
}
.not-available {
	padding: 55px 0;
}
.not-available p {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-align: center;
  color: #000;
}

/* ============================================
 * Product Reviews Override
 * ============================================ */
#customer-reviews {
  padding: 1.5rem;
}

#customer-reviews .rv-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 1.5rem;
  background: #f5f5f5;
  border-radius: 12px;
}

#customer-reviews .rv-summary-left {
  display: flex;
  flex-direction: column;
}

#customer-reviews .rv-summary-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  text-transform: none;
  color: #333;
}

#customer-reviews .rv-avg-rating {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #333;
}

#customer-reviews .rv-avg-stars {
  margin: 0.25rem 0;
}
#customer-reviews .rv-avg-stars .rating-box {
  width: 100px;
  height: 20px;
  background-size: 20px !important;
}
#customer-reviews .rv-avg-stars .rating-box .rating {
  height: 20px;
  background-size: 20px !important;
}

#customer-reviews .rv-total-count {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}

#customer-reviews .rv-write-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #5B8C2A;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}
#customer-reviews .rv-write-btn:hover {
  background: #4A7322;
}

/* Star distribution bars */
#customer-reviews .rv-summary-bars {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 0.5rem;
}

#customer-reviews .rv-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#customer-reviews .rv-bar-label {
  font-size: 0.875rem;
  color: #666;
  white-space: nowrap;
  min-width: 50px;
}

#customer-reviews .rv-bar-track {
  flex: 1;
  height: 8px;
  background: #e8e8e8;
  border-radius: 4px;
  min-width: 200px;
  overflow: hidden;
}

#customer-reviews .rv-bar-fill {
  height: 100%;
  background: #f5a623;
  border-radius: 4px;
  transition: width 0.3s ease;
}

#customer-reviews .rv-bar-count {
  font-size: 0.875rem;
  color: #666;
  min-width: 30px;
  text-align: center;
}


/* Review list */
#customer-reviews .rv-list {
  margin-top: 1rem;
  columns: 1;
}

#customer-reviews .rv-card {
  padding: 1.5rem;
  background: #f5f5f5;
  border-radius: 12px;
  margin-bottom: 1rem;
}

#customer-reviews .rv-card--hidden {
  display: none;
}

#customer-reviews .rc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

#customer-reviews .rc-author {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

#customer-reviews .rc-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #d5d5d5;
  border-radius: 50%;
  color: #4a4a4a;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

#customer-reviews .rc-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #333;
}

#customer-reviews .rc-sep {
  color: #999;
}

#customer-reviews .rc-date {
  font-size: 0.875rem;
  color: #666;
}

/* Bigger stars in review cards */
#customer-reviews .rc-rating {
  flex-shrink: 0;
}
#customer-reviews .rc-rating .rating-box {
  width: 100px;
  height: 20px;
  background-size: 20px !important;
}
#customer-reviews .rc-rating .rating-box .rating {
  height: 20px;
  background-size: 20px !important;
}

#customer-reviews .rc-content {
  margin-bottom: 0;
}

#customer-reviews .rc-content--truncated .rc-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#customer-reviews .rc-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

#customer-reviews .rc-readmore {
  background: none;
  border: none;
  color: #5B8C2A;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0;
  margin-top: 0.25rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#customer-reviews .rc-readmore:hover {
  color: #4A7322;
}

/* View All button */
#customer-reviews .rv-viewall {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-top: 0;
  background: none;
  color: #333;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid #5B8C2A;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
}
#customer-reviews .rv-viewall:hover {
  background: rgba(91, 140, 42, 0.05);
}

/* Empty state */
#customer-reviews .rv-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
}
#customer-reviews .rv-empty img {
  width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
}
#customer-reviews .rv-empty h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 0.5rem;
}
#customer-reviews .rv-empty p {
  font-size: 0.9375rem;
  color: #666;
  margin: 0 0 2rem;
}
#customer-reviews .rv-empty-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #5B8C2A;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}
#customer-reviews .rv-empty-btn:hover {
  background: #4A7322;
}

/* Responsive */
@media (max-width: 768px) {
  #customer-reviews .rv-summary {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #customer-reviews .rv-bar-track {
    min-width: 120px;
  }
}
