.elementor-3006 .elementor-element.elementor-element-3a99dba{--display:flex;}.elementor-3006 .elementor-element.elementor-element-194904a .rtsb-breadcrumb{text-align:center;}.elementor-3006 .elementor-element.elementor-element-194904a .rtsb-breadcrumb .woocommerce-breadcrumb .breadcrumb-separator{margin:0 10px;font-size:16px;}.elementor-3006 .elementor-element.elementor-element-194904a .rtsb-breadcrumb .woocommerce-breadcrumb .breadcrumb-separator svg{width:16px;height:16px;}.elementor-3006 .elementor-element.elementor-element-951916c.elementor-wc-products  ul.products{grid-column-gap:15px;grid-row-gap:27px;}.elementor-3006 .elementor-element.elementor-element-951916c .woocommerce .woocommerce-loop-category__title{font-family:"Tahoma", Sans-serif;}.elementor-3006 .elementor-element.elementor-element-951916c .woocommerce-loop-category__title .count{font-family:"Tahoma", Sans-serif;}.elementor-3006 .elementor-element.elementor-element-53e6b6c{--display:flex;}@media(max-width:767px){.elementor-3006 .elementor-element.elementor-element-951916c .product{text-align:center;}}/* Start custom CSS for wc-categories, class: .elementor-element-951916c *//* =========================
   CATEGORY CARD STYLE
   ========================= */
.woocommerce ul.products li.product-category {
    background: rgba(254, 221, 171, 0.85);
    backdrop-filter: blur(6px);            
    border-radius: 16px;                   
    overflow: hidden;
    padding: 10px; /* تقليل الحشوة لتقليل الارتفاع */
    margin: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    border: 2px solid #cf9759;
}

/* تأثير عند المرور على الكارت */
.woocommerce ul.products li.product-category:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border-color: #0c5752;
}

/* صورة الكاتيجوري مربعة */
.woocommerce ul.products li.product-category img {
    width: 100%;
    aspect-ratio: 1/1; /* مربعة */
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
}

/* اسم الكاتيجوري */
.woocommerce ul.products li.product-category h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #0c5752;
    margin: 5px 0;
}

/* =========================
   PRODUCT CARD STYLE
   ========================= */
.woocommerce ul.products li.product {
    background: rgba(254, 221, 171, 0.85); 
    backdrop-filter: blur(6px);            
    border-radius: 16px;
    overflow: hidden;
    padding: 10px; /* تقليل الحشوة */
    margin: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    border: 2px solid #cf9759;
}

/* تأثير عند المرور على المنتج */
.woocommerce ul.products li.product:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border-color: #0c5752;
}

/* صورة المنتج مربعة */
.woocommerce ul.products li.product img {
    width: 100%;
    aspect-ratio: 1/1; /* مربعة */
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
}

/* اسم المنتج */
.woocommerce ul.products li.product h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0c5752;
    margin: 4px 0;
}

/* السعر */
.woocommerce ul.products li.product .price {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #cf9759;
    margin-bottom: 5px;
}

/* إخفاء زر Add to Cart و Read More */
.woocommerce ul.products li.product .button {
    display: none;
}

/* =========================
   GRID LAYOUT
   ========================= */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    padding: 0;
    list-style: none;
}

/* =========================
   الهاتف: عمودين
   ========================= */
@media (max-width: 600px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}/* End custom CSS */