/* Sailing Page Styles
 * Extracted from inline styles for better caching
 * Used on individual cruise sailing pages
 */

:root {
  --primary-color: #061A60;
  --secondary-color: #CC004E;
  --tertiary-color: #FF6700;
  --neutral-color: #FFFFFF;
  --light-bg: #F5F8FF;
  --gold: #D4AF37;
  --success: #28a745;
}

/* ===========================================
   Mobile Hero Styles
   =========================================== */
@media (max-width: 767px) {
  .inner-banner {
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
  }

  .inner-banner-content {
    padding: 90px 20px 40px !important;
  }

  .inner-banner-content img.w-20 {
    height: 45px !important;
    width: auto !important;
    max-width: 160px !important;
    margin-bottom: 1rem !important;
    object-fit: contain;
  }

  .inner-banner-content h1 {
    font-size: 1.6rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .sailing-summary {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 4px 16px !important;
    margin-bottom: 0.5rem !important;
  }

  .sailing-summary p {
    font-size: 13px !important;
    margin: 0 !important;
    white-space: nowrap;
  }

  .sailing-summary p .icon {
    margin-right: 4px;
  }

  .inner-banner-content > span.mt-4,
  .inner-banner-content > span.d-flex {
    margin-top: 1rem !important;
    gap: 8px;
  }

  .inner-banner-content .btn,
  .inner-banner-content .btn.btn-md {
    padding: 12px 24px !important;
    font-size: 14px !important;
    min-height: 44px;
    min-width: 120px;
    margin: 6px !important;
  }
}

/* ===========================================
   Timeline Styles - Clean Alternating Layout
   =========================================== */
.journey-timeline {
  position: relative;
  padding: 40px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  transform: translateX(-50%);
}

.timeline-day {
  display: flex;
  align-items: flex-start;
  margin-bottom: 70px;
  position: relative;
  gap: 80px;
}

.timeline-day:last-child {
  margin-bottom: 0;
}

.timeline-day:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-day:nth-child(even) .timeline-content {
  text-align: right;
}

.timeline-day:nth-child(even) .timeline-content .timeline-highlights {
  justify-content: flex-end;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(204, 0, 78, 0.4);
  border: 4px solid white;
}

.timeline-content,
.timeline-image {
  flex: 1;
  max-width: calc(50% - 40px);
}

.timeline-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.timeline-date {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f7fb;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 12px;
}

.timeline-description {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.timeline-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.highlight-badge {
  background: linear-gradient(135deg, #061A60, #0a2570);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===========================================
   Ship Stats Grid
   =========================================== */
.ship-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.ship-stat-card {
  text-align: center;
  padding: 25px 15px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.ship-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.ship-stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), #1a4d8f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: white;
  font-size: 1.3rem;
}

.ship-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.ship-stat-label {
  color: #888;
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .ship-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .ship-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================================
   Cabin Cards
   =========================================== */
.cabin-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.cabin-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: var(--primary-color);
}

.cabin-card.featured {
  border: 3px solid var(--secondary-color);
  position: relative;
}

.cabin-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--secondary-color);
  color: white;
  padding: 5px 35px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(45deg);
  z-index: 10;
}

.cabin-image {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-color), #1a4d8f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3.5rem;
  position: relative;
}

