#booking-calculator {
	background: #f0f2f1;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	max-width: 900px;
	margin: 0 auto;
	font-family: sans-serif;
}

.inputs-container {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	flex-wrap: wrap;
	align-items: flex-end;
}

.calc-field {
	flex: 1;
	min-width: 140px;
}

.calc-field label {
	display: block;
	font-size: 11px;
	font-weight: bold;
	margin-bottom: 5px;
}

/*.calc-field input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 6px; }*/
.calc-field input,
.calc-field select {
	width: 100%;
	height: 42px;

	/* Stała wysokość dla wszystkich pól */
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.2;
	box-sizing: border-box;

	/* Kluczowe: padding nie zwiększa wymiarów pola */
	background-color: #fff;
	display: block;
	appearance: none;

	/* Usuwa specyficzne style systemowe (opcjonalne) */
}

/* Dodanie strzałki dla select, jeśli appearance: none ją usunie */
.calc-field select {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px top 50%;
	background-size: 12px auto;
	padding-right: 30px;
}


#calc-result {
	background: #b3e0e5;
	padding: 15px;
	border-radius: 8px;
}

.result-details {
	display: flex;
	justify-content: space-around;
	margin-bottom: 10px;
	font-size: 14px;
}

.total {
	text-align: right;
	font-size: 22px;
	color: #007b7f;
	font-weight: bold;
}

#promo-msg {
	padding: 8px;
	background-color: #fff4f4;
	border-left: 3px solid #d9534f;
	border-radius: 4px;
	animation: softPulse 2s infinite;
}

