/*
Theme Name: Dr. Leigh Child
Theme URI: https://drleigh.qodeinteractive.com
Description: A child theme of Dr. Leigh
Author: Mikado Themes
Author URI: https://qodeinteractive.com
Version: 1.0
Text Domain: drleigh
Template: drleigh
*/

.wcgs-video-icon:after {
	color: #222222 !important;
}

.product-home-category .qodef-m-image a {
	overflow:hidden;
}

.product-home-category .qodef-m-image a img {
	transition: 0.3s linear 0s;
}

.product-home-category .qodef-m-image a:hover img {
	transform: scale(1.1)
}

.single-post .polymati-blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.single-post .polymati-blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.single-post .polymati-blog-hero img {
	width: 100%;
}

.qodef-comment-form .form-submit .qodef-button {
	background: #000000;
    border-radius: 50px;
}
.single-post .qodef-comment-form .form-submit .qodef-button:hover {
    color: #fff;
    background: #1b9a0a;
}

.single-post #qodef-page-comments-list .qodef-comment-item .qodef-e-image img {
    display: block;
    border-radius: 50%;
}

.single-post #qodef-page-comments-list .qodef-comment-item .qodef-e-date a {
    color: #656565 !important;
    font-size: 16px;
	margin-bottom: 10px;
    display: block;
}

.single-post #qodef-page-comments-list .qodef-comment-item .qodef-e-text p {
	color: #656565 !important;
}

.single-post #qodef-page-comments-list .qodef-comment-item .qodef-e-content .qodef-e-content-top {
    display: block;
}

.single-post #qodef-page-comments-list .qodef-comment-item .qodef-e-title {
    margin-bottom: 17px !important;
	color: #000000 !important
}

.single-post #qodef-page-comments-list .qodef-comment-item .qodef-e-links a {
    color: #FF383C !important;
}

.related-articles {
	padding: 60px 0;
    max-width: 100%;
    width: 1150px;
    margin: 0 auto;
}

.related-articles h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
	
}

.related-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.related-card:hover {
    transform: translateY(-6px);
}

.related-card .thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.related-card .content {
    padding: 22px;
}

.related-card .cat {
    display: inline-block;
    background: #f2f2f2;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

.related-card .meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.related-card h3 {
    font-size: 20px;
    margin: 10px 0;
}

.related-card h3 a {
    color: #111;
    text-decoration: none;
}

.related-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.related-card .read-more {
    display: inline-block;
    margin-top: 15px;
    color: #6b4eff;
    font-weight: 600;
    text-decoration: none;
}

.polymati-blog-post-card .polymati-post-category a {
    background: #F8F8F8;
    border-radius: 30px;
    padding: 5px 23px;
    display: inline-block;
    font-size: 14px;
    color: #000000;
    margin-bottom: 16px;
}

/* Blog archive style */
.polymati-blog-archive-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:28px;
}

.polymati-blog-archive-grid .archive-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.07);
  transition:.3s;
}

.polymati-blog-archive-grid .archive-card:hover{
  transform:translateY(-6px);
}

.polymati-blog-archive-grid .archive-thumb img{
  width:100%;
  height:230px;
  object-fit:cover;
}

.polymati-blog-archive-grid .archive-body{
  padding:20px;
}

.polymati-blog-archive-grid .archive-cat{
  background:#f3f3f3;
  padding:4px 12px;
  border-radius:20px;
  font-size:13px;
  display:inline-block;
  margin-bottom:8px;
}

.polymati-blog-archive-grid .archive-meta{
  font-size:13px;
  color:#777;
  margin-bottom:8px;
}

.polymati-blog-archive-grid .archive-title{
  font-size:19px;
  margin-bottom:8px;
}

.polymati-blog-archive-grid .archive-title a{
  text-decoration:none;
  color:#111;
}

.polymati-blog-archive-grid .archive-readmore{
  color:#5a4bff;
  font-weight:600;
}



/* Pagination Styles */
.polymati-blog-archive-pagination {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 30px 0 50px;
}

