.product {
    display: flex;
    align-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    width: 100%;
}
.slider {
    flex: 1;
    position: relative;
    text-align: -webkit-center;
    margin: 0% 10%;
}
.slider img {
    width: 100%;
    display: none;
}
.slider img.active {
    display: block;
}
.slider-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.slider-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.slider-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.product-info {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-title {
    font-size: 2em;
    margin: 0;
}
.product-price {
    color: #B12704;
    font-size: 1.5em;
}
.product-description {
    margin: 20px 0;
}
.product-specifications {
    margin: 20px 0;
}
.product-specifications ul {
    padding-left: 20px;
}
.product-specifications ul li {
    margin-bottom: 10px;
}
.add-to-cart {
    display: inline-block;
    background-color: #FFA41C;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.add-to-cart:hover {
    background-color: #cc8400;
}

@media only screen and (max-width: 767px) {
    .slider {
        margin: 0% 0%;
    }
	
	.border-style{
		border-bottom-style: dashed;
		margin-bottom: 16px;
	}
}

@media (min-width: 992px) {
	.border-style{
		border-right-style: dashed;
	}
}

.mb-16{
	margin-bottom: 16px !important;
}

.mt-16{
	margin-top: 16px !important;
}