:root {
  /* Main mapped colors from Hotel Profile */
  --web-primary: #2C3E35;
  --web-secondary: #BFA37E;
  --web-accent: #8E6E5E;

  /* Auto-generated shades from mapped colors */
  --web-primary-hover: color-mix(in srgb, var(--web-primary) 85%, black);
  --web-primary-dark: color-mix(in srgb, var(--web-primary) 65%, black);
  --web-primary-soft: color-mix(in srgb, var(--web-primary) 10%, white);

  --web-secondary-hover: color-mix(in srgb, var(--web-secondary) 85%, black);
  --web-secondary-dark: color-mix(in srgb, var(--web-secondary) 50%, black);
  --web-secondary-soft: color-mix(in srgb, var(--web-secondary) 14%, white);

  --web-accent-hover: color-mix(in srgb, var(--web-accent) 85%, black);
  --web-accent-dark: color-mix(in srgb, var(--web-accent) 70%, black);
  --web-accent-soft: color-mix(in srgb, var(--web-accent) 12%, white);

  /* Dynamic overlays and glass */
  --web-primary-overlay-soft: color-mix(in srgb, var(--web-primary) 35%, transparent);
  --web-primary-overlay-medium: color-mix(in srgb, var(--web-primary) 65%, transparent);
  --web-primary-overlay-strong: color-mix(in srgb, var(--web-primary) 88%, transparent);
  --web-primary-overlay-deep: color-mix(in srgb, var(--web-primary) 96%, black);

  --web-secondary-overlay-soft: color-mix(in srgb, var(--web-secondary) 22%, transparent);
  --web-secondary-overlay-medium: color-mix(in srgb, var(--web-secondary) 38%, transparent);

  --web-accent-overlay-soft: color-mix(in srgb, var(--web-accent) 20%, transparent);
  --web-accent-overlay-medium: color-mix(in srgb, var(--web-accent) 34%, transparent);

  --web-light-overlay-soft: rgba(255, 255, 255, 0.12);
  --web-light-overlay-medium: rgba(255, 255, 255, 0.22);
  --web-light-overlay-strong: rgba(255, 255, 255, 0.72);

  --web-glass-bg: color-mix(in srgb, var(--web-primary) 58%, transparent);
  --web-glass-bg-strong: color-mix(in srgb, var(--web-primary) 88%, black);
  --web-glass-border: color-mix(in srgb, var(--web-secondary) 28%, transparent);

  --web-border-dynamic-soft: color-mix(in srgb, var(--web-primary) 14%, transparent);
  --web-border-dynamic-medium: color-mix(in srgb, var(--web-primary) 24%, transparent);
  --web-focus-ring: color-mix(in srgb, var(--web-secondary) 24%, transparent);

  /* Page backgrounds */
  --web-page-bg: color-mix(in srgb, var(--web-secondary) 4%, white);
  --web-section-bg: color-mix(in srgb, var(--web-secondary) 8%, white);
  --web-surface-bg: #FFFFFF;
  --web-surface-muted-bg: color-mix(in srgb, var(--web-secondary) 5%, white);
  --web-dark-bg: color-mix(in srgb, var(--web-primary) 55%, black);

  /* Text */
  --web-text-main: color-mix(in srgb, var(--web-primary) 36%, #1f1f1f);
  --web-text-muted: color-mix(in srgb, var(--web-primary) 28%, #737373);
  --web-text-soft: color-mix(in srgb, var(--web-primary) 18%, #a3a3a3);
  --web-text-white: #FFFFFF;
  --web-text-on-primary: #FFFFFF;
  --web-text-on-dark: #FDFCFB;

  /* Borders */
  --web-border-light: color-mix(in srgb, var(--web-primary) 8%, white);
  --web-border-medium: color-mix(in srgb, var(--web-primary) 14%, white);
  --web-border-dark: color-mix(in srgb, var(--web-primary) 22%, white);

  /* Status colors */
  --web-success: #3E5C4E;
  --web-success-dark: #2C3E35;
  --web-success-soft: #ECF2EF;

  --web-warning: #D4A373;
  --web-warning-dark: #A67C52;
  --web-warning-soft: #FAF3E0;

  --web-danger: #A65D57;
  --web-danger-dark: #7D423E;
  --web-danger-soft: #F9EBEA;

  --web-info: #5E7E8E;
  --web-info-dark: #455D69;
  --web-info-soft: #EBF1F4;

  /* Shadows based on primary color */
  --web-shadow-xs: 0 1px 3px color-mix(in srgb, var(--web-primary) 12%, transparent);
  --web-shadow-sm: 0 4px 6px color-mix(in srgb, var(--web-primary) 12%, transparent);
  --web-shadow-md: 0 12px 30px color-mix(in srgb, var(--web-primary) 16%, transparent);
  --web-shadow-lg: 0 18px 45px color-mix(in srgb, var(--web-primary) 22%, transparent);
  --web-shadow-xl: 0 28px 70px color-mix(in srgb, var(--web-primary) 26%, transparent);

  /* Radius */
  --web-radius-xs: 2px;
  --web-radius-sm: 4px;
  --web-radius-md: 8px;
  --web-radius-lg: 16px;
  --web-radius-xl: 24px;
  --web-radius-pill: 999px;

  /* Fonts */
  --web-font-heading: "Cormorant Garamond", serif;
  --web-font-body: "Inter", sans-serif;
  --web-heading-weight: 600;
  --web-heading-spacing: -0.01em;

  /* Font sizes */
  --web-text-xs: 0.75rem;
  --web-text-sm: 0.875rem;
  --web-text-base: 1rem;
  --web-text-lg: 1.125rem;
  --web-text-xl: 1.25rem;
  --web-text-2xl: 1.5rem;
  --web-text-3xl: 2rem;
  --web-text-4xl: 2.75rem;
  --web-text-5xl: 3.5rem;

  /* Spacing */
  --web-space-xs: 0.25rem;
  --web-space-sm: 0.5rem;
  --web-space-md: 1rem;
  --web-space-lg: 1.5rem;
  --web-space-xl: 2rem;
  --web-space-2xl: 4rem;
  --web-space-3xl: 6rem;

  --web-container-max: 1180px;
  --web-section-padding: 7rem;
  --web-navbar-height: 82px;

  /* Transitions */
  --web-transition-fast: 0.2s ease;
  --web-transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --web-transition-slow: 0.5s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--web-font-body);
  background: var(--web-page-bg);
  color: var(--web-text-main);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--web-font-heading);
  font-weight: var(--web-heading-weight);
  letter-spacing: var(--web-heading-spacing);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.web-dynamic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navbar */

.web-navbar {
  position: fixed;
  top: 18px;
  left: 0;
  width: 98%;
  z-index: 999;
  transition: var(--web-transition-normal);
}

.web-navbar .web-nav-shell {
  min-height: var(--web-navbar-height);
  border-radius: var(--web-radius-pill);
  padding: 0.8rem 1rem;
  background: var(--web-glass-bg);
  border: 1px solid var(--web-glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--web-primary) 22%, transparent);
  transition: var(--web-transition-normal);
}

.web-navbar.web-navbar-scrolled {
  top: 8px;
}

.web-navbar.web-navbar-scrolled .web-nav-shell {
  background: var(--web-glass-bg-strong);
  border-color: color-mix(in srgb, var(--web-secondary) 35%, transparent);
  box-shadow: 0 18px 50px color-mix(in srgb, var(--web-primary) 32%, transparent);
}

.web-navbar .navbar-brand {
  font-family: var(--web-font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--web-text-white);
  letter-spacing: 0.04em;
}

.web-navbar .navbar-brand span {
  color: var(--web-secondary);
}

.web-navbar .navbar-brand img {
  max-height: 68px;
  width: 90px;
  object-fit: contain;
}

.web-navbar .nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--web-text-sm);
  font-weight: 600;
  padding: 0.5rem 0.65rem;
  border-radius: var(--web-radius-pill);
  transition: var(--web-transition-fast);
}

