/**
 * Theme Name: Jewelry Store Child
 * Template: jewelry-store
 * Version: 1.0
 * Theme URI: https://www.britetechs.com/theme/jewelry-store-free/
 * Author: britetechs
 * Author URI: https://britetechs.com/
 * Tags: sticky-post, one-column, two-columns, right-sidebar, custom-background, custom-header, custom-menu, featured-images, footer-widgets, theme-options, threaded-comments, full-width-template, custom-logo, blog, e-commerce, portfolio
 */

/* Product Category Section */


.category_wrap{
	position: relative;
	overflow: hidden;
}

.category_wrap .category_image{
	min-height: 230px;
    max-height: 230px;
    object-fit: cover;
    overflow: hidden;
}

.category_wrap .category_image img{
	transition: all .5s;
}

.category_wrap:hover .category_image img{
	transform: scale(1.1);
}

.category_wrap .category_image:before {
    background: rgba(255,255,255,.5);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 50%;
    top: 0;
    opacity: 1;
    width: 0;
    z-index: 2;
}

.category_wrap .category_image:after {
    background: rgba(255,255,255,.8);
    bottom: 50%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 1;
    width: 0;
    z-index: 2;
}

.category_wrap:hover .category_image:before {
    left: 0;
    right: 0;
    opacity: 0;
    width: auto;
    transition: all .9s linear;
}

.category_wrap:hover .category_image:after {
    top: 0;
    bottom: 0;
    opacity: 0;
    width: auto;
    transition: all .9s linear;
}

.category_overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	background-color: rgba(0, 0, 0, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
}

.category_title{
	font-size: 1rem;
	background-color: var(--bs-white);
	padding: 10px;
	border-radius: 4px;
	margin: 0;
}

.category_title a{
	color: #000;
	text-decoration: none;
	transition: .3s;
}

.category_title a:hover,
.category_title a:focus{
	color: var(--bs-primary);
}

.category_count{
	width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: var(--bs-primary);
    color: #fff;
    border-radius: 100%;
    text-align: center;
    font-size: .8rem;
    margin: 10px auto 0;
    font-weight: 600;
    letter-spacing: 0.25px;
}
#shop_slider.owl-carousel .owl-item img{
    max-height: 300px;
}
#shop_slider .product_single h3.product_title a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer .copyright a{
    color: var(--bs-primary);
    text-decoration:underline;
}
.footer .copyright a:hover{
    text-decoration:none;
}
ul.footer-menus li.current-menu-item a{
    color: var(--bs-primary);
}
.woocommerce ul.products li.product a img{
    max-height: 284px;
    max-width: 284px;
}
.product_single .product_content{
    min-height: 113px;
    max-height: 113px;
}