/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

.gpc-category-widget {
    --gpc-primary: #ff653f;
    --gpc-primary-light: #ffc85c;
    --gpc-dark: #1e104e;
    --gpc-secondary: #452e5a;
    --gpc-white: #ffffff;
    --gpc-muted: #666666;
    --gpc-border: #eeeeee;
    --gpc-soft-orange: #fff3ee;
    /*--gpc-shadow: 0 10px 20px rgba(78, 74, 86, 0.10);*/
    /*--gpc-shadow-strong: 0 18px 50px rgba(64, 60, 74, 0.14);*/

    --gpc-shadow: unset;
    --gpc-shadow-strong: unset;

    position: relative;
    width: 100%;
    max-width: 1080px;
    z-index: 1000;
}

.gpc-category-widget *,
.gpc-category-widget *::before,
.gpc-category-widget *::after {
    box-sizing: border-box;
}

.gpc-category-widget a {
    text-decoration: none;
}

.gpc-category-toggle {
    width: 290px;
    height: 52px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gpc-primary), var(--gpc-primary-light));
    color: var(--gpc-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    font-weight: 900;
    font-size: 15px;
    padding: 0 16px;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(188, 110, 82, 0.18);
    transition: 0.2s ease;
}

.gpc-category-toggle:hover {
    transform: translateY(-2px);
}

.gpc-toggle-text {
    display: flex;
    align-items: center;
    gap: 9px;
}

.gpc-toggle-chevron {
    transition: 0.2s ease;
}

.gpc-category-widget.is-open .gpc-toggle-chevron {
    transform: rotate(180deg);
}

.gpc-dropdown {
    position: absolute;
    top: calc(100% + 30px);
    right: 0;
    display: none;
    align-items: flex-start;
    gap: 20px;
    z-index: 2000;
}

.gpc-category-widget.is-open .gpc-dropdown {
    display: flex;
}

.gpc-category-card {
    width: 290px;
    height: 500px;
    max-height: 500px;
    overflow: hidden;
    background: var(--gpc-white);
    border-radius: 22px;
    padding: 16px;
    box-shadow: var(--gpc-shadow);
    flex: 0 0 290px;
}

.gpc-category-heading {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    color: var(--gpc-dark);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gpc-border);
}

.gpc-category-heading i {
    color: var(--gpc-primary);
}

.gpc-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    overflow-y: auto;
}

.gpc-category-item + .gpc-category-item {
    border-top: 1px solid #f1f1f1;
}

.gpc-category-link {
    width: 100%;
    min-height: 50px;
    padding: 0 6px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333333;
    font-size: 14px;
    transition: 0.2s ease;
}

.gpc-category-link:hover,
.gpc-category-item.is-active .gpc-category-link {
    color: var(--gpc-primary);
    background: var(--gpc-soft-orange);
    padding-right: 12px;
    padding-left: 12px;
}

.gpc-category-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gpc-category-info i {
    color: var(--gpc-secondary);
}

.gpc-category-item.is-active .gpc-category-info i,
.gpc-category-link:hover .gpc-category-info i {
    color: var(--gpc-primary);
}

.gpc-mega-panel {
    width: 760px;
    height: 500px;
    max-height: 500px;
    overflow: auto;
    background: var(--gpc-white);
    border-radius: 22px;
    padding: 24px;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    box-shadow: var(--gpc-shadow-strong);
    border: 1px solid rgba(255, 101, 63, 0.12);
    flex: 0 0 760px;
}

.gpc-mega-panel.is-open {
    display: grid;
}

.gpc-mega-col h3 {
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gpc-border);
    color: var(--gpc-dark);
    font-size: 15px;
    line-height: 1.8;
}

.gpc-mega-col h3 a {
    color: var(--gpc-dark);
}

.gpc-mega-col > a {
    display: block;
    padding: 8px 0;
    color: var(--gpc-muted);
    font-size: 14px;
    line-height: 1.8;
    transition: 0.2s ease;
}

