/**
 * Elite Studios - Exact Preview Design Match
 */

/* Reset & Base */
.elite-studios-app * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.elite-studios-app {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #000000;
    min-height: 100vh;
    color: #ffffff;
}

/* Header - Exact Match */
.es-header {
    background: #1e293b;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.es-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.es-logo img {
    height: 40px;
    width: auto;
}

.es-cms-demo {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.es-cms-demo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Progress Steps - Exact Match */
.es-progress {
    background: #000000;
    padding: 40px;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.es-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.es-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #374151;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.es-step.active .es-step-number {
    background: #7c3aed;
    color: #ffffff;
}

.es-step.completed .es-step-number {
    background: #10b981;
    color: #ffffff;
}

.es-step-label {
    font-size: 14px;
    color: #9ca3af;
    text-align: center;
    white-space: nowrap;
}

.es-step.active .es-step-label {
    color: #ffffff;
}

/* Main Content */
.es-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.es-step-content {
    display: none;
}

.es-step-content.active {
    display: block;
}

/* Card Container - Exact Match */
.es-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.es-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center;
}

.es-subtitle {
    font-size: 16px;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 40px;
}

/* Controls Row - Two Column Layout */
.es-controls-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

/* Duration Control - Exact Match */
.es-duration-control {
    display: flex;
    flex-direction: column;
}

.es-duration-control label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 400;
}

.es-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.es-duration-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 5px;
    width: fit-content;
}

.es-duration-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.es-duration-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.es-duration-value {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    min-width: 60px;
    text-align: center;
}

/* Calendar - Exact Match */
.es-calendar {
    background: #0f0f1a;
    border: 1px solid #2d2d44;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.es-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.es-cal-prev, .es-cal-next {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.es-cal-prev:hover, .es-cal-next:hover {
    color: #ffffff;
}

.es-cal-month {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.es-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.es-cal-day-header {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    padding: 8px;
    font-weight: 600;
}

.es-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #e5e7eb;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid transparent;
}

.es-cal-day:hover:not(.disabled):not(.selected) {
    background: #2d2d44;
}

.es-cal-day.selected {
    background: #7c3aed;
    color: #ffffff;
    font-weight: 600;
}

.es-cal-day.disabled {
    color: #4b5563;
    cursor: not-allowed;
}

.es-cal-day.other-month {
    color: #374151;
}

.es-cal-day.next-month {
    color: #6b7280;
    cursor: pointer;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.es-cal-day.next-month:hover:not(.disabled) {
    background: #2d2d44;
}

/* Time Slots */
.es-time-slots {
    background: #0f0f1a;
    border: 1px solid #2d2d44;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.es-time-slots h3 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
}

.es-time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.es-time-slot {
    padding: 12px;
    background: #1a1a2e;
    border: 1px solid #2d2d44;
    border-radius: 8px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.es-time-slot:hover {
    border-color: #7c3aed;
}

.es-time-slot.selected {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.3);
    transform: scale(1.05);
}

.es-time-slot.unavailable {
    background: #374151;
    border-color: #4b5563;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.es-time-slot.unavailable:hover {
    border-color: #4b5563;
    background: #374151;
}

.es-time-slot.available {
    background: #1a1a2e;
    border-color: #2d2d44;
    color: #ffffff;
    cursor: pointer;
}

.es-loading {
    text-align: center;
    padding: 40px;
    color: #9ca3af;
    font-style: italic;
}

.es-no-availability {
    text-align: center;
    padding: 40px;
    color: #9ca3af;
}

.es-no-availability-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.es-no-availability h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

.es-no-availability p {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* People Selector */
.es-people-control {
    display: flex;
    flex-direction: column;
}

.es-people-control label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 400;
}

.es-people-selector {
    display: flex;
    gap: 10px;
}

.es-people-btn {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
}

.es-people-btn:hover {
    border-color: rgba(124, 58, 237, 0.5);
    background: rgba(124, 58, 237, 0.1);
    color: #ffffff;
}

.es-people-btn.active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #ffffff;
}