.web-navbar .nav-link:hover,
.web-navbar .nav-link.active {
  color: var(--web-primary-dark);
  background: var(--web-secondary);
}

.web-navbar .navbar-toggler {
  border: 1px solid color-mix(in srgb, white 45%, transparent);
  box-shadow: none;
}

.web-navbar .navbar-toggler:focus {
  box-shadow: none;
}

.web-navbar .navbar-toggler-icon {
  filter: invert(1);
}

.web-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--web-radius-pill);
  background: var(--web-secondary);
  color: var(--web-primary-dark);
  font-size: var(--web-text-sm);
  font-weight: 800;
  border: 1px solid var(--web-secondary);
  transition: var(--web-transition-normal);
}

.web-nav-btn:hover {
  background: var(--web-secondary-hover);
  border-color: var(--web-secondary-hover);
  color: var(--web-text-white);
  transform: translateY(-1px);
}

/* Hero */

.web-home-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--web-primary-dark);
  color: var(--web-text-white);
  display: flex;
  align-items: center;
  padding: 9rem 0 4rem;
}

.web-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.72) 0%,
      rgba(0,0,0,.58) 25%,
      rgba(0,0,0,.35) 55%,
      rgba(0,0,0,.12) 100%
    );
  z-index: 2;
}

.web-home-hero-video,
.web-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-home-hero-video {
  z-index: 1;
}

.web-hero-grid {
  position: relative;
  z-index: 3;
  transform: translateY(40px);
}

.web-hero-label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--web-secondary);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 1.5rem;
}

.web-hero-label::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--web-secondary);
}

.web-hero-title {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.web-hero-copy {
   max-width: 560px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.web-hero-mini-grid {
 display: flex;
  gap: 3rem;
  /* margin-top: 4rem; */
  padding-top: 2rem;
  /* border-top: 1px solid rgba(255,255,255,.12); */
  max-width: 700px;
}

.web-hero-mini {
  border-left: 1px solid color-mix(in srgb, var(--web-secondary) 26%, transparent);
  padding-left: 1rem;
}

.web-hero-mini strong {
  display: block;
  color: var(--web-secondary);
  font-size: var(--web-text-2xl);
  font-family: var(--web-font-heading);
}

.web-hero-mini span {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--web-text-sm);
}

.web-page-hero {
  min-height: 70vh;
  position: relative;
  background: var(--web-primary-dark);
  color: var(--web-text-white);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 12rem 0 5rem;
}

.web-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at bottom left, var(--web-secondary-overlay-medium), transparent 34%),
    linear-gradient(90deg,
      var(--web-primary-overlay-strong),
      var(--web-primary-overlay-medium));
  z-index: 1;
}

