
/* =========================================================
   KOEMI SHOP - SINGLE PRODUCT
   ========================================================= */

/* Product title */
.product_title {
    margin-top: 90px;
	margin-bottom: 30px;
}

#content>h1.product_title {
	font-size: 40px;
	font-weight: 700;
}

@media (max-width: 770px) {
    #content>h1.product_title {
        font-size: 30px;
    }
}

/* Main product area */
.single-product div.product {
    width: 1100px;
    max-width: 90%;
    margin: 0 auto;
}

/* Product image */
.single-product div.product .woocommerce-product-gallery {
    width: 48%;
    float: left;
    margin-bottom: 50px;
}

.single-product div.product .woocommerce-product-gallery img {
    max-width: 75%;
    margin: 0 auto;
    display: block;
}

/* Remove the magnifying-glass / fullscreen button */
.single-product .woocommerce-product-gallery__trigger {
    display: none !important;
}

/* Product information on the right */
.single-product div.product .summary {
    width: 48%;
    float: right;
    margin-bottom: 50px;
}

/* Product title */
.single-product div.product .product_title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Price */
.single-product div.product .summary .price {
    color: #ea5b0b;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
}

.single-product div.product .summary .price .woocommerce-Price-amount {
    color: #ea5b0b;
}

/* Short description */
.single-product div.product .woocommerce-product-details__short-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Quantity */
.single-product div.product .quantity {
    margin-right: 10px;
}

/* Add to cart */
.single-product div.product .single_add_to_cart_button {
    background: #ea5b0b !important;
    color: white !important;
    border: none;
    padding: 12px 22px;
    font-size: 16px;
    cursor: pointer;
}

.single-product div.product .single_add_to_cart_button:hover {
    background: #c94d09 !important;
}

/* Product metadata */
.single-product div.product .product_meta {
    margin-top: 30px;
    font-size: 14px;
}

/* Clear the two-column product area */
.single-product div.product::after {
    content: "";
    display: table;
    clear: both;
}

/* Product images */
.woocommerce div.product div.images .flex-control-thumbs {
	display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 0;
}

/* Description / information */
.single-product div.product .woocommerce-tabs {
    clear: both;
    padding-top: 60px;
    margin-top: 40px;
}

/* Related products */
.single-product div.product .related.products {
    clear: both;
    padding-top: 60px;
    margin-top: 40px;
}

/* Quantity button */
.woocommerce div.product form.cart div.quantity {
	margin-right: 20px; !important
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    width: fit-content;
}

.quantity-selector__button {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-selector__button:hover {
    background: #f5f5f5;
}

.quantity-selector__input {
    width: 40px !important;
    height: 40px;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent;
    text-align: center;
    font-size: 14px;
}

.quantity-selector__input::-webkit-outer-spin-button,
.quantity-selector__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-selector__input {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Disable button shake */
.quantity-selector__button,
.quantity-selector__button:hover,
.quantity-selector__button:focus,
.quantity-selector__button:active {
    animation: none !important;
    transform: none;
}