:root {
    --brand-gold: #b58e3e;
}

.offers-fixed-wrapper {
    position: fixed;
    left: 0;
    top: 20%; /* Adjust this to move the whole unit up or down */
    z-index: 9999;
    display: flex;
    align-items: flex-start;
}

/* Vertical Tab - Locked Height */
.fixed-tab-trigger {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--brand-gold);
    border-left: none;
    width: 42px; /* Fixed width */
    height: 150px; /* FIXED HEIGHT */
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.tab-label {
    writing-mode: vertical-rl;
    color: var(--brand-gold);
    font-weight: bold;
    font-size: 13px;
    margin-top: 8px;
}

/* Sidebar Panel - Matched Height and Increased Width */
.fixed-sidebar-panel {
    background: rgba(255, 255, 255, 0.85);
    width: 320px; /* INCREASED WIDTH */
    height: 150px; /* FIXED HEIGHT - MATCHES TAB */
    border: 1px solid var(--brand-gold);
    border-left: none;
    position: absolute;
    left: 0;
    z-index: 5;
    transform: translateX(-100%); /* Hidden behind tab */
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fixed-sidebar-panel.open {
    transform: translateX(42px); /* Slides out perfectly past the tab */
}

/* Close Button Position */
.panel-header-top {
    text-align: right;
    padding: 5px 10px 0 0;
}

.close-x-btn {
    color: var(--brand-gold);
    font-size: 22px;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
}

/* Carousel Layout */
.carousel-window {
    flex: 1;
    position: relative;
    padding: 0 15px;
    display: center;
    align-items: center;
}

.carousel-track-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    padding-right: 10px;
}

.gold-brand { color: var(--brand-gold); font-size: 16px; margin: 0 0 5px 0; }

.carousel-slide p {
    font-size: 12px;
    line-height: 1.4;
    color: #444;
    margin: 0;
}

/* Small Buttons Bottom Right */
.carousel-navigation-btns {
    position: absolute;
    bottom: 8px;
    right: 10px;
    display: flex;
    gap: 5px;
}

.carousel-navigation-btns button {
    background: var(--brand-gold);
    color: white;
    border: none;
    width: 22px;
    height: 22px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}