.web-page-hero .container {
  position: relative;
  z-index: 2;
}

.web-page-hero h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.82;
  max-width: 900px;
}

.web-page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  font-size: var(--web-text-lg);
}

.web-breadcrumb-label {
  color: var(--web-secondary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* Buttons */

.web-actions {
  display: flex;
  align-items: start;
  gap: 1rem;
  flex-wrap: wrap;
}

.web-actions-center {
  justify-content: center;
}

.web-btn-primary,
.web-btn-outline,
.web-btn-solid,
.web-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.65rem;
  border-radius: var(--web-radius-pill);
  font-size: var(--web-text-sm);
  font-weight: 800;
  transition: var(--web-transition-normal);
}

.web-btn-primary {
  background: var(--web-secondary);
  color: var(--web-primary-dark);
  border: 1px solid var(--web-secondary);
}

.web-btn-primary:hover {
  background: var(--web-secondary-hover);
  color: var(--web-text-white);
  transform: translateY(-2px);
}

.web-btn-outline {
  color: var(--web-text-white);
  border: 1px solid color-mix(in srgb, white 44%, transparent);
  background: color-mix(in srgb, white 8%, transparent);
  backdrop-filter: blur(10px);
}

.web-btn-outline:hover {
  background: var(--web-text-white);
  color: var(--web-primary-dark);
  transform: translateY(-2px);
}

.web-btn-solid {
  background: var(--web-primary);
  color: var(--web-text-white);
  border: 1px solid var(--web-primary);
}

.web-btn-solid:hover {
  background: var(--web-primary-hover);
  color: var(--web-text-white);
  transform: translateY(-2px);
}

.web-btn-ghost {
  background: transparent;
  color: var(--web-primary);
  border: 1px solid var(--web-border-dynamic-medium);
}

.web-btn-ghost:hover {
  background: var(--web-primary);
  border-color: var(--web-primary);
  color: var(--web-text-white);
}

/* Sections */

.web-section {
  position: relative;
  padding: var(--web-section-padding) 0;
  overflow: hidden;
}

.web-section-bg-light {
  background: var(--web-page-bg);
}

.web-section-bg-soft {
  background: var(--web-section-bg);
}

.web-section-bg-secondary {
  background: var(--web-secondary-soft);
}

.web-section-bg-accent {
  background: var(--web-accent-soft);
}

.web-section-bg-primary {
  background: var(--web-primary);
  color: var(--web-text-on-primary);
}

.web-section-bg-dark {
  background: var(--web-dark-bg);
  color: var(--web-text-on-dark);
}

.web-section-bg-primary .web-section-title,
.web-section-bg-dark .web-section-title {
  color: var(--web-text-white);
}

.web-section-bg-primary .web-section-text,
.web-section-bg-dark .web-section-text,
.web-section-bg-primary .web-section-subtitle,
.web-section-bg-dark .web-section-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.web-section-bg-primary .web-kicker,
.web-section-bg-dark .web-kicker {
  color: var(--web-secondary);
}

.web-kicker {
  color: var(--web-secondary-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: var(--web-text-sm);
  margin-bottom: 0.75rem;
}

.web-section-title {
  color: var(--web-text-main);
  font-size: clamp(2.6rem, 5.5vw, 5.5rem);
  line-height: 0.9;
  margin-bottom: 1rem;
}

.web-section-subtitle,
.web-section-text {
  color: var(--web-text-muted);
  line-height: 1.85;
  font-size: var(--web-text-lg);
}

.web-section-subtitle {
  max-width: 740px;
  margin: 0 auto 3rem;
}

.web-overlap-panel {
  margin-top: -5rem;
  position: relative;
  z-index: 8;
}

/* Forms */

.web-booking-strip {
  background: var(--web-surface-bg);
  border-radius: var(--web-radius-xl);
  box-shadow: var(--web-shadow-xl);
  padding: 1.25rem;
  border: 1px solid var(--web-border-dynamic-soft);
}

.web-booking-strip .form-control,
.web-booking-strip .form-select,
.web-form .form-control,
.web-form .form-select {
  min-height: 54px;
  border: 1px solid var(--web-border-dynamic-soft);
  border-radius: var(--web-radius-md);
  box-shadow: none;
}

.web-booking-strip .form-control:focus,
.web-booking-strip .form-select:focus,
.web-form .form-control:focus,
.web-form .form-select:focus {
  border-color: var(--web-secondary);
  box-shadow: 0 0 0 0.2rem var(--web-focus-ring);
}

.web-form label,
.web-booking-strip label {
  font-weight: 800;
  color: var(--web-text-main);
  margin-bottom: 0.45rem;
  font-size: var(--web-text-sm);
}

.web-form {
  background: var(--web-surface-bg);
  border-radius: var(--web-radius-xl);
  padding: 2rem;
  box-shadow: var(--web-shadow-lg);
  border: 1px solid var(--web-border-dynamic-soft);
}

/* Editorial images */

.web-editorial-image {
  position: relative;
  min-height: 580px;
}

.web-editorial-image img:first-child {
  width: 82%;
  height: 540px;
  object-fit: cover;
  border-radius: 180px 180px var(--web-radius-lg) var(--web-radius-lg);
  box-shadow: var(--web-shadow-xl);
}

.web-editorial-image img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--web-radius-xl);
  border: 10px solid var(--web-page-bg);
  box-shadow: var(--web-shadow-lg);
}

