/* Tour Detail Page Styles */

/* Main Layout */
.hotel-detail--main {
  min-height: 100vh;
  background: #f8fafc;
}

/* Professional Header Design */
.hotel-detail--header {
  background: 
    linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(226, 232, 240, 0.65) 50%, rgba(241, 245, 249, 0.95) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 1px solid #e2e8f0;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.hotel-detail--header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hotel-detail--header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
}

.hotel-detail--header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.hotel-detail--breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  z-index: 999999;
}

.hotel-detail--breadcrumb-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  padding: 4px 8px;
  border-radius: 6px;
}

.hotel-detail--breadcrumb-link:hover {
  color: #3b82f6;
  background: #f8fafc;
}

.hotel-detail--breadcrumb-link i {
  font-size: 12px;
}

.hotel-detail--breadcrumb-separator {
  color: black;
  font-weight: 400;
  font-size: 14px;
}

.hotel-detail--breadcrumb-current {
  color: #1f2937;
  font-weight: 600;
}

/* ===== HEADER SHARE BUTTONS ===== */
.hotel-detail--header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.hotel-detail--header-left {
  flex: 1;
  z-index: 99;
}

.hotel-detail--header-right {
  flex-shrink: 0;
}

.hotel-detail--share-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hotel-detail--share-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #ffffff;
  position: relative;
}

.hotel-detail--share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hotel-detail--share-btn:active {
  transform: translateY(0);
}

/* Facebook */
.hotel-detail--share-facebook {
  background: #1877f2;
}

.hotel-detail--share-facebook:hover {
  background: #166fe5;
}

/* Twitter */
.hotel-detail--share-twitter {
  background: #1da1f2;
}

.hotel-detail--share-twitter:hover {
  background: #1a91da;
}

/* WhatsApp */
.hotel-detail--share-whatsapp {
  background: #25d366;
}

.hotel-detail--share-whatsapp:hover {
  background: #22c55e;
}

/* LinkedIn */
.hotel-detail--share-linkedin {
  background: #0077b5;
}

.hotel-detail--share-linkedin:hover {
  background: #006097;
}

/* Copy Link */
.hotel-detail--copy-link {
  background: #6b7280;
}

.hotel-detail--copy-link:hover {
  background: #4b5563;
}

.hotel-detail--copy-link.copied {
  background: #10b981;
}

.hotel-detail--copy-link.copied::after {
  content: 'Kopyalandı!';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  20%, 80% { opacity: 1; }
}

/* ===== BREADCRUMB ===== */

.hotel-detail--title {
  font-size: 42px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
  letter-spacing: -0.8px;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hotel-detail--subtitle {
  font-size: 18px;
  color: #6b7280;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.2px;
}

/* Info Bar */
.hotel-detail--info-bar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hotel-detail--info-container {
  margin: 0 auto;
}

.hotel-detail--info-content {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8fafc;
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}



/* Content Area */
.hotel-detail--content {
  padding: 10px 0 80px 0;
}

.hotel-detail--container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 300px 1fr 380px;
  gap: 32px;
}

/* Left Sidebar: Villa Details */
.hotel-detail--left-sidebar {
  position: sticky;
  top: 32px;
  height: fit-content;
}

/* Villa Details Sections */
.hotel-detail--capacity-info,
.hotel-detail--room-info,
.hotel-detail--checkin-info,
.hotel-detail--amenities-info,
.hotel-detail--rules-info {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

/* Legacy support for old class name */
.hotel-detail--hotel-details {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.hotel-detail--details-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f1f5f9;
}

.hotel-detail--details-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-detail--details-header h3 i {
  color: #3b82f6;
  font-size: 20px;
}

.hotel-detail--details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hotel-detail--detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hotel-detail--detail-item:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hotel-detail--detail-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  flex: 1;
}

.hotel-detail--detail-label i {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 6px;
  flex-shrink: 0;
}

.hotel-detail--detail-value {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  text-align: right;
}

/* Status Indicators */
.hotel-detail--status-available {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: #dcfce7;
  color: #166534;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.hotel-detail--status-available::before {
  content: '✓';
  font-size: 10px;
  font-weight: 700;
}

.hotel-detail--status-unavailable {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: #fef2f2;
  color: #dc2626;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.hotel-detail--status-unavailable::before {
  content: '✗';
  font-size: 10px;
  font-weight: 700;
}

