/* ============================================
   Breadcrumb Pro for Elementor – All Styles
   ============================================ */

.bp-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    font-family: inherit;
    position: relative;
}

.bp-item-label {
    font-family: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.bp-item-label a:hover { opacity: 0.8; }

/* ============================================
   STYLE 1 – Arrow Banner (Fuel / Blue-Yellow)
   ============================================ */
.bp-style1 .bp-bar,
.bp-style1-bar {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 56px;
    position: relative;
    overflow: visible;
}

.bp-style1 .bp-wrapper {
    flex-direction: column;
    align-items: flex-start;
}

.bp-s1-item {
    display: flex;
    align-items: center;
    padding: 0 24px 0 18px;
    position: relative;
    min-height: 56px;
    z-index: 1;
    transition: filter 0.2s;
}

.bp-s1-item:first-child {
    padding-left: 28px;
}

.bp-s1-item:hover { filter: brightness(1.05); }

/* Right arrow */
.bp-s1-arrow-right {
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 28px 0 28px 18px;
    z-index: 3;
}

/* Left notch indent */
.bp-s1-notch-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 28px 18px 28px 0;
    border-color: transparent;
    z-index: 2;
}

/* Active item downward pointing tail */
.bp-s1-active-end {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 22px 0 22px;
    border-right-color: transparent !important;
    border-bottom-color: transparent !important;
    border-left-color: transparent !important;
    z-index: 4;
}

.bp-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    flex-shrink: 0;
}

/* ============================================
   STYLE 2 – Chevron Steps
   ============================================ */
.bp-style2 .bp-bar,
.bp-style2-bar {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 56px;
    overflow: visible;
}

.bp-style2 .bp-wrapper {
    flex-direction: column;
    align-items: flex-start;
}

.bp-s2-item {
    display: flex;
    align-items: center;
    padding: 0 32px 0 24px;
    position: relative;
    min-height: 56px;
    flex: 1;
    z-index: 1;
}

.bp-s2-item:first-child { border-radius: 4px 0 0 4px; }
.bp-s2-item:last-child  { border-radius: 0 4px 4px 0; }

/* Chevron */
.bp-s2-chevron {
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 28px 0 28px 16px;
    z-index: 3;
}

.bp-s2-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

/* ============================================
   STYLE 3 – Text Separator
   ============================================ */
.bp-style3 .bp-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
}

.bp-style3-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px 0;
}

.bp-s3-sep {
    font-size: 1.2em;
    padding: 0 6px;
    line-height: 1;
}

.bp-s3-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bp-s3-link:hover { opacity: 0.75; }

.bp-s3-current {
    text-decoration: none;
}

/* ============================================
   STYLE 4 – Numbered Circles
   ============================================ */
.bp-style4 .bp-wrapper {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.bp-style4-wrap {
    position: relative;
    width: 100%;
    padding: 16px 0 8px;
}

.bp-s4-track {
    position: absolute;
    top: 41px; /* circle center = 16 + 25 */
    left: 25px; /* half circle */
    right: 25px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 0;
}

.bp-s4-progress {
    height: 100%;
    border-radius: 4px;
    transition: width 0.4s ease;
}

.bp-s4-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.bp-s4-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.bp-s4-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
    box-sizing: border-box;
}

.bp-s4-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.bp-s4-label {
    font-size: 13px;
    text-align: center;
    line-height: 1.3;
    max-width: 80px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 600px) {
    .bp-s1-item { padding: 0 14px 0 10px; }
    .bp-s2-item { padding: 0 20px 0 14px; flex: unset; }
    .bp-s4-label { font-size: 11px; max-width: 60px; }
    .bp-style3-nav { gap: 2px; }
}