/* Feature lines */

.web-feature-line {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--web-border-dynamic-soft);
}

.web-section-bg-primary .web-feature-line,
.web-section-bg-dark .web-feature-line {
  border-bottom-color: color-mix(in srgb, var(--web-secondary) 24%, transparent);
}

.web-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--web-secondary-soft);
  color: var(--web-secondary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.web-feature-line h3 {
  font-size: var(--web-text-2xl);
  margin-bottom: 0.25rem;
}

.web-feature-line p {
  margin: 0;
  color: var(--web-text-muted);
  line-height: 1.75;
}

.web-section-bg-primary .web-feature-line p,
.web-section-bg-dark .web-feature-line p {
  color: rgba(255, 255, 255, 0.76);
}

/* Rooms */
/* Rooms Grid Container */
.web-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

/* Individual Unified Card */
.web-room-card {
  display: flex;
  flex-direction: column;
  background: var(--web-surface-bg, #ffffff);
  border: 1px solid var(--web-border-dynamic-soft, rgba(0, 0, 0, 0.08));
  border-radius: var(--web-radius-xl, 16px);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.web-room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Image Context & Glassmorphism Badge Placement */
.web-room-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.web-room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.5s ease;
}

.web-room-card:hover .web-room-img {
  scale: 1.05;
}

/* Floating Clean Badge */
/* Enhanced Glassmorphism Badge */
.web-room-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;

  /* 1. Transparent white base */
  background: rgba(255, 255, 255, 0.45);

  /* 2. Stronger blur for that "frosted" look */
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);

  /* 3. The "Glass Edge" - crucial for the effect */
  border: 1px solid rgba(255, 255, 255, 0.5);

  /* 4. Soft inner glow and outer shadow */
  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.1);

  color: #1a1a1a;
  padding: 0.6rem 1.2rem;
  border-radius: var(--web-radius-pill, 50px);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  z-index: 10;
}

/* Content Area Configured to Push Actions Downward */
.web-room-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.web-room-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--web-text-main, #222);
  line-height: 1.2;
}

.web-room-description {
  font-size: 0.925rem;
  color: var(--web-text-muted, #666);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Clips description to clean 3 lines max */
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

/* Pill Lists Details */
.web-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  /* Aligns pills to bottom of text section */
  margin-bottom: 1.5rem;
}

.web-pill-list span {
  border-radius: var(--web-radius-pill, 50px);
  padding: 0.35rem 0.75rem;
  background: var(--web-secondary-soft, #f0f4f8);
  color: var(--web-secondary-dark, #1e6e99);
  font-weight: 600;
  font-size: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Actions Bar Layout */
.web-room-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.75rem;
}

/* Component Button Utilities */
.web-btn-solid-sm,
.web-btn-ghost-sm {
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--web-radius-lg, 8px);
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.web-btn-solid-sm {
  background: var(--web-primary, #1e6e99);
  color: #fff;
  border: 1px solid transparent;
}

.web-btn-solid-sm:hover {
  background: var(--web-primary-dark, #144d6c);
  color: #fff;
}

.web-btn-ghost-sm {
  background: transparent;
  color: var(--web-text-main, #333);
  border: 1px solid var(--web-border-dynamic-soft, #ddd);
}

.web-btn-ghost-sm:hover {
  background: var(--web-secondary-soft, #f5f5f5);
}

/* Fallback Placeholder Utility */
.web-image-placeholder {
  width: 100%;
  height: 100%;
  background: #f4f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 2.5rem;
}

/* Tile cards */

.web-tile-card {
  position: relative;
  min-height: 460px;
  border-radius: var(--web-radius-xl);
  overflow: hidden;
  box-shadow: var(--web-shadow-lg);
}

.web-tile-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: var(--web-transition-slow);
}

.web-tile-card:hover img {
  transform: scale(1.06);
}

.web-tile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      var(--web-primary-overlay-strong),
      color-mix(in srgb, var(--web-primary) 10%, transparent));
}

.web-tile-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 2rem;
  color: var(--web-text-white);
}

.web-tile-content h3 {
  font-size: var(--web-text-3xl);
}

.web-tile-content p {
  color: rgba(255, 255, 255, 0.8);
}

/* Numbers */

.web-number-card {
  border-top: 1px solid var(--web-border-dynamic-medium);
  padding-top: 1.5rem;
}

.web-number {
  font-family: var(--web-font-heading);
  color: var(--web-secondary-dark);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
}

.web-section-bg-primary .web-number,
.web-section-bg-dark .web-number {
  color: var(--web-secondary);
}

/* Fixed image bands */

.web-fixed-band {
  position: relative;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--web-text-white);
  display: flex;
  align-items: center;
}

.web-fixed-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, var(--web-secondary-overlay-medium), transparent 38%),
    var(--web-primary-overlay-medium);
}

.web-fixed-band .container {
  position: relative;
  z-index: 2;
}

.web-fixed-box {
  max-width: 720px;
  padding: 3rem;
  border-radius: var(--web-radius-xl);
  background: color-mix(in srgb, var(--web-primary) 62%, transparent);
  border: 1px solid var(--web-glass-border);
  backdrop-filter: blur(12px);
}

/* Gallery */

.web-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 230px;
  gap: 1rem;
}

