#editions-swiper {
    width: 100%;
    flex: 1;
    min-width: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    height: auto;
}

/* Ensure the card content fits well */
.edition-card {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.edition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(201, 166, 120, 0.5);
    cursor: pointer;
}

.swiper-slide:hover {
    z-index: 10;
}

.edition-card img {
    border-bottom: 1px solid #333;
}

.swiper-slide-active .edition-card {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 166, 120, 0.5);
}

.swiper-slide-active .edition-card:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* Navigation Wrapper */
.swiper-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* Navigation Buttons - positioned outside cards */
.swiper-button-next,
.swiper-button-prev {
    position: static !important;
    margin-top: 0 !important;
    flex-shrink: 0;
    color: rgba(201, 166, 120, 1) !important;
    width: 60px !important;
    height: 60px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 36px !important;
    font-weight: bold !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #fff !important;
    transform: scale(1.15);
}

.swiper-pagination-bullet-active {
    background-color: rgba(201, 166, 120, 1) !important;
}

/* Custom Pagination - Scrollbar Style */
/* Custom Scrollbar Style */
.swiper-scrollbar {
    background: rgba(255, 255, 255, 0.1);
    /* Dark track */
    height: 4px !important;
    width: 60% !important;
    /* Not full width */
    left: 20% !important;
    /* Center it */
    bottom: 0 !important;
    top: auto !important;
    border-radius: 2px;
    position: absolute;
}

.swiper-scrollbar-drag {
    background: rgba(201, 166, 120, 1);
    /* Gold thumb */
    border-radius: 2px;
    cursor: pointer;
}

/* Force visual centering for even amount of slides initially */
.center-scrollbar-init .swiper-scrollbar-drag {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 250px !important;
    transition: width 0.3s ease, left 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
    .swiper-scrollbar {
        display: none;
    }

    #editions-swiper {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Tebex Checkout Loading State */
.btn-loading {
    pointer-events: none;
    opacity: 0.7;
}

.tebex-bouncing-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-right: 8px;
    height: 14px;
}

.tebex-bouncing-dots span {
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
    animation: tebex-bounce 1.4s infinite ease-in-out both;
}

.tebex-bouncing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.tebex-bouncing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes tebex-bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Tebex Toast Notification */
.tebex-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a1a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 100, 100, 0.4);
}

.tebex-toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Support Label */
.support-label {
    color: rgba(201, 166, 120, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 2px 4px;
    margin-bottom: 4px;
    text-align: center;
    background: transparent;
    border: none;
    letter-spacing: 0.05em;
}

/* Edition Ribbon (e.g. NEW) for specific cards */
.edition-ribbon {
    position: absolute;
    top: 28px;
    right: -55px;
    width: 200px;
    background: linear-gradient(90deg, #b8a07a 0%, #f3e2be 50%, #b8a07a 100%);
    color: #111;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 16px;
    padding: 4px 0;
    transform: rotate(45deg);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    border-top: 2px solid #111;
    border-bottom: 2px solid #111;
    z-index: 10;
    pointer-events: none;
}