.elementor-2237 .elementor-element.elementor-element-31922899{--display:flex;}body.elementor-page-2237:not(.elementor-motion-effects-element-type-background), body.elementor-page-2237 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-secondary );}:root{--page-title-display:none;}@media(min-width:768px){.elementor-2237 .elementor-element.elementor-element-31922899{--content-width:1600px;}}/* Start custom CSS for shortcode, class: .elementor-element-5e4a0c4f *//* 🌟 General Section Style */
.km-section {
    background-color: #c0b7ae;
    padding: 10px 0px;
    text-align: center;
    font-family: "Tajawal", sans-serif;
}

.km-title {
    font-size: 28px;
    color: #5e5047;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.km-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #5e5047;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* 🔹 Grid Layout */
.km-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-content: center;
}

/* 🔸 Product Card */
.km-product {
    background: #c0b7ae;
    border: 1px solid #f7f4ef;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.km-product:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* ✅ Square/Consistent Images */
.km-image {
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f7f4ef;
}

.km-image::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.km-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* 🏷️ Text Styling */
.km-name {
    font-size: 20px;
    font-weight: 600;
    color: #5e5047;
    margin: 12px 0 5px;
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.km-price {
    color: #5e5047;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: auto 0 10px 0;
}

/* 🔘 Button */
.km-btn {
    display: inline-block;
    width: 100%;
    background: #5e5047;
    color: #c0b7ae;
    padding: 10px 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: auto;
}

.km-btn:hover {
    color: #5e5047;
    background: #f7f4ef;
}

/* 🔢 Pagination Styling */
.km-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.km-pagination .page-numbers {
    padding: 10px 18px;
    border: 1px solid rgba(94, 80, 71, 0.4);
    color: #5e5047;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.km-pagination .page-numbers:hover {
    background-color: #f7f4ef;
    color: #5e5047;
}

.km-pagination .page-numbers.current {
    background-color: #5e5047;
    border-color: #5e5047;
    color: #c0b7ae;
}

/* 📱 Mobile & Tablet Responsive */
@media (max-width: 1024px) {
    .km-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .km-grid {
        gap: 15px;
    }

    .km-title {
        font-size: 22px;
    }

    .km-name {
        font-size: 16px;
    }

    .km-image::before {
        padding-top: 110%;
    }

    .km-btn {
        background: #5e5047;
        color: #c0b7ae;
        padding: 8px 16px;
        border-radius: 8px;
    }

    .km-btn:hover {
        color: #5e5047;
        background: #f7f4ef;
    }

    .km-pagination {
        gap: 6px;
    }

    .km-pagination .page-numbers {
        padding: 8px 12px;
        font-size: 14px;
        min-width: 35px;
    }
}

/* Out of Stock Variation */
.km-btn.out-of-stock,
.woocommerce ul.products li.product .button.disabled {
    background-color: #a8a8a8 !important;
    color: #5e5047 !important;
    cursor: not-allowed !important;
}

/* Brand Filter Styles */

.km-brand-filter-wrapper {
    margin: 40px auto;
    padding: 0 20px;
    max-width: 1100px;
}

.km-brand-filter-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* 🔘 The Individual Filter Buttons */
.km-brand-link {
    display: inline-block;
    background-color: #f7f4ef;
    border: 1.5px solid #c0b7ae;
    color: #5e5047;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    font-family: "Tajawal", sans-serif;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    cursor: pointer;
}

/* 🌟 Hover State */
.km-brand-link:hover {
    background-color: #f7f4ef;
    color: #5e5047 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(94, 80, 71, 0.15);
}

/* ✨ Active State */
.km-brand-link.active {
    background-color: #5e5047 !important;
    color: #c0b7ae !important;
    border-color: #5e5047;
    box-shadow: 0 4px 12px rgba(94, 80, 71, 0.25);
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .km-brand-filter-wrapper {
        margin: 25px auto;
    }

    .km-brand-link {
        padding: 8px 16px;
        font-size: 13px;
    }

    .km-brand-filter-grid {
        gap: 8px;
    }
}/* End custom CSS */