@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: "woodmart-font";
	src: url("//kinderlandtoys.com/wp-content/themes/woodmart/fonts/woodmart-font-1-400.woff2?v=7.5.1") format("woff2");
}

:root {
	--wd-header-banner-h: 40px;
	--wd-text-font: "DM Sans", Arial, Helvetica, sans-serif;
	--wd-text-font-weight: 400;
	--wd-text-color: #2F2F2F;
	--wd-text-font-size: 16px;
	--wd-title-font: "Baloo 2", Arial, Helvetica, sans-serif;
	--wd-title-font-weight: 600;
	--wd-title-color: #2F2F2F;
	--wd-entities-title-font: "Baloo 2", Arial, Helvetica, sans-serif;
	--wd-entities-title-font-weight: 600;
	--wd-entities-title-color: rgb(47,47,47);
	--wd-entities-title-color-hover: rgb(51 51 51 / 65%);
	--wd-alternative-font: "Josefin Sans", Arial, Helvetica, sans-serif;
	--wd-widget-title-font: "Quicksand", Arial, Helvetica, sans-serif;
	--wd-widget-title-font-weight: 700;
	--wd-widget-title-transform: uppercase;
	--wd-widget-title-color: 2F2F2F;
	--wd-widget-title-font-size: 16px;
	--wd-header-el-font: "Quicksand", Arial, Helvetica, sans-serif;
	--wd-header-el-font-weight: 600;
	--wd-header-el-transform: uppercase;
	--wd-header-el-font-size: 15px;
	--wd-primary-color: rgb(233,65,53);
	--wd-alternative-color: rgb(254,203,61);
	--wd-link-color: rgb(233,65,53);
	--wd-link-color-hover: rgb(254,203,61);
	--btn-default-bgcolor: rgb(233,65,53);
	--btn-default-bgcolor-hover: rgb(208,48,37);
	--btn-accented-bgcolor: rgb(240,107,29);
	--btn-accented-bgcolor-hover: rgb(240,107,29);
	--wd-form-brd-width: 2px;
	--notices-success-bg: #459647;
	--notices-success-color: #fff;
	--notices-warning-bg: #E0B252;
	--notices-warning-color: #fff;
}
.woodmart-woocommerce-layered-nav .wd-scroll-content {
	max-height: 190px;
}
.wd-popup.wd-age-verify {
	--wd-popup-width: 500px;
}
.wd-popup.wd-promo-popup {
	background-color: #111111;
	background-image: url(https://kinderlandtoys.com/wp-content/uploads/2021/08/promo-popup.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	--wd-popup-width: 800px;
}
.page-title-default {
	background-color: #0a0a0a;
	background-image: none;
	background-size: cover;
	background-position: center center;
}
.footer-container {
	background-color: #ffffff;
	background-image: none;
}
.page .main-page-wrapper {
	background-color: rgb(255,255,255);
	background-image: none;
}
.woodmart-archive-shop:not(.single-product) .main-page-wrapper {
	background-color: rgb(255,255,255);
	background-image: none;
}
.single-product .main-page-wrapper {
	background-color: rgb(255,255,255);
	background-image: none;
}
.woodmart-archive-blog .main-page-wrapper {
	background-color: rgb(255,255,255);
	background-image: none;
}
.single-post .main-page-wrapper {
	background-color: rgb(255,255,255);
	background-image: none;
}
.wd-popup.popup-quick-view {
	--wd-popup-width: 920px;
}

@media (max-width: 1024px) {
	:root {
		--wd-header-banner-h: 40px;
	}

}
:root{
--wd-container-w: 1222px;
--wd-form-brd-radius: 0px;
--btn-default-color: #fff;
--btn-default-color-hover: #fff;
--btn-accented-color: #fff;
--btn-accented-color-hover: #fff;
--btn-default-brd-radius: 5px;
--btn-default-box-shadow: none;
--btn-default-box-shadow-hover: none;
--btn-accented-brd-radius: 5px;
--btn-accented-box-shadow: none;
--btn-accented-box-shadow-hover: none;
--wd-brd-radius: 0px;
}

@media (min-width: 1239px) {
.platform-Windows .wd-section-stretch > .elementor-container {
margin-left: auto;
margin-right: auto;
}
}

@media (min-width: 1222px) {
html:not(.platform-Windows) .wd-section-stretch > .elementor-container {
margin-left: auto;
margin-right: auto;
}
}


/* ========================================
   SHOP PAGE IMPROVEMENTS - KINDERLAND TOYS
   ======================================== */

/* 1. PRODUCT TITLES - Show 2 lines instead of 1 */
.product-grid-item .product-title,
.product-grid-item .woocommerce-loop-product__title,
.products .product .product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: auto !important;
    min-height: 2.6em;
    line-height: 1.3em !important;
    white-space: normal !important;
}

