/* Back arrow item styles for categories grid */
.jet-woo-categories-back-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.jet-woo-category-back-arrow-icon {
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #007cba;
    color: white;
    padding: 8px;
}

.jet-woo-category-back-arrow-icon i {
    display: inline-block;
    font-size: 16px;
}

.jet-woo-categories-back-arrow .jet-woo-category-count__wrap {
    margin-top: 5px;
}

.jet-woo-categories-back-arrow .jet-woo-category-title {
    margin-top: 10px;
}

/* Center the content in back arrow item */
.jet-woo-categories-back-arrow .jet-woo-categories-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Style the back arrow text */
.jet-woo-categories-back-arrow .jet-woo-category-title__text {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

/* Hover effect for back arrow */
.jet-woo-categories-back-arrow:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Hide count for back arrow if needed */
.jet-woo-categories-back-arrow .jet-woo-category-count {
    display: none;
}