/* Navigation Buttons */
.es-btn-next, .es-btn-back, .es-btn-complete, .es-btn-close {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.es-btn-next, .es-btn-complete {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.es-btn-next:hover:not(:disabled), .es-btn-complete:hover {
    background: linear-gradient(135deg, #764ba2 0%, #8b5cf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

.es-btn-next:disabled {
    background: #374151;
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

.es-btn-back {
    background: transparent;
    border: 1px solid #2d2d44;
    color: #ffffff;
}

.es-btn-back:hover {
    background: #1a1a2e;
}

.es-nav-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Session Types Grid */
.es-session-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.es-session-card {
    background: #0f0f1a;
    border: 2px solid #2d2d44;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.es-session-card:hover {
    border-color: #7c3aed;
}

.es-session-card.selected {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
}

.es-session-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.es-session-card h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
}

.es-session-card p {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 15px;
    line-height: 1.5;
}

.es-session-price {
    font-size: 20px;
    font-weight: 700;
    color: #7c3aed;
}

/* Session Type Carousel */
.es-session-carousel {
    position: relative;
    width: 100%;
    height: 150px;
    background: #1a1a2e;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.es-session-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.es-session-carousel .es-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.es-session-carousel .es-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.es-session-carousel .es-carousel-item.active {
    opacity: 1;
}

.es-session-carousel .es-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.es-session-carousel .es-carousel-nav:hover,
.es-session-carousel .es-carousel-nav:focus {
    background: rgba(124, 58, 237, 0.8);
    transform: translateY(-50%) scale(1.1);
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

/* Ensure carousel navigation doesn't interfere with card selection */
.es-session-carousel .es-carousel-nav {
    pointer-events: auto;
}

.es-session-carousel .es-carousel-dots {
    pointer-events: auto;
}

.es-session-carousel .es-carousel-item {
    pointer-events: none;
}

/* Prevent carousel clicks from triggering card selection */
.es-session-carousel .es-carousel-nav,
.es-session-carousel .es-carousel-dots {
    z-index: 10;
}

.es-session-carousel .es-carousel-nav.prev {
    left: 8px;
}

.es-session-carousel .es-carousel-nav.next {
    right: 8px;
}

.es-session-carousel .es-carousel-nav svg {
    width: 16px;
    height: 16px;
}

.es-session-carousel .es-carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.es-session-carousel .es-carousel-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.es-session-carousel .es-carousel-dot.active {
    background: #7c3aed;
    transform: scale(1.2);
}

.es-session-carousel .es-carousel-dot:hover,
.es-session-carousel .es-carousel-dot:focus {
    background: rgba(124, 58, 237, 0.8);
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .es-session-carousel .es-carousel-nav {
        width: 28px;
        height: 28px;
    }
    
    .es-session-carousel .es-carousel-nav svg {
        width: 14px;
        height: 14px;
    }
    
    .es-session-carousel .es-carousel-dots {
        bottom: 6px;
        gap: 4px;
    }
    
    .es-session-carousel .es-carousel-dot {
        width: 6px;
        height: 6px;
    }
}

/* Studios Grid */
.es-studios {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.es-studio-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.es-studio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.es-studio-card.selected {
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.3);
}

/* Studio Carousel */
.es-studio-carousel {
    position: relative;
    width: 100%;
    height: 240px;
    background: #1a1a2e;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.es-studio-carousel .es-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.4s ease;
}

.es-studio-carousel .es-carousel-item {
    position: relative;
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.es-studio-carousel .es-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Navigation */
.es-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: auto; /* Ensure carousel navigation doesn't interfere with card selection */
}

.es-carousel-nav:hover,
.es-carousel-nav:focus {
    background: rgba(124, 58, 237, 0.8);
    border-color: #7c3aed;
    transform: translateY(-50%) scale(1.1);
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

.es-carousel-nav.prev {
    left: 12px;
}

.es-carousel-nav.next {
    right: 12px;
}

.es-carousel-nav svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

/* Carousel Dots */
.es-carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
    pointer-events: auto; /* Ensure carousel navigation doesn't interfere with card selection */
}

.es-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.es-carousel-dot.active {
    background: #7c3aed;
    transform: scale(1.2);
}

.es-carousel-dot:hover,
.es-carousel-dot:focus {
    background: rgba(124, 58, 237, 0.8);
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .es-studio-carousel .es-carousel-nav {
        width: 32px;
        height: 32px;
    }
    
    .es-studio-carousel .es-carousel-nav svg {
        width: 16px;
        height: 16px;
    }
    
    .es-studio-carousel .es-carousel-dots {
        bottom: 8px;
        gap: 4px;
    }
    
    .es-studio-carousel .es-carousel-dot {
        width: 6px;
        height: 6px;
    }
}

/* Studio Info */
.es-studio-info {
    padding: 20px;
}

.es-studio-card h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
}

.es-studio-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.es-studio-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.es-studio-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.es-studio-meta svg {
    width: 16px;
    height: 16px;
}

.es-studio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.es-studio-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Select Button */
.es-studio-select-btn {
    width: 100%;
    padding: 12px;
    margin-top: 16px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.es-studio-select-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-1px);
}

.es-studio-card.selected .es-studio-select-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

/* Add-on Video Wrapper */
.es-addon-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #0a0a0f;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

/* Crew & Equipment Video Wrapper */
.es-crew-equipment-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #0a0a0f;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

/* Props Video Wrapper */
.es-props-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #0a0a0f;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.es-addon-video-wrapper.non-interactive,
.es-crew-equipment-video-wrapper.non-interactive,
.es-props-video-wrapper.non-interactive {
    pointer-events: none;
    user-select: none;
}

.es-addon-video-wrapper iframe,
.es-crew-equipment-video-wrapper iframe,
.es-props-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.es-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.es-video-non-interactive-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
}

/* Ensure videos cannot be interacted with */
.es-addon-video-wrapper.non-interactive iframe {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* Global iframe protection for all video wrappers */
.es-addon-video-wrapper iframe,
.es-crew-equipment-video-wrapper iframe,
.es-props-video-wrapper iframe {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    cursor: default !important;
}

/* Disable any hover effects on video wrapper */
.es-addon-video-wrapper.non-interactive:hover,
.es-crew-equipment-video-wrapper.non-interactive:hover,
.es-props-video-wrapper.non-interactive:hover {
    cursor: default;
}

/* Additional protection for video interactions */
.es-addon-video-wrapper.non-interactive,
.es-crew-equipment-video-wrapper.non-interactive,
.es-props-video-wrapper.non-interactive {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.es-addon-video-wrapper.non-interactive:focus,
.es-crew-equipment-video-wrapper.non-interactive:focus,
.es-props-video-wrapper.non-interactive:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Add-ons Grid (Post Production) */
.es-addons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

/* Crew & Equipment Grid */
.es-crew-equipment {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

/* Props Grid */
.es-props {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

/* Add-on Cards */
.es-addon-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.es-addon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.es-addon-card.selected {
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.3);
}

/* Add-on Media */
.es-addon-image {
    height: 240px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.es-addon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.es-addon-image:hover img {
    transform: scale(1.05);
}

.es-addon-media-placeholder {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 16px 16px 0 0;
}

/* Crew & Equipment Cards */
.es-crew-equipment-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.es-crew-equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.es-crew-equipment-card.selected {
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.3);
}

/* Props Cards */
.es-props-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.es-props-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.es-props-card.selected {
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.3);
}

/* Crew & Equipment Media */
.es-crew-equipment-image {
    height: 240px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.es-crew-equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.es-crew-equipment-image:hover img {
    transform: scale(1.05);
}

.es-crew-equipment-media-placeholder {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 16px 16px 0 0;
}

/* Props Media */
.es-props-image {
    height: 240px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.es-props-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.es-props-image:hover img {
    transform: scale(1.05);
}

.es-props-media-placeholder {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 16px 16px 0 0;
}

/* Add-on Details */
.es-addon-details {
    padding: 20px;
}

.es-addon-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.es-addon-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
    min-height: 42px;
}

.es-addon-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.es-addon-price .price-amount {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.es-addon-price .price-unit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.es-addon-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.es-addon-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-1px);
}

.es-addon-btn.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.es-addon-btn.selected:hover {
    background: linear-gradient(135deg, #764ba2 0%, #8b5cf6 100%);
    border-color: transparent;
}

/* Crew & Equipment Details */
.es-crew-equipment-details {
    padding: 20px;
}

.es-crew-equipment-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.es-crew-equipment-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
    min-height: 42px;
}

.es-crew-equipment-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.es-crew-equipment-price .price-amount {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.es-crew-equipment-price .price-unit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.es-crew-equipment-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.es-crew-equipment-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-1px);
}

.es-crew-equipment-btn.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.es-crew-equipment-btn.selected:hover {
    background: linear-gradient(135deg, #764ba2 0%, #8b5cf6 100%);
    border-color: transparent;
}

/* Props Details */
.es-props-details {
    padding: 20px;
}

.es-props-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.es-props-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
    min-height: 42px;
}

.es-props-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.es-props-price .price-amount {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    style: #ffffff;
}

.es-props-price .price-unit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.es-props-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.es-props-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-1px);
}

.es-props-btn.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.es-props-btn.selected:hover {
    background: linear-gradient(135deg, #764ba2 0%, #8b5cf6 100%);
    border-color: transparent;
}

.es-addon-icon {
    width: 40px;
    height: 40px;
    background: #2d2d44;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    flex-shrink: 0;
}

.es-addon-content {
    flex: 1;
}

.es-addon-card h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
}

.es-addon-card p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.4;
    margin-bottom: 8px;
}