/* 2. HOVER EFFECT - Second Image on Hover */
.product-grid-item .product-image-link {
    position: relative;
}

.product-grid-item .hover-img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.product-grid-item:hover .hover-img {
    opacity: 1;
}

/* 3. VIDEO BADGE for products with videos */
.product-has-video:before {
    content: "\f04b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    font-size: 12px;
}

/* 4. TWO LINE PRODUCT TITLES */
.product-grid-item .product-title,
.product-grid-item .woocommerce-loop-product__title {
    display: -webkit-box;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: auto !important;
    min-height: 2.6em;
    line-height: 1.3em !important;
    white-space: normal !important;
}

/* 5. HIDE SKU on product cards */
.product-grid-item .sku_wrapper,
.product-grid-item .product_meta .sku_wrapper {
    display: none !important;
}

/* Alternative if Font Awesome not available */
.product-video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,0,0,0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    z-index: 5;
    text-transform: uppercase;
}

/* 4. SOCIAL PROOF - X Customers Bought This */
.product-sales-count {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-sales-count:before {
    content: "\f007";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    color: #27ae60;
}

/* 5. IMPROVE FILTER SIDEBAR VISIBILITY */
.widget_layered_nav ul li,
.widget_price_filter,
.woocommerce-widget-layered-nav {
    margin-bottom: 8px;
}

.widget_layered_nav .woocommerce-widget-layered-nav-list__item a {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

/* 6. ACTIVE FILTERS DISPLAY */
.woocommerce-active-filters {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.woocommerce-active-filters ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.woocommerce-active-filters ul li {
    background: white;
    border: 1px solid #ddd;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.woocommerce-active-filters ul li a {
    color: #e74c3c;
    margin-left: 8px;
    font-weight: bold;
}

/* 7. PRODUCT GRID IMPROVEMENTS */
.product-grid-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* 8. STOCK INDICATORS */
.stock.in-stock {
    color: #27ae60;
    font-size: 12px;
    font-weight: 600;
}

.stock.out-of-stock {
    color: #e74c3c;
    font-size: 12px;
    font-weight: 600;
}

.low-stock-badge {
    background: #f39c12;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
}

/* 9. ENHANCED DISCOUNT BADGES */
.onsale {
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 8px 10px !important;
    border-radius: 50% !important;
}

/* 10. BETTER RATING DISPLAY */
.star-rating {
    margin: 5px 0;
}

/* 11. MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .product-grid-item .product-title {
        font-size: 14px;
        min-height: 2.8em;
    }
}

/* 4. TWO LINE PRODUCT TITLES - Show 2 lines instead of 1 */
.product .woocommerce-loop-product__title,
.product-grid-item .product-title,
.product h3 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    height: auto !important;
    min-height: 2.6em !important;
    line-height: 1.3em !important;
}

/* 5. HIDE SKU on product cards in shop/archive pages */
.product .sku,
.product .sku_wrapper,
.product-grid-item .sku,
.product-grid-item .sku_wrapper,
.woocommerce-loop-product__link .sku,
.woocommerce-loop-product__link .sku_wrapper {
    display: none !important;
}