/* ═══════════════════════════════════════════════════════════════
   STORY CIRCLES SECTION
═══════════════════════════════════════════════════════════════ */

.vuvita-stories-section {
    padding: 0px 0 20px 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    display: flex;
    justify-content: center;
    background: var(--vuvita-dark, #121212);
}

.vuvita-hero__stories {
    position: relative;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
}

.vuvita-hero__stories-container {
    display: flex;
    justify-content: center;
}

.vuvita-hero__stories-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vuvita-hero__stories-wrapper::-webkit-scrollbar {
    display: none;
}

.vuvita-hero__story {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.vuvita-hero__story-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.vuvita-hero__story-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--vuvita-gold, #c9a962) 0%, var(--vuvita-gold-dark, #a68b4b) 50%, var(--vuvita-gold-light, #e0c98a) 100%);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vuvita-hero__story-circle::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--vuvita-dark, #121212);
}

.vuvita-hero__story-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vuvita-hero__story-inner i {
    color: var(--vuvita-gold, #c9a962);
    font-size: 24px;
    transition: all 0.2s ease;
}

.vuvita-hero__story:hover .vuvita-hero__story-circle {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(201, 169, 98, 0.4);
}

.vuvita-hero__story:hover .vuvita-hero__story-inner {
    background: var(--vuvita-gold, #c9a962);
}

.vuvita-hero__story:hover .vuvita-hero__story-inner i {
    color: var(--vuvita-black, #0a0a0a);
}

.vuvita-hero__story-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--vuvita-white, #ffffff);
    text-align: center;
    max-width: 80px;
    line-height: 1.3;
    transition: all 0.2s ease;
}

.vuvita-hero__story:hover .vuvita-hero__story-label {
    color: var(--vuvita-gold, #c9a962);
}

/* ═══════════════════════════════════════════════════════════════
   STORY MODAL
═══════════════════════════════════════════════════════════════ */

.vuvita-story-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vuvita-story-modal--active {
    opacity: 1;
    visibility: visible;
}

.vuvita-story-modal__container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 80vh;
    max-height: 800px;
    background: var(--vuvita-dark, #121212);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Progress Bars */
.vuvita-story-modal__progress {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.vuvita-story-modal__progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.vuvita-story-modal__progress-fill {
    width: 0;
    height: 100%;
    background: var(--vuvita-gold, #c9a962);
}

.vuvita-story-modal__progress-bar--active .vuvita-story-modal__progress-fill {
    width: 100%;
    animation: storyProgress 5s linear forwards;
}

.vuvita-story-modal__progress-bar--completed .vuvita-story-modal__progress-fill {
    width: 100%;
}

@keyframes storyProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Header */
.vuvita-story-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    padding-top: 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.vuvita-story-modal__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vuvita-story-modal__brand-icon {
    width: 40px;
    height: 40px;
    background: var(--vuvita-gold, #c9a962);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vuvita-story-modal__brand-icon i {
    color: var(--vuvita-white, #ffffff);
    font-size: 18px;
}

.vuvita-story-modal__brand-info {
    display: flex;
    flex-direction: column;
}

.vuvita-story-modal__brand-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--vuvita-white, #ffffff);
}

.vuvita-story-modal__brand-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.vuvita-story-modal__close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.vuvita-story-modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.vuvita-story-modal__close i {
    color: var(--vuvita-white, #ffffff);
    font-size: 16px;
}

/* Slides */
.vuvita-story-modal__slides {
    flex: 1;
    position: relative;
}

.vuvita-story-modal__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.vuvita-story-modal__slide--active {
    opacity: 1;
    visibility: visible;
}

.vuvita-story-modal__slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
}

.vuvita-story-modal__slide-content {
    position: relative;
    z-index: 2;
    padding: 32px 24px;
}

.vuvita-story-modal__slide-title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--vuvita-white, #ffffff);
    margin-bottom: 12px;
}

.vuvita-story-modal__slide-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.vuvita-story-modal__slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--vuvita-gold, #c9a962);
    color: var(--vuvita-black, #0a0a0a);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.vuvita-story-modal__slide-cta:hover {
    background: var(--vuvita-gold-light, #e0c98a);
    transform: translateY(-2px);
}

.vuvita-story-modal__slide-cta i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.vuvita-story-modal__slide-cta:hover i {
    transform: translateX(4px);
}

/* Navigation */
.vuvita-story-modal__nav {
    position: absolute;
    top: 100px;
    bottom: 100px;
    width: 30%;
    z-index: 5;
    cursor: pointer;
}

.vuvita-story-modal__nav--prev {
    left: 0;
}

.vuvita-story-modal__nav--next {
    right: 0;
}

/* Category Arrows */
.vuvita-story-modal__arrows {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.vuvita-story-modal__arrow {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--vuvita-white, #ffffff);
}

.vuvita-story-modal__arrow:hover:not(:disabled) {
    background: var(--vuvita-gold, #c9a962);
    border-color: var(--vuvita-gold, #c9a962);
    color: var(--vuvita-black, #0a0a0a);
}

.vuvita-story-modal__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.vuvita-story-modal__arrow i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .vuvita-stories-section {
        background: #000 !important;
        position: relative !important;
        z-index: 10 !important;
        padding: 15px 10px !important;
        margin: 0 !important;
        border: none !important;
    }

    .vuvita-hero__stories {
        padding: 0 10px;
        width: 100%;
        overflow: hidden;
    }

    .vuvita-hero__stories-wrapper {
        gap: 10px;
        padding: 5px 0;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .vuvita-hero__story {
        flex: 0 0 auto;
    }

    .vuvita-hero__story-circle {
        width: 55px;
        height: 55px;
    }

    .vuvita-hero__story-inner i {
        font-size: 18px;
    }

    .vuvita-hero__story-label {
        font-size: 9px;
        max-width: 55px;
        text-align: center;
        margin-top: 4px;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #fff;
    }

    .vuvita-story-modal__container {
        max-width: 100%;
        height: 100vh;
        max-height: none;
        border-radius: 0;
    }

    .vuvita-story-modal__slide-title {
        font-size: 24px;
    }
}

/* Split View Styles */
.vuvita-story-modal__split-container {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
}

.vuvita-story-modal__split-top,
.vuvita-story-modal__split-bottom {
    flex: 1;
    width: 100%;
    height: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.vuvita-story-modal__split-top::before,
.vuvita-story-modal__split-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

.vuvita-story-modal__split-divider {
    height: 2px;
    background: rgba(201, 169, 98, 0.3);
    width: 100%;
    position: relative;
    z-index: 5;
}