.gpc-mega-col > a:hover {
    color: var(--gpc-primary);
    transform: translateX(-4px);
}

.gpc-mega-banner {
    grid-column: span 3;
    margin-top: 6px;
    border-radius: 18px;
    padding: 18px;
    background:
            radial-gradient(circle at left, rgba(255, 200, 92, 0.6), transparent 35%),
            linear-gradient(135deg, var(--gpc-soft-orange), #fff9e9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid rgba(255, 101, 63, 0.12);
}

.gpc-mega-banner strong {
    display: block;
    color: var(--gpc-dark);
    margin-bottom: 6px;
    font-size: 15px;
}

.gpc-mega-banner span {
    color: var(--gpc-muted);
    font-size: 13px;
    line-height: 1.9;
}

.gpc-mega-banner a {
    background: var(--gpc-primary);
    color: var(--gpc-white);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    white-space: nowrap;
    transition: 0.2s ease;
}

.gpc-mega-banner a:hover {
    background: var(--gpc-dark);
}

.gpc-mobile-mega {
    display: none;
}

@media (max-width: 1100px) {
    .gpc-mega-panel {
        width: 620px;
        flex-basis: 620px;
    }
}

@media (max-width: 992px) {
    .gpc-category-toggle {
        width: 100%;
    }

    .gpc-dropdown {
        position: static;
        margin-top: 12px;
        display: none;
        width: 100%;
    }

    .gpc-category-widget.is-open .gpc-dropdown {
        display: block;
    }

    .gpc-category-card {
        width: 100%;
        height: auto;
        max-height: none;
        overflow: visible;
        flex: none;
    }

    .gpc-mega-panel {
        display: none !important;
    }

    .gpc-mobile-mega {
        display: none;
        margin: 8px 0 12px;
        padding: 14px;
        border-radius: 16px;
        background: #fafafa;
        border: 1px solid var(--gpc-border);
    }

    .gpc-category-item.is-open .gpc-mobile-mega {
        display: block;
    }

    .gpc-mobile-group {
        margin-bottom: 12px;
    }

    .gpc-mobile-group h3 {
        margin: 0 0 8px;
        font-size: 14px;
        line-height: 1.8;
    }

    .gpc-mobile-group h3 a {
        color: var(--gpc-dark);
    }

    .gpc-mobile-group > a {
        display: block;
        color: var(--gpc-muted);
        font-size: 13px;
        padding: 7px 0;
    }
}
.wd-page-content .wd-content-layout{
    padding: 0!important;
}

.gpc-category-widget-static {
    position: relative;
    width: 100%;
    max-width: none;
    z-index: 100;
}

.gpc-category-widget-static .gpc-dropdown {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    display: flex !important;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    min-width: 0;
}

.gpc-category-widget-static .gpc-category-card {
    height: 500px;
    max-height: 500px;
    overflow: hidden;
}
.gpc-category-widget-static .gpc-mega-panel {
    height: 500px;
    max-height: 500px;
    overflow-y: auto;
}
.searchform  {
    max-width: 600px;
    margin: 0 auto;
}

ul>* , a , p , b , strong , span{
    font-family: 'body-font'!important;
}


/* =========================================================
   Global Product Card Style - Woodmart / WooCommerce
   Applies to all product cards
   ========================================================= */

:root {
    --gpc-primary: #ff653f;
    --gpc-primary-light: #ffc85c;
    --gpc-dark: #1e104e;
    --gpc-muted: #666666;
    --gpc-soft-orange: #fff3ee;
}

/* Product item reset */
body .products .wd-product,
body .wd-products .wd-product,
body .product-grid-item.wd-product {
    overflow: visible;
}

/* Product Card */
body .products .wd-product .product-wrapper,
body .wd-products .wd-product .product-wrapper,
body .product-grid-item.wd-product .product-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f4 100%);
    border: 1px solid rgba(255, 101, 63, 0.10);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body .products .wd-product .product-wrapper:hover,
