/* ==========================================================================
   Elementor Icon Box Widget — Default Styles
   ========================================================================== */

/* Box container */
.eib-icon-box {
    background-color: #f8f7fd;
    border-radius: 16px;
    padding: 30px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.eib-icon-box:hover {
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.10);
    transform: translateY(-2px);
}

/* Wrapper: horizontal layout by default */
.eib-icon-box__wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

/* Icon container */
.eib-icon-box__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background-color: #ede9fe;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.eib-icon-box:hover .eib-icon-box__icon {
    transform: scale(1.05);
}

.eib-icon-box__icon i {
    font-size: 24px;
    color: #7c3aed;
    line-height: 1;
}

.eib-icon-box__icon svg {
    width: 24px;
    height: 24px;
    fill: #7c3aed;
}

/* Content area */
.eib-icon-box__content {
    flex: 1;
    min-width: 0;
}

/* Heading */
.eib-icon-box__heading {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    padding: 0;
    line-height: 1.3;
}

/* Description */
.eib-icon-box__description {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    margin: 0 0 16px 0;
    padding: 0;
    line-height: 1.6;
}

/* Badge */
.eib-icon-box__badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #7c3aed;
    background-color: #f3f0ff;
    border: 1px solid #e0d8f8;
    border-radius: 20px;
    padding: 6px 16px;
    line-height: 1.4;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.eib-icon-box:hover .eib-icon-box__badge {
    background-color: #ede9fe;
}
