.elementor-kit-1244{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-1244 a{color:#E00909;}.elementor-kit-1244 button,.elementor-kit-1244 input[type="button"],.elementor-kit-1244 input[type="submit"],.elementor-kit-1244 .elementor-button{color:#FE2121;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Subcategories and Products Styling */
.subcategories-shortcode,
.products-shortcode {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.subcategories-shortcode.columns-2,
.products-shortcode.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.subcategories-shortcode.columns-3,
.products-shortcode.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.subcategories-shortcode.columns-4,
.products-shortcode.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.section-title {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Subcategory Cards */
.subcategory-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: #fff;
}

.subcategory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Product Cards */
.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image,
.subcategory-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img,
.subcategory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content,
.subcategory-content {
    padding: 15px;
}

.product-title,
.subcategory-name {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #007cba;
    margin-bottom: 10px;
}

.product-actions {
    margin-top: 10px;
}

.no-products {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .subcategories-shortcode,
    .products-shortcode {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .subcategories-shortcode,
    .products-shortcode {
        grid-template-columns: 1fr !important;
    }
}/* End custom CSS */