.polymati-blog-archive-pagination a.page-numbers,
.polymati-blog-archive-pagination span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 10px 15px;
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.polymati-blog-archive-pagination .page-numbers:hover {
  background-color: #6c5ce7;
  color: #ffffff;
  transform: translateY(-2px);
}

.polymati-blog-archive-pagination .page-numbers.current {
  background-color: #6c5ce7;
  color: #ffffff;
  pointer-events: none;
}

.polymati-pagination .dots {
  background: transparent;
  color: #999;
  pointer-events: none;
}

.polymati-blog-archive-pagination .prev,
.polymati-blog-archive-pagination .next {
  font-weight: 600;
}

.wc-block-components-checkout-place-order-button {
	background: #000;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
}

.wc-block-components-checkout-place-order-button:hover {
	background: #169807;
	color: #ffffff;
	border: 2px solid #169807;
}

#qodef-page-header-inner {
    border-bottom: 0px solid #dedede;
}
.qodef-svg--star {
    fill: #ffb400;
}

.single-product .qodef-woo-product-title {
	font-size: 30px;
    line-height: 40px;
}
.widget .tagcloud a, .widget .wp-block-tag-cloud a {
    color: #9D9DA2;
    background-color: transparent;
    border: 1px solid #9D9DA2;
    font-size: 14px !important;
    text-transform: capitalize;
    letter-spacing: inherit;
    border-radius: 4px;
    padding: 7px 10px 7px;
    margin: 0;
    font-weight: 400;
}

.wc-block-cart .wc-block-cart-items th:first-child {
	padding-left: 16px;
}

.widget_drleigh_core_woo_side_area_cart .qodef-widget-side-area-cart-inner .qodef-m-action-link:first-child {
	 background-color: #222222;
	 padding-left: 30px;

}
.widget_drleigh_core_woo_side_area_cart .qodef-widget-side-area-cart-inner .qodef-m-action-link {
	border-radius: 50px;
}
.error404 #qodef-page-content {
    justify-content: center;
}
.error404 .qodef-404-button {
	text-align: center;
	margin-bottom: 40px;
}
.error404 .qodef-404-button a {
	border-radius: 50px;
}
.polymati-404-page img {
	padding-bottom: 30px;
}

.qodef-woo-product-title {
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.qodef-qi-woo-shortcode-product-slider .qodef-e-product-heading {
	flex-direction: column-reverse;
}

.best-collection-section .qodef-qi-woo-shortcode-product-slider .qodef-e-product-image img {
	height: 280px;
	object-fit: contain;
}

.woocommerce-checkout #qodef-woo-page .polymati-checkout-page .woocommerce-checkout-review-order .place-order button {
	border-radius: 50px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.woocommerce-checkout #qodef-woo-page .polymati-checkout-page .woocommerce-checkout-review-order .place-order button:hover {
	color: #fff;
	background: #169807;
}

.qodef-bubbles-holder {
	display: none;
}

.elementor-widget-slider_revolution canvas {
    border-radius: 30px;
}

.qodef-woo-product-list .qodef-e-media-image a, .qodef-woo-product-list .qodef-e-media-image img {
    border-radius: 10px;
	background: #f2f2f2;
}

.qodef-woo-product-list .qodef-e-content {
	text-align: left;
	margin-left: 0;
}

#qodef-woo-page .price, #yith-quick-view-modal .price, .qodef-woo-shortcode .price {
    justify-content: flex-start;
}

@media only screen and (max-width: 1440px) {
    .best-collection-section .swiper-button-prev.swiper-button-outside {
        left: 20px !important;
    }
	.best-collection-section .swiper-button-next.swiper-button-outside {
        right: 20px !important;
    }
}



.best-collection-section .qodef-qi-woo-shortcode-product-slider.qodef-item-layout--info-below-with-hover .qodef-e-product-content {
	text-align: center;
    width: 60%;
    margin: 0 auto;
	display: block;
}

