/* === FINAL Warm Professional Theme with Working Video Hero === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #faf9f6;
  color: #444;
  line-height: 1.7;
  overflow-x: hidden;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

/* Keyframes */
@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cardAppear {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #eee;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.scrolled {
  padding: 15px 5%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
nav .logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #d4a017;
  text-decoration: none;
}
nav ul.nav-links {
  display: flex;
  gap: 45px;
  list-style: none;
}
nav ul.nav-links li a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
nav ul.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0; height: 2px;
  bottom: -8px; left: 50%;
  background: #d4a017;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}
nav ul.nav-links li a:hover { color: #d4a017; }
nav ul.nav-links li a:hover::after { width: 100%; }

/* HERO WITH VIDEO BACKGROUND – CINEMATIC EDITION */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  animation: heroReveal 1.5s ease;
}

/* FIXED: Proper z-index layering */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  
  /* Cinematic enhancements */
  filter: brightness(1.05) contrast(1.12) saturate(1.15);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

/* Warm overlay – now properly layered */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
}

/* Content now properly above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 900px;
}

/* Luxury heading with glow and float animation */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: 
    slideUp 1.2s ease 0.5s forwards,
    heroFloat 6s ease-in-out infinite 2s;
  text-shadow: 0 5px 25px rgba(0,0,0,0.35);
}

.hero p {
  font-size: 24px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1.2s ease 0.9s forwards;
  text-shadow: 0 3px 15px rgba(0,0,0,0.25);
}

/* Premium button with glassmorphism and shine effect */
.hero-btn {
  display: inline-block;
  background: #d4a017;
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1.2s ease 1.2s forwards;
  
  /* New premium effects */
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Shine effect */
.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transition: 0.8s;
}

.hero-btn:hover::before {
  left: 180%;
}

.hero-btn:hover {
  background: #b58900;
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(212,160,23,0.45);
}

/* Rest of your sections (unchanted) */
.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #333;
  margin-bottom: 60px;
  position: relative;
}
.section-title::after {
  content: ''; width: 80px; height: 3px;
  background: #d4a017;
  position: absolute;
  bottom: -15px; left: 50%;
  transform: translateX(-50%);
}

