/* About Page */
#about-pg-video-wrapper video {
    max-height: 609px;
    object-position: bottom;
}

#about-pg-video-wrapper #about-pg-video {
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 16px;
    border-radius: 24px;
    background-color: #FFF;
    position: absolute;
    max-width: 163px;
    color: #236192;
    transition: 0.3s ease;
}

#about-pg-video-wrapper #about-pg-video:hover {
    color: #fff;
    background-color: #236192;
}

/* Related Products Slider */
.related-products-slider .related-single-product {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-products-slider .related-single-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* Image */
.related-products-slider .related-single-product .image-holder {
    position: relative;
    overflow: hidden;
}

.related-products-slider .related-single-product .image-holder img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Content */
.related-products-slider .related-single-product .content-holder {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Ratings */
.related-products-slider .product-ratings {
    margin-bottom: 8px;
}

.related-products-slider .product-ratings .star-rating {
    font-size: 14px;
    color: #f5a623;
}

/* Title */
.related-products-slider .product-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #236192;
    margin-bottom: 20px;
}

.related-products-slider .product-title a {
    color: #0a2540;
    text-decoration: none;
}

.related-products-slider .product-title a:hover {
    text-decoration: underline;
}

/* Excerpt */
.related-products-slider .product-excerpt {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Footer */
.related-products-slider .rel-prod-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Price */
.related-products-slider .product-price {
    font-size: 24px;
    font-weight: 800;
    color: #236192;
    margin: 0;
}

.related-products-slider .product-price del {
    font-size: 14px;
    color: #9ca3af;
    margin-right: 6px;
}

.related-products-slider .product-price ins {
    text-decoration: none;
}

/* Add to cart button */
.related-products-slider .product-add-to-cart {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0b4aa2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.related-products-slider .product-add-to-cart:hover {
    background: #083b82;
    transform: scale(1.05);
}

.related-products-slider .product-add-to-cart :is(svg, i) {
    font-size: 18px;
    color: #fff;
}