.web-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--web-radius-lg);
  box-shadow: var(--web-shadow-sm);
}

.web-gallery-grid img:nth-child(1),
.web-gallery-grid img:nth-child(5) {
  grid-row: span 2;
}

/* Amenities */

.web-amenity-card {
  border-radius: var(--web-radius-xl);
  padding: 2rem;
  background: var(--web-surface-bg);
  box-shadow: var(--web-shadow-sm);
  height: 100%;
  border: 1px solid var(--web-border-dynamic-soft);
}

.web-amenity-card i {
  color: var(--web-secondary-dark);
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.web-amenity-card h3 {
  font-size: var(--web-text-2xl);
}

.web-amenity-card p {
  color: var(--web-text-muted);
  line-height: 1.75;
}

.web-section-bg-primary .web-amenity-card,
.web-section-bg-dark .web-amenity-card {
  background: color-mix(in srgb, white 8%, transparent);
  border-color: color-mix(in srgb, var(--web-secondary) 24%, transparent);
}

.web-section-bg-primary .web-amenity-card h3,
.web-section-bg-dark .web-amenity-card h3 {
  color: var(--web-text-white);
}

.web-section-bg-primary .web-amenity-card p,
.web-section-bg-dark .web-amenity-card p {
  color: rgba(255, 255, 255, 0.76);
}

/* Booking */

.web-summary-box {
  background: var(--web-primary-soft);
  border-radius: var(--web-radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--web-border-dynamic-soft);
}

.web-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--web-border-dynamic-soft);
}

.web-summary-row:last-child {
  border-bottom: 0;
}

.web-summary-label {
  color: var(--web-text-muted);
  font-weight: 700;
}

.web-summary-value {
  color: var(--web-text-main);
  font-weight: 900;
  text-align: right;
}

.web-booking-tabs {
  display: flex;
  gap: 0.8rem;
  padding: 0.8rem;
  border-radius: var(--web-radius-pill);
  background: var(--web-section-bg);
  width: fit-content;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
  border: 1px solid var(--web-border-dynamic-soft);
}

.web-booking-tab-btn {
  border: 0;
  border-radius: var(--web-radius-pill);
  background: transparent;
  color: var(--web-text-main);
  font-weight: 900;
  min-height: 50px;
  padding: 0.8rem 1.4rem;
  transition: var(--web-transition-normal);
}

.web-booking-tab-btn.active,
.web-booking-tab-btn:hover {
  background: var(--web-primary);
  color: var(--web-text-white);
}

.web-booking-panel,
.web-booking-step {
  display: none;
}

.web-booking-panel.active,
.web-booking-step.active {
  display: block;
}

.web-availability-card {
  background: var(--web-surface-bg);
  border-radius: var(--web-radius-xl);
  box-shadow: var(--web-shadow-md);
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--web-border-dynamic-soft);
}

.web-availability-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.web-availability-card-body {
  padding: 1.4rem;
}

.web-availability-card h4 {
  font-size: var(--web-text-2xl);
}

.web-price-line {
  color: var(--web-secondary-dark);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.web-stay-pill,
.web-inline-alert,
.web-success-note {
  border-radius: var(--web-radius-pill);
  padding: 0.8rem 1rem;
  font-weight: 900;
}

.web-stay-pill {
  background: var(--web-secondary-soft);
  color: var(--web-secondary-dark);
}

.web-inline-alert {
  display: none;
  background: var(--web-warning-soft);
  color: var(--web-warning-dark);
  border-radius: var(--web-radius-md);
}

.web-inline-alert.show {
  display: block;
}

.web-success-note {
  background: var(--web-success-soft);
  color: var(--web-success-dark);
  border-radius: var(--web-radius-md);
}

.web-form-help {
  color: var(--web-text-muted);
  line-height: 1.7;
  font-size: var(--web-text-sm);
}

/* Modal */

.web-modal-content {
  border: 0;
  border-radius: var(--web-radius-xl);
  overflow: hidden;
  box-shadow: var(--web-shadow-xl);
}

.web-modal-image {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.web-modal-body {
  padding: 2.4rem;
}

.web-modal-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.9;
}

.web-room-feature-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.web-room-feature-list li {
  display: flex;
  gap: 0.7rem;
  color: var(--web-text-muted);
  margin-bottom: 0.75rem;
}

.web-room-feature-list i {
  color: var(--web-secondary-dark);
  margin-top: 0.2rem;
}

/* CTA */

.web-cta-split {
  border-radius: var(--web-radius-xl);
  background:
    radial-gradient(circle at top right, var(--web-secondary-overlay-soft), transparent 42%),
    linear-gradient(135deg, var(--web-primary), var(--web-primary-dark));
  color: var(--web-text-white);
  overflow: hidden;
  box-shadow: var(--web-shadow-xl);
}

.web-cta-split .row {
  min-height: 420px;
}

.web-cta-image {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  width: 100%;
}

.web-cta-content {
  padding: 3rem;
}

.web-cta-content h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.9;
}

