/* Zine Carousel CSS - Updated V4 */
.zine-section-wrapper {
    position: relative;
    width: 100%;
    margin: 0 0 1rem 0;
    overflow: hidden;
    text-align: center;
}

.zine-carousel-container {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    background-color: transparent;
}

.zine-carousel-track {
    display: flex;
    gap: 15px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
}

.zine-carousel-track::-webkit-scrollbar {
    display: none;
}

.zine-item {
    height: 350px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.zine-item:hover {
    transform: scale(1.05);
    z-index: 5;
}

.zine-item img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Navigation Buttons */
.zine-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: black;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    user-select: none;
}

.zine-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.zine-prev {
    left: 10px;
}

.zine-next {
    right: 10px;
}

/* Subtitle Style - Matches 'Lessico Familiare A/W 27' */
.zine-subtitle {
    margin-top: 1rem;
    font-size: 1.4rem;
    font-family: "Expletus Sans", Impact, sans-serif;
    color: #000;
    font-weight: bold;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: normal;
}