.best-collection-section .qodef-qi-woo-shortcode-product-slider .qodef-e-product-heading {
    align-items: center;
}

form.fluent_form_2 .polymati_newsletter_form .wpf_has_custom_css.ff-btn-submit {
	background-color: rgba(87, 179, 46, 1) !important;
}

.perfection_section .qodef-woo-product-title {
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.perfection_section .qodef-woo-product-list .qodef-e-content, .enjoy_your_selection .qodef-woo-product-list .qodef-e-content {
	text-align: left;
	max-width: 100%;
}

.perfection_section .qodef-woo-shortcode .price, .enjoy_your_selection .qodef-woo-shortcode .price {
	justify-content: flex-start;
}


/* === FORCE FULL-WIDTH FOOTER EVEN INSIDE qodef-content-grid === */
.qodef-content-grid footer#colophon {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Allow Elementor footer content to expand */
.qodef-content-grid footer#colophon .footer-width-fixer {
    width: 100%;
    max-width: 100%;
}

#qodef-page-inner {
    padding-bottom: 0px;
}

.woocommerce-page main#qodef-page-content {
	padding-bottom: 160px;
}

.polymati-blog-container {
	  max-width: 100%;
    width: 1150px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    margin-top: -200px;
    position: relative;
    padding: 65px 80px;
}

.single-post #qodef-page-outer .qodef-content-grid[class] {
    width: 100%;
    margin: 0 auto;
    padding: 0 !important;
}

.polymati-blog-category a {
	  background: #F8F8F8;
    border-radius: 30px;
    padding: 5px 23px;
    display: inline-block;
    font-size: 16px;
}

#qodef-woo-page.qodef--checkout .wc_payment_methods label {
    font-size: 13px;
    letter-spacing: inherit;
}

.wc_payment_method.payment_method_sslcommerz label {
	display: flex;
	gap: 10px;
}

.woocommerce-cart #qodef-page-inner, 
.woocommerce-checkout #qodef-page-inner {
    padding: 125px 0px 0px;
}

.qodef-header-navigation>ul>li>a .qodef-menu-item-arrow {
    display: block;
}

.qodef-header-navigation ul li a .qodef-menu-item-arrow {
    top: calc(50% - 5px);
    right: -8px;
}

#qodef-woo-page.qodef--single .woocommerce-product-details__short-description img {
    width: 70px;
   
}

#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-label {
	letter-spacing: inherit;
	margin-right: 10px;
	font-size: 13px;
}
#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-value, #yith-quick-view-content.single-product .product_meta .qodef-woo-meta-value {
    top: 0;
}

/* Responsive */
@media (max-width: 1200px) {
 	.related-articles {
        max-width: 90%;
        padding-top: 0;
    }
}
@media (min-width: 768px) and (max-width: 1200px) {
	.polymati-single-blog .polymati-blog-container {
        max-width: 90%;
        margin-top: -115px;
        padding: 56px 30px;
    }
	
	qodef-navigation-together--top .qodef-swiper-together-nav {
    	margin-bottom: -300px;
	}
	
	.product-home-category .qodef-swiper-together-inner {
		width: 75% !important;

	}
    
   
}
@media (max-width: 900px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.woocommerce-page main#qodef-page-content {
    	padding-bottom: 120px;
	}
}

@media (max-width: 767px) {
	.polymati-single-blog .polymati-blog-container {
        max-width: 94%;
        margin-top: -40px;
        padding: 30px 20px;
    }
    .polymati-single-blog .polymati-blog-container .polymati-blog-title {
        font-size: 24px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 680px) {
    #qodef-woo-page.qodef--single .woocommerce-product-details__short-description {
        max-height: inherit;
    }
	#qodef-woo-page.qodef--single .woocommerce-product-details__short-description.expand-description {
        cursor: pointer;
        display: initial;
    }
}

@media (max-width: 600px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
	
	.wc_payment_method.payment_method_sslcommerz label {
		display: block;
	}
	
	.woocommerce-page main#qodef-page-content {
    	padding-bottom: 70px;
	}
    
    
}