:root{
  --brown-dark: #3f2317;    /* deep brown */
  --brown: #5a2f1f;         /* primary brown */
  --gold: #d19b33;          /* gold accent */
  --cream: #f5ead9;         /* light cream bg */
  --muted: #6b5b4a;
  --max-width: 1200px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,Arial,sans-serif;
  color:var(--brown-dark);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.container{width:94%;max-width:var(--max-width);margin:0 auto}

/* TOPBAR */
.topbar{
  background:linear-gradient(180deg,var(--brown) 0%, #4c2619 100%);
  color:#fff;
}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;padding:10px 0}
.brand{display:flex;align-items:center;gap:12px}
.logo{height:56px;width:auto}
.brand-text .hotel-name{font-weight:700;font-size:1.05rem}
.brand-text .tag{font-size:0.85rem;opacity:0.95}

/* contact cta */
.contact-cta{display:flex;gap:12px;align-items:center}
.contact-cta .phone{color:#fff;text-decoration:none;font-weight:600}
.btn {
  display: inline-flex;
   padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.06);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.btn-primary{background:var(--gold);color:var(--brown-dark);border:2px solid rgba(0,0,0,0.06)}
.btn-secondary{background:#fff;color:var(--brown-dark);border:2px solid rgba(0,0,0,0.06)}
.btn-white{background:#fff;color:var(--brown-dark);border:2px solid rgba(0,0,0,0.08)}

/* HERO */
.hero{position:relative;min-height:66vh;display:flex;align-items:center;color:#fff;overflow:hidden;padding:30px 0}
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(28,16,12,0.35) 0%, rgba(28,16,12,0.55) 70%);z-index:1}
.hero-inner{position:relative;z-index:2;display:flex;gap:30px;align-items:center;padding:40px 0}
.hero-left{flex:1;color:#fff}
.hero-right{width:320px;flex:0 0 320px}
.hero h1{font-size:2.6rem;margin:0 0 12px;letter-spacing:0.5px}
.lead{margin:0 0 16px;font-weight:500}
.hero-actions{display:flex;gap:12px;margin-bottom:14px}
.hero-facilities{list-style:none;color:#fff;opacity:0.95;padding:0;margin:0;display:flex;gap:10px;flex-wrap:wrap}
.hero-facilities li{background:rgba(255,255,255,0.06);padding:6px 10px;border-radius:6px;font-size:0.9rem}

/* flyer image */
.flyer{width:100%;height:auto;border-radius:8px;border:6px solid rgba(0,0,0,0.18)}

/* About + sections */
section{padding:44px 0}
h2{font-size:1.6rem;color:var(--brown-dark);margin-bottom:10px;justify-content:center}
.muted{color:var(--muted);margin-bottom:18px}

/* FACILITIES grid */
.facilities{background:var(--cream)}
.fac-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:14px}
.fac-item{background:linear-gradient(180deg,#ffffff, #f6efe6);padding:18px;border-radius:10px;border:1px solid rgba(0,0,0,0.04);font-weight:600;color:var(--brown-dark)}

/* === Rooms fix: preserve image aesthetics + ensure text visible on mobile === */

:root{
  --room-min-height-desktop: 220px;
  --room-min-height-mobile: 140px;
  --room-image-aspect: 16/10; /* suggested aspect for pleasing crop */
  --brown-dark: #3f2317;
  --muted: #6b5b4a;
  --accent-gold: #d19b33;
}

/* Make sure the card allows positioned children and stacking */
.room-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;            /* keep rounded corners */
  background: #fff;
  box-shadow: 0 10px 30px rgba(31,24,20,0.06);
  min-height: var(--room-min-height-desktop);
  position: relative;          /* create stacking context */
}

/* Ensure reverse works on large screens only */
.room-card.reverse {
  flex-direction: row-reverse;
}

/* Media container: fixed proportion on desktop, fluid on mobile */
.room-media {
  flex: 0 0 45%;
  min-width: 45%;
  max-width: 55%;
  display: block;
  position: relative;
  z-index: 1;                  /* image sits below body if overlap occurs */
  background: #f2f2f2;
  /* keep image container height consistent */
  min-height: var(--room-min-height-desktop);
  overflow: hidden;
}

/* The actual image: cover crop, maintain aspect ratio */
.room-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;           /* crop to fill */
  object-position: center;
  aspect-ratio: var(--room-image-aspect);
  -o-object-fit: cover;
  -webkit-object-fit: cover;
  /* avoid image stretching on weird devices */
  max-height: 520px;
}

/* Body area with explicit background and z-index so text is always visible */
.room-body {
  flex: 1 1 55%;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: var(--brown-dark);
  position: relative;          /* needed for z-index to matter */
  z-index: 2;                  /* ensure text is above image if overlap */
  min-height: var(--room-min-height-desktop);
  box-sizing: border-box;
}

/* Text styling for readability */
.room-title { margin: 0 0 8px; font-size: 1.15rem; font-weight:700; color:var(--brown-dark); }
.room-desc  { margin:0 0 12px; color:var(--muted); line-height:1.45; }
.room-features { margin:0 0 12px; padding-left:18px; color:var(--brown-dark); }

/* Buttons */
.room-cta { margin-top:auto; display:flex; gap:10px; align-items:center; }

/* ========== MOBILE ADAPTATIONS ========== */
@media (max-width: 880px) {

  /* Stack the card vertically (image first, then body) */
  .room-card,
  .room-card.reverse {
    flex-direction: column;
    min-height: auto;
    border-radius: 10px;
  }

  /* Full-width image container on mobile, with limited height */
  .room-media {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex-basis: auto;
    min-height: var(--room-min-height-mobile);
    height: clamp(140px, 26vw, 240px);  /* responsive height */
    overflow: hidden;
  }

  .room-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: var(--room-image-aspect);
    max-height: none;
  }

  /* Body below the image, always visible and properly padded */
  .room-body {
    order: 1;                    /* ensure text is below image */
    padding: 16px;
    min-height: auto;
  }

  /* Make titles and description comfortable on small screens */
  .room-title { font-size: 1.05rem; }
  .room-desc  { font-size: 0.95rem; }
  .room-features li { font-size: 0.96rem; margin-bottom:6px; }
}

/* ========== SMALLER PHONES ========== */
@media (max-width: 420px) {
  .room-media { height: 120px; }
  .room-title { font-size: 1rem; }
  .room-desc { font-size: 0.92rem; }
  .room-cta .btn { padding: 8px 12px; font-size: .95rem; }
}


/* Gallery */
/* Gallery grid (keep your existing grid rules) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  align-items: stretch;
}

/* Force consistent visible height & nice cropping */
.gallery-grid img {
  display: block;              /* remove inline-gap baseline issues */
  width: 100%;                 /* always fill the grid cell width */
  height: clamp(140px, 18vw, 220px); /* responsive height: min 140px, ideal 18vw, max 220px */
  object-fit: cover;           /* crop to fill without distortion */
  object-position: center;     /* center the crop */
  border-radius: 10px;         /* rounded corners */
  box-shadow: 0 8px 20px rgba(15,10,8,0.06);
  transition: transform .25s ease;
}

/* Optional: hover zoom slightly */
.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Smaller screens - keep height comfortable */
@media (max-width: 420px) {
  .gallery-grid img {
    height: 120px; /* mobile friendly */
    border-radius: 8px;
  }
}


/* Booking */
.booking-wrap{display:grid;grid-template-columns:1fr 320px;gap:20px;align-items:start}
.booking-form input, .booking-form select, .booking-form textarea{
  width:100%;padding:10px;border-radius:8px;border:1px solid #ddd;font-size:1rem
}
.booking-form .row{display:flex;gap:10px}
.booking-form .row input{flex:1}
.booking-actions{display:flex;gap:12px;align-items:center;margin-top:8px}

/* booking side */
.booking-side .side-card{background:#fff;padding:18px;border-radius:10px;box-shadow:0 6px 18px rgba(0,0,0,0.06)}

/* Footer */
.footer{background:var(--brown-dark);color:#fff;padding:28px 0;margin-top:8px}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:18px}
.footer a{color:var(--gold);text-decoration:none}
.footer .copyright{text-align:center;padding:12px 0;color:#e6d7bc;font-size:0.95rem}

/* small screens */
@media (max-width:880px){
  .hero-inner{flex-direction:column;align-items:flex-start}
  .hero-right{width:100%;order:2}
  .hero-left{order:1}
  .booking-wrap{grid-template-columns:1fr}
  .room-card{flex-direction:column}
  .topbar-inner{flex-direction:column;gap:10px;align-items:flex-start}
  .logo{height:48px}
}
/* Amenities section (cream background, white cards, gold icons) */
:root {
  --brown-dark: #3f2317;
  --gold: #d19b33;
  --cream: #fbf7f3;
  --muted: #6b5b4a;
  --card-shadow: 0 8px 22px rgba(31, 24, 20, 0.06);
}

.amenities-section { background: var(--cream); padding: 56px 0; }
.amenities-section .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* header */
.amenities-header { text-align: center; margin-bottom: 36px; }
.amenities-header h2 { font-size: 2.4rem; color: var(--brown-dark); margin-bottom: 8px; font-weight: 700; }
.amenities-sub { color: var(--muted); margin: 0 auto; max-width: 760px; }

/* grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 18px;
}

/* card */
.amenity-card {
  background: #fff;
  border-radius: 12px;
  padding: 26px 20px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
  min-height: 170px;
}

.amenity-card:focus-within,
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(31,24,20,0.12);
}

/* icon circle */
.icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(209,155,51,0.12); /* soft gold background */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(15,10,8,0.04);
}

.icon-svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* title + description */
.amenity-card h3 {
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin: 0 0 8px;
  font-weight: 700;
}

.amenity-card .muted {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.4;
  margin: 0;
  max-width: 220px;
}

/* responsiveness small screens */
@media (max-width: 640px) {
  .amenities-header h2 { font-size: 1.6rem; }
  .icon-wrap { width: 56px; height: 56px; }
  .icon-svg { width: 22px; height: 22px; }
  .amenity-card { padding: 18px; min-height: 150px; }
}
/* HERO - improved to avoid black flicker */
.hero {
  position: relative;
  min-height: 66vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 30px 0;
  background: url('assets/hero-poster.jpg') center/cover no-repeat; /* fallback background */
}

/* Keep the poster visible until video starts painting */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

  /* force GPU compositing to reduce flicker */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
}

/* overlay initially visible to mask possible black frames */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(28,16,12,0.35) 0%, rgba(28,16,12,0.55) 70%);
  transition: opacity .35s ease;
  opacity: 1;
  pointer-events: none;
  transform: translateZ(0); /* help with compositing */
}

/* when we remove/hide overlay, we set opacity to 0 and pointer-events none (done via JS) */
.hero-overlay.hidden {
  opacity: 0;
  visibility: visible; /* keep in flow for transitions */
}

/* content sits above overlay */
.hero-inner { position: relative; z-index: 2; display:flex; gap:30px; align-items:center; padding:40px 0; }


.booking {
  padding: 40px 0;
}
.booking h2 { margin-bottom: 6px; color: var(--brown-dark); }
.booking .muted { margin-bottom: 18px; color: var(--muted); }

/* layout: main form + aside card */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* form layout: rows are two-column by default */
.booking-form { width: 100%; }
.booking-form .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

/* select / input / textarea styling */
.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="email"],
.booking-form input[type="date"],
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e6e0d8;
  background: #fff;
  font-size: 0.98rem;
  color: var(--brown-dark);
  box-shadow: none;
  box-sizing: border-box;
  transition: border-color .12s ease, box-shadow .12s ease;
}