.product-section { padding: 100px 5%; background: #fff; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.product-card { background: white; border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0; transform: translateY(40px);
  animation: cardAppear 0.8s ease forwards;
}
.product-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(0,0,0,0.12); }
.product-card img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover img { transform: scale(1.08); }
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.contact-container { padding: 100px 5%; max-width: 1200px; margin: 0 auto; }
.contact-container .grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* Footer */
footer {
  background: linear-gradient(135deg, #d4a017, #b58900);
  color: white;
  text-align: center;
  padding: 50px 20px;
  font-size: 15px;
}

/* Mobile fixes */
@media (max-width: 768px) {
  .hero h1 { font-size: 48px; }
  .hero p { font-size: 18px; }
  .hero-btn { padding: 14px 30px; font-size: 16px; }
  .grid, .contact-container .grid { grid-template-columns: 1fr; }
  nav ul.nav-links { gap: 25px; }
  nav .logo { font-size: 28px; }
}

/* CONTACT PAGE SPECIFIC STYLES */
.contact-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background: 
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)),
    url('https://images.pexels.com/photos/1957478/pexels-photo-1957478.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.contact-hero .hero-content h1 {
  font-size: 64px;
  animation: slideUp 1s ease 0.5s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.contact-hero .hero-content p {
  font-size: 22px;
  max-width: 700px;
  opacity: 0;
  animation: slideUp 1s ease 0.8s forwards;
  transform: translateY(30px);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3,
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

.contact-info .intro {
  color: #666;
  margin-bottom: 40px;
  font-size: 17px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 17px;
}

.info-item i {
  font-size: 24px;
  color: #d4a017;
  margin-top: 4px;
}

.info-item a {
  color: #d4a017;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  transition: all 0.3s ease;
}

.submit-btn {
  background: #d4a017;
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
}

.submit-btn:hover {
  background: #b58900;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(212,160,23,0.3);
}

.success-message {
  background: #f0f8f0;
  color: #2e7d32;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #a5d6a7;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-hero h1 { font-size: 48px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 60px; }
  .contact-hero { height: 50vh; }
}

/* === PREMIUM CONTACT FORM UI === */
.form-subtitle {
  color: #777;
  margin-bottom: 30px;
  font-size: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

.required { color: #d4a017; }
.optional { color: #999; font-weight: normal; }

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #d4a017;
  font-size: 18px;
  z-index: 2;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 16px 16px 16px 50px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  background: #fdfdfb;
  transition: all 0.3s ease;
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 140px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: #d4a017;
  background: white;
  box-shadow: 0 0 0 5px rgba(212, 160, 23, 0.12);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: #aaa;
}

/* Submit Button */
.submit-btn {
  background: #d4a017;
  color: white;
  padding: 18px 48px;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(212, 160, 23, 0.3);
}

.submit-btn:hover {
  background: #b58900;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(212, 160, 23, 0.4);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Success Message */
.success-message {
  background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
  color: #2e7d32;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  font-size: 18px;
  border: 2px solid #a5d6a7;
  margin-top: 20px;
  animation: slideUp 0.6s ease;
}

.success-message i {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

/* PRODUCTS PAGE – LUXURY GRID */
.page-hero {
  height: 60vh;
  min-height: 500px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
              url('https://images.pexels.com/photos/6678383/pexels-photo-6678383.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
  display: flex; align-items: center; justify-content: center; text-align: center; color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  background: white;
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,160,23,0.9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  transition: 0.4s ease;
}

.product-card:hover .overlay { opacity: 1; }

.product-info {
  padding: 25px;
  text-align: center;
}

.product-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.price { font-size: 26px !important; color: #d4a017 !important; font-weight: 700; }
.desc { color: #666; margin-top: 8px; }

/* PRODUCT DETAIL PAGE */
.product-detail .container {
  max-width: 1300px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 20px;
}

.main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-thumbs {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.gallery-thumbs img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid transparent;
}

.price-large {
  font-size: 42px;
  color: #d4a017;
  font-weight: 700;
  margin: 20px 0;
}

.sku { color: #888; font-size: 15px; margin-bottom: 20px; }

.features p {
  margin: 12px 0;
  font-size: 17px;
  color: #444;
}

.cta-btn {
  margin-top: 30px;
  background: #d4a017;
  color: white;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

.cta-btn:hover {
  background: #b58900;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212,160,23,0.4);
}

@media (max-width: 968px) {
  .product-detail .container { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 48px; }
}

/* ==== SAINTS NAV – CREAM GREY EDITION ==== */
.saints-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 1.8rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); /* FIXED: removed duplicate blur() */
  border-bottom: 1px solid rgba(220, 210, 190, 0.15);
  z-index: 1000;
  transition: all 0.4s ease;
}

.saints-nav.scrolled {
  padding: 1rem 5%;
  background: rgba(12, 12, 12, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

/* Logo – warm cream to soft gold gradient */
.logo {
  font-size: 2.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5e6d3, #e8d5b8, #d4c2a3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: transform 0.3s, background 0.5s;
}
.logo:hover { 
  transform: scale(1.08);
  background: linear-gradient(135deg, #faf0e0, #ffe8c2, #d4c2a);
}

/* Links – soft warm greys with cream underline */
.nav-links a {
  position: relative;
  color: #e8e8e8;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -10px;
  left: 50%;
  background: #f5e6d3;
  transition: width 0.4s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(245, 230, 211, 0.4);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: #f5e6d3;
  text-shadow: 0 0 18px rgba(245, 230, 211, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  margin-left: auto;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #f5e6d3;
  border-radius: 3px;
  transition: all 0.4s ease;
}

.hamburger:hover span {
  background: #d4a017;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: #d4a017;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: #d4a017;
}

/* View More button shared by product collection pages */
.view-more-btn {
  background: #d4a017;
  color: #fff;
  padding: 14px 42px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(212, 160, 23, 0.3);
  border: 1px solid #d4a017;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.view-more-btn:hover {
  background: #b8890f;
  border-color: #b8890f;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 160, 23, 0.4);
}

.view-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 8px 20px rgba(212, 160, 23, 0.15);
}

/* Terra AI support button: placed beneath the WhatsApp button */
.terra-ai-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2d231c;
  color: #fff;
  border: 2px solid #d4a017;
  box-shadow: 0 8px 22px rgba(45, 35, 28, 0.28);
  font-size: 28px;
  text-decoration: none;
  z-index: 1001;
  transition: transform 0.3s ease, background 0.3s ease;
}

.terra-ai-float:hover {
  background: #d4a017;
  transform: scale(1.08);
}

.terra-support-open { overflow: hidden; }
.terra-support-window {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 16, 13, 0.58);
  z-index: 10000;
}
.terra-support-window[hidden] { display: none; }
.terra-support-panel {
  width: min(100%, 460px);
  height: min(80vh, 680px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}
.terra-support-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #2d231c;
  color: #fff;
}
.terra-support-header strong,
.terra-support-header span { display: block; }
.terra-support-header span { color: #ead7b8; font-size: 0.78rem; }
.terra-support-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.terra-support-close:hover { background: rgba(255, 255, 255, 0.14); }
.terra-support-frame { width: 100%; flex: 1; border: 0; background: #fff; }
.terra-support-fallback { margin: 0; padding: 10px 14px; font-size: 0.78rem; text-align: center; color: #5a4d45; }
.terra-support-fallback a { color: #a67608; }

.whatsapp-float,
a[href*="wa.me"][style*="position:fixed"] {
  bottom: 104px !important;
}

@media (max-width: 900px) {
  nav { padding: 14px 5%; }
  nav .logo { font-size: 28px; }
  .hamburger {
    display: flex;
    position: relative;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 8px;
  }
  nav ul.nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(20, 20, 20, 0.98);
    border-top: 1px solid rgba(220, 210, 190, 0.15);
    border-bottom: 1px solid rgba(220, 210, 190, 0.15);
    padding: 10px 5% 16px;
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.5);
  }
  nav ul.nav-links.open { display: flex; }
  nav ul.nav-links li a { display: block; padding: 12px 0; color: #e8e8e8; }
  nav ul.nav-links li a::after { bottom: 7px; left: 0; transform: none; }
}

/* Extra-small Android screens, including 184 x 592 px */
@media (max-width: 240px) {
  nav {
    min-height: 58px;
    padding: 8px;
    gap: 6px;
  }

  nav .logo {
    min-width: 0;
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
  }

  .hamburger {
    display: flex;
    flex: 0 0 42px;
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 8px;
    align-items: center;
    justify-content: center;
  }

  .hamburger span {
    width: 24px;
    height: 3px;
  }

  .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  nav ul.nav-links {
    padding: 8px;
  }

  nav ul.nav-links li a {
    font-size: 0.92rem;
    padding: 10px 0;
  }

  .terra-ai-float {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .whatsapp-float,
  a[href*="wa.me"][style*="position:fixed"] {
    right: 12px !important;
    bottom: 66px !important;
  }
  .terra-support-window { padding: 8px; }
  .terra-support-panel { min-height: 360px; height: calc(100svh - 16px); border-radius: 12px; }
}