.web-cta-content p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

/* Footer */

.web-footer {
  background:
    radial-gradient(circle at top right, var(--web-secondary-overlay-soft), transparent 34%),
    var(--web-dark-bg);
  color: var(--web-text-on-dark);
  padding: 5rem 0 1.5rem;
}

.web-footer-brand {
  font-family: var(--web-font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--web-text-white);
  margin-bottom: 1rem;
}

.web-footer-brand img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

.web-footer-text {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.web-footer-title {
  color: var(--web-secondary);
  font-size: var(--web-text-lg);
  margin-bottom: 1.25rem;
}

.web-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.web-footer-links li {
  margin-bottom: 0.7rem;
}

.web-footer-links a {
  color: rgba(255, 255, 255, 0.68);
  transition: var(--web-transition-fast);
}

.web-footer-links a:hover {
  color: var(--web-secondary);
}

.web-footer-socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.web-footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--web-radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--web-text-white);
  background: color-mix(in srgb, white 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--web-secondary) 22%, transparent);
  transition: var(--web-transition-normal);
}

.web-footer-social-link:hover {
  color: var(--web-primary-dark);
  background: var(--web-secondary);
  border-color: var(--web-secondary);
  transform: translateY(-3px);
}

.web-footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--web-secondary) 20%, transparent);
  margin-top: 3rem;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: var(--web-text-sm);
}

/* Responsive */

@media (max-width: 1199.98px) {
   .web-nav-shell {
        flex-wrap: wrap;
    }

    .navbar-collapse {
        flex-basis: 100%;
        width: 100%;
        margin-top: 1rem;
    }
  .web-navbar .web-nav-shell {
    border-radius: var(--web-radius-xl);
  }

  .web-navbar .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--web-glass-bg-strong);
    border: 1px solid var(--web-glass-border);
    border-radius: var(--web-radius-lg);
  }

  .web-navbar .nav-link {
    text-align: center;
    margin-bottom: 0.35rem;
  }

  .web-nav-btn {
    width: 100%;
  }
}