.cabin-image.balcony {
  background: linear-gradient(135deg, #1a5276, #2874a6);
}

.cabin-image.oceanview {
  background: linear-gradient(135deg, #1e8449, #27ae60);
}

.cabin-image.suite {
  background: linear-gradient(135deg, #7d3c98, #9b59b6);
}

.cabin-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ===========================================
   Cabin Guide Styles
   =========================================== */
.included-amenities {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.cabin-guide-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cabin-guide-label {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.cabin-guide-title {
  font-size: 1.6rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.cabin-guide-desc {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 20px;
}

.cabin-guide-specs {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cabin-guide-specs .spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f7fb;
  padding: 10px 18px;
  border-radius: 8px;
}

.cabin-guide-specs .spec-item i {
  color: var(--primary-color);
}

.cabin-guide-ideal {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.cabin-guide-note {
  color: #888;
  font-size: 0.9rem;
  font-style: italic;
}

.cabin-guide-note i {
  color: var(--secondary-color);
  margin-right: 5px;
}

@media (max-width: 991px) {
  .cabin-guide-photo {
    height: 250px;
  }

  .cabin-guide-title {
    font-size: 1.4rem;
  }
}

/* ===========================================
   Stateroom Tabs Styles
   =========================================== */
.stateroom-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stateroom-tab {
  padding: 12px 24px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stateroom-tab:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.stateroom-tab.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.stateroom-content {
  display: none;
}

.stateroom-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

@media (max-width: 767px) {
  .stateroom-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 10px;
  }

  .stateroom-tab {
    padding: 12px 10px;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 8px;
  }
}

/* ===========================================
   Suite Perks
   =========================================== */
.suite-perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 12px 15px;
  border-radius: 8px;
  border-left: 3px solid var(--secondary-color);
}

.suite-perk-item i {
  color: var(--secondary-color);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.suite-perk-item span {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

/* ===========================================
   Cabin Body & Details
   =========================================== */
.cabin-body {
  padding: 25px;
}

.cabin-type {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.cabin-subtitle {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.cabin-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.cabin-price-note {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.cabin-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.cabin-features li {
  padding: 8px 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.cabin-features li:last-child {
  border-bottom: none;
}

.cabin-features li i {
  color: #27ae60;
  width: 20px;
}

.cabin-details-toggle {
  color: var(--primary-color);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.cabin-details-toggle:hover {
  color: var(--secondary-color);
}

.cabin-extra-details {
  display: none;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.cabin-extra-details.show {
  display: block;
}

.cabin-extra-details ul {
  margin: 0;
  padding-left: 20px;
}

.cabin-extra-details li {
  color: #555;
  padding: 4px 0;
  font-size: 0.9rem;
}

/* ===========================================
   Responsive Timeline
   =========================================== */
@media (max-width: 991px) {
  .journey-timeline {
    padding: 20px 0;
  }

  .journey-timeline::before {
    left: 28px;
  }

  .timeline-day {
    flex-direction: column !important;
    margin-bottom: 50px;
    padding-left: 70px;
    gap: 20px;
  }

  .timeline-marker {
    left: 28px;
    top: 0;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    border-width: 3px;
  }

  .timeline-content,
  .timeline-image {
    max-width: 100%;
    width: 100%;
  }

  .timeline-day:nth-child(even) .timeline-content {
    text-align: left !important;
  }

  .timeline-day:nth-child(even) .timeline-content .timeline-highlights {
    justify-content: flex-start;
  }

  .timeline-image img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .timeline-day {
    padding-left: 60px;
  }

  .journey-timeline::before {
    left: 22px;
  }

  .timeline-marker {
    left: 22px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .timeline-image img {
    height: 160px;
  }

  .timeline-title {
    font-size: 1.2rem;
  }

  .timeline-description {
    font-size: 0.9rem;
  }
}

/* ===========================================
   Dining Section
   =========================================== */
.dining-section {
  padding: 80px 0;
  background: var(--light-bg);
}

/* ===========================================
   Dining Banner (Mockup 9 Style)
   =========================================== */
.dining-banner {
  background: linear-gradient(135deg, #061A60 0%, #0a2d7a 100%);
  border-radius: 24px;
  padding: 60px;
  color: white !important;
  position: relative;
  overflow: hidden;
}

.dining-banner * {
  color: white !important;
}

.dining-banner-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.dining-banner-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white !important;
}

.dining-banner-left > p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  color: white !important;
}

.dining-price-boxes {
  display: flex;
  gap: 20px;
}

.dining-price-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 25px 35px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.dining-price-box .amount {
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
}

.dining-price-box .label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.dining-banner-right {
  text-align: center;
}

.rabbi-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #D4AF37;
  margin: 0 auto 20px;
  overflow: hidden;
}

.rabbi-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dining-banner-right h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.dining-banner-right .title {
  color: #D4AF37 !important;
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .dining-banner {
    padding: 40px 30px;
  }

  .dining-banner-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .dining-banner-right {
    padding: 0;
  }

  .dining-price-boxes {
    justify-content: center;
    flex-wrap: wrap;
  }

  .dining-price-box {
    flex: 1 1 auto;
    min-width: 150px;
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .dining-banner {
    padding: 30px 20px;
  }

  .dining-banner-left h2 {
    font-size: 1.6rem;
  }

  .dining-banner-left > p {
    font-size: 0.95rem;
  }

  .dining-price-boxes {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .dining-price-box {
    width: 100%;
    max-width: 250px;
    padding: 20px 30px;
  }
}

/* ===========================================
   Buffet Grid Section (Mockup B)
   =========================================== */
.buffet-grid-section {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin-top: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.buffet-grid-header {
  text-align: center;
  margin-bottom: 30px;
}

.buffet-grid-header h3 {
  color: #061A60;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.buffet-grid-header p {
  color: #666;
}

.buffet-photo-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 15px;
}

.buffet-photo {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.buffet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.buffet-photo:hover img {
  transform: scale(1.05);
}

.buffet-photo.main {
  grid-row: span 2;
}

.buffet-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 20px 15px 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

.buffet-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.buffet-highlight {
  text-align: center;
}

.buffet-highlight i {
  font-size: 1.8rem;
  color: #061A60;
  margin-bottom: 10px;
}

.buffet-highlight h5 {
  color: #061A60;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.buffet-highlight p {
  color: #666;
  font-size: 0.8rem;
  margin: 0;
}

@media (max-width: 991px) {
  .buffet-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }

  .buffet-photo.main {
    grid-column: span 2;
    grid-row: span 1;
  }

  .buffet-highlights {
    flex-wrap: wrap;
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .buffet-grid-section {
    padding: 25px;
  }

  .buffet-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 150px);
  }

  .buffet-photo.main {
    grid-column: span 1;
  }

  .buffet-highlights {
    gap: 20px;
  }

  .buffet-highlight {
    flex: 0 0 45%;
  }
}

/* ===========================================
   Section Widths & Spacing (v2 Mockup)
   =========================================== */

/* Remove Bootstrap container-fluid padding to prevent white line on section edges */
main > .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.itenary .container,
.dining-section .container,
.stateroom-section .container,
.ship-facts .container,
.faq .container,
.footer-copyright .container {
  max-width: 1320px;
}

/* Wider itinerary timeline to use more container space */
.journey-timeline {
  max-width: 1200px;
}

.itenary,
.stateroom-section {
  padding: 80px 0;
  background: white;
}


.stateroom-section {
  background: white;
  padding-bottom: 40px;
}

.ship-facts {
  padding: 80px 0;
  background: var(--light-bg);
}

.faq {
  padding: 80px 0;
  background: white;
}

/* Fix 1px shift on secondary button hover */
.btn.btn-md.btn-secondary:hover {
  border: 2px solid var(--tertiary-color);
}

/* ===========================================
   Guest Selector
   =========================================== */
.guest-selector {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.guest-selector-inner {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  background: var(--light-bg);
  padding: 15px 30px;
  border-radius: 50px;
}

.guest-label {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.guest-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.guest-control button {
  width: 32px;
  height: 32px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  background: white;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-control button:hover:not(:disabled) {
  background: var(--primary-color);
  color: white;
}

.guest-control button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.guest-control .count {
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
  color: var(--primary-color);
}

.guest-control .type {
  color: #666;
  font-size: 0.9rem;
}

/* ===========================================
   Category Tabs
   =========================================== */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.category-tab {
  padding: 15px 28px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 140px;
}

.category-tab:hover {
  border-color: var(--primary-color);
}

.category-tab.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.category-tab .tab-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.category-tab .tab-price {
  font-size: 1.2rem;
  font-weight: 700;
}

.category-tab:not(.active) .tab-price {
  color: var(--secondary-color);
}

.category-tab.active .tab-price {
  color: white;
}

.category-tab .tab-per {
  font-size: 0.7rem;
  opacity: 0.7;
}

/* ===========================================
   Cabin Display Card
   =========================================== */
.cabin-display {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.cabin-display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 350px;
}

.cabin-display-image {
  position: relative;
  overflow: hidden;
}

.cabin-display-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cabin-display-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 350px;
}

.cabin-display-label {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  width: fit-content;
  white-space: nowrap;
}

.cabin-display-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.cabin-display-desc {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 25px;
  min-height: 115px;
}

.cabin-display-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cabin-spec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--light-bg);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #333;
  text-align: center;
}

.cabin-spec i {
  color: var(--primary-color);
}

/* ===========================================
   Cabin Options
   =========================================== */
.cabin-options-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.cabin-options-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.cabin-options-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.cabin-options-avail {
  color: var(--success);
  font-weight: 600;
  font-size: 0.9rem;
}

.cabin-options-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cabin-option {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  background: var(--light-bg);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cabin-option:hover {
  border-color: #ccc;
  background: white;
}

.cabin-option.selected {
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 4px 15px rgba(6, 26, 96, 0.1);
}

.cabin-option .radio {
  width: 24px;
  height: 24px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cabin-option.selected .radio {
  border-color: var(--primary-color);
}

.cabin-option.selected .radio::after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
}

.cabin-option .option-info {
  flex: 1;
}

.cabin-option .option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.cabin-option .option-code {
  background: #e0e0e0;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #555;
}

.cabin-option.selected .option-code {
  background: var(--primary-color);
  color: white;
}

.cabin-option .option-name {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

.cabin-option .option-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 4px;
}

.cabin-option .option-avail {
  font-size: 0.8rem;
  color: #888;
}

.cabin-option .option-avail.low {
  color: #e74c3c;
}

.cabin-option .option-pricing {
  text-align: right;
  margin-left: 20px;
}

.cabin-option .option-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.cabin-option .option-per {
  font-size: 0.75rem;
  color: #888;
}

/* ===========================================
   Booking Summary
   =========================================== */
.booking-summary-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a2d7a 100%);
  border-radius: 16px;
  padding: 25px 40px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.booking-summary-items {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.booking-summary-item .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  white-space: nowrap;
}

.booking-summary-item .value {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

/* Divider between items */
.booking-summary-item + .booking-summary-item {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

/* Grand total - stands out */
.booking-summary-item.grand-total .label {
  color: white;
  font-weight: 600;
}

.booking-summary-item.grand-total .value {
  font-size: 1.75rem;
  font-weight: 800;
}

/* OBC bonus */
.booking-summary-item.obc {
  border-left: none;
  padding-left: 12px;
}

.booking-summary-item.obc .label {
  color: var(--gold);
  opacity: 0.8;
}

.booking-summary-item.obc .value {
  font-size: 1rem;
  color: var(--gold);
}

.btn-book-now {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-book-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(204, 0, 78, 0.4);
}

/* ===========================================
   Info Notes
   =========================================== */
.info-note {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.info-note.kosher {
  background: linear-gradient(135deg, #fef9e7 0%, #fcf3cf 100%);
  border-left: 4px solid var(--gold);
}

.info-note.group {
  background: var(--light-bg);
  border-left: 4px solid var(--primary-color);
}

.info-note-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-note.kosher .info-note-icon {
  background: white;
  color: var(--gold);
}

.info-note.group .info-note-icon {
  background: white;
  color: var(--primary-color);
}

.info-note-content {
  flex: 1;
}

.info-note-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.info-note.kosher .info-note-content strong {
  color: #7a5d00;
}

.info-note.group .info-note-content strong {
  color: var(--primary-color);
}

.info-note-content p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

.info-note .btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.info-note .btn-whatsapp:hover {
  background: #1da851;
  color: white;
  transform: translateY(-2px);
}

/* ===========================================
   Responsive - Stateroom Section (v2)
   =========================================== */
@media (max-width: 991px) {
  .cabin-display-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cabin-display-image {
    height: 280px;
    position: relative;
  }

  .cabin-display-info {
    padding: 30px;
    min-height: auto;
  }

  .booking-summary-card {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .booking-summary-items {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .stateroom-section {
    padding: 50px 0;
  }

  .guest-selector-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 15px;
  }

  .guest-label {
    width: 100%;
    text-align: center;
  }

  .category-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 15px;
  }

  .category-tab {
    padding: 12px 15px;
    min-width: unset;
    border-radius: 12px;
  }

  .category-tab .tab-name {
    font-size: 0.85rem;
  }

  .category-tab .tab-price {
    font-size: 1rem;
  }

  .cabin-display-title {
    font-size: 1.4rem;
  }

  .cabin-options-card {
    padding: 25px 20px;
  }

  .cabin-options-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cabin-option {
    flex-wrap: wrap;
    padding: 15px;
    position: relative;
  }

  .cabin-option .radio {
    position: absolute;
    top: 15px;
    right: 15px;
    margin-right: 0;
  }

  .cabin-option .option-info {
    width: 100%;
    padding-right: 50px;
  }

  .cabin-option .option-pricing {
    width: 100%;
    text-align: left;
    margin-left: 0;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .booking-summary-items {
    gap: 15px;
  }

  .booking-summary-item {
    padding: 0 15px;
  }

  .booking-summary-item + .booking-summary-item {
    border-left: none;
  }

  .booking-summary-item .value {
    font-size: 1.1rem;
  }

  .booking-summary-item.grand-total .value {
    font-size: 1.3rem;
  }

  .booking-summary-item .label {
    font-size: 0.6rem;
  }

  .btn-book-now {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
  }

  .info-note {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .info-note .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cabin-display-image {
    height: 200px;
  }

  .cabin-display-info {
    padding: 25px 20px;
  }

  .cabin-display-title {
    font-size: 1.2rem;
  }

  .cabin-spec {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .category-tab {
    padding: 10px 12px;
  }

  .category-tab .tab-name {
    font-size: 0.8rem;
  }

  .category-tab .tab-price {
    font-size: 0.9rem;
  }
}

/* ===========================================
   Mobile Fixes for Sailing Pages
   =========================================== */
@media (max-width: 767px) {
  /* Fix: Add spacing under Fresh Kosher Dining title on mobile */
  .dining-section .section-title {
    margin-bottom: 30px;
  }

  /* Fix: Center Select Your Stateroom title on mobile */
  .stateroom-section .section-title {
    text-align: center;
  }

  .stateroom-section .section-title h2,
  .stateroom-section .section-title p {
    text-align: center;
  }
}

/* ===========================================
   Kosher Dining Add-on Card
   =========================================== */
.kosher-dining-card {
  background: white;
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.kosher-dining-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.kosher-dining-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #1a4d8f);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.kosher-dining-title strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.kosher-dining-title p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}

.kosher-dining-toggle {
  display: flex;
  gap: 15px;
  margin-bottom: 0;
}

.kosher-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 20px;
  background: white;
  border-radius: 25px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.kosher-option:hover {
  border-color: var(--primary-color);
}

.kosher-option input[type="radio"] {
  display: none;
}

.kosher-option input[type="radio"]:checked + .kosher-option-label {
  color: var(--primary-color);
  font-weight: 600;
}

.kosher-option:has(input[type="radio"]:checked) {
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 2px 8px rgba(6, 26, 96, 0.15);
}

.kosher-option-label {
  font-size: 0.9rem;
  color: #555;
  position: relative;
  padding-left: 22px;
}

.kosher-option-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.kosher-option input[type="radio"]:checked + .kosher-option-label::before {
  border-color: var(--primary-color);
}

.kosher-option input[type="radio"]:checked + .kosher-option-label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* Kosher Details (Expandable) */
.kosher-dining-details {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.kosher-dining-details.active {
  display: block;
}

.kosher-guest-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kosher-guest-row {
  display: grid;
  grid-template-columns: 140px auto 90px;
  align-items: center;
  gap: 15px;
  background: var(--light-bg);
  padding: 12px 15px;
  border-radius: 8px;
}

.kosher-guest-label {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.kosher-guest-label .age-bracket {
  font-size: 0.75rem;
  color: #888;
  font-weight: 400;
}

.kosher-guest-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kosher-guest-control button {
  width: 28px;
  height: 28px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  background: white;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.kosher-guest-control button:hover:not(:disabled) {
  background: var(--primary-color);
  color: white;
}

.kosher-guest-control button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.kosher-guest-control .count {
  font-weight: 700;
  font-size: 1rem;
  min-width: 20px;
  text-align: center;
  color: #333;
}

.kosher-guest-subtotal {
  font-weight: 600;
  color: #333;
  text-align: right;
  font-size: 0.95rem;
}

.kosher-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #eee;
}

.kosher-total-label {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.kosher-total-value {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--secondary-color);
}


/* Responsive Kosher Card */
@media (max-width: 768px) {
  .kosher-dining-card {
    padding: 20px;
  }

  .kosher-dining-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .kosher-dining-toggle {
    flex-direction: column;
    gap: 10px;
  }

  .kosher-option {
    justify-content: center;
  }

  .kosher-guest-row {
    grid-template-columns: 1fr auto 80px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .kosher-guest-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .kosher-guest-label {
    grid-column: 1;
  }

  .kosher-guest-control {
    grid-column: 2;
    justify-content: flex-end;
  }

  .kosher-guest-subtotal {
    grid-column: 1 / -1;
    text-align: right;
  }
}

/* ===========================================
   Stateroom Section V2 - Two Column Layout
   =========================================== */
.stateroom-section-v2 {
  background: white;
  padding: 100px 0 80px;
}

.section-header-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  margin-bottom: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.section-header-v2 h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.section-header-v2 .section-header-title p {
  font-size: 0.9rem;
  color: #666;
  margin: 4px 0 0 0;
}

/* Guest Selector V2 - Pill Design */
.guest-selector-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guest-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  padding: 10px 16px;
  border-radius: 25px;
  transition: all 0.2s;
}

.guest-group:hover {
  background: #0a2278;
}

.guest-group button {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  transition: all 0.2s;
}

.guest-group button:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
}

.guest-group button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.guest-group button:disabled:hover {
  background: transparent;
}

.guest-group .count {
  font-weight: 700;
  min-width: 16px;
  text-align: center;
  font-size: 1rem;
  color: white;
}

.guest-group .type-label {
  font-size: 0.85rem;
  color: white;
  font-weight: 500;
}

/* Two Column Grid */
.main-content-v2 {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

/* Category Tabs V2 */
.category-tabs-v2 {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.category-tabs-v2 .category-tab {
  flex: 1;
  padding: 14px 12px;
  background: white;
  border: 2px solid #E8EDF5;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.category-tabs-v2 .category-tab:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.category-tabs-v2 .category-tab.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6,26,96,0.3);
}

.category-tabs-v2 .category-tab .tab-name {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.category-tabs-v2 .category-tab .tab-price {
  font-size: 1.05rem;
  font-weight: 700;
}

.category-tabs-v2 .category-tab .tab-per {
  font-size: 0.65rem;
  color: #888;
  margin-top: 2px;
}

.category-tabs-v2 .category-tab:not(.active) .tab-price {
  color: var(--secondary-color);
}

.category-tabs-v2 .category-tab.active .tab-per {
  color: rgba(255,255,255,0.7);
}

/* Cabin Display V2 */
.cabin-display-v2 {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.cabin-display-v2 .cabin-display-grid {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 0;
  min-height: 400px;
}

.cabin-display-v2 .cabin-display-image {
  position: relative;
  overflow: hidden;
}

.cabin-display-v2 .cabin-display-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cabin-display-v2 .cabin-display-info {
  padding: 24px;
}

.cabin-display-v2 .cabin-display-label {
  background: var(--secondary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: inline-block;
}

.cabin-display-v2 .cabin-display-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.cabin-display-v2 .cabin-display-desc {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.cabin-display-v2 .cabin-display-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cabin-display-v2 .cabin-spec {
  background: #F8FAFF;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #444;
  font-weight: 500;
}

.cabin-display-v2 .cabin-spec i {
  color: var(--primary-color);
  margin-right: 6px;
}

/* Cabin Options V2 */
.cabin-options-card-v2 {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cabin-options-card-v2 .cabin-options-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E8EDF5;
}

.cabin-options-card-v2 .cabin-options-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.cabin-options-card-v2 .cabin-options-avail {
  color: #22c55e;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Cabin Options List V2 */
.cabin-options-card-v2 .cabin-options-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cabin-options-card-v2 .cabin-options-list .cabin-option {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 2px solid #E8EDF5;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 10px;
  background: white;
}

.cabin-options-card-v2 .cabin-options-list .cabin-option:last-child {
  margin-bottom: 0;
}

.cabin-options-card-v2 .cabin-options-list .cabin-option:hover {
  border-color: #ccc;
}

.cabin-options-card-v2 .cabin-options-list .cabin-option.selected {
  border-color: var(--primary-color);
  background: #F8FAFF;
}

.cabin-options-card-v2 .cabin-options-list .cabin-option .radio {
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.cabin-options-card-v2 .cabin-options-list .cabin-option.selected .radio {
  border-color: var(--primary-color);
}

.cabin-options-card-v2 .cabin-options-list .cabin-option.selected .radio::after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
}

.cabin-options-card-v2 .cabin-options-list .option-info {
  flex: 1;
}

.cabin-options-card-v2 .cabin-options-list .option-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.cabin-options-card-v2 .cabin-options-list .option-code {
  background: #E8EDF5;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #555;
}

.cabin-options-card-v2 .cabin-options-list .cabin-option.selected .option-code {
  background: var(--primary-color);
  color: white;
}

.cabin-options-card-v2 .cabin-options-list .option-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}

.cabin-options-card-v2 .cabin-options-list .option-desc {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.4;
}

.cabin-options-card-v2 .cabin-options-list .option-avail {
  font-size: 0.7rem;
  color: #22c55e;
  margin-top: 4px;
}

.cabin-options-card-v2 .cabin-options-list .option-avail.low {
  color: #f59e0b;
}

.cabin-options-card-v2 .cabin-options-list .option-pricing {
  text-align: right;
  flex-shrink: 0;
}

.cabin-options-card-v2 .cabin-options-list .option-price {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.cabin-options-card-v2 .cabin-options-list .option-per {
  font-size: 0.65rem;
  color: #888;
}

/* Sticky Sidebar V2 */
.sidebar-v2 {
  position: sticky;
  top: 80px;
}

.summary-card-v2 {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.summary-card-v2 h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E8EDF5;
}

.summary-card-v2 .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.summary-card-v2 .summary-row .label {
  color: #666;
  font-size: 0.9rem;
}

.summary-card-v2 .summary-row .value {
  font-weight: 600;
  color: #333;
}

.summary-card-v2 .summary-divider {
  height: 1px;
  background: #E8EDF5;
  margin: 16px 0;
}

.summary-card-v2 .summary-row.total .label {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
}

.summary-card-v2 .summary-row.total .value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.summary-card-v2 .summary-row.obc {
  background: linear-gradient(90deg, #fffbeb 0%, #fef3c7 100%);
  margin: 0 -24px;
  padding: 12px 24px;
}

.summary-card-v2 .summary-row.obc .label {
  color: #92400e;
  font-weight: 600;
}

.summary-card-v2 .summary-row.obc .value {
  color: var(--gold);
  font-weight: 700;
}

.btn-book-v2 {
  width: 100%;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #a30040 100%);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-book-v2:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 0, 78, 0.4);
}

.btn-book-v2:disabled,
.btn-book-v2.disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Kosher Dining Card V2 (Sidebar) */
.kosher-dining-card-v2 {
  background: linear-gradient(135deg, #F8FAFF 0%, #fff 100%);
  border: 2px solid #E8EDF5;
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
}

.kosher-dining-card-v2 .kosher-dining-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.kosher-dining-card-v2 .kosher-dining-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kosher-dining-card-v2 .kosher-dining-icon i {
  color: white;
  font-size: 0.85rem;
}

.kosher-dining-card-v2 .kosher-dining-title strong {
  font-size: 0.85rem;
  color: var(--primary-color);
  display: block;
}

.kosher-dining-card-v2 .kosher-dining-title p {
  font-size: 0.7rem;
  color: #888;
  margin: 2px 0 0 0;
}

.kosher-dining-card-v2 .kosher-dining-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.kosher-dining-card-v2 .kosher-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  border: 2px solid #E8EDF5;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.kosher-dining-card-v2 .kosher-option:has(input:checked) {
  border-color: var(--primary-color);
  background: #F8FAFF;
}

.kosher-dining-card-v2 .kosher-option input {
  display: none;
}

.kosher-dining-card-v2 .kosher-option-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
  padding-left: 0;
}

.kosher-dining-card-v2 .kosher-option-label::before,
.kosher-dining-card-v2 .kosher-option-label::after {
  display: none;
}

.kosher-dining-card-v2 .kosher-dining-details {
  display: none;
  padding-top: 12px;
  border-top: 1px solid #E8EDF5;
}

.kosher-dining-card-v2 .kosher-dining-details.active {
  display: block;
}

.kosher-dining-card-v2 .kosher-guest-rows {
  margin-bottom: 10px;
}

.kosher-dining-card-v2 .kosher-guest-row {
  display: flex;
  align-items: center;
  padding: 6px 0;
  font-size: 0.8rem;
  background: transparent;
  border-radius: 0;
}

.kosher-dining-card-v2 .kosher-guest-label {
  flex: 1;
  color: #666;
  white-space: nowrap;
  font-weight: 500;
}

.kosher-dining-card-v2 .kosher-guest-label .age-bracket {
  font-size: 0.7rem;
  color: #999;
  font-weight: 400;
}

.kosher-dining-card-v2 .kosher-guest-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kosher-dining-card-v2 .kosher-guest-control button {
  width: 24px;
  height: 24px;
  border: 1px solid #E8EDF5;
  border-radius: 4px;
  background: white;
  cursor: pointer;
  font-size: 0.7rem;
  color: var(--primary-color);
}

.kosher-dining-card-v2 .kosher-guest-control button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.kosher-dining-card-v2 .kosher-guest-control .count {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
}

.kosher-dining-card-v2 .kosher-guest-subtotal {
  font-weight: 600;
  min-width: 60px;
  text-align: right;
}

.kosher-dining-card-v2 .kosher-total-row {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed #E8EDF5;
  margin-top: 6px;
}

.kosher-dining-card-v2 .kosher-total-label {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.8rem;
}

.kosher-dining-card-v2 .kosher-total-value {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

/* Info Note V2 - Sidebar version (vertical layout) */
.sidebar-v2 .info-note-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: #F8FAFF;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 4px solid var(--primary-color);
}

.sidebar-v2 .info-note-v2 .info-note-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sidebar-v2 .info-note-v2 .info-note-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.sidebar-v2 .info-note-v2 .info-note-content p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.sidebar-v2 .info-note-v2 .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  width: 100%;
}

.sidebar-v2 .info-note-v2 .btn-whatsapp:hover {
  background: #1da851;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* V2 Responsive */
@media (max-width: 1200px) {
  .cabin-display-v2 .cabin-display-grid {
    grid-template-columns: 500px 1fr;
  }
}

@media (max-width: 991px) {
  .main-content-v2 {
    display: block;
  }

  .sidebar-v2 {
    position: static;
    margin-top: 20px;
  }

  .summary-card-v2 {
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }

  .summary-card-v2 .summary-row.obc {
    margin: 0 -20px;
    padding: 12px 20px;
  }

  .section-header-v2 {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px;
  }

  .guest-selector-v2 {
    justify-content: center;
    flex-wrap: wrap;
  }

  .category-tabs-v2 {
    flex-wrap: wrap;
  }

  .category-tabs-v2 .category-tab {
    flex: 1 1 45%;
  }

  .cabin-display-v2 .cabin-display-grid {
    grid-template-columns: 1fr;
  }

  .cabin-display-v2 .cabin-display-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
  }

  .cabin-display-v2 .cabin-display-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }

  .cabin-display-v2 {
    border-radius: 16px;
    overflow: hidden;
  }
}

@media (max-width: 576px) {
  .stateroom-section-v2 {
    padding: 20px 0 60px;
  }

  .stateroom-section-v2 .container {
    padding: 0 12px;
  }

  .section-header-v2 {
    padding: 16px;
    margin-bottom: 16px;
  }

  .section-header-v2 h2 {
    font-size: 1.25rem;
  }

  .guest-selector-v2 {
    gap: 8px;
  }

  .guest-group {
    padding: 8px 12px;
    gap: 8px;
  }

  .guest-group .type-label {
    font-size: 0.75rem;
  }

  .guest-group .count {
    font-size: 0.95rem;
  }

  .guest-group button {
    width: 22px;
    height: 22px;
  }

  .category-tabs-v2 {
    gap: 8px;
    margin-bottom: 16px;
  }

  .category-tabs-v2 .category-tab {
    padding: 12px 8px;
  }

  .category-tabs-v2 .category-tab .tab-name {
    font-size: 0.75rem;
  }

  .category-tabs-v2 .category-tab .tab-price {
    font-size: 0.9rem;
  }

  .cabin-display-v2 {
    margin-bottom: 16px;
  }

  .cabin-display-v2 .cabin-display-info {
    padding: 18px;
  }

  .cabin-display-v2 .cabin-display-title {
    font-size: 1.15rem;
  }

  .cabin-display-v2 .cabin-display-desc {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .cabin-display-v2 .cabin-display-specs {
    gap: 8px;
  }

  .cabin-display-v2 .cabin-spec {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .cabin-options-card-v2 {
    padding: 18px;
  }

  .cabin-options-card-v2 .cabin-options-list .cabin-option {
    flex-wrap: wrap;
    padding: 12px;
  }

  .cabin-options-card-v2 .cabin-options-list .option-info {
    flex: 1 1 calc(100% - 90px);
  }

  .cabin-options-card-v2 .cabin-options-list .option-pricing {
    width: 100%;
    text-align: right;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #E8EDF5;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 6px;
  }
}