/* date inputs: make icons visible on some UAs — but keep consistent padding */
.booking-form input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; }

/* textarea spans full width */
.booking-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 88px;
  padding-top: 12px;
}

/* booking actions: keep buttons left on desktop */
.booking-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

/* Button styles */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


/* Primary gold */
.btn.btn-primary {
  background: var(--accent-gold);
  color: #fff;
  border-color: rgba(0,0,0,0.06);
}

/* White / neutral (for Book via WhatsApp) */
.btn.btn-white {
  background: #fff;
  color: var(--brown-dark);
  border-color: rgba(0,0,0,0.08);
}

/* Side card */
.booking-side .side-card {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(31,24,20,0.06);
  color: var(--brown-dark);
}
.booking-side .side-card h4 { margin-top: 0; text-align: center; font-size: 1.05rem; }

/* Focus styles for better accessibility */
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: rgba(209,155,51,0.95);
  box-shadow: 0 8px 20px rgba(209,155,51,0.08);
}

/* Responsive: collapse to single column on narrow screens */
@media (max-width: 880px) {
  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 12px;
  }

  /* rows become single column */
  .booking-form .row {
    grid-template-columns: 1fr;
  }

  /* make textarea and actions full width */
  .booking-form textarea { min-height: 92px; }

  .booking-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 6px;
  }

  .booking-actions .btn {
    width: 100%;
    display: inline-block;
    padding: 12px;
  }

  /* side card moves under the form naturally (grid stacks) */
}

