/* ============================================
   Hero & Breadcrumb
   ============================================ */

.hero {
    position: relative;
    padding: 80px 0;
    margin-bottom: 40px;
    color: #FFFFFF;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}
.hero--light {
    background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
    color: var(--dark);
    min-height: 200px;
}
.hero--image {
    background-color: var(--primary);
    background-size: cover;
    background-position: center;
    min-height: 320px;
}
.hero--center {
    text-align: center;
}
.hero--center .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 58, 101, 0.85) 0%, rgba(31, 130, 86, 0.7) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero--center .hero-content {
    margin-left: auto;
    margin-right: auto;
}
.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: inherit;
    margin: 0 0 12px 0;
    line-height: 1.2;
}
.hero--light .hero-title {
    color: var(--primary);
}
.hero-subtitle {
    font-size: 20px;
    max-width: 650px;
    margin: 0 0 20px 0;
    opacity: 0.92;
    line-height: 1.6;
}
.hero--light .hero-subtitle {
    color: var(--text);
}
.hero-meta {
    font-size: 14px;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hero--light .hero-meta {
    color: var(--muted);
}
.hero-meta .post-categories {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.hero-meta .post-categories a {
    color: inherit;
    text-decoration: none;
    padding: 2px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 12px;
    transition: all 0.3s ease;
}
.hero--light .hero-meta .post-categories a {
    background: rgba(22, 58, 101, 0.08);
    color: var(--primary);
}
.hero-meta .post-categories a:hover {
    background: rgba(255,255,255,0.35);
}
.hero--light .hero-meta .post-categories a:hover {
    background: rgba(22, 58, 101, 0.15);
}
.hero-meta .post-date {
    opacity: 0.8;
}
.hero-label {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
}
.product-category-badge,
.country-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
.product-category-badge {
    background: var(--green);
    color: #FFFFFF;
}
.country-badge {
    background: var(--blue);
    color: #FFFFFF;
}
.partner-logo-wrapper {
    display: inline-block;
    background: #FFFFFF;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(22, 58, 101, 0.15);
    margin-bottom: 16px;
}
.partner-logo-wrapper img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Breadcrumb */
.site-breadcrumb {
    font-size: 14px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.85);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}
.hero--light .site-breadcrumb {
    color: var(--muted);
}
.site-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-breadcrumb a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}
.hero--light .site-breadcrumb a:hover {
    color: var(--primary);
}
.breadcrumb-separator {
    margin: 0 4px;
    color: rgba(255,255,255,0.4);
}
.hero--light .breadcrumb-separator {
    color: var(--gray-300);
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero {
        padding: 60px 0;
        min-height: 220px;
    }
    .hero--image {
        min-height: 260px;
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-subtitle {
        font-size: 18px;
        max-width: 100%;
    }
    .partner-logo-wrapper img {
        width: 90px;
        height: 90px;
    }
}
@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
        min-height: 180px;
        margin-bottom: 30px;
    }
    .hero--image {
        min-height: 220px;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-meta {
        font-size: 13px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .hero--center .hero-meta {
        align-items: center;
    }
    .site-breadcrumb {
        font-size: 13px;
        margin-bottom: 16px;
    }
    .partner-logo-wrapper img {
        width: 70px;
        height: 70px;
    }
    .hero-buttons {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
        min-height: 150px;
    }
    .hero--image {
        min-height: 180px;
    }
    .hero-title {
        font-size: 24px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}



















.hero-breadcrumb{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    margin-top:22px;

    flex-wrap:wrap;

    font-size:.95rem;

    font-weight:600;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.hero-breadcrumb a{

    color:rgba(255,255,255,.9);

    text-decoration:none;

    transition:.3s;

}

.hero-breadcrumb a:hover{

    color:var(--accent);

}

.hero-breadcrumb .separator{

    display:flex;

    align-items:center;

    color:rgba(255,255,255,.65);

}

.hero-breadcrumb span:last-child{

    color:var(--accent);

}