/* Left Sidebar Hotel Selection */
.hotel-detail--left-sidebar .hotel-detail--hotel-selection {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  margin-bottom: 16px;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-select-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-select-label i {
  color: #3b82f6;
  font-size: 16px;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  font-size: 13px;
  color: #1e293b;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-select:hover {
  border-color: #3b82f6;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Left Sidebar Hotel Information */
.hotel-detail--left-sidebar .hotel-detail--hotel-info {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  margin-bottom: 16px;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-icon i {
  color: #ffffff;
  font-size: 18px;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-details h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-stars {
  display: flex;
  gap: 1px;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-stars i {
  color: #fbbf24;
  font-size: 12px;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-category {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

/* Left Sidebar Hotel Details Toggle */
.hotel-detail--left-sidebar .hotel-detail--hotel-details-toggle,
.hotel-detail--left-sidebar .hotel-detail--location-amenities-toggle {
  margin-bottom: 12px;
}

.hotel-detail--left-sidebar .hotel-detail--hotel-details-toggle:last-child,
.hotel-detail--left-sidebar .hotel-detail--location-amenities-toggle:last-child {
  margin-bottom: 0;
}

.hotel-detail--left-sidebar .hotel-detail--details-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
}

.hotel-detail--left-sidebar .hotel-detail--details-trigger:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.hotel-detail--left-sidebar .hotel-detail--details-icon {
  font-size: 12px;
  color: #64748b;
  transition: transform 0.3s ease;
}

.hotel-detail--left-sidebar .hotel-detail--details-checkbox:checked + .hotel-detail--details-trigger .hotel-detail--details-icon {
  transform: rotate(180deg);
}

.hotel-detail--left-sidebar .hotel-detail--details-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.hotel-detail--left-sidebar .hotel-detail--details-checkbox:checked ~ .hotel-detail--details-content {
  max-height: 500px;
  padding-top: 12px;
}

.hotel-detail--left-sidebar .hotel-detail--details-section {
  margin-bottom: 16px;
}

.hotel-detail--left-sidebar .hotel-detail--details-section:last-child {
  margin-bottom: 0;
}

.hotel-detail--left-sidebar .hotel-detail--details-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 8px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid #e2e8f0;
}

.hotel-detail--left-sidebar .hotel-detail--details-section p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Left Sidebar Location Grid */
.hotel-detail--left-sidebar .hotel-detail--location-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-detail--left-sidebar .hotel-detail--location-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #f8fafc;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hotel-detail--left-sidebar .hotel-detail--location-item:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.hotel-detail--left-sidebar .hotel-detail--location-item i {
  width: 16px;
  color: #3b82f6;
  font-size: 12px;
  text-align: center;
  flex-shrink: 0;
}

.hotel-detail--left-sidebar .hotel-detail--location-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}

.hotel-detail--left-sidebar .hotel-detail--location-label {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hotel-detail--left-sidebar .hotel-detail--location-value {
  font-size: 12px;
  color: #1e293b;
  font-weight: 500;
}

/* Left Sidebar Amenities Grid */
.hotel-detail--left-sidebar .hotel-detail--amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.hotel-detail--left-sidebar .hotel-detail--amenity-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: #f8fafc;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hotel-detail--left-sidebar .hotel-detail--amenity-item:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.hotel-detail--left-sidebar .hotel-detail--amenity-item i {
  color: #3b82f6;
  font-size: 12px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.hotel-detail--left-sidebar .hotel-detail--amenity-item span {
  font-size: 11px;
  color: #1e293b;
  font-weight: 500;
}

.hotel-detail--left-sidebar .hotel-detail--pricing-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  margin-bottom: 0;
}

.hotel-detail--left-sidebar .hotel-detail--pricing-header {
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.hotel-detail--left-sidebar .hotel-detail--pricing-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
}

.hotel-detail--left-sidebar .hotel-detail--pricing-header p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.hotel-detail--left-sidebar .hotel-detail--room-option {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hotel-detail--left-sidebar .hotel-detail--room-option:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hotel-detail--left-sidebar .hotel-detail--room-option:last-child {
  margin-bottom: 0;
}

.hotel-detail--left-sidebar .hotel-detail--room-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hotel-detail--left-sidebar .hotel-detail--room-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hotel-detail--left-sidebar .hotel-detail--room-icon i {
  color: #ffffff;
  font-size: 16px;
}

.hotel-detail--left-sidebar .hotel-detail--room-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 2px 0;
  line-height: 1.3;
}

.hotel-detail--left-sidebar .hotel-detail--room-info p {
  font-size: 11px;
  color: #64748b;
  margin: 0;
}

.hotel-detail--left-sidebar .hotel-detail--room-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hotel-detail--left-sidebar .hotel-detail--price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.hotel-detail--left-sidebar .hotel-detail--price-row span:first-child {
  color: #64748b;
  font-weight: 500;
}

.hotel-detail--left-sidebar .hotel-detail--price-row .hotel-detail--price {
  color: #1e293b;
  font-weight: 600;
}

/* Right Sidebar: Reservation Section */
.hotel-detail--right-sidebar {
  position: sticky;
  top: 32px;
  height: fit-content;
}

/* Villa Categories */
.hotel-detail--categories {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.hotel-detail--categories-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.hotel-detail--categories-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-detail--categories-header h4 i {
  color: #3b82f6;
  font-size: 18px;
}

.hotel-detail--categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-detail--category-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hotel-detail--category-item:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.hotel-detail--category-item i {
  font-size: 10px;
  opacity: 0.9;
}

.hotel-detail--category-item span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Responsive Categories */
@media (max-width: 768px) {
  .hotel-detail--categories {
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .hotel-detail--categories-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  
  .hotel-detail--categories-header h4 {
    font-size: 15px;
  }
  
  .hotel-detail--categories-header h4 i {
    font-size: 16px;
  }
  
  .hotel-detail--categories-list {
    gap: 6px;
  }
  
  .hotel-detail--category-item {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .hotel-detail--category-item i {
    font-size: 9px;
  }
  
  .hotel-detail--category-item span {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .hotel-detail--categories {
    padding: 14px;
    margin-bottom: 14px;
  }
  
  .hotel-detail--categories-header h4 {
    font-size: 14px;
  }
  
  .hotel-detail--categories-header h4 i {
    font-size: 15px;
  }
  
  .hotel-detail--categories-list {
    gap: 5px;
  }
  
  .hotel-detail--category-item {
    padding: 5px 8px;
    font-size: 10px;
  }
  
  .hotel-detail--category-item i {
    font-size: 8px;
  }
  
  .hotel-detail--category-item span {
    font-size: 10px;
  }
}

.hotel-detail--main-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Tour Information Cards */
.hotel-detail--hotel-info-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

/* Hotel Information */
.hotel-detail--hotel-info {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.hotel-detail--hotel-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.hotel-detail--hotel-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hotel-detail--hotel-icon i {
  color: #ffffff;
  font-size: 20px;
}

.hotel-detail--hotel-details {
  flex: 1;
}

.hotel-detail--hotel-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.hotel-detail--hotel-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-detail--hotel-stars {
  display: flex;
  gap: 2px;
}

.hotel-detail--hotel-stars i {
  color: #fbbf24;
  font-size: 14px;
}

.hotel-detail--hotel-category {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

.hotel-detail--hotel-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.hotel-detail--hotel-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hotel-detail--hotel-feature i {
  width: 20px;
  color: #3b82f6;
  font-size: 14px;
  text-align: center;
}

.hotel-detail--feature-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hotel-detail--feature-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.hotel-detail--feature-value {
  font-size: 14px;
  color: #1e293b;
  font-weight: 600;
}

.hotel-detail--hotel-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hotel-detail--amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.hotel-detail--amenity i {
  color: #3b82f6;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.hotel-detail--amenity span {
  font-size: 13px;
  color: #1e293b;
  font-weight: 500;
}

/* Pricing Section */
.hotel-detail--pricing-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.hotel-detail--pricing-header {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.hotel-detail--pricing-header i {
  font-size: 24px;
  color: #3b82f6;
  margin-bottom: 8px;
}

.hotel-detail--pricing-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
}

.hotel-detail--pricing-header p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.hotel-detail--room-option {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
}

.hotel-detail--room-option:last-child {
  margin-bottom: 0;
}

.hotel-detail--room-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hotel-detail--room-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hotel-detail--room-icon i {
  color: #ffffff;
  font-size: 16px;
}

.hotel-detail--room-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 4px 0;
}

.hotel-detail--room-info p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.hotel-detail--room-prices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-detail--price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.hotel-detail--price-row span:first-child {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.hotel-detail--price-row .hotel-detail--price {
  font-size: 16px;
  font-weight: 700;
  color: #3b82f6;
}

.hotel-detail--info-card-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.hotel-detail--info-card-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.hotel-detail--info-card-item.hotel-detail--info-card-highlight {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.hotel-detail--info-card-item.hotel-detail--info-card-highlight:hover {
  background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
  border-color: #d97706;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
  transform: translateY(-3px);
}

.hotel-detail--info-card-item.hotel-detail--info-card-highlight .hotel-detail--info-card-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 3px 8px rgba(245, 158, 11, 0.3);
}

.hotel-detail--info-card-item.hotel-detail--info-card-highlight .hotel-detail--info-card-content h4 {
  color: #92400e;
}

.hotel-detail--info-card-item.hotel-detail--info-card-highlight .hotel-detail--info-card-content p {
  color: #78350f;
  font-weight: 700;
}

.hotel-detail--info-card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(59, 130, 246, 0.25);
}

.hotel-detail--info-card-icon i {
  color: #ffffff;
  font-size: 16px;
}

.hotel-detail--info-card-content {
  flex: 1;
}

.hotel-detail--info-card-content h4 {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hotel-detail--info-card-content p {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}

/* Gallery Carousel */
.hotel-detail--gallery {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.hotel-detail--gallery .carousel {
  height: 450px;
}

.hotel-detail--carousel-image {
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hotel-detail--gallery .carousel-item {
  height: 450px;
}

/* Carousel Controls */
.hotel-detail--gallery .carousel-control-prev,
.hotel-detail--gallery .carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hotel-detail--gallery .carousel-control-prev {
  left: 20px;
}

.hotel-detail--gallery .carousel-control-next {
  right: 20px;
}

.hotel-detail--gallery .carousel-control-prev:hover,
.hotel-detail--gallery .carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.hotel-detail--gallery .carousel-control-prev-icon,
.hotel-detail--gallery .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Carousel Indicators */
.hotel-detail--gallery .carousel-indicators {
  bottom: 20px;
  margin-bottom: 0;
}

.hotel-detail--gallery .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin: 0 4px;
  transition: all 0.3s ease;
}

.hotel-detail--gallery .carousel-indicators [data-bs-target].active {
  background: #3b82f6;
  border-color: #ffffff;
  transform: scale(1.2);
}

.hotel-detail--gallery .carousel-indicators [data-bs-target]:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}



/* Thumbnail Navigation */
.hotel-detail--gallery-thumbs {
  display: flex;
  gap: 12px;
  padding: 20px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  justify-content: center;
  flex-wrap: wrap;
}

.hotel-detail--thumb {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hotel-detail--thumb:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.hotel-detail--thumb.active {
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6, 0 4px 12px rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.hotel-detail--thumb.active::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #3b82f6, #6366f1);
  border-radius: 10px;
  z-index: -1;
}

/* Content Sections */
.hotel-detail--description,
.hotel-detail--highlights,
.hotel-detail--itinerary,
.hotel-detail--included-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.hotel-detail--section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f1f5f9;
}

.hotel-detail--description-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 16px;
}

.hotel-detail--description-content p:last-child {
  margin-bottom: 0;
}

/* Highlights */
.hotel-detail--highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.hotel-detail--highlight-item {
  text-align: center;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hotel-detail--highlight-item:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.hotel-detail--highlight-item i {
  font-size: 32px;
  color: #3b82f6;
  margin-bottom: 16px;
}

.hotel-detail--highlight-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.hotel-detail--highlight-item p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Itinerary */
.hotel-detail--itinerary-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hotel-detail--day {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.hotel-detail--day-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hotel-detail--day-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #3b82f6;
  margin: 0;
}

.hotel-detail--day-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.hotel-detail--day-content {
  padding: 24px;
}

.hotel-detail--timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
}

.hotel-detail--timeline-item:last-child {
  margin-bottom: 0;
}

.hotel-detail--timeline-item::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 24px;
  bottom: -24px;
  width: 2px;
  background: #e2e8f0;
}

.hotel-detail--timeline-item:last-child::before {
  display: none;
}

.hotel-detail--timeline-time {
  background: #3b82f6;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  min-width: 60px;
  text-align: center;
  height: fit-content;
}

.hotel-detail--timeline-content {
  flex: 1;
}

.hotel-detail--timeline-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.hotel-detail--timeline-content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Sidebar */
.hotel-detail--sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: fit-content;
}

.hotel-detail--booking-card,
.hotel-detail--info-card,
.hotel-detail--included-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

/* Trust Badges */
.hotel-detail--trust-badges {
  display: flex;
  justify-content: space-around;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-bottom: 1px solid #e2e8f0;
}

.hotel-detail--trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.hotel-detail--trust-badge i {
  font-size: 20px;
  color: #3b82f6;
  background: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.hotel-detail--trust-badge span {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  line-height: 1.2;
}

/* Main Price Display */
.hotel-detail--main-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
}

.hotel-detail--price-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hotel-detail--price-label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.hotel-detail--price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.hotel-detail--price-currency {
  font-size: 24px;
  font-weight: 600;
}

.hotel-detail--price-amount {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.hotel-detail--price-per {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.hotel-detail--rating-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.hotel-detail--stars {
  display: flex;
  gap: 2px;
}

.hotel-detail--stars i {
  color: #fbbf24;
  font-size: 16px;
}

.hotel-detail--rating-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.hotel-detail--rating-score {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.hotel-detail--rating-count {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
}

/* Booking Form */
.hotel-detail--booking-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hotel-detail--form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hotel-detail--form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.hotel-detail--form-label i {
  color: #3b82f6;
  font-size: 18px;
}

.hotel-detail--form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-detail--form-input {
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #ffffff;
}

.hotel-detail--form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Passenger Selector */
.hotel-detail--passenger-selector {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hotel-detail--passenger-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hotel-detail--passenger-item:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.hotel-detail--passenger-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hotel-detail--passenger-info i {
  font-size: 20px;
  color: #3b82f6;
  background: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.hotel-detail--passenger-type {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2px;
}

.hotel-detail--passenger-price {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.hotel-detail--passenger-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hotel-detail--passenger-btn {
  width: 32px;
  height: 32px;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  color: #374151;
}

.hotel-detail--passenger-btn:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  background: #eff6ff;
}

.hotel-detail--passenger-btn:active {
  transform: scale(0.95);
}

.hotel-detail--passenger-count {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  min-width: 20px;
  text-align: center;
}

/* Price Breakdown */
.hotel-detail--price-breakdown {
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.hotel-detail--breakdown-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.hotel-detail--breakdown-header i {
  color: #3b82f6;
}

.hotel-detail--breakdown-items {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hotel-detail--breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
}

.hotel-detail--breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #e2e8f0;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  border-top: 1px solid #cbd5e1;
}

.hotel-detail--total-amount {
  color: #3b82f6;
  font-size: 18px;
}

/* Booking Button */
.hotel-detail--booking-btn {
  width: 100%;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.hotel-detail--booking-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.hotel-detail--booking-btn:hover::before {
  left: 100%;
}

.hotel-detail--booking-btn:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.hotel-detail--booking-btn.disabled,
.hotel-detail--booking-btn:disabled {
    background: linear-gradient(135deg, #95a5a6, #bdc3c7);
    color: #7f8c8d;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.2);
}

.hotel-detail--booking-btn.disabled:hover,
.hotel-detail--booking-btn:disabled:hover {
    background: linear-gradient(135deg, #95a5a6, #bdc3c7);
    transform: none;
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.2);
}

.hotel-detail--booking-btn i {
  font-size: 18px;
}

.hotel-detail--booking-btn span {
  font-size: 16px;
  font-weight: 600;
}

/* Legacy booking button support */
.hotel-detail--book-button {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.hotel-detail--book-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.hotel-detail--book-button:hover::before {
  left: 100%;
}

.hotel-detail--book-button:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.hotel-detail--book-button span {
  font-size: 15px;
  font-weight: 600;
}

.hotel-detail--button-subtitle {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
}

/* Additional Info */
.hotel-detail--booking-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.hotel-detail--info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
}

.hotel-detail--info-item i {
  color: #3b82f6;
  font-size: 14px;
}

/* Info Card */
.hotel-detail--info-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.hotel-detail--info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hotel-detail--info-list .hotel-detail--info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hotel-detail--info-list .hotel-detail--info-item i {
  color: #3b82f6;
  font-size: 16px;
  margin-top: 2px;
}

.hotel-detail--info-list .hotel-detail--info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hotel-detail--info-list .hotel-detail--info-item strong {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.hotel-detail--info-list .hotel-detail--info-item span {
  font-size: 13px;
  color: #6b7280;
}

/* Included/Excluded */
.hotel-detail--included-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hotel-detail--included-section h4,
.hotel-detail--excluded-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-detail--included-section h4 {
  color: #10b981;
}

.hotel-detail--excluded-section h4 {
  color: #ef4444;
}

.hotel-detail--included-section h4 i,
.hotel-detail--excluded-section h4 i {
  font-size: 14px;
}

.hotel-detail--included-section ul,
.hotel-detail--excluded-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hotel-detail--included-section li,
.hotel-detail--excluded-section li {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}

.hotel-detail--included-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.hotel-detail--excluded-section li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

/* ===== HOTEL DETAILS TOGGLE ===== */
.hotel-detail--hotel-details-toggle {
  margin-top: 16px;
}

.hotel-detail--details-checkbox {
  display: none;
}

.hotel-detail--details-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #3b82f6;
  font-size: 14px;
}

.hotel-detail--details-trigger:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.hotel-detail--details-icon {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.hotel-detail--details-checkbox:checked + .hotel-detail--details-trigger .hotel-detail--details-icon {
  transform: rotate(180deg);
}

.hotel-detail--details-checkbox:checked + .hotel-detail--details-trigger .hotel-detail--details-text {
  color: #1e40af;
}

.hotel-detail--details-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #f8fafc;
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-top: none;
  margin-top: -1px;
}

.hotel-detail--details-checkbox:checked ~ .hotel-detail--details-content {
  max-height: 800px;
  padding: 20px;
}

.hotel-detail--details-section {
  margin-bottom: 20px;
}

.hotel-detail--details-section:last-child {
  margin-bottom: 0;
}

.hotel-detail--details-section h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-detail--details-section h4::before {
  content: '';
  width: 4px;
  height: 16px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
}

.hotel-detail--details-section p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.hotel-detail--details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
}

.hotel-detail--details-list li {
  font-size: 14px;
  color: #64748b;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.hotel-detail--details-list li::before {
  content: '✓';
  color: #10b981;
  font-weight: bold;
  font-size: 12px;
}

.hotel-detail--details-list li:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ===== LOCATION & AMENITIES TOGGLE ===== */
.hotel-detail--location-amenities-toggle {
  margin-top: 16px;
}

.hotel-detail--location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.hotel-detail--location-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.2s ease;
}

.hotel-detail--location-item:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hotel-detail--location-item i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 6px;
  flex-shrink: 0;
}

.hotel-detail--location-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.hotel-detail--location-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.hotel-detail--location-value {
  font-size: 14px;
  color: #1e293b;
  font-weight: 600;
}

.hotel-detail--amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.hotel-detail--amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.2s ease;
}

.hotel-detail--amenity-item:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.hotel-detail--amenity-item i {
  color: #3b82f6;
  font-size: 14px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.hotel-detail--amenity-item span {
  font-size: 13px;
  color: #1e293b;
  font-weight: 500;
}

/* ===== HOTEL FEATURES ===== */

/* Responsive Design */
@media (max-width: 1400px) {
  .hotel-detail--container {
    grid-template-columns: 280px 1fr 340px;
    gap: 24px;
  }
}

@media (max-width: 1200px) {
  .hotel-detail--container {
    grid-template-columns: 260px 1fr 320px;
    gap: 20px;
  }
}

@media (max-width: 968px) {
  .hotel-detail--container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hotel-detail--left-sidebar {
    order: 2;
    position: static;
  }
  
  .hotel-detail--main-content {
    order: 0;
  }
  
  .hotel-detail--right-sidebar {
    order: 3;
    position: static;
  }
  
  .hotel-detail--header-container {
    padding: 0 24px;
  }
  
  .hotel-detail--info-container {
    padding: 0 24px;
  }
  
  .hotel-detail--container {
    padding: 0 24px;
  }
  
  .hotel-detail--info-content {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  
  .hotel-detail--highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }
  
  .hotel-detail--hotel-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Mobile-only booking button */
@media (max-width: 968px) {
  .hotel-detail--mobile-booking-btn {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  .hotel-detail--mobile-booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .hotel-detail--mobile-booking-btn:hover::before {
    left: 100%;
  }
  
  .hotel-detail--mobile-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  }
  
  .hotel-detail--mobile-booking-btn i {
    margin-right: 8px;
    font-size: 18px;
  }
  
  .hotel-detail--mobile-booking-btn span {
    font-size: 16px;
    font-weight: 600;
  }
}

/* Hide mobile booking button on desktop */
@media (min-width: 969px) {
  .hotel-detail--mobile-booking-btn {
    display: none;
  }
}

@media (max-width: 640px) {
  .hotel-detail--header {
    padding: 32px 0;
    background-attachment: scroll;
  }
  
  .hotel-detail--title {
    font-size: 32px;
  }
  
  .hotel-detail--subtitle {
    font-size: 16px;
  }
  
  .hotel-detail--breadcrumb {
    margin-bottom: 20px;
  }
  
  .hotel-detail--info-bar {
    padding: 20px 0;
  }
  
  .hotel-detail--info-content {
    padding: 0px !important;
    border: none !important;
  }
  
  .hotel-detail--hotel-info {
    padding: 20px;
  }
  
  .hotel-detail--hotel-amenities {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .hotel-detail--amenity {
    padding: 6px 10px;
  }
  
  .hotel-detail--pricing-section {
    padding: 20px;
  }
  
  .hotel-detail--room-option {
    padding: 16px;
  }
  
  .hotel-detail--header-container {
    padding: 0 16px;
  }
  
  .hotel-detail--header-content {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  
  .hotel-detail--share-buttons {
    gap: 6px;
    margin-top: 16px;
    justify-content: center;
  }
  
  .hotel-detail--share-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .hotel-detail--info-container {
    padding: 0 16px;
  }
  
  .hotel-detail--container {
    padding: 0 16px;
  }
  
  .hotel-detail--description,
  .hotel-detail--highlights,
  .hotel-detail--itinerary {
    padding: 24px 20px;
  }
  
  .hotel-detail--booking-card,
  .hotel-detail--info-card,
  .hotel-detail--included-card {
    padding: 0;
  }

  .hotel-detail--trust-badges {
    padding: 16px 20px;
    gap: 12px;
  }

  .hotel-detail--trust-badge {
    gap: 6px;
  }

  .hotel-detail--trust-badge i {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .hotel-detail--trust-badge span {
    font-size: 11px;
  }

  .hotel-detail--main-price {
    padding: 20px;
  }

  .hotel-detail--price-amount {
    font-size: 28px;
  }

  .hotel-detail--price-currency {
    font-size: 20px;
  }

  .hotel-detail--booking-form {
    padding: 20px;
    gap: 20px;
  }

  .hotel-detail--passenger-item {
    padding: 12px;
  }

  .hotel-detail--passenger-info i {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .hotel-detail--passenger-controls {
    gap: 8px;
  }

  .hotel-detail--passenger-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .hotel-detail--book-button {
    padding: 16px 20px;
  }

  .hotel-detail--quick-book-btn {
    padding: 14px 16px;
    font-size: 14px;
  }

  .hotel-detail--quick-book-btn i {
    font-size: 14px;
  }

  .hotel-detail--tab-nav {
    flex-direction: column;
  }

  .hotel-detail--tab-btn {
    padding: 12px 16px;
    font-size: 13px;
  }

  .hotel-detail--tab-btn i {
    font-size: 14px;
  }

  .hotel-detail--tab-content {
    padding: 20px;
  }

  .hotel-detail--tab-section h3 {
    font-size: 16px;
  }

  .hotel-detail--tab-text p {
    font-size: 14px;
  }


  
  .hotel-detail--gallery .carousel {
    height: 300px;
  }
  
  .hotel-detail--carousel-image {
    height: 300px;
  }
  
  .hotel-detail--gallery .carousel-item {
    height: 300px;
  }
  
  .hotel-detail--gallery .carousel-control-prev,
  .hotel-detail--gallery .carousel-control-next {
    width: 50px;
    height: 50px;
  }
  
  .hotel-detail--gallery .carousel-control-prev {
    left: 15px;
  }
  
  .hotel-detail--gallery .carousel-control-next {
    right: 15px;
  }
  

  
  .hotel-detail--gallery-thumbs {
    padding: 16px;
    gap: 8px;
  }
  
  .hotel-detail--thumb {
    width: 80px;
    height: 60px;
  }
  
  .hotel-detail--hotel-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  

  
  .hotel-detail--highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .hotel-detail--included-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hotel-detail--info-card-item {
    padding: 12px;
  }
  
  .hotel-detail--info-card-icon {
    width: 35px;
    height: 35px;
  }
  
  .hotel-detail--info-card-icon i {
    font-size: 14px;
  }
  
  .hotel-detail--info-card-content h4 {
    font-size: 11px;
  }
  
  .hotel-detail--info-card-content p {
    font-size: 12px;
  }
  
  .hotel-detail--timeline-item {
    flex-direction: column;
    gap: 12px;
  }
  
  .hotel-detail--timeline-item::before {
    display: none;
  }
  
  .hotel-detail--timeline-time {
    align-self: flex-start;
  }
}

/* Animation for smooth loading */
.hotel-detail--gallery,
.hotel-detail--description,
.hotel-detail--highlights,
.hotel-detail--itinerary,
.hotel-detail--booking-card,
.hotel-detail--info-card,
.hotel-detail--included-card {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 

.hotel-detail--quick-book-btn {
  width: 100%;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.hotel-detail--quick-book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.hotel-detail--quick-book-btn:hover::before {
  left: 100%;
}

.hotel-detail--quick-book-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.hotel-detail--quick-book-btn i {
  font-size: 16px;
}

.hotel-detail--quick-book-btn span {
  font-size: 15px;
  font-weight: 600;
}

/* ===== HOTEL SELECTION ===== */
.hotel-detail--hotel-selection {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.hotel-detail--hotel-select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-detail--hotel-select-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.hotel-detail--hotel-select-label i {
  color: #3b82f6;
  font-size: 16px;
}

.hotel-detail--hotel-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.hotel-detail--hotel-select:hover {
  border-color: #3b82f6;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.hotel-detail--hotel-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.hotel-detail--hotel-select option {
  padding: 8px;
  font-size: 14px;
  background: #ffffff;
  color: #1e293b;
}

/* ===== ROOM SELECTION ===== */
.hotel-detail--room-selection {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.hotel-detail--room-select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-detail--room-select-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.hotel-detail--room-select-label i {
  color: #3b82f6;
  font-size: 16px;
}

.hotel-detail--room-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.hotel-detail--room-select:hover {
  border-color: #3b82f6;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

.hotel-detail--room-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.hotel-detail--room-select:active {
  transform: translateY(0);
}

.hotel-detail--room-select option {
  padding: 12px;
  font-size: 14px;
  background: #ffffff;
  color: #1e293b;
  border-bottom: 1px solid #f1f5f9;
}

.hotel-detail--room-select option:hover {
  background: #f8fafc;
}

.hotel-detail--room-select option:selected {
  background: #3b82f6;
  color: #ffffff;
}

/* Responsive Room Selection */
@media (max-width: 768px) {
  .hotel-detail--room-selection {
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .hotel-detail--room-select-label {
    font-size: 13px;
  }
  
  .hotel-detail--room-select-label i {
    font-size: 15px;
  }
  
  .hotel-detail--room-select {
    padding: 10px 14px;
    font-size: 13px;
    padding-right: 36px;
    background-size: 14px;
  }
}

@media (max-width: 480px) {
  .hotel-detail--room-selection {
    padding: 14px;
    margin-bottom: 14px;
  }
  
  .hotel-detail--room-select-label {
    font-size: 12px;
  }
  
  .hotel-detail--room-select-label i {
    font-size: 14px;
  }
  
  .hotel-detail--room-select {
    padding: 9px 12px;
    font-size: 12px;
    padding-right: 32px;
    background-size: 12px;
  }
  
  .hotel-detail--room-select option {
    padding: 10px;
    font-size: 12px;
  }
}

/* ===== HOTEL INFORMATION ===== */ 



/* ===== ITINERARY ===== */ 

/* ===== CONTENT SECTIONS ===== */
.hotel-detail--highlights-content,
.hotel-detail--included-content,
.hotel-detail--itinerary-content {
  margin-top: 24px;
}

.hotel-detail--highlights-content p,
.hotel-detail--included-content p,
.hotel-detail--itinerary-content p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.hotel-detail--highlights-content p:last-child,
.hotel-detail--included-content p:last-child,
.hotel-detail--itinerary-content p:last-child {
  margin-bottom: 0;
}

.hotel-detail--included-content strong,
.hotel-detail--itinerary-content strong {
  color: #1e293b;
  font-weight: 600;
}

/* ===== TABS ===== */
.hotel-detail--tabs {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.hotel-detail--tab-nav {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.hotel-detail--tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.hotel-detail--tab-btn:hover {
  background: #f1f5f9;
  color: #374151;
}

.hotel-detail--tab-btn.active {
  background: #ffffff;
  color: #3b82f6;
  border-bottom: 3px solid #3b82f6;
}

.hotel-detail--tab-btn i {
  font-size: 16px;
}

.hotel-detail--tab-btn span {
  font-size: 14px;
  font-weight: 600;
}

.hotel-detail--tab-content {
  padding: 24px;
}

.hotel-detail--tab-pane {
  display: none;
}

.hotel-detail--tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hotel-detail--tab-section {
  margin-bottom: 24px;
}

.hotel-detail--tab-section:last-child {
  margin-bottom: 0;
}

.hotel-detail--tab-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.hotel-detail--tab-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 16px;
}

.hotel-detail--tab-text p:last-child {
  margin-bottom: 0;
}

.hotel-detail--tab-text strong {
  color: #1f2937;
  font-weight: 600;
}

/* Nearby List Styles */
.hotel-detail--nearby-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.hotel-detail--nearby-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hotel-detail--nearby-item:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hotel-detail--nearby-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(59, 130, 246, 0.25);
}

.hotel-detail--nearby-icon i {
  color: #ffffff;
  font-size: 20px;
}

.hotel-detail--nearby-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hotel-detail--nearby-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}

.hotel-detail--nearby-content p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
}

.hotel-detail--nearby-distance {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.hotel-detail--nearby-distance i {
  font-size: 12px;
}

/* Empty state for nearby places */
.hotel-detail--nearby-empty {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
}

.hotel-detail--nearby-empty i {
  font-size: 48px;
  color: #d1d5db;
  margin-bottom: 16px;
}

.hotel-detail--nearby-empty p {
  font-size: 16px;
  margin: 0;
}

/* Pricing Table Styles */
.hotel-detail--pricing-table {
  margin-top: 20px;
}

.hotel-detail--pricing-info {
  margin-bottom: 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
  border-radius: 12px;
  border: 1px solid #bbdefb;
}

.hotel-detail--pricing-note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #1565c0;
  font-weight: 500;
}

.hotel-detail--pricing-note i {
  color: #1976d2;
  font-size: 16px;
}

.hotel-detail--pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.hotel-detail--pricing-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.hotel-detail--pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.hotel-detail--pricing-header {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hotel-detail--pricing-period {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.hotel-detail--pricing-period i {
  font-size: 16px;
}

.hotel-detail--pricing-currency {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.hotel-detail--pricing-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hotel-detail--price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hotel-detail--price-item:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: #cbd5e1;
  transform: translateX(4px);
}

.hotel-detail--price-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.hotel-detail--price-label i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 6px;
}

.hotel-detail--price-amount {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.hotel-detail--price-free {
  color: #10b981;
  font-weight: 600;
  font-size: 14px;
}

.hotel-detail--pricing-footer {
  padding: 16px 24px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.hotel-detail--pricing-note-small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.hotel-detail--pricing-note-small i {
  color: #9ca3af;
  font-size: 12px;
}

.hotel-detail--pricing-empty {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  background: #f8fafc;
  border-radius: 16px;
  border: 2px dashed #d1d5db;
}

.hotel-detail--pricing-empty-content {
  text-align: center;
  padding: 40px;
}

.hotel-detail--pricing-empty-content i {
  font-size: 48px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.hotel-detail--pricing-empty-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.hotel-detail--pricing-empty-content p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Responsive pricing table */
@media (max-width: 768px) {
  .hotel-detail--pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .hotel-detail--pricing-card {
    border-radius: 12px;
  }
  
  .hotel-detail--pricing-header {
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .hotel-detail--pricing-period {
    font-size: 14px;
  }
  
  .hotel-detail--pricing-body {
    padding: 20px;
    gap: 12px;
  }
  
  .hotel-detail--price-item {
    padding: 14px 16px;
  }
  
  .hotel-detail--price-label {
    font-size: 13px;
  }
  
  .hotel-detail--price-amount {
    font-size: 16px;
  }
  
  .hotel-detail--pricing-footer {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .hotel-detail--pricing-info {
    padding: 12px 16px;
  }
  
  .hotel-detail--pricing-note {
    font-size: 13px;
    gap: 8px;
  }
  
  .hotel-detail--pricing-header {
    padding: 14px 16px;
  }
  
  .hotel-detail--pricing-body {
    padding: 16px;
  }
  
  .hotel-detail--price-item {
    padding: 12px 14px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .hotel-detail--price-label {
    justify-content: center;
  }
}

/* Hotel Tabs */
.hotel-detail--hotel-tabs {
    margin-top: 1rem;
}

.hotel-detail--hotel-tab-nav {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 1rem;
}

.hotel-detail--hotel-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hotel-detail--hotel-tab-btn:hover {
    color: #495057;
    background-color: #f8f9fa;
}

.hotel-detail--hotel-tab-btn.active {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
    background-color: #f8f9fa;
}

.hotel-detail--hotel-tab-btn i {
    font-size: 1rem;
}

.hotel-detail--hotel-tab-content {
    position: relative;
}

.hotel-detail--hotel-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.hotel-detail--hotel-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for hotel tabs */
@media (max-width: 768px) {
    .hotel-detail--hotel-tab-nav {
        flex-direction: column;
        border-bottom: none;
        border-right: 2px solid #e9ecef;
        margin-bottom: 0;
        margin-right: 1rem;
    }
    
    .hotel-detail--hotel-tab-btn {
        border-bottom: none;
        border-right: 2px solid transparent;
        text-align: left;
        justify-content: flex-start;
    }
    
    .hotel-detail--hotel-tab-btn.active {
        border-right-color: #0d6efd;
        border-bottom-color: transparent;
    }
    
    .hotel-detail--hotel-tabs {
        display: flex;
        gap: 1rem;
    }
    
    .hotel-detail--hotel-tab-content {
        flex: 1;
    }
}

/* No Price Found State */
.hotel-detail--no-price {
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
    margin-top: 1rem;
}

.hotel-detail--no-price-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hotel-detail--no-price-content i {
    font-size: 2rem;
    color: #6c757d;
}

.hotel-detail--no-price-content p {
    margin: 0;
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
}

/* Price Not Found Message in Breakdown */
.hotel-detail--breakdown-item span[colspan="2"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    margin-bottom: 8px;
}

.hotel-detail--breakdown-item span[colspan="2"] i {
    color: #ef4444;
    font-size: 16px;
}


/* Input field styling */
#hotel-date-picker {
    cursor: pointer;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    width: 100%;
}

#hotel-date-picker:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

#hotel-date-picker::placeholder {
    color: #adb5bd;
}

#hotel-date-picker:disabled {
    background-color: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .flatpickr-calendar {
        font-size: 0.875rem;
    }
    
    .flatpickr-day {
        height: 35px;
        line-height: 35px;
    }
    
    .flatpickr-months {
        padding: 0.75rem 0;
    }
    
    .flatpickr-current-month {
        font-size: 1rem;
    }
}

/* ===== TOUR CALENDAR MODAL STYLES ===== */

/* Tour Calendar Show Button */

.hotel-detail--calendar-show-btn {
    width: 100%;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hotel-detail--calendar-show-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.hotel-detail--calendar-show-btn:hover::before {
    left: 100%;
}

.hotel-detail--calendar-show-btn:hover {
    border-color: #007bff;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.hotel-detail--calendar-show-btn:active {
    transform: translateY(0);
}

.hotel-detail--calendar-show-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.hotel-detail--calendar-show-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hotel-detail--calendar-show-title {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    line-height: 1.2;
}

.hotel-detail--calendar-show-subtitle {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.2;
}

.hotel-detail--calendar-show-arrow {
    width: 32px;
    height: 32px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hotel-detail--calendar-show-btn:hover .hotel-detail--calendar-show-arrow {
    background: #007bff;
    color: white;
    transform: translateX(4px);
}

/* Date Input Wrapper (Legacy - keeping for compatibility) */
.hotel-detail--date-input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hotel-detail--calendar-link {
    background: none;
    border: none;
    color: #007bff;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.hotel-detail--calendar-link:hover {
    color: #0056b3;
}

/* Modal Styles */
.hotel-calendar--modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hotel-calendar--modal.show {
    display: flex;
}

.hotel-calendar--modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.hotel-calendar--modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hotel-calendar--modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hotel-calendar--modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel-calendar--modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.hotel-calendar--modal-close:hover {
    background-color: #e9ecef;
    color: #495057;
}

.hotel-calendar--modal-body {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Calendar Info */
.hotel-calendar--info {
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.hotel-calendar--legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hotel-calendar--legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
}

.hotel-calendar--legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.hotel-calendar--available {
    background: #d4edda;
    border-color: #c3e6cb;
}

.hotel-calendar--unavailable {
    background: #f8d7da;
    border-color: #f5c6cb;
}

/* Calendar Grid */
.hotel-calendar--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.hotel-calendar--month {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hotel-calendar--month-header {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    padding: 16px;
    text-align: center;
}

.hotel-calendar--month-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.hotel-calendar--month-grid {
    padding: 16px;
}

.hotel-calendar--weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 8px;
}

.hotel-calendar--weekday {
    padding: 8px 4px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    background: #f8f9fa;
    border-radius: 4px;
}

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

.hotel-calendar--day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.hotel-calendar--day-other-month {
    color: #adb5bd;
    background: #f8f9fa;
}

.hotel-calendar--day-past {
    color: #adb5bd;
    background: #f8f9fa;
    cursor: not-allowed;
}

.hotel-calendar--day-today {
    background: #3b82f6;
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.hotel-calendar--day-available {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.hotel-calendar--day-available:hover {
    background: #c3e6cb;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hotel-calendar--day-closed {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    cursor: not-allowed;
    position: relative;
}

.hotel-calendar--day-closed::after {
    content: '✗';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 8px;
    color: #dc3545;
    font-weight: 700;
}

.hotel-calendar--day-closed:hover {
    background: #f5c6cb;
}

/* Calendar List */
.hotel-calendar--list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hotel-calendar--item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.hotel-calendar--item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.hotel-calendar--item-past {
    opacity: 0.6;
    background-color: #f8f9fa;
}

.hotel-calendar--item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e9ecef;
}

.hotel-calendar--item-number {
    background: #007bff;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.hotel-calendar--status-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.hotel-calendar--status-available {
    background-color: #d4edda;
    color: #155724;
}

.hotel-calendar--status-past {
    background-color: #f8d7da;
    color: #721c24;
}

.hotel-calendar--item-content {
    padding: 16px;
}

.hotel-calendar--date-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hotel-calendar--date-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hotel-calendar--date-label {
    font-size: 11px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-calendar--date-value {
    font-size: 14px;
    color: #495057;
    font-weight: 600;
}

.hotel-calendar--empty {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.hotel-calendar--empty i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.hotel-calendar--empty p {
    margin: 0;
    font-size: 16px;
}

/* Responsive Design for Calendar Modal */
@media (max-width: 768px) {
    .hotel-calendar--modal {
        padding: 10px;
    }
    
    .hotel-calendar--modal-content {
        max-width: 100%;
        max-height: 90vh;
    }
    
    .hotel-calendar--modal-header {
        padding: 16px 20px;
    }
    
    .hotel-calendar--modal-body {
        padding: 20px;
    }
    
    .hotel-calendar--date-info {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .hotel-calendar--date-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Mobile Calendar Show Button */
    .hotel-detail--calendar-show-btn {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .hotel-detail--calendar-show-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .hotel-detail--calendar-show-title {
        font-size: 15px;
    }
    
    .hotel-detail--calendar-show-subtitle {
        font-size: 12px;
    }
    
    .hotel-detail--calendar-show-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hotel-calendar--modal-header {
        padding: 12px 16px;
    }
    
    .hotel-calendar--modal-title {
        font-size: 16px;
    }
    
    .hotel-calendar--modal-body {
        padding: 16px;
    }
    
    .hotel-calendar--item-header {
        padding: 10px 12px;
    }
    
    .hotel-calendar--item-content {
        padding: 12px;
    }
    
    /* Small Mobile Calendar Show Button */
    .hotel-detail--calendar-show-btn {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .hotel-detail--calendar-show-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .hotel-detail--calendar-show-title {
        font-size: 14px;
    }
    
    .hotel-detail--calendar-show-subtitle {
        font-size: 11px;
    }
    
    .hotel-detail--calendar-show-arrow {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
}

/* ===== HOTEL CARD STYLES FOR LEFT SIDEBAR ===== */
/* ===== HOTEL CARD ===== */
.hotel-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  overflow: visible;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  border: 1px solid rgba(0, 0, 0, 0.8);
}

/* ===== CARD IMAGE SECTION ===== */
.hotel-card__image-wrapper {
  position: relative;
  height: 280px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.hotel-card__image {
  width: 100%;
  background-repeat: no-repeat;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 2, 0.3, 1);
  position: relative;
}

.hotel-card:hover .hotel-card__image {
  transform: scale(1.08);
}

.hotel-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

/* ===== LOCATION BADGE ===== */
.hotel-card__location-badge {
  position: absolute;
  bottom: 20px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.3px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 3;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== TRANSPORT BADGE ===== */
.hotel-card__transport-badge {
  position: absolute;
  bottom: 20px;
  right: 10px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hotel-card__location-badge::before {
  content: '\f3c5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.875rem;
  color: #ef4444;
}

/* ===== CARD CONTENT ===== */
.hotel-card__content {
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-top: -24px;
  border-radius: 0 0 28px 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.hotel-card__header {
  margin-bottom: 16px;
}

.hotel-card__name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hotel-card__desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.hotel-card__badges-mobile {
  display: none;
  margin-bottom: 8px;
  gap: 6px;
  flex-wrap: wrap;
}

.hotel-card__badge-mobile {
  display: inline-block;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 4px 10px;
  margin-right: 4px;
  margin-bottom: 4px;
}

/* ===== HOTEL CATEGORIES ===== */
.hotel-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
}

.hotel-card__category-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hotel-card__category-item:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.hotel-card__category-item i {
  font-size: 9px;
  opacity: 0.9;
}

.hotel-card__category-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background: rgba(100, 116, 139, 0.1);
  color: #64748b;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(100, 116, 139, 0.2);
}

/* ===== HOTEL PRICING SECTION ===== */
.hotel-card__pricing-section {
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.hotel-card__pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hotel-card__pricing-label {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hotel-card__pricing-note {
  color: #f59e0b;
  font-size: 0.75rem;
  font-weight: 600;
  font-style: italic;
}

.hotel-card__pricing-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-card__pricing-prices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-card__price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hotel-card__price-item:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hotel-card__price-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-card__price-info i {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 4px;
}

.hotel-card__price-type {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.hotel-card__price {
  color: #0f172a;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.2px;
}

.hotel-card__price--free {
  color: #10b981;
  font-weight: 600;
  font-size: 0.75rem;
}

/* ===== PRICE PERIOD HEADER ===== */
.hotel-card__price-period-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
  position: relative;
  overflow: hidden;
}

.hotel-card__price-period-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.hotel-card__price-period-header i {
  font-size: 0.75rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.hotel-card__price-period-header span {
  position: relative;
  z-index: 1;
}

/* ===== PRICE SEPARATOR ===== */
.hotel-card__price-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 20%, #e2e8f0 80%, transparent 100%);
  margin: 16px 0;
  position: relative;
}

.hotel-card__price-separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #e2e8f0;
  border-radius: 50%;
}

/* Enhanced price item styling for multiple prices */
.hotel-card__pricing-prices .hotel-card__price-item {
  margin-bottom: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hotel-card__pricing-prices .hotel-card__price-item:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hotel-card__pricing-prices .hotel-card__price-item:last-child {
  margin-bottom: 0;
}

/* Price info icons for different age groups */
.hotel-card__pricing-prices .hotel-card__price-info i.fa-user {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

.hotel-card__pricing-prices .hotel-card__price-info i.fa-child {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}

.hotel-card__pricing-prices .hotel-card__price-info i.fa-baby {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

/* Responsive adjustments for price period header */
@media (max-width: 768px) {
  .hotel-card__price-period-header {
    padding: 10px 14px;
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
  
  .hotel-card__price-period-header i {
    font-size: 0.7rem;
  }
  
  .hotel-card__price-separator {
    margin: 12px 0;
  }
  
  .hotel-card__pricing-prices .hotel-card__price-item {
    padding: 6px 10px;
    margin-bottom: 6px;
  }
}

@media (max-width: 480px) {
  .hotel-card__price-period-header {
    padding: 8px 12px;
    font-size: 0.7rem;
    margin-bottom: 8px;
  }
  
  .hotel-card__price-period-header i {
    font-size: 0.65rem;
  }
  
  .hotel-card__price-separator {
    margin: 10px 0;
  }
  
  .hotel-card__pricing-prices .hotel-card__price-item {
    padding: 5px 8px;
    margin-bottom: 5px;
  }
}

/* ===== PRICING FOOTER NOTE ===== */
.hotel-card__pricing-footer {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
  text-align: center;
}

.hotel-card__pricing-footer-note {
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.2px;
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hotel-card__pricing-footer-note::before {
  content: '';
  width: 3px;
  height: 3px;
  background: #94a3b8;
  border-radius: 50%;
  opacity: 0.6;
}

.hotel-card__pricing-footer-note::after {
  content: '';
  width: 3px;
  height: 3px;
  background: #94a3b8;
  border-radius: 50%;
  opacity: 0.6;
}

/* ===== NO PRICE DESIGN ===== */
.hotel-card__no-price {
  position: relative;
  background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hotel-card__no-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hotel-card__no-price:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.hotel-card__no-price:hover::before {
  opacity: 1;
}

.hotel-card__no-price-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hotel-card__no-price-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
  position: relative;
  overflow: hidden;
}

.hotel-card__no-price-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
}

.hotel-card__no-price-icon i {
  font-size: 16px;
  color: white;
  position: relative;
  z-index: 1;
}

.hotel-card__no-price-content {
  flex: 1;
}

.hotel-card__no-price-text {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

/* ===== NO ROOM SELECTED STATE ===== */
.hotel-detail--no-room-selected {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.hotel-detail--no-room-selected:hover {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.hotel-detail--no-room-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
  position: relative;
  overflow: hidden;
}

.hotel-detail--no-room-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
}

.hotel-detail--no-room-icon i {
  font-size: 32px;
  color: white;
  position: relative;
  z-index: 1;
}

.hotel-detail--no-room-selected h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.hotel-detail--no-room-selected p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* Responsive adjustments for no room selected */
@media (max-width: 768px) {
  .hotel-detail--no-room-selected {
    padding: 30px 16px;
    margin: 16px 0;
  }
  
  .hotel-detail--no-room-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  
  .hotel-detail--no-room-icon i {
    font-size: 24px;
  }
  
  .hotel-detail--no-room-selected h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .hotel-detail--no-room-selected p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hotel-detail--no-room-selected {
    padding: 24px 12px;
    margin: 12px 0;
  }
  
  .hotel-detail--no-room-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  
  .hotel-detail--no-room-icon i {
    font-size: 20px;
  }
  
  .hotel-detail--no-room-selected h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .hotel-detail--no-room-selected p {
    font-size: 12px;
  }
}

/* ===== ROOM FEATURES SECTION ===== */

.hotel-detail--room-features {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.hotel-detail--room-features-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f1f5f9;
}

.hotel-detail--room-features-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-detail--room-features-header h4 i {
  color: #3b82f6;
  font-size: 20px;
}

.hotel-detail--room-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
}

.hotel-detail--room-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-sizing: border-box;
  width: 100%;
}

.hotel-detail--room-feature-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hotel-detail--room-feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hotel-detail--room-feature-icon i {
  color: #3b82f6;
  font-size: 14px;
}

.hotel-detail--room-feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hotel-detail--room-feature-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.hotel-detail--room-feature-value {
  font-size: 13px;
  color: #1f2937;
  font-weight: 600;
  line-height: 1.2;
}

.hotel-detail--room-feature-value.available {
  color: #10b981;
  font-weight: 600;
}

/* Responsive Design for Room Features */
@media (max-width: 768px) {
  .hotel-detail--room-features {
    padding: 20px;
    margin-bottom: 16px;
  }
  
  .hotel-detail--room-features-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  
  .hotel-detail--room-features-header h4 {
    font-size: 16px;
  }
  
  .hotel-detail--room-features-header h4 i {
    font-size: 18px;
  }
  
  .hotel-detail--room-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  
  .hotel-detail--room-feature-item {
    padding: 14px 16px;
    gap: 12px;
  }
  
  .hotel-detail--room-feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .hotel-detail--room-feature-icon i {
    font-size: 16px;
  }
  
  .hotel-detail--room-feature-label {
    font-size: 11px;
  }
  
  .hotel-detail--room-feature-value {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hotel-detail--room-features {
    padding: 16px;
    margin-bottom: 14px;
  }
  
  .hotel-detail--room-features-header {
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
  
  .hotel-detail--room-features-header h4 {
    font-size: 15px;
  }
  
  .hotel-detail--room-features-header h4 i {
    font-size: 16px;
  }
  
  .hotel-detail--room-features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .hotel-detail--room-feature-item {
    padding: 12px 14px;
    gap: 10px;
  }
  
  .hotel-detail--room-feature-icon {
    width: 36px;
    height: 36px;
  }
  
  .hotel-detail--room-feature-icon i {
    font-size: 14px;
  }
  
  .hotel-detail--room-feature-label {
    font-size: 10px;
  }
  
  .hotel-detail--room-feature-value {
    font-size: 13px;
  }
}

/* ===== ROOM CALENDAR MODAL STYLES ===== */

/* Room Calendar Modal */
.room-calendar--modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.room-calendar--modal.show {
    display: flex;
}

.room-calendar--modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.room-calendar--modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.room-calendar--modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.room-calendar--modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-calendar--modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.room-calendar--modal-close:hover {
    background-color: #e9ecef;
    color: #495057;
}

.room-calendar--modal-body {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Calendar Info */
.room-calendar--info {
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.room-calendar--legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.room-calendar--legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
}

.room-calendar--legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.room-calendar--available {
    background: #d4edda;
    border-color: #c3e6cb;
}

.room-calendar--unavailable {
    background: #f8d7da;
    border-color: #f5c6cb;
}

/* Calendar Content */
#room-calendar-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.room-calendar--month {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.room-calendar--month-header {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    padding: 16px;
    text-align: center;
}

.room-calendar--month-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.room-calendar--month-grid {
    padding: 16px;
}

.room-calendar--weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 8px;
}

.room-calendar--weekday {
    padding: 8px 4px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    background: #f8f9fa;
    border-radius: 4px;
}

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

.room-calendar--day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.room-calendar--day-empty {
    color: #adb5bd;
    background: #f8f9fa;
}

.room-calendar--day-past {
    color: #adb5bd;
    background: #f8f9fa;
    cursor: not-allowed;
}

.room-calendar--day-today {
    background: #3b82f6;
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.room-calendar--day-available {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.room-calendar--day-available:hover {
    background: #c3e6cb;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.room-calendar--day-unavailable {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    cursor: not-allowed;
    position: relative;
}

.room-calendar--day-unavailable::after {
    content: '✗';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 8px;
    color: #dc3545;
    font-weight: 700;
}

.room-calendar--day-unavailable:hover {
    background: #f5c6cb;
}

/* Responsive Design for Calendar Modal */
@media (max-width: 768px) {
    .room-calendar--modal {
        padding: 10px;
    }
    
    .room-calendar--modal-content {
        max-width: 100%;
        max-height: 90vh;
    }
    
    .room-calendar--modal-header {
        padding: 16px 20px;
    }
    
    .room-calendar--modal-body {
        padding: 20px;
    }
    
    #room-calendar-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .room-calendar--modal-header {
        padding: 12px 16px;
    }
    
    .room-calendar--modal-title {
        font-size: 16px;
    }
    
    .room-calendar--modal-body {
        padding: 16px;
    }
    
    #room-calendar-content {
        gap: 12px;
    }
}

/* ===== ROOM ACCORDION STYLES ===== */

.hotel-detail--room-accordions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hotel-detail--accordion-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hotel-detail--accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.hotel-detail--accordion-checkbox {
  display: none;
}

.hotel-detail--accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  user-select: none;
}

.hotel-detail--accordion-trigger:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.hotel-detail--accordion-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.hotel-detail--accordion-title i {
  color: #3b82f6;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.hotel-detail--accordion-icon {
  color: #6b7280;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.hotel-detail--accordion-checkbox:checked + .hotel-detail--accordion-trigger .hotel-detail--accordion-icon {
  transform: rotate(180deg);
}

.hotel-detail--accordion-checkbox:checked + .hotel-detail--accordion-trigger {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  color: #1e293b;
}

.hotel-detail--accordion-checkbox:checked + .hotel-detail--accordion-trigger .hotel-detail--accordion-title {
  color: #1e293b;
}

.hotel-detail--accordion-checkbox:checked + .hotel-detail--accordion-trigger .hotel-detail--accordion-title i {
  color: #2563eb;
}

.hotel-detail--accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #ffffff;
}

.hotel-detail--accordion-checkbox:checked ~ .hotel-detail--accordion-content {
  max-height: 1000px;
  padding: 20px;
}

.hotel-detail--accordion-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.hotel-detail--accordion-text p {
  margin: 0 0 16px 0;
}

.hotel-detail--accordion-text p:last-child {
  margin-bottom: 0;
}

.hotel-detail--accordion-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 20px 0 10px 0;
}

.hotel-detail--accordion-text h4:first-child {
  margin-top: 0;
}

/* ===== MIN/MAX NIGHT RESTRICTIONS STYLES - MINIMAL DESIGN ===== */

.hotel-detail--min-max-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.hotel-detail--min-max-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.hotel-detail--min-max-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.hotel-detail--min-max-card-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 8px 12px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.hotel-detail--min-max-card-header i {
  color: #3b82f6;
  font-size: 11px;
}

.hotel-detail--min-max-card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hotel-detail--min-max-dates {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #64748b;
}

.hotel-detail--min-max-date {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  background: #f8fafc;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.hotel-detail--min-max-date i {
  color: #3b82f6;
  font-size: 9px;
}

.hotel-detail--min-max-date span {
  font-size: 10px;
  font-weight: 500;
  color: #1f2937;
}

.hotel-detail--min-max-separator {
  color: #94a3b8;
  font-weight: 600;
  font-size: 12px;
}

.hotel-detail--min-max-restrictions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hotel-detail--min-max-restriction {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  border: 1px solid;
  transition: all 0.2s ease;
}

.hotel-detail--min-restriction {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-color: #f59e0b;
  color: #92400e;
}

.hotel-detail--min-restriction:hover {
  background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
  border-color: #d97706;
}

.hotel-detail--min-restriction i {
  color: #f59e0b;
  font-size: 9px;
}

.hotel-detail--max-restriction {
  background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
  border-color: #ef4444;
  color: #991b1b;
}

.hotel-detail--max-restriction:hover {
  background: linear-gradient(135deg, #fca5a5 0%, #f87171 100%);
  border-color: #dc2626;
}

.hotel-detail--max-restriction i {
  color: #ef4444;
  font-size: 9px;
}

.hotel-detail--no-restriction {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border-color: #10b981;
  color: #065f46;
}

.hotel-detail--no-restriction:hover {
  background: linear-gradient(135deg, #bbf7d0 0%, #86efac 100%);
  border-color: #059669;
}

.hotel-detail--no-restriction i {
  color: #10b981;
  font-size: 9px;
}

.hotel-detail--min-max-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}

.hotel-detail--min-max-note i {
  color: #3b82f6;
  font-size: 12px;
  flex-shrink: 0;
}

.hotel-detail--min-max-empty {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  text-align: center;
}

.hotel-detail--min-max-empty i {
  color: #10b981;
  font-size: 16px;
  flex-shrink: 0;
}

/* Responsive Design for Min/Max Restrictions */
@media (max-width: 768px) {
  .hotel-detail--min-max-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .hotel-detail--min-max-card-header {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .hotel-detail--min-max-card-header i {
    font-size: 10px;
  }
  
  .hotel-detail--min-max-card-body {
    padding: 10px;
    gap: 8px;
  }
  
  .hotel-detail--min-max-dates {
    font-size: 10px;
    gap: 4px;
  }
  
  .hotel-detail--min-max-date {
    padding: 3px 5px;
  }
  
  .hotel-detail--min-max-date span {
    font-size: 9px;
  }
  
  .hotel-detail--min-max-restrictions {
    gap: 4px;
  }
  
  .hotel-detail--min-max-restriction {
    padding: 3px 6px;
    font-size: 9px;
  }
  
  .hotel-detail--min-max-note {
    padding: 6px 10px;
    font-size: 10px;
  }
  
  .hotel-detail--min-max-note i {
    font-size: 11px;
  }
  
  .hotel-detail--min-max-empty {
    padding: 10px 12px;
    font-size: 11px;
  }
  
  .hotel-detail--min-max-empty i {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hotel-detail--min-max-grid {
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .hotel-detail--min-max-card-header {
    padding: 5px 8px;
    font-size: 10px;
  }
  
  .hotel-detail--min-max-card-header i {
    font-size: 9px;
  }
  
  .hotel-detail--min-max-card-body {
    padding: 8px;
    gap: 6px;
  }
  
  .hotel-detail--min-max-dates {
    font-size: 9px;
    gap: 3px;
    flex-direction: column;
    align-items: stretch;
  }
  
  .hotel-detail--min-max-date {
    padding: 2px 4px;
    justify-content: center;
  }
  
  .hotel-detail--min-max-date span {
    font-size: 8px;
  }
  
  .hotel-detail--min-max-separator {
    text-align: center;
    font-size: 10px;
  }
  
  .hotel-detail--min-max-restrictions {
    gap: 3px;
    justify-content: center;
  }
  
  .hotel-detail--min-max-restriction {
    padding: 2px 5px;
    font-size: 8px;
  }
  
  .hotel-detail--min-max-note {
    padding: 5px 8px;
    font-size: 9px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  
  .hotel-detail--min-max-note i {
    font-size: 10px;
  }
  
  .hotel-detail--min-max-empty {
    padding: 8px 10px;
    font-size: 10px;
    flex-direction: column;
    gap: 4px;
  }
  
  .hotel-detail--min-max-empty i {
    font-size: 12px;
  }
}

/* Responsive Design for Accordions */
@media (max-width: 768px) {
  .hotel-detail--room-accordions {
    gap: 10px;
  }
  
  .hotel-detail--accordion-trigger {
    padding: 14px 16px;
    font-size: 15px;
  }
  
  .hotel-detail--accordion-title {
    font-size: 15px;
    gap: 10px;
  }
  
  .hotel-detail--accordion-title i {
    font-size: 16px;
    width: 18px;
  }
  
  .hotel-detail--accordion-icon {
    font-size: 13px;
  }
  
  .hotel-detail--accordion-checkbox:checked ~ .hotel-detail--accordion-content {
    padding: 16px;
  }
  
  .hotel-detail--accordion-text {
    font-size: 14px;
  }
  
  .hotel-detail--accordion-text h4 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hotel-detail--room-accordions {
    gap: 8px;
  }
  
  .hotel-detail--accordion-trigger {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .hotel-detail--accordion-title {
    font-size: 14px;
    gap: 8px;
  }
  
  .hotel-detail--accordion-title i {
    font-size: 15px;
    width: 16px;
  }
  
  .hotel-detail--accordion-icon {
    font-size: 12px;
  }
  
  .hotel-detail--accordion-checkbox:checked ~ .hotel-detail--accordion-content {
    padding: 14px;
  }
  
  .hotel-detail--accordion-text {
    font-size: 13px;
  }
  
  .hotel-detail--accordion-text h4 {
    font-size: 14px;
  }
}