/* Very small phones: slightly reduce padding */
@media (max-width: 420px) {
  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    padding: 10px 12px;
  }
  .btn { padding: 10px; font-size: 0.95rem; }
}



/* ========== LOCATION SECTION ========== */
.location {
  padding: 60px 0;
  background: #fff;
}

.location h2 {
  color: var(--brown-dark);
  margin-bottom: 10px;
  text-align: center;
}

.location .muted {
  text-align: center;
  margin-bottom: 30px;
  color: var(--muted);
}

/* Main grid: info + map */
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Info column */
.location-info {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(31,24,20,0.05);
  color: var(--brown-dark);
}

.location-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--brown-dark);
}

.location-info p {
  line-height: 1.6;
  margin-bottom: 18px;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.contact-list li {
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--brown-dark);
}
.contact-list a {
  color: var(--brown-dark);
  text-decoration: none;
}
.contact-list a:hover {
  color: var(--accent-gold);
}

/* Map frame */
.location-map {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(31,24,20,0.06);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  display: block;
  border-radius: 12px;
}

/* Buttons inside location section */
.location .btn {
  margin-top: 10px;
  padding: 10px 18px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 880px) {
  .location-wrap {
    grid-template-columns: 1fr;
  }

  .location-info {
    padding: 20px;
  }

  .location-map iframe {
    min-height: 280px;
  }

  .location .muted {
    text-align: left;
  }
}
/* ===== FAQ SECTION ===== */
.faq {
  padding: 60px 0;
  background: #fff;
}
.faq h2 {
  color: var(--brown-dark);
  text-align: center;
  margin-bottom: 10px;
}
.faq .muted {
  text-align: center;
  margin-bottom: 30px;
  color: var(--muted);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 10px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  color: var(--brown-dark);
  padding: 16px 0;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: var(--accent-gold);
}
.faq-answer {
  display: none;
  padding-bottom: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  display: block;
}

