/* ===== START LOGOUT MODAL ===== */
.swal2-popup.custom-small {
    max-width: 320px !important;
    padding: 1.2em !important;
    font-size: 0.9rem !important;
}

.swal2-title {
    font-size: 1.1rem !important;
}

.swal2-html-container {
    font-size: 0.85rem !important;
}

.swal2-actions button {
font-size: 0.85rem !important;
padding: 6px 12px !important;
}
/* ===== END LOGOUT MODAL ===== */


/* ===== START EMAIL VERIFICATION VIEW ===== */
.verify-emailsss{
    padding: 150px 20px 20px 20px;
}
.auth-text {
    font-size: 18px;
    margin: 20px 200px;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
    .verify-emailsss{
        padding: 100px 20px 20px 20px;
    }
    .auth-text {
        font-size: 0.9rem;
        margin: 0 0 10px 0;
    }
}

@media (max-width: 480px) {
    .verify-emailsss{
        padding: 100px 20px 20px 20px;
    }
    .auth-text {
        font-size: 0.85rem;
        margin: 0 0 10px 0;
    }
}
/* ===== END EMAIL VERIFICATION VIEW ===== */

/* ===== START CALENDAR ===== */
.fc .fc-daygrid-event {
    color: white !important;
    border-radius: 5px;
    padding: 3px 5px;
    font-weight: 500;
}

.fc-event {
    padding: 6px 10px;
    border-radius: 4px;
    color: #fff;
    margin-bottom: 8px;
    cursor: grab;
    font-size: 10px;
    font-weight: 400;
}

.fc .fc-daygrid-event-dot {
    display: none !important;
}

.fc-event {
    cursor: pointer;
    transition: transform 0.2s;
}

.fc-event:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

/* ===== END CALENDAR ===== */

/* ===== START RESERVATION STATUS TAG ===== */
.status-tag {
    clip-path: polygon(
        12px 50%,  /* point */
        0 0,       /* top-left */
        100% 0,    /* top-right */
        100% 100%, /* bottom-right */
        0 100%     /* bottom-left */
    );
}
/* ===== END RESERVATION STATUS TAG ===== */

.profile-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.edit-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

.custom-toast {
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

/* Progress bar */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #00ff15;
    animation: shrink 3s linear forwards;
}

/* Shrinking animation */
@keyframes shrink {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

.rate-btn {
    width: 100%;
    padding: 13px 0;
    background: transparent;
    color: #000;
    border: 2px solid #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rate-btn:hover {
    background: #000;
    color: #fff;
}
.rate-btn {
    letter-spacing: 1px;
    text-transform: uppercase;
}
.review-star.filled {
    fill: #ffc107;
}

.review-star.empty {
    fill: #ddd;
}

.image-preview-modal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.85);
}

.image-preview-modal.modal.show {
    backdrop-filter: blur(6px);
}

.image-preview-modal .modal-content {
    box-shadow: none;
}


.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1056;
    padding: 0 15px;
}

.image-nav.prev { left: 10px; }
.image-nav.next { right: 10px; }

.image-nav:hover {
    color: #ffc107;
}

.image-preview-modal.show ~ .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

/* REELS */

/* OUTER WRAPPER */
.reels-section {
    width: 100%;
    overflow-x: hidden; /* prevents body overflow */
}

/* REELS ROW */
.reels-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 12px 16px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
}
.reels-row:active {
    cursor: grabbing;
}
.reels-row::-webkit-scrollbar {
    display: none;
}

/* Desktop — 5.5 reels */
.reel-preview {
    flex: 0 0 calc((100vw - 120px) / 4.5);
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #000;
}

/* Tablet */
@media (max-width: 991px) {
    .reel-preview {
        flex: 0 0 calc((100vw - 64px) / 2.5);
    }
}

/* Mobile — 1.5 reels */
@media (max-width: 576px) {
    .reel-preview {
        flex: 0 0 calc((100vw - 48px) / 1.5);
    }
}

.reel-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* FULL SCREEN REELS */
.reels-viewer {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: none;
}

.reels-vertical {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.reel-full {
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
}

.reel-full video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reels-close {
    position: fixed;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 6px 12px;
    border-radius: 50%;
    z-index: 10000;
}

/* Actions */
.reel-actions {
    position: absolute;
    right: 15px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reel-actions a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
}

.reel-actions a span {
    font-size: 12px;
    margin-top: 4px;
    line-height: 1;
    opacity: 0.9;
}

/* Info */
.reel-info {
    position: absolute;
    bottom: 30px;
    left: 15px;
    color: #fff;
    max-width: 70%;
}

.category-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.category-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex: 0 0 25%; /* 4 items desktop */
}

/* Tablet */
@media (max-width: 992px) {
    .category-item {
        flex: 0 0 33.3333%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .category-item {
        flex: 0 0 80%;
    }
}

/* ARROWS */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 12px rgba(0,0,0,.2);
    cursor: pointer;
    z-index: 10;
}

.slider-btn.left {
    left: -15px;
}

.slider-btn.right {
    right: -15px;
}

