.pchb-bar {
    width: 100%;
    position: relative;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    transition: transform 0.3s ease;
    overflow: hidden;
    z-index: 1000;
}

.pchb-bar.pchb-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.pchb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 40px;
    text-align: center;
}

.pchb-slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pchb-text {
    font-weight: 500;
}

.pchb-link {
    text-decoration: underline;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.pchb-link:hover {
    opacity: 0.8;
}

a.pchb-slide-link {
    text-decoration: none;
}

a.pchb-slide-link:hover {
    opacity: 0.85;
}

.pchb-close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pchb-close:hover {
    opacity: 1;
}

/* Swiper overrides */
.pchb-swiper {
    overflow: hidden;
}

.pchb-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

/* Responsive */
@media (max-width: 767px) {
    .pchb-inner {
        padding: 6px 32px;
    }

    .pchb-close {
        right: 8px;
    }

    .pchb-slide-content {
        gap: 4px;
    }
}
