.bcd-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    list-style: none;
    /* In case it's used inside lists */
    padding: 0;
    margin: 0;
}

.bcd-horizontal {
    flex-direction: row;
}

.bcd-vertical {
    flex-direction: column;
}

/* Alignment of the container contents */
.bcd-justify-start {
    justify-content: flex-start;
}

.bcd-justify-center {
    justify-content: center;
}

.bcd-justify-end {
    justify-content: flex-end;
}

/* Alignment of items within the Flex container */
.bcd-align-start {
    align-items: flex-start;
}

.bcd-align-center {
    align-items: center;
}

.bcd-align-end {
    align-items: flex-end;
}

/* Individual Item Styling */
.bcd-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 5px;
}

.bcd-category-item:hover {
    opacity: 0.8;
}

/* Image Mode Styling */
.bcd-category-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    background-color: #f0f0f0;
    transition: transform 0.3s ease;
}

.bcd-category-item:hover .bcd-category-image {
    transform: scale(1.05);
}

.bcd-category-title {
    font-size: inherit;
    font-weight: 500;
    text-transform: inherit;
    letter-spacing: 1px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Navigation Bar Look (Text Only) */
.bcd-text-only .bcd-category-item {
    flex-direction: row;
    /* Horizontal text link feel */
    padding: 8px 15px;
}

.bcd-text-only .bcd-category-image {
    display: none;
    /* Double safety */
}

/* Vertical Text Menu */
.bcd-vertical.bcd-text-only .bcd-category-item {
    width: 100%;
    align-items: flex-start;
    /* Align text left in vertical menu */
}

.bcd-vertical.bcd-text-only.bcd-align-center .bcd-category-item {
    align-items: center;
}

.bcd-vertical.bcd-text-only.bcd-align-end .bcd-category-item {
    align-items: flex-end;
}

/* Product Count */
.bcd-count {
    font-size: 0.8em;
    opacity: 0.6;
    font-weight: 400;
}