body .wd-products .wd-product .product-wrapper:hover,
body .product-grid-item.wd-product .product-wrapper:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 101, 63, 0.28);
    box-shadow: 0 18px 42px rgba(70, 66, 80, 0.13);
}

/* Product Image Area */
body .products .wd-product .product-element-top,
body .wd-products .wd-product .product-element-top,
body .product-grid-item.wd-product .product-element-top {
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background:
            radial-gradient(circle at 20% 10%, rgba(255, 200, 92, 0.22), transparent 34%),
            linear-gradient(180deg, #fff3ee, #ffffff);
}

body .products .wd-product .product-image-link,
body .wd-products .wd-product .product-image-link,
body .product-grid-item.wd-product .product-image-link {
    display: block;
    overflow: hidden;
}

body .products .wd-product .product-element-top img,
body .wd-products .wd-product .product-element-top img,
body .product-grid-item.wd-product .product-element-top img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.28s ease;
}

body .products .wd-product .product-wrapper:hover .product-element-top img,
body .wd-products .wd-product .product-wrapper:hover .product-element-top img,
body .product-grid-item.wd-product .product-wrapper:hover .product-element-top img {
    transform: scale(1.04);
}

/* Hover Image */
body .products .wd-product .hover-img,
body .wd-products .wd-product .hover-img,
body .product-grid-item.wd-product .hover-img {
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

/* Image action buttons */
body .products .wd-product .wd-buttons,
body .wd-products .wd-product .wd-buttons,
body .product-grid-item.wd-product .wd-buttons {
    top: 8px !important;
    left: 8px !important;
    right: auto !important;
    gap: 6px !important;
    background: transparent !important;
    box-shadow: none !important;
}

body .products .wd-product .wd-action-btn,
body .wd-products .wd-product .wd-action-btn,
body .product-grid-item.wd-product .wd-action-btn {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
}

body .products .wd-product .wd-action-btn > a,
body .wd-products .wd-product .wd-action-btn > a,
body .product-grid-item.wd-product .wd-action-btn > a {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    padding: 0 !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.94);
    color: var(--gpc-dark);
    font-size: 0 !important;
    box-shadow: 0 8px 18px rgba(76, 72, 86, 0.11);
}

body .products .wd-product .wd-action-btn > a::before,
body .wd-products .wd-product .wd-action-btn > a::before,
body .product-grid-item.wd-product .wd-action-btn > a::before {
    font-size: 14px !important;
    line-height: 30px !important;
}

body .products .wd-product .wd-action-btn > a:hover,
body .wd-products .wd-product .wd-action-btn > a:hover,
body .product-grid-item.wd-product .wd-action-btn > a:hover {
    background: var(--gpc-primary);
    color: #ffffff;
}

/* Product Bottom */
body .products .wd-product .product-element-bottom,
body .wd-products .wd-product .product-element-bottom,
body .product-grid-item.wd-product .product-element-bottom {
    padding: 14px 14px 16px;
    background: #ffffff;
}

/* Product Title */
body .products .wd-product .wd-entities-title,
body .wd-products .wd-product .wd-entities-title,
body .product-grid-item.wd-product .wd-entities-title {
    margin: 0 0 10px;
    min-height: 54px;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 800;
}

