/* ========================================
   SINGSING ROOMS WIDGET
   Prefixed with .ss- to avoid conflicts
======================================== */
.ss-rooms-section {
    padding: 80px 0;
}

.ss-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ss-rooms-intro {
    margin-bottom: 50px;
}

.ss-section-title {
    font-family: 'Phudu', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: rgb(246, 233, 214);
}

.ss-section-text {
    color: rgb(246, 233, 214);
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
}

.ss-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ss-rooms-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.ss-room-card {
    background: #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
}

.ss-room-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 148, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Room image / carousel */
.ss-room-image {
    position: relative;
    height: 260px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
    transition: background-image 0.5s ease;
    overflow: hidden;
    border-radius: 999px 999px 0 0;
}

.ss-room-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.ss-room-badge {
    position: absolute;
    top: 60px;
    right: 12px;
    background: #ff4d94;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.ss-room-name {
    position: relative;
    z-index: 1;
    font-family: 'Phudu', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: rgb(246, 233, 214);
}

/* Carousel arrows */
.ss-room-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.ss-room-image:hover .ss-room-arrow {
    opacity: 1;
}

.ss-room-arrow:hover {
    background: rgba(255, 77, 148, 0.7);
}

.ss-room-prev { left: 8px; }
.ss-room-next { right: 8px; }

/* Room info */
.ss-room-info {
    padding: 20px;
}

.ss-room-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.ss-room-capacity,
.ss-room-duration,
.ss-room-mics,
.ss-room-songs,
.ss-room-drinks {
    font-size: 13px;
    color: rgb(246, 233, 214);
}

.ss-room-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.ss-price-from {
    font-size: 12px;
    color: rgb(246, 233, 214);
}

.ss-price-amount {
    font-family: 'Phudu', sans-serif;
    font-size: 36px;
    color: #ff4d94;
}

.ss-price-pp {
    font-size: 14px;
    color: rgb(246, 233, 214);
}

.ss-btn-book-room {
    display: block;
    text-align: center;
    background: #ff4d94;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Phudu', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.ss-btn-book-room:hover {
    background: #ff6baa;
    box-shadow: 0 0 20px rgba(255, 77, 148, 0.4);
    color: white !important;
    text-decoration: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .ss-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ss-rooms-grid {
        grid-template-columns: 1fr;
    }
    .ss-rooms-section {
        padding: 50px 0;
    }
}

/* ========================================
   SINGSING REVIEWS WIDGET
======================================== */
.ss-reviews-strip {
    background: transparent;
    padding: 50px 0;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.ss-reviews-scroll {
    display: flex;
    gap: 24px;
    animation: ss-scroll-reviews 30s linear infinite;
}

.ss-reviews-scroll:hover {
    animation-play-state: paused;
}

@keyframes ss-scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ss-review-card {
    width: 320px;
    min-width: 320px;
    background: #2a2a2a;
    border: 1px solid rgba(246, 233, 214, 0.08);
    border-radius: 12px;
    padding: 24px;
    flex-shrink: 0;
}

.ss-review-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 12px;
}