@media (max-width: 991.98px) {

  .web-home-hero,
  .web-page-hero {
    padding-top: 10rem;
  }

  .web-hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .web-editorial-image {
    min-height: auto;
  }

  .web-editorial-image img:first-child {
    width: 100%;
    height: 420px;
    border-radius: var(--web-radius-xl);
  }

  .web-editorial-image img:last-child {
    display: none;
  }

  /* Rooms Grid Container */
  .web-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
  }

  /* Individual Unified Card */
  .web-room-card {
    display: flex;
    flex-direction: column;
    background: var(--web-surface-bg, #ffffff);
    border: 1px solid var(--web-border-dynamic-soft, rgba(0, 0, 0, 0.08));
    border-radius: var(--web-radius-xl, 16px);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }

  .web-room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  /* Image Context & Glassmorphism Badge Placement */
  .web-room-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
  }

  .web-room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.5s ease;
  }

  .web-room-card:hover .web-room-img {
    scale: 1.05;
  }

  /* Floating Clean Badge */
  .web-room-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: var(--web-radius-pill, 50px);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  /* Content Area Configured to Push Actions Downward */
  .web-room-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .web-room-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--web-text-main, #222);
    line-height: 1.2;
  }

  .web-room-description {
    font-size: 0.925rem;
    color: var(--web-text-muted, #666);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Clips description to clean 3 lines max */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.25rem;
  }

  /* Pill Lists Details */
  .web-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    /* Aligns pills to bottom of text section */
    margin-bottom: 1.5rem;
  }

  .web-pill-list span {
    border-radius: var(--web-radius-pill, 50px);
    padding: 0.35rem 0.75rem;
    background: var(--web-secondary-soft, #f0f4f8);
    color: var(--web-secondary-dark, #1e6e99);
    font-weight: 600;
    font-size: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
  }

  /* Actions Bar Layout */
  .web-room-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0.75rem;
  }

  /* Component Button Utilities */
  .web-btn-solid-sm,
  .web-btn-ghost-sm {
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--web-radius-lg, 8px);
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .web-btn-solid-sm {
    background: var(--web-primary, #1e6e99);
    color: #fff;
    border: 1px solid transparent;
  }

  .web-btn-solid-sm:hover {
    background: var(--web-primary-dark, #144d6c);
    color: #fff;
  }

  .web-btn-ghost-sm {
    background: transparent;
    color: var(--web-text-main, #333);
    border: 1px solid var(--web-border-dynamic-soft, #ddd);
  }

  .web-btn-ghost-sm:hover {
    background: var(--web-secondary-soft, #f5f5f5);
  }

  /* Fallback Placeholder Utility */
  .web-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f4f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 2.5rem;
  }

  .web-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .web-fixed-band {
    background-attachment: scroll;
  }

  .web-section {
    padding: 5rem 0;
  }
}

@media (max-width: 575.98px) {
  .web-navbar {
    top: 8px;
  }

  .web-hero-title,
  .web-page-hero h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .web-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .web-btn-primary,
  .web-btn-outline,
  .web-btn-solid,
  .web-btn-ghost {
    width: 100%;
  }

  .web-gallery-grid {
    grid-template-columns: 1fr;
  }

  .web-gallery-grid img:nth-child(1),
  .web-gallery-grid img:nth-child(5) {
    grid-row: span 1;
  }

  .web-booking-tabs {
    width: 100%;
    border-radius: var(--web-radius-xl);
  }

  .web-booking-tab-btn {
    width: 100%;
  }

  .web-room-wide-content,
  .web-cta-content,
  .web-modal-body {
    padding: 1.5rem;
  }

  .web-section {
    padding: 4rem 0;
  }
}

.web-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, var(--web-secondary-overlay-soft), transparent 40%),
    linear-gradient(135deg, var(--web-primary), var(--web-primary-dark));
  color: var(--web-secondary);
  font-size: 3rem;
}

.web-editorial-image .web-image-placeholder {
  height: 540px;
  border-radius: 180px 180px var(--web-radius-lg) var(--web-radius-lg);
  box-shadow: var(--web-shadow-xl);
}

.web-editorial-image .web-image-placeholder.web-image-placeholder-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 260px;
  min-height: 260px;
  border-radius: var(--web-radius-xl);
  border: 10px solid var(--web-page-bg);
  box-shadow: var(--web-shadow-lg);
}

.web-cta-image-placeholder {
  height: 100%;
  min-height: 360px;
  width: 100%;
}


/* AUTH NAV STYLES */
.web-nav-user-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50px;
  padding: .35rem .75rem .35rem .35rem;
  color: inherit;
  transition: all .2s;
}

.web-nav-user-btn:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5);
}

.web-nav-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--web-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.web-nav-user-name {
  font-size: .85rem;
  font-weight: 600;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: white;
}

.web-nav-dropdown {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  min-width: 220px;
  padding: .5rem;
}

.web-nav-dropdown-header {
  padding: .5rem .75rem;
}

.web-nav-dropdown-email {
  font-size: .8rem;
  color: #64748b;
  word-break: break-all;
}

.web-nav-dropdown .dropdown-item {
  border-radius: 8px;
  padding: .6rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: #374151;
  transition: background .15s;
}

.web-nav-dropdown .dropdown-item:hover {
  background: #f1f5f9;
  color: var(--web-primary);
}

.web-nav-logout {
  color: #ef4444 !important;
}

.web-nav-logout:hover {
  background: #fef2f2 !important;
  color: #ef4444 !important;
}

.web-nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  color: white;
  padding: .45rem 1rem;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.web-nav-login-btn:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
  color: inherit;
}




.web-booking-progress {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
}

.web-step {
  flex: 1;
  text-align: center;
  opacity: .4;
  transition: .3s;
}

.web-step span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  background: #eaeaea;
  font-weight: 700;
}

.web-step.active {
  opacity: 1;
}

.web-step.active span {
  background: #c8a97e;
  color: #fff;
}

.web-step.completed span {
  background: #198754;
  color: #fff;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}


.booking-success-page {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--web-navbar-height) + 40px);
  min-height: 100vh;
}

/* ===========================
   BOOKING SUCCESS PAGE
=========================== */

.booking-success-page {
  min-height: 100vh;
  background: var(--web-page-bg);
  padding: calc(var(--web-navbar-height) + 40px) 16px 60px;
}

/* Loading */
.web-loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  color: var(--web-text-muted);
  text-align: center;
}

/* ===========================
   MAIN LAYOUT WRAPPER
=========================== */

.web-confirmation-page {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===========================
   SUCCESS BANNER
=========================== */

.web-success-banner {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--web-radius-xl);
  background: linear-gradient(135deg,
      var(--web-primary),
      var(--web-primary-dark));
  color: var(--web-text-white);
  box-shadow: var(--web-shadow-md);
}

.web-success-banner i {
  font-size: 42px;
  color: var(--web-secondary);
  margin-bottom: 10px;
}

.web-success-banner h2 {
  margin: 0;
  font-size: var(--web-text-3xl);
}

.web-success-banner p {
  margin-top: 6px;
  opacity: 0.85;
}

/* ===========================
   GUEST CARD
=========================== */

.web-guest-card {
  background: var(--web-surface-bg);
  border-radius: var(--web-radius-xl);
  padding: 24px;
  box-shadow: var(--web-shadow-md);
  border: 1px solid var(--web-border-light);
}