.es-addon-price {
    font-size: 16px;
    font-weight: 600;
    color: #7c3aed;
}

/* Contact Form */
.es-contact-form {
    background: #0f0f1a;
    border: 1px solid #2d2d44;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.es-contact-form h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
}

.es-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.es-form-group {
    display: flex;
    flex-direction: column;
}

.es-form-group.full-width {
    grid-column: span 2;
}

.es-form-group label {
    color: #e5e7eb;
    font-size: 14px;
    margin-bottom: 8px;
}

.es-form-group input,
.es-form-group textarea {
    background: #1a1a2e;
    border: 1px solid #2d2d44;
    border-radius: 8px;
    padding: 12px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.es-form-group input:focus,
.es-form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* Booking Summary */
.es-booking-summary {
    background: #0f0f1a;
    border: 1px solid #2d2d44;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.es-booking-summary h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
}

.es-summary-items {
    border-bottom: 1px solid #2d2d44;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.es-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.es-summary-section {
    padding: 16px 0 8px 0;
    font-size: 14px;
    color: #7c3aed;
    font-weight: 600;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    margin-bottom: 8px;
}

.es-summary-item span:first-child {
    color: #e5e7eb;
    font-size: 14px;
}

.es-summary-item span:last-child {
    color: #ffffff;
    font-weight: 600;
}

.es-addon-price-remove {
    display: flex;
    align-items: center;
    gap: 12px;
}

.es-remove-addon {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ef4444;
    position: relative;
    z-index: 10;
}

.es-remove-addon:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: scale(1.1);
}