body .products .wd-product .wd-entities-title a,
body .wd-products .wd-product .wd-entities-title a,
body .product-grid-item.wd-product .wd-entities-title a {
    color: var(--gpc-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

body .products .wd-product .wd-entities-title a:hover,
body .wd-products .wd-product .wd-entities-title a:hover,
body .product-grid-item.wd-product .wd-entities-title a:hover {
    color: var(--gpc-primary);
}

/* Price */
body .products .wd-product .price,
body .wd-products .wd-product .price,
body .product-grid-item.wd-product .price {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 28px;
    color: var(--gpc-primary);
    font-weight: 900;
    font-size: 15px;
}

body .products .wd-product .price .amount,
body .wd-products .wd-product .price .amount,
body .product-grid-item.wd-product .price .amount {
    color: var(--gpc-primary);
    font-weight: 900;
}

body .products .wd-product .price del,
body .wd-products .wd-product .price del,
body .product-grid-item.wd-product .price del {
    color: var(--gpc-muted);
    opacity: 0.65;
    font-size: 12px;
    margin-left: 8px;
}

body .products .wd-product .price ins,
body .wd-products .wd-product .price ins,
body .product-grid-item.wd-product .price ins {
    text-decoration: none;
}

/* Add to Cart */
body .products .wd-product .wd-add-btn,
body .wd-products .wd-product .wd-add-btn,
body .product-grid-item.wd-product .wd-add-btn {
    margin-top: 10px;
}

body .products .wd-product .wd-add-btn a,
body .products .wd-product .add_to_cart_button,
body .wd-products .wd-product .wd-add-btn a,
body .wd-products .wd-product .add_to_cart_button,
body .product-grid-item.wd-product .wd-add-btn a,
body .product-grid-item.wd-product .add_to_cart_button {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    background: var(--gpc-dark);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.22s ease;
    text-wrap: nowrap;
}

body .products .wd-product .wd-add-btn a:hover,
body .products .wd-product .add_to_cart_button:hover,
body .wd-products .wd-product .wd-add-btn a:hover,
body .wd-products .wd-product .add_to_cart_button:hover,
body .product-grid-item.wd-product .wd-add-btn a:hover,
body .product-grid-item.wd-product .add_to_cart_button:hover {
    background: linear-gradient(135deg, var(--gpc-primary), var(--gpc-primary-light));
    color: var(--gpc-dark);
    transform: translateY(-2px);
}

/* Woodmart swap area fix */
body .products .wd-product .wrap-price,
body .wd-products .wd-product .wrap-price,
body .product-grid-item.wd-product .wrap-price {
    margin-top: 6px;
    justify-content: center;
}

body .products .wd-product .swap-wrapp,
body .products .wd-product .swap-elements,
body .wd-products .wd-product .swap-wrapp,
body .wd-products .wd-product .swap-elements,
body .product-grid-item.wd-product .swap-wrapp,
body .product-grid-item.wd-product .swap-elements {
    height: auto;
    min-height: 74px;
}

body .products .wd-product .swap-elements,
body .wd-products .wd-product .swap-elements,
body .product-grid-item.wd-product .swap-elements {
    transform: none !important;
}

body .products .wd-product .swap-elements > *,
body .wd-products .wd-product .swap-elements > *,
body .product-grid-item.wd-product .swap-elements > * {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Sale / Discount badge - only if product has badge */
body .products .wd-product .onsale,
body .products .wd-product .product-label,
body .wd-products .wd-product .onsale,
body .wd-products .wd-product .product-label,
body .product-grid-item.wd-product .onsale,
body .product-grid-item.wd-product .product-label {
    border-radius: 999px;
    background: var(--gpc-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

/* Mobile */
@media (max-width: 640px) {
    body .products .wd-product .product-element-bottom,
    body .wd-products .wd-product .product-element-bottom,
    body .product-grid-item.wd-product .product-element-bottom {
        padding: 12px;
    }

    body .products .wd-product .wd-entities-title,
    body .wd-products .wd-product .wd-entities-title,
    body .product-grid-item.wd-product .wd-entities-title {
        font-size: 13px;
        min-height: 50px;
    }

    body .products .wd-product .price,
    body .wd-products .wd-product .price,
    body .product-grid-item.wd-product .price {
        font-size: 14px;
    }
}
li.cat-item ul.wd-sub-menu{
    max-height: 500px;
    overflow-y: auto;
}
.wd-page-title{
    margin-bottom: 20px;
}
.shop-loop-head{
    padding: 10px 0;
}
.footer-container{
    background-color: rgba(30,16,78)!important;
}

/* =========================================================
   Woodmart Shop Sidebar
   ========================================================= */

body .wd-sidebar.sidebar-container {
    --jds-primary: #ff653f;
    --jds-primary-soft: #fff3ee;
    --jds-accent: #ffc85c;
    --jds-dark: #1e104e;
    --jds-text: #2a2633;
    --jds-muted: #77717f;
    --jds-border: #eceaf0;
    --jds-surface: #ffffff;
    --jds-shadow: 0 16px 36px rgba(78, 74, 86, 0.10);

    direction: rtl;
}

body .wd-sidebar.sidebar-container .widget-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body .wd-sidebar.sidebar-container .wd-widget.sidebar-widget {
    margin-bottom: 0;
    padding: 18px;
    border: 1px solid var(--jds-border);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 243, 238, 0.55), rgba(255, 255, 255, 0) 96px),
        var(--jds-surface);
    box-shadow: var(--jds-shadow);
}

body .wd-sidebar.sidebar-container .widget-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -2px 0 16px;
    padding: 0 14px 13px 0;
    border-bottom: 1px solid var(--jds-border);
    color: var(--jds-dark);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.8;
}

body .wd-sidebar.sidebar-container .widget-title::before {
    content: "";
    width: 6px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--jds-primary), var(--jds-accent));
    box-shadow: 0 6px 14px rgba(188, 110, 82, 0.14);
}