.web-guest-card h3 {
  margin-bottom: 16px;
}

/* GRID FIX */
.web-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.web-info-grid div {
  padding: 12px;
  border-radius: var(--web-radius-md);
  background: var(--web-surface-muted-bg);
  border: 1px solid var(--web-border-light);
}

.web-info-grid span {
  font-size: var(--web-text-xs);
  color: var(--web-text-muted);
}

.web-info-grid strong {
  display: block;
  font-size: var(--web-text-base);
  color: var(--web-primary-dark);
  margin-top: 4px;
}

/* ===========================
   RECEIPT CARD
=========================== */

.web-receipt {
  background: var(--web-surface-bg);
  border-radius: var(--web-radius-xl);
  box-shadow: var(--web-shadow-lg);
  border: 1px solid var(--web-border-light);
  overflow: hidden;
}

/* HOTEL HEADER */
.web-receipt-header {
  background: linear-gradient(135deg,
      var(--web-primary),
      var(--web-primary-dark));
  color: var(--web-text-white);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.web-hotel-branding {
  display: flex;
  gap: 14px;
  align-items: center;
}

.web-hotel-branding img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--web-radius-md);
  background: white;
}

.web-hotel-branding h2 {
  margin: 0;
  font-size: var(--web-text-xl);
}

.web-hotel-branding p,
.web-hotel-branding small {
  margin: 2px 0;
  opacity: 0.9;
  font-size: var(--web-text-sm);
}

/* ===========================
   RECEIPT BODY
=========================== */

.web-receipt-body {
  padding: 22px;
}

.web-receipt-body h3 {
  margin-bottom: 18px;
  color: var(--web-primary-dark);
}

/* ROW STYLE */
.web-receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--web-border-light);
  font-size: var(--web-text-sm);
}

.web-receipt-row strong {
  color: var(--web-text-muted);
}

.web-receipt-row span {
  color: var(--web-primary-dark);
  font-weight: 600;
}

/* ===========================
   ACTIONS
=========================== */

.web-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.web-nav-btn {
  padding: 12px 20px;
  border-radius: var(--web-radius-pill);
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--web-transition-normal);
  background: var(--web-secondary);
  color: var(--web-primary-dark);
}

.web-nav-btn:hover {
  transform: translateY(-2px);
  background: var(--web-secondary-hover);
  color: var(--web-text-white);
}

.web-receipt-section {
  margin-top: 2rem;
}

.web-section-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  color: var(--web-primary);
  border-bottom: 2px solid var(--web-border-light);
  padding-bottom: .5rem;
}

.web-receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--web-border-light);
}

.web-receipt-row span {
  color: var(--web-text-muted);
}

.web-receipt-row strong {
  text-align: right;
  color: var(--web-primary-dark);
}

.web-total-row {
  margin-top: .5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--web-primary);
}

.web-total-row strong {
  font-size: 1.2rem;
}

.web-receipt-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--web-border-light);
}

.web-receipt-footer p {
  margin-bottom: .35rem;
}

.web-receipt-footer small {
  color: var(--web-text-muted);
}

@media (max-width:576px) {

  .web-receipt-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .web-receipt-row strong {
    text-align: left;
  }
}

/* ===========================
   PRINT STYLES (IMPORTANT)
=========================== */
@media print {

  @page {
    size: A4;
    margin: 10mm;
  }

  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
  }

  html {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }


  body * {
    visibility: hidden !important;
  }

  .web-confirmation-page {
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .booking-success-page {
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }



  #receiptArea,
  #receiptArea *,
  #printArea,
  #printArea *{
    visibility: visible !important;
  }

  #receiptArea {
    box-sizing: border-box;
    width: 100% !important;
    max-width: 210mm;
    margin: 0 !important;
    padding: 0 !important;

  }

  .web-receipt {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    font-size: 12px !important;
    /* slightly smaller on print */
    line-height: 1.3 !important;
  }

  .web-receipt-header {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .web-success-banner,
  .web-actions,
  nav,
  footer,
  .navbar {
    display: none !important;
  }

  .web-receipt-section {
    margin-top: 12px !important;
    page-break-inside: avoid;
  }

  .web-receipt-row {
    page-break-inside: avoid;
    padding: 6px 0 !important;
  }

  .web-receipt-footer {
    margin-top: 16px !important;
    padding-top: 12px !important;
  }
}

/* ===========================
   PRINT STYLES END
=========================== */

.web-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* OUTLINE BUTTON */
.web-btn-outline {
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid var(--web-primary);
  background: transparent;
  color: var(--web-primary);
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.web-btn-outline:hover {
  background: var(--web-primary);
  color: white;
}

/* SOLID BUTTON */
.web-btn-solid {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--web-secondary);
  color: var(--web-primary-dark);
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.web-btn-solid:hover {
  background: var(--web-secondary-hover);
  color: white;
}

/* MOBILE STACK ONLY ON SMALL SCREENS */
@media (max-width: 480px) {
  .web-actions {
    flex-direction: column;
    width: 100%;
  }

  .web-actions button {
    width: 100%;
  }
}