﻿.container12 {
    max-width: 95%;
    margin: 0 auto;
    background-color: #f5f5f5;
    border: 1px solid #f7f7f9;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.pdetails ul {
    padding-left: 0px;
}
.product-info, .enquiry-form {
    display: inline-block;
    vertical-align: top;
}

.product-info {
    width: 60%;
    padding-right: 20px;
    box-sizing: border-box;
}

    .product-info h2 {
        color: #b53a0b;
        margin: 0 0 10px 0;
        font-size: 24px;
    }

    .product-info .old-price {
        text-decoration: line-through;
        color: #999;
    }

    .product-info .new-price {
        color: #000;
        font-weight: bold;
    }

.enquiry-form {
    width: 39%;
    background-color: #ffffff;
    border: 1px dotted;
    padding: 15px;
    box-sizing: border-box;
}

    .enquiry-form h3 {
        color: #b53a0b;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .enquiry-form input, .enquiry-form textarea {
        width: 100%;
        padding: 10px;
      /*  margin-bottom: 10px;*/
        border: 1px solid #e5a275;
        border-radius: 3px;
    }

        .enquiry-form input[type="submit"] {
            color: #fff;
            box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.1);
            background: #a94442;
            padding: 7px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 15px;
            letter-spacing: 1px;
            /* width: 49%; */
            border: none;
        }

.pricing-table {
    margin-top: 20px;
    width: 100%;
    border-collapse: collapse;
}

    .pricing-table th, .pricing-table td {
        padding: 10px;
        text-align: center;
        border: 1px solid #f4c7a1;
    }

    .pricing-table th {
        background-color: #b7633b;
        color: white;
    }

    .pricing-table tr:nth-child(even) {
        background-color: #fff5eb;
    }
.image-gallery {
    /*display: flex;*/
}

.thumbnail-container {
    width: 90%;
    overflow-x: scroll;
    white-space: nowrap;
    margin-top: 10px;
}

.thumbnails {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .thumbnails li {
        display: inline-block;
        margin-right: 10px;
        cursor: pointer;
        width: 15%;
    }

.thumbnail-container .thumb-image img {
    width: 100%;
    border: 2px solid #ddd;
    transition: border-color 0.3s;
    height: 93px;
    object-fit: contain;
}

    .thumbnail-container .thumb-image img:hover {
        border-color: #000;
    }

.main-image {
    width: 90%;
    text-align: center;
}

    .main-image img {
        width: 100%;
        height: 300px;
        object-fit: contain;
        border: 1px solid #ddd;
    }
.product-info ul li {
    line-height: 20px;
    margin-bottom: 3px;
    font-size: 15px;
    padding: 5px;
    border-bottom: 1px solid #ccc;
}

.product-info ul {
    margin: 20px 0 0;
    list-style: none;
    /* padding-left: 16px; */
}
.product__carousel {
    display: block;
    max-width: 700px;
    margin: 1em auto 3em;
}

    .product__carousel a {
        display: block;
        margin-bottom: 15px;
    }

    .product__carousel .gallery-top {
        border: 1px solid #ebebeb;
        border-radius: 3px;
        margin-bottom: 5px;
    }

        .product__carousel .gallery-top .swiper-slide {
            position: relative;
            overflow: hidden;
        }

            .product__carousel .gallery-top .swiper-slide a {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
            }

                .product__carousel .gallery-top .swiper-slide a img {
                    width: 100%;
                    height: 100%;
                    -o-object-fit: contain;
                    object-fit: contain;
                }

            .product__carousel .gallery-top .swiper-slide .easyzoom-flyout img {
                min-width: 100%;
                min-height: 100%;
            }

    .product__carousel .swiper-button-next.swiper-button-white,
    .product__carousel .swiper-button-prev.swiper-button-white {
        color: #ff3720;
    }

    .product__carousel .gallery-thumbs .swiper-slide {
        position: relative;
        transition: border .15s linear;
        border: 1px solid #ebebeb;
        border-radius: 3px;
        cursor: pointer;
        overflow: hidden;
        height: calc(100% - 2px);
    }

        .product__carousel .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
            border-color: #000;
        }

        .product__carousel .gallery-thumbs .swiper-slide img {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            max-width: 100%;
        }


.swiper-container.gallery-top.swiper-container-initialized.swiper-container-horizontal {
    height: 410px !important;
}

.swiper-slide.easyzoom.easyzoom--overlay.swiper-slide-active.is-ready {
    width: 100% !important;
}

/*.product__carousel .gallery-thumbs .swiper-slide {
    height: 150px;
    width: 100px !important;
}*/

.faq-answer {
    display: none; /* Initially hide all answers */
    padding: 10px;
    /*background-color: #f9f9f9;*/
}

.faq-item.active .faq-answer {
    display: block; /* Show the answer when its parent has 'active' class */
}

.faq-question {
    cursor: pointer;
    /*font-weight: bold;*/
}