    /* ================= ROOM DETAIL STYLES ================= */

    .room-detail {
      padding-top: calc(var(--header-height) + 1rem);
      background: var(--color-bg);
      min-height: 100vh;
    }

    .room-detail-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 1.5rem 3rem;
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-text-muted);
      font-size: 0.85rem;
      margin-bottom: 1.5rem;
      transition: color 0.2s;
    }

    .back-link:hover {
      color: var(--color-accent);
    }

    .room-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    /* Gallery Section */
    .room-gallery {
      position: relative;
    }

    .main-image {
      width: 100%;
      height: 400px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      margin-bottom: 1rem;
      position: relative;
    }

    .main-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 1rem;
      pointer-events: none;
    }

    .gallery-nav button {
      pointer-events: all;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(8px);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
    }

    .gallery-nav button:hover {
      background: rgba(0, 0, 0, 0.8);
      transform: scale(1.05);
    }

    .thumbnail-strip {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 0.75rem;
    }

    .thumbnail {
      height: 80px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.2s;
      opacity: 0.7;
    }

    .thumbnail:hover {
      opacity: 1;
      transform: translateY(-2px);
    }

    .thumbnail.active {
      border-color: var(--color-accent);
      opacity: 1;
    }

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

    /* Room Info Section */
    .room-info {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .room-header h1 {
      margin: 0 0 0.5rem;
      font-size: 2rem;
      font-family: 'Julius Sans One', sans-serif;
      color: var(--color-text-main);
    }

    .room-subtitle {
      color: var(--color-text-muted);
      font-size: 1rem;
      margin: 0;
    }

    .room-price {
      display: inline-flex;
      align-items: baseline;
      gap: 0.5rem;
      margin-top: 1rem;
      padding: 0.75rem 1.25rem;
      background: rgba(216, 177, 91, 0.12);
      border-radius: var(--radius-lg);
      border-left: 3px solid var(--color-accent);
    }

    .room-price .amount {
      font-size: 1.75rem;
      font-weight: 600;
      color: var(--color-accent);
    }

    .room-price .period {
      font-size: 0.9rem;
      color: var(--color-text-muted);
    }

    .room-description {
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.03);
      border-radius: var(--radius-lg);
    }

    .room-description h2 {
      margin: 0 0 0.75rem;
      font-size: 1.1rem;
      color: var(--color-text-main);
    }

    .room-description p {
      margin: 0 0 0.75rem;
      color: var(--color-text-muted);
      line-height: 1.7;
      font-size: 0.95rem;
    }

    .room-description p:last-child {
      margin-bottom: 0;
    }

    .room-specs {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 1rem;
    }

    .spec-item {
      padding: 1rem;
      background: rgba(255, 255, 255, 0.03);
      border-radius: var(--radius-lg);
      text-align: center;
    }

    .spec-item .icon {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .spec-item .label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-text-muted);
      margin-bottom: 0.25rem;
    }

    .spec-item .value {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--color-text-main);
    }

    .room-features {
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.03);
      border-radius: var(--radius-lg);
    }

    .room-features h2 {
      margin: 0 0 1rem;
      font-size: 1.1rem;
      color: var(--color-text-main);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
    }

    .feature-category h3 {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-accent);
      margin: 0 0 0.75rem;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .feature-list li {
      padding: 0.4rem 0;
      color: var(--color-text-muted);
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .feature-list li::before {
      content: "✓";
      color: var(--color-accent);
      font-weight: bold;
    }

    .booking-cta {
      margin-top: 2rem;
      padding: 2rem;
      background: linear-gradient(145deg, rgba(216, 177, 91, 0.12), rgba(216, 177, 91, 0.06));
      border-radius: var(--radius-xl);
      text-align: center;
      border: 1px solid rgba(216, 177, 91, 0.2);
    }

    .booking-cta h3 {
      margin: 0 0 0.75rem;
      color: var(--color-text-main);
      font-size: 1.25rem;
    }

    .booking-cta p {
      margin: 0 0 1.5rem;
      color: var(--color-text-muted);
      font-size: 0.95rem;
    }

    .booking-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Light theme adjustments */
    body[data-theme="light"] .room-detail {
      background: #ffffff;
    }

    body[data-theme="light"] .room-header h1 {
      color: #111317;
    }

    body[data-theme="light"] .room-description,
    body[data-theme="light"] .spec-item,
    body[data-theme="light"] .room-features {
      background: #f5f5f5;
    }

    body[data-theme="light"] .room-description h2,
    body[data-theme="light"] .room-features h2,
    body[data-theme="light"] .spec-item .value {
      color: #111317;
    }

    body[data-theme="light"] .room-description p,
    body[data-theme="light"] .room-subtitle,
    body[data-theme="light"] .spec-item .label,
    body[data-theme="light"] .feature-list li {
      color: #4a4a4a;
    }

    body[data-theme="light"] .booking-cta {
      background: linear-gradient(145deg, rgba(216, 177, 91, 0.15), rgba(216, 177, 91, 0.08));
    }

    body[data-theme="light"] .booking-cta h3 {
      color: #111317;
    }

    body[data-theme="light"] .booking-cta p {
      color: #4a4a4a;
    }

    /* Responsive */
    @media (min-width: 768px) {
      .main-image {
        height: 500px;
      }

      .thumbnail-strip {
        grid-template-columns: repeat(5, 1fr);
      }

      .thumbnail {
        height: 100px;
      }
    }

    @media (min-width: 1024px) {
      .room-content {
        grid-template-columns: 1.3fr 1fr;
        gap: 3rem;
      }

      .main-image {
        height: 600px;
      }

      .room-header h1 {
        font-size: 2.5rem;
      }
    }
 