.es-remove-addon.processing {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.es-item-price-remove {
    display: flex;
    align-items: center;
    gap: 12px;
}

.es-remove-crew-equipment,
.es-remove-props {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ef4444;
    position: relative;
    z-index: 10;
}

.es-remove-crew-equipment:hover,
.es-remove-props:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: scale(1.1);
}

.es-remove-crew-equipment.processing,
.es-remove-props.processing {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.es-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
}

.es-summary-total span:first-child {
    color: #ffffff;
}

.es-summary-total span:last-child {
    color: #7c3aed;
}

/* Payment Section */
.es-payment-section {
    background: rgba(15, 15, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.es-payment-section h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
}

.es-payment-form {
    max-width: 500px;
    margin: 0 auto;
}

/* Credit Card Visual */
.es-credit-card-visual {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    color: white;
    box-shadow: 0 8px 32px rgba(52, 152, 219, 0.3);
}

.es-card-chip {
    position: absolute;
    top: 20px;
    left: 20px;
}

.es-card-title {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

.es-card-number {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 50px 0 20px 0;
    font-family: 'Courier New', monospace;
}

.es-card-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.es-card-label {
    display: block;
    font-size: 10px;
    opacity: 0.7;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.es-card-value {
    font-size: 14px;
    font-weight: 600;
}

.es-card-brands {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.es-card-brand {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.es-card-brand.visa {
    background: #1a1f36;
    color: white;
}

.es-card-brand.mastercard {
    background: #ff6b35;
    color: white;
}

/* Payment Form Fields */
.es-payment-fields {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.es-payment-fields .es-form-group:last-child {
    margin-bottom: 0;
}

.es-form-group {
    margin-bottom: 20px;
}

.es-form-group label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.es-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.es-input:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.es-card-input {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background: #f8f9fa;
    min-height: 54px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.es-card-input:focus-within {
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Input validation styles */
.es-input.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.es-input.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Card Errors */
.es-card-errors {
    color: #e74c3c;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

/* Secure Badge */
.es-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #7f8c8d;
    font-size: 14px;
    margin-top: 20px;
}

.es-secure-badge svg {
    color: #27ae60;
}

.es-payment-notice {
    padding: 20px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .es-payment-form {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .es-credit-card-visual {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .es-card-number {
        font-size: 16px;
        margin: 40px 0 15px 0;
    }
    
    .es-payment-fields {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .es-card-details {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .es-credit-card-visual {
        padding: 15px;
    }
    
    .es-card-title {
        font-size: 10px;
    }
    
    .es-card-number {
        font-size: 14px;
        margin: 35px 0 12px 0;
    }
    
    .es-payment-fields {
        padding: 15px;
    }
    
    .es-input {
        padding: 12px;
        font-size: 14px;
    }
}

.es-payment-notice p {
    color: #fbbf24;
    margin: 0;
}

/* Success Modal */
.es-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.es-modal.active {
    display: flex;
}

.es-modal-content {
    background: #1a1a2e;
    border: 1px solid #2d2d44;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.es-success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.es-modal-content h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 10px;
}

.es-modal-content p {
    color: #9ca3af;
    margin-bottom: 20px;
}

.es-booking-ref {
    background: #0f0f1a;
    border: 1px solid #2d2d44;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.es-booking-ref label {
    display: block;
    color: #9ca3af;
    font-size: 12px;
    margin-bottom: 5px;
}

.es-booking-ref div {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.es-confirmation-msg {
    color: #e5e7eb;
    margin-bottom: 20px;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error Toast */
.es-error-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ef4444;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Payment Processing States */
.es-btn-complete:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.es-btn-complete svg {
    vertical-align: middle;
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .es-header {
        padding: 15px 20px;
    }
    
    .es-progress {
        padding: 20px;
        gap: 30px;
        overflow-x: auto;
    }
    
    .es-step-label {
        font-size: 12px;
    }
    
    .es-card {
        padding: 25px;
    }
    
    .es-title {
        font-size: 24px;
    }
    
    .es-controls-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .es-form-grid {
        grid-template-columns: 1fr;
    }
    
    .es-form-group.full-width {
        grid-column: span 1;
    }
    
    .es-session-types,
    .es-studios,
    .es-addons {
        grid-template-columns: 1fr;
    }
    
    .es-nav-buttons {
        flex-direction: column;
    }
    
    .es-people-selector {
        flex-wrap: wrap;
    }
}
/* ============================================================
   ZIINA PAYMENT POPUP
============================================================ */

/* Required asterisk */
.es-required { color: #f87171; }

/* Validation hint */
.es-validation-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fbbf24;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    margin-top: 12px;
}
.es-validation-hint svg { flex-shrink: 0; margin-top: 1px; }

/* Ziina info block */
.es-ziina-payment-info {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(79, 70, 229, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}
.es-ziina-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a78bfa;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}
.es-ziina-desc {
    color: #94a3b8;
    font-size: 13px;
    margin: 0 0 14px;
    line-height: 1.5;
}
.es-payment-methods {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.es-pm-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    color: #cbd5e1;
}

/* Unconfigured notice */
.es-payment-unconfigured {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 10px;
    padding: 16px;
    color: #fca5a5;
    font-size: 14px;
    margin-bottom: 16px;
}
.es-payment-unconfigured svg { flex-shrink: 0; margin-top: 2px; }
.es-payment-unconfigured p { margin: 0; }

/* Popup overlay + container */
.es-ziina-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.es-ziina-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    cursor: pointer;
}
.es-ziina-popup-container {
    position: relative;
    z-index: 1;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);
}
.es-ziina-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #1e293b;
    border-bottom: 1px solid #334155;
    flex-shrink: 0;
}
.es-ziina-popup-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 15px;
}
.es-ziina-close-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
}
.es-ziina-close-btn:hover {
    background: rgba(239,68,68,0.2);
    border-color: rgba(239,68,68,0.4);
    color: #fca5a5;
}
.es-ziina-popup-body {
    flex: 1;
    overflow: hidden;
    min-height: 500px;
    position: relative;
}
.es-ziina-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #94a3b8;
    font-size: 14px;
}
.es-ziina-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(124, 58, 237, 0.2);
    border-top-color: #7c3aed;
    border-radius: 50%;
    animation: ziina-spin 0.8s linear infinite;
}
@keyframes ziina-spin { to { transform: rotate(360deg); } }

.es-ziina-iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    background: #fff;
}

/* Complete button with lock icon */
.es-btn-complete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.es-btn-complete:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .es-ziina-popup-container {
        max-height: 95vh;
        border-radius: 12px;
    }
    .es-ziina-iframe {
        min-height: 420px;
    }
}

/* Props category tabs */
.es-props-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.es-props-tab {
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid #334155;
    background: transparent;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    text-transform: capitalize;
}
.es-props-tab:hover {
    border-color: #7c3aed;
    color: #c4b5fd;
}
.es-props-tab.active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
}
