/* Lighting Section Styles */
.lighting-section {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto 0 auto;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;

}

.blur-lighting {
    position: absolute;
    width: 717px;
    height: 382px;
    top: -120px;
    /* أو استخدم bottom/translateY حسب راحتك */
    left: 827px;
    pointer-events: none;
    z-index: 1;
    /* أو أقل لو طالع فوق المحتوى */
}

.lighting-title {
    width: 1108px;
    height: 58px;
    font-family: Inter, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ededed;
    text-align: center;
    margin-bottom: 100px;
    margin-top: 0;
    line-height: 100%;
}

.lighting-image-wrapper {
    width: 1520px;
    height: 1211px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
}

.lighting-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 30px; */
}

.lighting-controls-bar {
    width: 804px;
    height: 180px;
    background: #181f2a;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 36px;
    box-sizing: border-box;
    gap: 36px;
    margin: 0 auto;
}

.lighting-toggle-btn {
    width: 95px;
    height: 118px;
    border-radius: 100px;
    background: #181f2a;
    color: #34c759;
    font-size: 18px;
    font-weight: 700;
    border: none;
    margin-right: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lighting-icons {
    width: 804px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lighting-icon-btn {
    width: 111px;
    height: 113px;
    border-radius: 100px;
    /* background: #232b38; */
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.lighting-icon-btn.active,
.lighting-toggle-btn.active {
    background: #34c759;
    color: #fff;
}

.lighting-icon-btn img {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
}

.lighting-icon-btn span {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

/* Cinema Vibe Section Styles */
.cinema-section {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    box-sizing: border-box;
}

.cinema-title-wrapper {
    width: 100%;
    /* Assuming full width for wrapper */
    max-width: 1108px;
    /* Based on title width */
    margin-bottom: 48px;
    /* Gap from content-row */
    text-align: center;
}

.cinema-title {
    font-family: Inter, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ededed;
    line-height: 100%;
    margin: 0;
}

.cinema-content {
    width: 100%;
    max-width: 1512px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    /* Gap between video and controls */
}

.cinema-video-wrapper {
    width: 1520px;
    height: 1211px;
    /* Based on Figma */
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinema-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Adjust border-radius if needed */
}

.cinema-controls-bar {
    width: 100%;
    max-width: 1512px;
    /* Full width bar */
    height: 68px;
    /* Based on Figma toggle height */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content within the bar */
    background: none;
    /* Assuming no background for the bar itself */
    gap: 24px;
    /* Gap between toggle and text */
}

.cinema-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Gap between switch and text */
    width: 95px;
    /* Based on Figma toggle width */
    height: 68px;
    /* Based on Figma toggle height */
    padding: 12px;
    /* Based on Figma padding */
    border-radius: 100px;
    /* Based on Figma radius */
    background: none;
    /* إزالة الخلفية الرمادية */
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
}

.cinema-toggle-switch {
    width: 71px;
    height: 31px;
    border-radius: 100px;
    background: #34c759;
    border: none;
    cursor: pointer;
    /* Add transition for smooth toggle */
}

.cinema-toggle span {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    line-height: 100%;
}

/* Blinds Section Styles */
.blinds-section {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    box-sizing: border-box;
}

.blinds-title-wrapper {
    width: 100%;
    max-width: 1108px;
    margin-bottom: 64px;
    text-align: center;
}

.blinds-title {
    font-family: Inter, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ededed;
    line-height: 100%;
    margin: 0;
}

.blinds-content {
    width: 100%;
    max-width: 1512px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    /* Gap between video and controls */
}

.blinds-video-wrapper {
    width: 1520px;
    height: 1211px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blinds-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blinds-controls-bar {
    width: 100%;
    max-width: 1512px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    gap: 24px;
}

.blinds-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 95px;
    height: 68px;
    padding: 12px;
    border-radius: 100px;
    background: none;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
}

.blinds-toggle-switch {
    width: 71px;
    height: 31px;
    border-radius: 100px;
    background: #34c759;
    border: none;
    cursor: pointer;
}

.blinds-toggle span {
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    line-height: 100%;
}
 .lighting-section .toggle-icon {
        width: 120px;
        height: 60px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    .lighting-section .lighting-toggle-btn {
      width: 140px !important;
      height: 70px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      margin: 0 auto !important;
    }
    .lighting-section .toggle-icon {
      width: 140px !important;
      height: 70px !important;
      object-fit: contain !important;
      display: block !important;
      margin: 0 auto !important;
    }
@media (max-width: 600px) {
    .lighting-section {
        padding-top: 32px;
        padding-bottom: 32px;
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .lighting-title {
        width: 422px;
        height: 18px;
        font-size: 16px;
        font-weight: 700;
        color: #ededed;
        text-align: center;
        margin-bottom: 16px;
        margin-top: 0;
        line-height: 100%;
    }

    .lighting-image-wrapper {
        width: 440px !important;
        height: 351px !important;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: unset !important;
    }

    .lighting-image {
        width: 440px !important;
        height: 351px !important;
        object-fit: cover;
        max-width: unset !important;
        max-height: unset !important;
    }

    .lighting-controls-bar {
        width: 424px;
        height: 73px;
        background: #181f2a;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
        box-sizing: border-box;
        gap: 10px;
        margin: 0 auto 16px auto;
    }

    .lighting-toggle-btn {
        width: 72px !important;
        height: 64px !important;
        padding: 0 !important;
        border-radius: 100px;
        background: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        margin: 0;
    }

    .lighting-toggle-btn img,
    .toggle-icon {
        width: 48px !important;
        height: 25px !important;
        object-fit: contain;
        display: block;
    }

    .lighting-toggle-btn span {
        font-size: 10px;
        margin-top: 2px;
    }

    .lighting-icons {
        width: auto;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .lighting-icon-btn {
        width: 72px;
        height: 64px;
        border-radius: 100px;
        background: none;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 12px;
        cursor: pointer;
        transition: background 0.2s;
    }

    .lighting-icon-btn img {
        width: 24px;
        height: 24px;
        margin-bottom: 0;
    }

    .lighting-icon-btn span {
        font-family: Inter, sans-serif;
        font-size: 10px;
        font-weight: 700;
        color: #fff;
        text-align: center;
        line-height: 100%;
    }

    .lighting-controls-bar {
        height: 90px; /* كبّر ارتفاع الشريط */
        align-items: center;
    }
    .lighting-section .lighting-toggle-btn {
        width: 120px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    .lighting-section .toggle-icon {
        width: 120px;
        height: 60px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    .lighting-section .lighting-toggle-btn {
      width: 140px !important;
      height: 70px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      margin: 0 auto !important;
    }
    .lighting-section .toggle-icon {
      width: 140px !important;
      height: 70px !important;
      object-fit: contain !important;
      display: block !important;
      margin: 0 auto !important;
    }
    .lighting-section .lighting-toggle-btn {
      width: 80px !important;
      height: 40px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      margin: 0 auto !important;
    }
    .lighting-section .toggle-icon {
      width: 80px !important;
      height: 40px !important;
      object-fit: contain !important;
      display: block !important;
      margin: 0 auto !important;
    }
 
}