/* ===== HOW TO SECTION ===== */
.howto {
  padding: 60px 0;
  background: #faf8f6;
}
.howto h2 {
  text-align: center;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.howto .muted {
  text-align: center;
  margin-bottom: 40px;
}
.howto-steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.howto-step {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(31,24,20,0.05);
  padding: 18px 20px;
  transition: transform 0.2s ease;
}
.howto-step:hover {
  transform: translateY(-3px);
}
.step-number {
  background: var(--accent-gold);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.step-content h3 {
  color: var(--brown-dark);
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.step-content p {
  color: var(--muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .howto-steps {
    gap: 16px;
  }
  .faq h2, .howto h2 {
    font-size: 1.6rem;
  }
  .faq-question {
    font-size: 1rem;
  }
}
/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 60px 0;
  background: #faf8f6;
}

.testimonials h2 {
  color: var(--brown-dark);
  text-align: center;
  margin-bottom: 10px;
}

.testimonials .muted {
  text-align: center;
  margin-bottom: 40px;
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(31,24,20,0.06);
  padding: 22px 20px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(31,24,20,0.08);
}

.testimonial-text {
  font-style: italic;
  color: var(--brown-dark);
  line-height: 1.7;
  margin-bottom: 18px;
  position: relative;
}
.testimonial-text::before {
  content: "“";
  font-size: 2.2rem;
  color: var(--accent-gold);
  position: absolute;
  top: -8px;
  left: -6px;
  opacity: 0.4;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.author-info strong {
  color: var(--brown-dark);
  display: block;
  font-weight: 700;
  line-height: 1.2;
}

.author-info span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-grid {
    gap: 18px;
  }
  .testimonial-card {
    padding: 18px;
  }
}

/* ===== ROOM PRICE STYLING ===== */
.room-price {
  margin: 10px 0 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Inter', sans-serif;
}

.price-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.price-label {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

/* Add subtle separator before price on hover */
.room-card:hover .room-price .price-amount {
  color: var(--brown-dark);
}

/* For smaller screens */
@media (max-width: 768px) {
  .room-price {
    margin-bottom: 12px;
  }
  .price-amount {
    font-size: 1.3rem;
  }
  .price-label {
    font-size: 0.9rem;
  }
}
/* ===== PWA INSTALL POPUP ===== */

/* PWA bottom floating banner */
/* ===== FLOATING PWA INSTALL BANNER ===== */
.pwa-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: none;
  justify-content: center;
  pointer-events: none;
  animation: slideUp 0.4s ease-out forwards;
  background: transparent; /* ensures full-width container visibility */
}

.pwa-banner.show {
  display: flex !important;
}

.pwa-inner {
  width: 100%;
  max-width: 1100px;
  background: #fff;
  border-top: 3px solid var(--accent-gold, #d19b33);
  box-shadow: 0 -6px 25px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  pointer-events: auto;
  border-radius: 12px 12px 0 0;
}

.pwa-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pwa-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.pwa-text strong {
  display: block;
  color: var(--brown-dark, #2b1e16);
  font-size: 1rem;
  margin-bottom: 2px;
}

.pwa-sub {
  color: #6b625c;
  font-size: 0.9rem;
}

.pwa-actions {
  display: flex;
  gap: 10px;
}

/* Slide-up animation */
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile: stack content */
@media (max-width: 640px) {
  .pwa-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 10px;
    border-radius: 0;
  }
  .pwa-actions {
    width: 100%;
    justify-content: space-evenly;
  }
  .pwa-banner {
    bottom: 0;
  }
}