body .wd-sidebar.sidebar-container .wd-search-form {
    position: relative;
}

body .wd-sidebar.sidebar-container .searchform {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    padding: 6px;
    border: 1px solid var(--jds-border);
    border-radius: 8px;
    background: #f8f8fa;
}

body .wd-sidebar.sidebar-container .searchform input.s {
    min-height: 42px;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--jds-text);
    font-size: 13px;
    font-weight: 700;
    box-shadow: none;
}

body .wd-sidebar.sidebar-container .searchform input.s:focus {
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(188, 110, 82, 0.18);
}

body .wd-sidebar.sidebar-container .searchform .searchsubmit {
    min-width: 74px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--jds-primary), var(--jds-accent));
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(188, 110, 82, 0.15);
}

body .wd-sidebar.sidebar-container .searchform .searchsubmit:hover {
    background: var(--jds-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

body .wd-sidebar.sidebar-container .product-categories,
body .wd-sidebar.sidebar-container .wd-widget-stock-status ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body .wd-sidebar.sidebar-container .product-categories {
    max-height: 620px;
    overflow-y: auto;
    padding-left: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 101, 63, 0.55) rgba(30, 16, 78, 0.08);
}

body .wd-sidebar.sidebar-container .product-categories::-webkit-scrollbar {
    width: 6px;
}

body .wd-sidebar.sidebar-container .product-categories::-webkit-scrollbar-track {
    background: rgba(30, 16, 78, 0.08);
    border-radius: 999px;
}

body .wd-sidebar.sidebar-container .product-categories::-webkit-scrollbar-thumb {
    background: rgba(255, 101, 63, 0.62);
    border-radius: 999px;
}

body .wd-sidebar.sidebar-container .product-categories li {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px;
    grid-template-areas:
        "link count"
        "children children";
    column-gap: 8px;
    align-items: start;
    margin: 0;
}

body .wd-sidebar.sidebar-container .product-categories li.cat-parent {
    grid-template-columns: minmax(0, 1fr) 30px 30px;
    grid-template-areas:
        "link count toggle"
        "children children children";
}

body .wd-sidebar.sidebar-container .wd-widget-stock-status li {
    position: relative;
    margin: 0;
}

body .wd-sidebar.sidebar-container .product-categories > li + li,
body .wd-sidebar.sidebar-container .wd-widget-stock-status li + li {
    margin-top: 6px;
}

body .wd-sidebar.sidebar-container .product-categories a,
body .wd-sidebar.sidebar-container .wd-widget-stock-status a {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--jds-text);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.75;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body .wd-sidebar.sidebar-container .product-categories a {
    grid-area: link;
}

body .wd-sidebar.sidebar-container .product-categories a::before,
body .wd-sidebar.sidebar-container .wd-widget-stock-status a::before {
    flex: 0 0 7px;
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 9px;
    border-radius: 50%;
    background: rgba(255, 101, 63, 0.36);
    box-shadow: 0 0 0 4px rgba(188, 110, 82, 0.07);
    transition: background-color 0.18s ease, box-shadow 0.18s ease;
}

body .wd-sidebar.sidebar-container .product-categories a:hover,
body .wd-sidebar.sidebar-container .product-categories a:focus,
body .wd-sidebar.sidebar-container .wd-widget-stock-status a:hover,
body .wd-sidebar.sidebar-container .wd-widget-stock-status a:focus {
    background: var(--jds-primary-soft);
    color: var(--jds-primary);
    outline: none;
    transform: translateX(-2px);
}

body .wd-sidebar.sidebar-container .product-categories a:hover::before,
body .wd-sidebar.sidebar-container .product-categories a:focus::before,
body .wd-sidebar.sidebar-container .wd-widget-stock-status a:hover::before,
body .wd-sidebar.sidebar-container .wd-widget-stock-status a:focus::before {
    background: var(--jds-primary);
    box-shadow: 0 0 0 4px rgba(188, 110, 82, 0.10);
}

body .wd-sidebar.sidebar-container .product-categories .children {
    grid-area: children;
    margin: 4px 12px 8px 0;
    padding: 4px 10px 4px 0;
    border-right: 1px dashed rgba(30, 16, 78, 0.16);
    list-style: none;
}

body .wd-sidebar.sidebar-container .product-categories .children a {
    min-height: 34px;
    padding-top: 6px;
    padding-bottom: 6px;
    color: var(--jds-muted);
    font-size: 12px;
    font-weight: 700;
}

body .wd-sidebar.sidebar-container .product-categories .children .children a {
    font-size: 11.5px;
}

body .wd-sidebar.sidebar-container .product-categories .count {
    grid-area: count;
    position: static;
    justify-self: center;
    align-self: start;
    min-width: 28px;
    height: 24px;
    margin-top: 8px;
    padding: 0 7px;
    border-radius: 999px;
    background: #f4f2f7;
    color: var(--jds-muted);
    font-size: 11px;
    font-weight: 900;
    line-height: 24px;
    text-align: center;
}

body .wd-sidebar.sidebar-container .product-categories li:hover > .count {
    background: var(--jds-dark);
    color: #ffffff;
}

body .wd-sidebar.sidebar-container .wd-cats-toggle {
    grid-area: toggle;
    position: static;
    justify-self: center;
    align-self: start;
    width: 28px;
    height: 28px;
    margin-top: 6px;
    border-radius: 8px;
    background: rgba(30, 16, 78, 0.06);
    color: var(--jds-dark);
}

body .wd-sidebar.sidebar-container .wd-cats-toggle:hover {
    background: var(--jds-primary);
    color: #ffffff;
}

body .wd-sidebar.sidebar-container .wd-widget-stock-status a {
    background: #f8f8fa;
}

body .wd-sidebar.sidebar-container .wd-heading {
    margin-bottom: 10px;
}

body .wd-sidebar.sidebar-container .close-side-widget a {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--jds-dark);
    color: #ffffff;
    font-weight: 900;
}

body .wd-sidebar.sidebar-container .close-side-widget a:hover {
    background: var(--jds-primary);
    color: #ffffff;
}

@media (max-width: 1024px) {
    body .wd-sidebar.sidebar-container .wd-widget.sidebar-widget {
        padding: 16px;
        border-radius: 8px;
        box-shadow: none;
    }

    body .wd-sidebar.sidebar-container .product-categories {
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    body .wd-sidebar.sidebar-container .searchform {
        grid-template-columns: 1fr;
    }

    body .wd-sidebar.sidebar-container .searchform .searchsubmit {
        width: 100%;
    }

    body .wd-sidebar.sidebar-container .product-categories a,
    body .wd-sidebar.sidebar-container .wd-widget-stock-status a {
        font-size: 12.5px;
    }
}