@keyframes softPulse {
	0% { opacity: 0.8; }
	50% { opacity: 1; }
	100% { opacity: 0.8; }
}
    /* STATUS MESSAGE */
    .status-message {
      padding: 12px 16px;
      margin: 0 20px 16px;
      border-radius: 4px;
      font-size: 13px;
      border-left: 4px solid #2196F3;
      background: #E3F2FD;
      color: #1565C0;
    }

    .status-message.loading {
      border-left-color: #FF9800;
      background: #FFF3E0;
      color: #E65100;
      animation: pulse-animation 1s infinite;
    }

    .status-message.success {
      border-left-color: #4CAF50;
      background: #E8F5E9;
      color: #2E7D32;
    }

    .status-message.error {
      border-left-color: #F44336;
      background: #FFEBEE;
      color: #C62828;
    }

    /* EMPTY STATE */
    .empty-state {
      text-align: center;
      padding: 40px 20px;
      color: #999;
      font-size: 14px;
    }

    /* ===== BOOKING SECTION ===== */
    #booking-section {
      margin-top: 20px;
      padding: 20px;
      background: linear-gradient(135deg, #c8e8eb 0%, #b3e0e5 100%);
      border-left: 5px solid #007b7f;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 123, 127, 0.12);
    }

    .booking-btn {
      width: 100%;
      padding: 14px 16px;
      background: linear-gradient(135deg, #007b7f 0%, #005f63 100%);
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-bottom: 15px;
      box-shadow: 0 4px 12px rgba(0, 123, 127, 0.2);
    }

    .booking-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 123, 127, 0.35);
      background: linear-gradient(135deg, #005f63 0%, #004d50 100%);
    }

    .booking-btn:active {
      transform: translateY(-1px);
    }

    .booking-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    #booking-form-wrapper {
      background: white;
      padding: 20px;
      border-radius: 8px;
      margin-top: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      border: 1px solid #e0e8eb;
    }

    #booking-form-wrapper h3 {
      color: #333;
      font-size: 18px;
      margin: 0 0 18px 0;
      font-weight: 600;
    }

    .resort-options-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      margin-bottom: 15px;
    }

    .resort-option {
      display: flex;
      align-items: center;
      padding: 14px;
      border: 2px solid #e0e8eb;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
      background: #fafbfb;
    }

    .resort-option:hover {
      border-color: #007b7f;
      background: #d4f0f3;
      box-shadow: 0 2px 8px rgba(0, 123, 127, 0.12);
    }

    .resort-option.selected {
      border-color: #007b7f;
      background: linear-gradient(135deg, #c0e9ed 0%, #d4f0f3 100%);
      box-shadow: 0 4px 12px rgba(0, 123, 127, 0.2);
    }

    .resort-option input[type="radio"] {
      margin-right: 12px;
      width: 18px;
      height: 18px;
      cursor: pointer;
    }

    .resort-label {
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .resort-label strong {
      font-size: 15px;
      color: #333;
      margin-bottom: 2px;
    }

    .resort-capacity {
      font-size: 13px;
      color: #666;
    }

    .resort-price {
      font-weight: 600;
      color: #007b7f;
      font-size: 14px;
      margin-top: 4px;
    }

    .booking-field {
      margin-bottom: 12px;
    }

    .booking-field label {
      display: block;
      margin-bottom: 8px;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      text-transform: none;
      letter-spacing: 0.3px;
    }

    .booking-field input,
    .booking-field textarea {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      font-family: inherit;
      transition: border-color 0.3s, box-shadow 0.3s, background-color 0.2s;
      background-color: #fff;
      box-sizing: border-box;
    }

    .booking-field input:focus,
    .booking-field textarea:focus {
      outline: none;
      border-color: #007b7f;
      box-shadow: 0 0 0 4px rgba(0, 123, 127, 0.15);
      background-color: #fafbfb;
    }

    .booking-field input:hover:not(:focus),
    .booking-field textarea:hover:not(:focus) {
      border-color: #a8d8db;
      background-color: #f9feff;
    }

    .booking-field textarea {
      min-height: 90px;
      resize: vertical;
      font-family: inherit;
    }

    .booking-submit-btn {
      width: 100%;
      padding: 12px 16px;
      background: linear-gradient(135deg, #007b7f 0%, #005f63 100%);
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 15px;
      box-shadow: 0 4px 12px rgba(0, 123, 127, 0.2);
    }

    .booking-submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 123, 127, 0.3);
      background: linear-gradient(135deg, #005f63 0%, #004d50 100%);
    }

    .booking-submit-btn:active {
      transform: translateY(0);
    }

    .booking-submit-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    #booking-status {
      margin-top: 16px;
      padding: 0;
      border-radius: 0;
      font-size: 14px;
    }

    .booking-loading {
      color: #007b7f;
      background: transparent;
      padding: 16px;
      border-radius: 6px;
      border-left: 0;
      text-align: center;
      font-size: 14px;
      animation: pulse-animation 1.5s infinite;
    }

    .booking-success {
      color: #333;
      background: transparent;
      padding: 0;
      border-radius: 0;
      border-left: 0;
    }

    .booking-success-header {
      text-align: center;
      margin-bottom: 20px;
    }

    .booking-success-icon {
      font-size: 56px;
      margin-bottom: 12px;
      animation: scaleIn 0.6s ease-out;
    }

    .booking-success-title {
      margin: 0;
      color: #007b7f;
      font-size: 22px;
      font-weight: 600;
    }

    .booking-success-subtitle {
      margin: 6px 0 0 0;
      color: #666;
      font-size: 13px;
    }

    .booking-success-details {
      background: white;
      padding: 16px;
      border-radius: 6px;
      border-left: 5px solid #007b7f;
      margin-bottom: 16px;
      box-shadow: 0 2px 8px rgba(0, 123, 127, 0.1);
    }

    .booking-detail-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      font-size: 13px;
      border-bottom: 1px solid #f0f0f0;
    }

    .booking-detail-row:last-child {
      border-bottom: none;
    }

    .booking-detail-label {
      font-weight: 600;
      color: #555;
    }

    .booking-detail-value {
      color: #333;
      text-align: right;
    }

    .booking-price-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0 0 0;
      margin-top: 8px;
      border-top: 2px solid #007b7f;
      font-size: 14px;
    }

    .booking-price-label {
      font-weight: 600;
      color: #007b7f;
    }

    .booking-price-value {
      font-weight: 700;
      color: #007b7f;
      font-size: 16px;
    }

    .booking-next-steps {
      background: linear-gradient(135deg, #c8e8eb 0%, #b3e0e5 100%);
      padding: 16px;
      border-radius: 6px;
      margin-bottom: 16px;
      border-left: 5px solid #007b7f;
    }

    .booking-next-steps-title {
      margin: 0 0 8px 0;
      font-weight: 600;
      color: #333;
      font-size: 14px;
    }

    .booking-next-steps-text {
      margin: 0;
      font-size: 13px;
      color: #333;
      line-height: 1.5;
    }

    .booking-footer {
      text-align: center;
      font-size: 12px;
      color: #999;
      margin-top: 12px;
    }

    .booking-error {
      color: #c62828;
      background: #ffebee;
      padding: 16px;
      border-radius: 6px;
      border-left: 5px solid #c62828;
      box-shadow: 0 2px 8px rgba(198, 40, 40, 0.1);
    }

    .booking-error-icon {
      font-size: 32px;
      text-align: center;
      margin-bottom: 12px;
    }

    .booking-error-title {
      font-weight: 600;
      color: #c62828;
      margin-bottom: 8px;
    }

    .booking-error p {
      margin: 8px 0;
      font-size: 13px;
      line-height: 1.5;
    }

    .booking-error a {
      display: inline-block;
      margin-top: 12px;
      padding: 10px 16px;
      background: linear-gradient(135deg, #007b7f 0%, #005f63 100%);
      color: white;
      text-decoration: none;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .booking-error a:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 123, 127, 0.3);
    }

    @keyframes scaleIn {
      0% {
        transform: scale(0);
        opacity: 0;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes pulse-animation {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.7;
      }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .calc-field {
        margin-bottom: 12px;
      }

      .result-details {
        padding: 12px;
        gap: 8px;
      }

      .total {
        padding: 12px;
      }

      .resort-options-list {
        grid-template-columns: 1fr;
      }

      .resort-option {
        padding: 10px;
      }
    }


h2 {
      opacity: 1 !important;
}
}