.single-product-section {
    background-image: url('../img/bg-single-product.gif');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 160px;
}

.single-product-section.sticky-padding-top {
    padding-top: 60px;
}

.single-product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

#productSlider .content-overlay {
    z-index: 10;
    pointer-events: auto;
}

#productSlider h1 {
    width: 100%;
    font-weight: bolder;
}

@media (max-width: 768px) {
    #productSlider img {
        margin-top: 6rem;
        padding-top: 6rem;
    }

    .single-product-section p {
        background: rgba(0, 0, 0, 0.5);
        padding: 10px;
    }
}

.product-menu-wrapper {
    overflow-x: hidden;
    flex-wrap: wrap;
}

.product-menu-wrapper a,
.product-menu-wrapper span {
    white-space: nowrap;
}

/********** Product Overview **********/
.product-overview {
    overflow: auto;
}

.product-overview table,
.product-specifications table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: rgb(185 188 191 / 20%) 0px 0px 24px 5px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-overview tbody tr td,
.product-specifications tbody tr td {
    padding: 10px 16px;
    border-bottom: 1px solid #eee;
    text-align: justify;
}

.product-specifications tbody tr td:nth-child(odd) {
    white-space: nowrap;
}

@media screen and (max-width: 768px) {

    .product-specifications table,
    .product-specifications thead,
    .product-specifications tbody,
    .product-specifications th,
    .product-specifications td,
    .product-specifications tr {
        display: block;
    }
}

.product-specification tbody tr td:nth-child(odd) {
    font-weight: bold;
}

.product-overview img {
    width: 80%;
    height: 100%;
}

.product-overview ul li {
    flex: 0 0 100%;
}

.product-overview h3 {
    margin-bottom: 50px;
}

/********** Product Feature **********/
.product-feature {
    text-align: left;
}

.product-feature h5 {
    padding: 15px 0px;
}

.product-feature ul {
    list-style: circle !important;
    padding-left: 0;
    margin-bottom: 0px;
    display: block;
    padding-bottom: 20px;
}

.product-feature ul li {
    color: var(--bs-black) !important;
    padding-left: 0px;
    padding-right: 5px;
    margin-bottom: 10px !important;
}

/********** Product Gallery **********/
.main .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}

.main .card {
    color: #252a32;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
    width: 100% !important;
}

.main .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #ffffff;
}

.main .card-image a {
    background: none;
}

.main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    .main .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}

#productSlider img { 
    max-height: 500px;
    object-fit: contain;
    margin-top: 3rem;
    padding-top: 3rem;
    transition: transform 0.4s ease;
    z-index: 10;
    position: relative;
}