/* SDS Party Booking - Frontend Styles */

.sds-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
	font-family: 'DM Sans';
}
.sds-booking-content{
    background-color: white;
    padding: 40px 40px 0;
    border-radius: 12px;
    margin-bottom: 20px;
}
/* Notifications */
.sds-notifications {
    margin-bottom: 30px;
}
.sds-price{
  background: #F3F3F3;
  padding: 20px;
  border-radius: 12px;
  margin: 30px 0;
  height:fit-content;
}
.sds-price h3{
  font-size: 20px;
  font-weight: bold;
  color: #364153;
}
.sds-price .sds-price_label{
   padding: 9px 17px;
   border-radius: 14px;
   border: 1px solid #D9D9D9;
   width: 220px;
   background:white;	
}
.sds-price .sds-price_label span{
    color: #4A5565;
    font-size: 14px;
}
.sds-price .sds-price_label p{
  margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #4CB3F5;
}
.sds-price_notes{
    margin: 15px 0 5px;
}
.sds-price_notes p{
    font-size: 18px;
    color: #364153;
    font-weight: bold;
    margin: 0;
}
.sds-price_notes ul li{
    font-size: 16px;
    color: #4A5565;
}
.sds-notification {
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.sds-notification strong {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    color:#06A63D;
}

/* Section Styles */
.sds-section {
    border-radius: 16px;
    padding: 30px 0;
    margin-bottom: 25px;

}

.sds-section-title {
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 20px 0;
    color: #1a1a1a;
}

/* Location Tabs */
.sds-location-tabs {
    display: flex;
    gap: 15px;
}

.sds-location-tab {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: #6b7280;
    transition: all 0.3s ease;
}
.sds-location-tab[data-location-name="Letzipark"]{
  pointer-events:none;
  opacity:0.5;
}
.sds-location-tab.active {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    color: white;
}

.sds-location-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Content Grid */
.sds-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .sds-content-grid {
        grid-template-columns: 1fr;
    }
    .sds-booking-content{
       padding: 30px 20px;
    }
}

/* Calendar */
.sds-date-section {
    padding: 25px;
}

.sds-section-header {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-bottom: 20px;
}

.sds-month-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.sds-month-prev,
.sds-month-next {
   background-color: #D0248E !important;
    color: white !important;
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}
.sds-month-prev svg{
    transform: rotate(180deg);
}
.sds-month-prev:hover,
.sds-month-next:hover {
    transform: scale(1.1);
}

.sds-current-month {
    font-size: 20px;
    font-weight: 700;
    color: #D0248E;
    min-width: 150px;
    text-align: center;
}

.sds-calendar {
    margin-top: 20px;
}

.sds-calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.sds-calendar-header div {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #D0248E;
    padding: 8px 0;
}

.sds-calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.sds-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #1a1a1a;
    background: #f9fafb;
    border: 1px solid #0000001a;
}

.sds-calendar-day:hover:not(.disabled):not(.empty) {
    background: #fef2f2;
    transform: scale(1.05);
}

.sds-calendar-day.selected {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    color: white;
    font-weight: 700;
}

.sds-calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
    background: transparent;
}

.sds-calendar-day.empty {
    background: transparent;
    cursor: default;
}

/* Sessions */
.sds-sessions-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sds-session-option {
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sds-session-option:hover {
    border-color: #f97316;
    background: #fff7ed;
}

.sds-session-option.selected {
    border-color: #ec4899;
    background: linear-gradient(135deg, #fdf2f8 0%, #fff7ed 100%);
}

.sds-session-info h4 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 700;
    color: #364153;
}

.sds-session-info p {
    margin: 0;
    font-size: 16px;
    color: #4A5565;
}

.sds-session-radio {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #D1D5DC;
    position: relative;
}
.sds-session-radio::before{
    position: absolute;
    content: '';
    background-image: url(../images/clock.png);
    top: -4px;
    width: 40px;
    height: 40px;
    background-position: bottom;
    background-repeat: no-repeat;
}
 .sds-session-option.selected .sds-session-radio {
    border-color: #ec4899;
    background: #D0248E;
}
.sds-session-option.selected h4{
    color: #0A0A0A;
}
/*
.sds-session-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sds-session-option.selected .sds-session-radio::after {
    opacity: 1;
} */

.sds-info-text {
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    padding: 20px;
}

/* Form Styles */
.sds-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sds-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 640px) {
    .sds-form-row {
        grid-template-columns: 1fr;
    }
}

.sds-form-group {
    display: flex;
    flex-direction: column;
}

.sds-form-group label {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
}
.sds-form-group label sup{
    color:red;
}
.sds-form-group input,
.sds-form-group textarea {
    padding: 14px 16px !important;
    border-radius: 12px !important;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    border: 1px solid #D1D5DC !important;
}

.sds-form-group input:focus,
.sds-form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.sds-form-group input::placeholder,
.sds-form-group textarea::placeholder {
    color: #9ca3af;
}

.sds-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.sds-submit-btn {
    padding: 16px 32px !important;
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    color: white !important;
    border: none !important;
    border-radius: 100px !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sds-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}

.sds-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.sds-form-message {
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.sds-form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
    display: block;
}

.sds-form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    display: block;
}

/* Loading State */
.sds-loading {
    text-align: center;
    padding: 20px;
    color: #6b7280;
}

.sds-loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}