.bjaan-hero-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    padding: 0 20px;
}

.bjaan-hero-card {
    display: flex;
    align-items: center;
   backdrop-filter: blur(8px);
    background-color: color-mix(in oklab, white 5%, transparent);
    color: white;
    /* Deep dark background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Faint white border */
    border-radius: 16px;
    padding: 12px 20px;
    gap: 16px;
    /* Gap between icon and text */
    transition: all 0.3s ease;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    /* Make sure text is aligned left relative to the flex container */
    text-align: left;
}

.bjaan-hero-card:hover {
    transform: translateY(-5px);
    border-color: rgba(211, 174, 101, 0.4);
    /* Gold border on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.bjaan-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Specific Colors matching the image style */
.icon-organic {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    /* Green */
}

.icon-cruelty-free {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    /* Pink/Red */
}

.icon-award {
    background: rgba(211, 174, 101, 0.15);
    color: #d3ae65;
    /* Gold */
}

.icon-lab {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
    /* Blue */
}

/* SVG Styling */
.bjaan-card-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0;
}

.bjaan-card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.3;
}

.bjaan-card-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ccc;
    /* Light gray for label */
    font-weight: 600;
    margin-bottom: 2px;
}

.bjaan-card-value {
    font-size: 14px;
    font-weight: 700;
    color: #FFF
    /* White for value */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bjaan-hero-cards-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .bjaan-hero-card {
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
    }
}

/* --- HERO BADGE / PILL STYLES --- */
.bjaan-hero-badge-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
}

.bjaan-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background-color: color-mix(in oklab, white 5%, transparent);
    color: white;
    /* Semi-transparent dark bg */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(211, 174, 101, 0.4);
    /* Faint gold border */
    border-radius: 50px;

    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.bjaan-hero-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(211, 174, 101, 0.7);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.bjaan-hero-badge svg {
    width: 16px;
    height: 16px;
    stroke: #d3ae65;
    /* Gold Icon */
}

/* Ensure the text is vertically centered relative to icon */
.bjaan-hero-badge span {
    line-height: 1;
    margin-top: 1px;
}