.ss-review-text {
    font-size: 14px;
    color: rgba(246, 233, 214, 0.8);
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ss-review-author {
    font-size: 12px;
    color: rgba(246, 233, 214, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .ss-review-card {
        min-width: 220px;
        padding: 16px;
    }
    .ss-reviews-strip {
        padding: 30px 0;
    }
    .ss-reviews-scroll {
        gap: 14px;
    }
    .ss-review-text {
        font-size: 13px;
    }
}

/* ========================================
   SINGSING SOCIAL PROOF WIDGET
======================================== */
.ss-social-proof {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 18px 30px;
    border-top: 1px solid rgba(255, 77, 148, 0.2);
    border-bottom: 1px solid rgba(255, 77, 148, 0.2);
}

.ss-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #e0e0e0;
}

.ss-proof-stars {
    color: #fbbf24;
    font-size: 16px;
}

.ss-proof-number {
    font-family: 'Phudu', sans-serif;
    font-size: 24px;
    color: #ff4d94;
}

.ss-proof-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .ss-social-proof {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    .ss-proof-divider {
        display: none;
    }
}

/* ========================================
   LANGUAGE SWITCH
   ======================================== */

.ss-lang-switch {
    display: inline-flex;
    gap: 2px;
    background: rgba(246, 233, 214, 0.1);
    border-radius: 6px;
    padding: 2px;
}

.ss-lang-btn {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(246, 233, 214, 0.5);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.ss-lang-btn:hover {
    color: rgb(246, 233, 214);
    text-decoration: none;
}

.ss-lang-btn.active {
    background: rgba(246, 233, 214, 0.15);
    color: rgb(246, 233, 214);
}

/* Fixed position top-right (fallback if JS doesn't move it into header) */
.ss-lang-switch-fixed {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
    display: inline-flex;
    gap: 4px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 5px 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* When moved into header by JS */
.ss-lang-switch-fixed.ss-lang-in-header {
    position: absolute;
    right: 215px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    z-index: 10;
}

.ss-lang-switch-fixed .ss-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s;
    opacity: 0.45;
    line-height: 0;
}

.ss-lang-switch-fixed .ss-lang-btn:hover {
    opacity: 0.8;
    text-decoration: none;
}

.ss-lang-switch-fixed .ss-lang-btn.active {
    background: rgba(255, 255, 255, 0.12);
    opacity: 1;
}

.ss-lang-switch-fixed .ss-lang-btn svg {
    display: block;
    border-radius: 3px;
}

/* Hamburger menu breakpoint: flags next to hamburger */
@media (max-width: 1300px) {
    .ss-lang-switch-fixed.ss-lang-in-header {
        right: 80px;
    }
}

@media (max-width: 767px) {
    .ss-lang-switch-fixed.ss-lang-in-header {
        right: 60px;
    }
}

/* SingSing FAQ Accordion */

.ss-faq-section {
    padding: 60px 20px;
    background: #fafafa;
}

.ss-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.ss-faq-title {
    font-family: 'Phudu', sans-serif;
    font-size: 42px;
    text-align: center;
    margin: 0 0 40px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.ss-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ss-faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
}

.ss-faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ss-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    gap: 16px;
}

.ss-faq-question:hover {
    color: #e63946;
}

.ss-faq-question:focus-visible {
    outline: 2px solid #e63946;
    outline-offset: -2px;
    border-radius: 12px;
}

.ss-faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #999;
}

.ss-faq-item.is-open .ss-faq-chevron {
    transform: rotate(180deg);
    color: #e63946;
}

.ss-faq-answer {
    padding: 0 24px 20px;
    overflow: hidden;
}

.ss-faq-answer[hidden] {
    display: none;
}

.ss-faq-answer p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Animation */
.ss-faq-answer.is-animating {
    display: block !important;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 640px) {
    .ss-faq-section {
        padding: 40px 16px;
    }

    .ss-faq-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .ss-faq-question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .ss-faq-answer {
        padding: 0 18px 16px;
    }

    .ss-faq-answer p {
        font-size: 14px;
    }
}

/* ========================================
   WHATS INCLUDED - Feature grid
   ======================================== */

.ss-whats-included {
    padding: 60px 0;
    border-top: 1px solid rgba(246, 233, 214, 0.06);
}

.ss-wi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ss-wi-item {
    background: #2a2a2a;
    border: 1px solid rgba(246, 233, 214, 0.08);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
}

.ss-wi-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.ss-wi-item .ss-wi-title {
    font-family: 'Phudu', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: rgb(246, 233, 214) !important;
    margin: 0 0 8px 0 !important;
}

.ss-wi-item p {
    font-size: 13px;
    color: rgba(246, 233, 214, 0.6);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .ss-wi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ss-wi-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ss-whats-included {
        padding: 40px 0;
    }
}

/* ========================================
   Cookie Consent Banner
   ======================================== */

.ss-gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #1a1a1a;
    color: #f6e9d6;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.ss-gdpr-banner.ss-gdpr-visible {
    transform: translateY(0);
}

.ss-gdpr-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ss-gdpr-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(246, 233, 214, 0.7);
}

