.cioco-martisor-drawer {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    display: flex;
    align-items: center;
}

/* Vertical tab button */
.cioco-martisor-tab {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: #8B1A1A;
    color: #fff;
    border: none;
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s;
    position: relative;
    z-index: 2;
}

.cioco-martisor-tab:hover {
    background: #a52222;
}

/* Slide-out panel */
.cioco-martisor-panel {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    background: #fff;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.18);
    padding: 28px 24px 24px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
    z-index: 1;
}

.cioco-martisor-drawer.is-open .cioco-martisor-panel {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    visibility: visible;
}

/* When open, hide tab behind the panel */
.cioco-martisor-drawer.is-open .cioco-martisor-tab {
    box-shadow: none;
    z-index: 0;
}

.cioco-martisor-drawer.is-open .cioco-martisor-panel {
    z-index: 3;
}

/* Close button */
.cioco-martisor-close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: none;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 2px 6px;
}

.cioco-martisor-close:hover {
    color: #333;
}

/* Content */
.cioco-martisor-content h3 {
    margin: 0 0 12px;
    font-size: 17px;
    color: #8B1A1A;
    font-weight: 700;
}

.cioco-martisor-content p {
    margin: 0 0 4px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.cioco-martisor-dates {
    font-weight: 600;
    font-size: 16px !important;
}

.cioco-martisor-days {
    color: #666 !important;
    font-size: 14px !important;
}

.cioco-martisor-hours {
    font-weight: 600;
    font-size: 16px !important;
    margin-bottom: 14px !important;
}

.cioco-martisor-cta {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 18px;
    background: #8B1A1A;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.cioco-martisor-cta:hover {
    background: #a52222;
    color: #fff !important;
    text-decoration: none;
}

/* Mobile: smaller panel, smaller tab */
@media screen and (max-width: 600px) {
    .cioco-martisor-tab {
        padding: 10px 8px;
        font-size: 12px;
    }

    .cioco-martisor-panel {
        min-width: 190px;
        padding: 22px 18px 18px;
    }

    .cioco-martisor-content h3 {
        font-size: 15px;
    }

    .cioco-martisor-content p {
        font-size: 13px;
    }
}