.ss-gdpr-text strong {
    color: #f6e9d6;
    font-size: 15px;
}

.ss-gdpr-text br {
    margin-bottom: 4px;
}

.ss-gdpr-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.ss-gdpr-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.1s ease;
}

.ss-gdpr-btn:active {
    transform: scale(0.97);
}

.ss-gdpr-btn-accept {
    background: #ff4d94;
    color: #f6e9d6;
}

.ss-gdpr-btn-accept:hover {
    background: #ff6baa;
}

.ss-gdpr-btn-decline {
    background: transparent;
    color: rgba(246, 233, 214, 0.6);
    border: 1px solid rgba(246, 233, 214, 0.2);
}

.ss-gdpr-btn-decline:hover {
    background: #2a2a2a;
    color: #f6e9d6;
}

/* ========================================
   Settings Toggle Button (bottom-left)
   ======================================== */

.ss-gdpr-toggle {
    position: fixed;
    bottom: 16px;
    left: 16px;
    z-index: 9998;
}

/* On reservation page: sit above the sticky day selector */
body:has(#ss-reservation-app) .ss-gdpr-toggle {
    bottom: 100px;
    z-index: 99998;
}

.ss-gdpr-toggle-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: #1a1a1a !important;
    color: rgba(246, 233, 214, 0.4) !important;
    border: 1px solid rgba(246, 233, 214, 0.15) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

.ss-gdpr-toggle-btn:hover {
    background: #2a2a2a !important;
    color: rgba(246, 233, 214, 0.8) !important;
    border-color: rgba(246, 233, 214, 0.3) !important;
}

/* ========================================
   Settings Panel (overlay)
   ======================================== */

.ss-gdpr-panel {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.ss-gdpr-panel.ss-gdpr-panel-visible {
    opacity: 1;
}

.ss-gdpr-panel-inner {
    background: #1a1a1a;
    color: #f6e9d6;
    width: 100%;
    max-width: 520px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.ss-gdpr-panel-visible .ss-gdpr-panel-inner {
    transform: translateY(0);
}

.ss-gdpr-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(246, 233, 214, 0.1);
}

.ss-gdpr-panel-header strong {
    font-size: 16px;
    color: #f6e9d6;
}

.ss-gdpr-panel-close {
    background: none;
    border: none;
    color: rgba(246, 233, 214, 0.5);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.ss-gdpr-panel-close:hover {
    color: #f6e9d6;
}

.ss-gdpr-panel-body {
    padding: 16px 20px;
}

.ss-gdpr-cookie-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
}

.ss-gdpr-cookie-row + .ss-gdpr-cookie-row {
    border-top: 1px solid rgba(246, 233, 214, 0.08);
}

.ss-gdpr-cookie-info {
    flex: 1;
}

.ss-gdpr-cookie-info strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
    color: #f6e9d6;
}

.ss-gdpr-cookie-info small {
    font-size: 12px;
    color: rgba(246, 233, 214, 0.5);
    line-height: 1.4;
}

.ss-gdpr-cookie-toggle {
    flex-shrink: 0;
}

.ss-gdpr-always-on {
    font-size: 12px;
    color: #22c55e;
    font-weight: 600;
}

/* Toggle switch */
.ss-gdpr-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.ss-gdpr-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ss-gdpr-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #333;
    border-radius: 24px;
    transition: background-color 0.3s ease;
}

.ss-gdpr-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #f6e9d6;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.ss-gdpr-switch input:checked + .ss-gdpr-slider {
    background-color: #ff4d94;
}

.ss-gdpr-switch input:checked + .ss-gdpr-slider::before {
    transform: translateX(20px);
}

.ss-gdpr-panel-footer {
    padding: 12px 20px 20px;
    display: flex;
    justify-content: flex-end;
}

.ss-gdpr-panel-footer .ss-gdpr-btn {
    min-width: 120px;
    text-align: center;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 600px) {
    .ss-gdpr-inner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .ss-gdpr-actions {
        width: 100%;
    }

    .ss-gdpr-btn {
        flex: 1;
        padding: 12px 16px;
    }

    .ss-gdpr-panel-inner {
        max-width: 100%;
    }
}
