@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- CUSTOM PROPERTIES (DESIGN SYSTEM) --- */
:root {
  --bg-deep: #060A13;
  --bg-card: #0C1424;
  --bg-nav: rgba(6, 10, 19, 0.85);
  --gold-primary: #D4AF37;
  --gold-dark: #AA7C11;
  --gold-light: #F3E5AB;
  --maroon: #610B14;
  --text-primary: #F9F8F6;
  --text-secondary: #A0B2C6;
  --text-muted: #6B7C96;
  --font-serif-royal: 'Cinzel', serif;
  --font-serif-classic: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  --border-gold: 1px solid rgba(212, 175, 55, 0.25);
  --border-gold-glow: 1px solid rgba(212, 175, 55, 0.6);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-gold-subtle: 0 4px 20px rgba(212, 175, 55, 0.08);
  --shadow-gold-glow: 0 0 15px rgba(212, 175, 55, 0.35);
  --shadow-velvet: 0 10px 30px rgba(0, 0, 0, 0.7);
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-primary) var(--bg-deep);
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Custom Scrollbar for Luxury Experience */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button, input, textarea, select {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  outline: none;
}

/* --- REUSABLE UTILITIES --- */
.royal-heading {
  font-family: var(--font-serif-royal);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA7C11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.subheading-classic {
  font-family: var(--font-serif-classic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.gold-divider::before, .gold-divider::after {
  content: "";
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.gold-divider svg {
  margin: 0 15px;
  fill: var(--gold-primary);
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.btn-primary {
  font-family: var(--font-serif-royal);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: var(--border-gold);
  background: linear-gradient(135deg, rgba(170, 124, 17, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  color: var(--gold-light);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(243, 229, 171, 0.2), transparent);
  transition: 0.6s ease;
}

.btn-primary:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold-glow);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-solid {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, #C5A059 100%);
  color: var(--bg-deep);
  border: none;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.25);
}

.btn-solid:hover {
  background: linear-gradient(135deg, #C5A059 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  color: var(--bg-deep);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  color: white;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  color: white;
  border-color: transparent;
}

/* --- STRUCTURE --- */
#announcement-bar {
  background-color: var(--maroon);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  z-index: 1000;
}

#header {
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0.8rem 4%;
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Design Styling */
.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-logo-img {
  height: 65px;
  width: auto;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-gold-subtle);
  transition: var(--transition-smooth);
  object-fit: contain;
}

.brand-logo-img:hover {
  transform: scale(1.04);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold-glow);
}

.logo-symbol {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-color: var(--maroon);
  border: var(--border-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold-subtle);
  transition: var(--transition-smooth);
}

.logo-symbol:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: var(--shadow-gold-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text h1 {
  font-family: var(--font-serif-royal);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA7C11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text span {
  font-family: var(--font-serif-royal);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-item {
  font-family: var(--font-serif-royal);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--gold-primary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-item:hover, .nav-item.active {
  color: var(--gold-primary);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

/* Action Icons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.action-btn {
  color: var(--text-secondary);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.action-btn:hover {
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--maroon);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Menu Toggle for Mobile */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  color: var(--gold-primary);
}

/* --- SPA DYNAMIC MOUNT AREA --- */
#app {
  flex: 1;
  position: relative;
}

.page-view {
  animation: pageFadeIn 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

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

/* --- HERO SECTION WITH VIDEO --- */
.hero-slider-section {
  position: relative;
  height: 85vh;
  width: 100%;
  overflow: hidden;
  border-bottom: var(--border-gold);
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(6,10,19,0.3) 0%, rgba(6,10,19,0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-logo-large {
  width: 120px;
  height: 120px;
  background-color: var(--maroon);
  border-radius: 12px;
  border: var(--border-gold-glow);
  box-shadow: 0 0 30px rgba(0,0,0,0.8), var(--shadow-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  animation: heroLogoPulse 3s ease-in-out infinite alternate;
}

@keyframes heroLogoPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  }
  100% {
    transform: scale(1.04);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.5);
  }
}

.hero-subtitle {
  font-family: var(--font-serif-royal);
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-title {
  font-family: var(--font-serif-royal);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-description {
  max-width: 700px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  font-weight: 300;
}

/* --- THE LEGACY OF Tanishq/Malabar (PHILOSOPHY) --- */
.legacy-section {
  padding: 8rem 4% 6rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.legacy-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
  text-align: left;
}

.legacy-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.legacy-text-block h3 {
  font-family: var(--font-serif-royal);
  font-size: 1.8rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.legacy-text-block p {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 0.95rem;
  font-weight: 300;
}

.legacy-stamp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.stamp-card {
  padding: 1.5rem;
  background-color: var(--bg-card);
  border: var(--border-gold);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.stamp-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold-subtle);
}

.stamp-card svg {
  fill: var(--gold-primary);
  margin-bottom: 1rem;
}

.stamp-card h4 {
  font-family: var(--font-serif-royal);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stamp-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.legacy-visual-block {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: var(--border-gold);
  box-shadow: var(--shadow-velvet);
}

.legacy-frame-video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* --- THEATRE VIEW FOR TRADITIONAL VIDEOS --- */
.video-theater-section {
  background-color: rgba(6, 10, 19, 0.6);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  padding: 7rem 4%;
}

.theater-container {
  max-width: 1300px;
  margin: 0 auto;
}

.theater-heading-block {
  text-align: center;
  margin-bottom: 4rem;
}

.theater-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 1.5rem;
}

.theater-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: var(--border-gold);
  cursor: pointer;
  box-shadow: var(--shadow-velvet);
}

.theater-card.large-main {
  grid-row: 1 / 3;
}

.theater-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s ease;
  filter: brightness(0.65);
}

.theater-card:hover .theater-video {
  filter: brightness(0.95) scale(1.02);
}

.theater-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(6,10,19,0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition-smooth);
}

.theater-card:hover .theater-card-overlay {
  padding-bottom: 2.3rem;
}

.theater-card-overlay h4 {
  font-family: var(--font-serif-royal);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.theater-card-overlay p {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.play-icon-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(6, 10, 19, 0.7);
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  box-shadow: var(--shadow-gold-glow);
  transition: var(--transition-smooth);
}

.theater-card:hover .play-icon-badge {
  background-color: var(--maroon);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 25px var(--gold-primary);
}

.play-icon-badge svg {
  fill: var(--gold-light);
  margin-left: 4px;
}

/* --- COLLECTION CARDS (GRID) --- */
.collections-section {
  padding: 8rem 4% 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.collections-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.collections-grid-royal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.collection-card-royal {
  position: relative;
  height: 480px;
  border-radius: 6px;
  overflow: hidden;
  border: var(--border-gold);
  box-shadow: var(--shadow-velvet);
  cursor: pointer;
}

.collection-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  filter: brightness(0.6);
}

.collection-card-royal:hover .collection-card-img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.collection-card-content {
  position: absolute;
  inset: 0;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  background: linear-gradient(to top, rgba(6, 10, 19, 0.95) 0%, rgba(6, 10, 19, 0.4) 40%, transparent 100%);
  z-index: 3;
}

.collection-card-content h3 {
  font-family: var(--font-serif-royal);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.collection-card-content p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.collection-card-btn {
  font-family: var(--font-serif-royal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-primary);
  padding-bottom: 4px;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(10px);
}

.collection-card-royal:hover .collection-card-btn {
  opacity: 1;
  transform: translateY(0);
}

.collection-card-royal:hover .collection-card-content {
  background: linear-gradient(to top, rgba(6, 10, 19, 0.98) 0%, rgba(6, 10, 19, 0.6) 60%, transparent 100%);
}

/* --- MASTERPIECE PRODUCT GALLERY (HOME & CATALOG) --- */
.masterpieces-section {
  padding: 4rem 4% 8rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-head-with-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4.5rem;
}

.section-head-text {
  max-width: 600px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.filter-group-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-tag {
  font-family: var(--font-serif-royal);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--text-secondary);
}

.filter-tag:hover, .filter-tag.active {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background-color: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.08);
}

.catalog-search-wrapper {
  position: relative;
  width: 320px;
}

.catalog-search-input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.8rem;
  background-color: var(--bg-card);
  border: var(--border-gold);
  border-radius: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.catalog-search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold-subtle);
}

.catalog-search-wrapper svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  fill: var(--text-muted);
}

.products-grid-royal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
}

/* Beautiful Product Card */
.product-card-royal {
  background-color: var(--bg-card);
  border: var(--border-gold);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-gold-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card-royal:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold-glow), var(--shadow-velvet);
}

.product-img-frame {
  height: 320px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: #0c1424;
}

.product-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card-royal:hover .product-img-main {
  transform: scale(1.05);
}

.product-quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 19, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-img-frame:hover .product-quick-view-overlay {
  opacity: 1;
}

.product-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--maroon);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  font-family: var(--font-serif-royal);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.product-card-details {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  position: relative;
}

.product-card-category {
  font-family: var(--font-serif-royal);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.product-card-title {
  font-family: var(--font-serif-royal);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  line-height: 1.4;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.product-card-title:hover {
  color: var(--gold-primary);
}

.product-card-sku {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}

.product-card-price-inquiry {
  font-family: var(--font-serif-royal);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.product-card-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: auto;
}

.product-card-actions button {
  flex: 1;
  font-family: var(--font-serif-royal);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.7rem 0.5rem;
}

/* Modal / Quick View Style */
.quickview-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 10, 19, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: modalFadeIn 0.3s ease forwards;
}

.quickview-modal-content {
  background-color: var(--bg-card);
  border: var(--border-gold-glow);
  width: 100%;
  max-width: 950px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-velvet);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.quickview-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  z-index: 5;
}

.quickview-close-btn:hover {
  color: var(--gold-primary);
  transform: rotate(90deg);
}

.quickview-gallery {
  height: 500px;
  background-color: #060a13;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: var(--border-gold);
}

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

.quickview-info-panel {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- IMMERSIVE DETAILED PRODUCT VIEW (AS PER USER REQUEST) --- */
.product-detail-view-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 4%;
}

.product-detail-grid-royal {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Dynamic Gallery (Image Focus - Center Stage!) */
.detail-stage-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-stage-image-wrapper {
  position: relative;
  height: 620px;
  border-radius: 6px;
  overflow: hidden;
  border: var(--border-gold-glow);
  box-shadow: var(--shadow-velvet), var(--shadow-gold-subtle);
  background-color: #0c1424;
}

.detail-stage-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.detail-stage-image-wrapper:hover .detail-stage-image {
  transform: scale(1.08);
}

.detail-magnify-hint {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(6,10,19,0.75);
  border: 1px solid var(--gold-primary);
  border-radius: 30px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.detail-magnify-hint svg {
  fill: var(--gold-primary);
}

/* Elegant Clean Info Panel */
.detail-info-panel {
  padding: 2rem 0;
  position: sticky;
  top: 150px;
}

.detail-category-badge {
  font-family: var(--font-serif-royal);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.detail-title {
  font-family: var(--font-serif-royal);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.detail-sku {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 2.2rem;
}

.detail-price-status {
  font-family: var(--font-serif-royal);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 2.2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 1.5rem;
}

.detail-highlights {
  margin-bottom: 2.5rem;
}

.detail-highlights h3 {
  font-family: var(--font-serif-royal);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.detail-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.spec-item {
  border-left: 1.5px solid var(--gold-primary);
  padding-left: 12px;
}

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

.spec-val {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.detail-actions-panel {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3.5rem;
}

.detail-action-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.2rem;
}

.detail-actions-panel button {
  padding: 1.1rem 2rem;
}

/* Service Highlights under details */
.detail-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 2rem;
}

.trust-badge-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-badge-item svg {
  fill: var(--gold-primary);
}

.trust-badge-item span {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* --- ABOUT US STORY PAGE --- */
.about-page-wrapper {
  padding: 6rem 4% 8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero-story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
}

.about-heritage-title h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.about-content-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-content-block p {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 1rem;
  font-weight: 300;
}

.about-highlight-quote {
  font-family: var(--font-serif-classic);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--gold-light);
  border-left: 3px solid var(--gold-primary);
  padding-left: 20px;
  margin: 1.5rem 0;
}

.about-image-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.collage-item {
  border-radius: 6px;
  overflow: hidden;
  border: var(--border-gold);
  box-shadow: var(--shadow-velvet);
}

.collage-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.about-timeline-section {
  text-align: center;
  margin-top: 8rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4.5rem;
  position: relative;
}

.timeline-grid::after {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary) 50%, transparent);
  z-index: 1;
}

.timeline-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-year {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif-royal);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  box-shadow: var(--shadow-gold-glow);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.timeline-node:hover .timeline-year {
  background-color: var(--maroon);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.timeline-node h4 {
  font-family: var(--font-serif-royal);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.timeline-node p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
}

/* --- CONTACT US PAGE --- */
.contact-page-wrapper {
  padding: 6rem 4% 8rem;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-panel-royal {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-card {
  display: flex;
  gap: 20px;
  padding: 2rem;
  background-color: var(--bg-card);
  border: var(--border-gold);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.contact-detail-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-subtle);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  fill: var(--gold-primary);
}

.contact-card-info h4 {
  font-family: var(--font-serif-royal);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.contact-card-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card-info a:hover {
  color: var(--gold-primary);
}

.store-hours-block h4 {
  font-family: var(--font-serif-royal);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  padding: 0.6rem 0;
  font-size: 0.85rem;
}

.hours-day {
  color: var(--text-secondary);
}

.hours-time {
  font-weight: 500;
  color: var(--gold-light);
}

.contact-form-panel-royal {
  background-color: var(--bg-card);
  border: var(--border-gold);
  border-radius: 6px;
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-velvet);
}

.contact-form-panel-royal h3 {
  font-family: var(--font-serif-royal);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  text-align: center;
}

.royal-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-group-float {
  position: relative;
  width: 100%;
}

.form-input-royal {
  width: 100%;
  padding: 1rem 0 0.6rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.form-input-royal:focus {
  border-bottom-color: var(--gold-primary);
}

.form-label-royal {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-smooth);
  text-transform: uppercase;
}

.form-input-royal:focus ~ .form-label-royal,
.form-input-royal:not(:placeholder-shown) ~ .form-label-royal {
  top: -8px;
  font-size: 0.65rem;
  color: var(--gold-primary);
}

.map-wrapper-royal {
  margin-top: 8rem;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  border: var(--border-gold-glow);
  box-shadow: var(--shadow-velvet);
}

/* --- VELVET SLIDE OUT SHOPPING CART --- */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 10, 19, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.cart-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer-royal {
  position: fixed;
  top: 0;
  right: -480px;
  width: 480px;
  height: 100%;
  background-color: var(--bg-deep);
  border-left: var(--border-gold-glow);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-drawer-backdrop.active .cart-drawer-royal {
  right: 0;
}

.cart-drawer-header {
  padding: 2rem;
  border-bottom: var(--border-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-family: var(--font-serif-royal);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.cart-drawer-close {
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.cart-drawer-close:hover {
  color: var(--gold-primary);
  transform: rotate(90deg);
}

.cart-items-wrapper {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Empty Cart View */
.cart-empty-message {
  text-align: center;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cart-empty-message svg {
  fill: var(--text-muted);
}

.cart-empty-message p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Cart Item Card */
.cart-item-card {
  display: flex;
  gap: 15px;
  background-color: var(--bg-card);
  border: var(--border-gold);
  border-radius: 4px;
  padding: 1rem;
  position: relative;
}

.cart-item-img {
  width: 90px;
  height: 90px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  flex-shrink: 0;
}

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

.cart-item-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.cart-item-details h4 {
  font-family: var(--font-serif-royal);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.cart-item-details p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.cart-qty-counter {
  display: flex;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 2px;
  width: max-content;
}

.qty-counter-btn {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--gold-light);
  transition: var(--transition-smooth);
}

.qty-counter-btn:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
}

.qty-counter-value {
  width: 30px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.cart-item-remove {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.cart-item-remove:hover {
  color: var(--maroon);
}

.cart-drawer-footer {
  padding: 2.5rem 2rem;
  border-top: var(--border-gold);
  background-color: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-serif-royal);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.cart-summary-line span:first-child {
  color: var(--text-secondary);
}

.cart-summary-line span:last-child {
  color: var(--gold-light);
  font-weight: 600;
}

/* --- LAZY TRANSITIONS FOR TABS/SPA VIEWS --- */
.view-transition-out {
  animation: pageFadeOut 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes pageFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-15px);
  }
}

/* --- FOOTER STYLING --- */
#footer {
  background-color: #04070d;
  border-top: var(--border-gold);
  padding: 6rem 4% 3rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.footer-brand-column p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

.footer-social-icons {
  display: flex;
  gap: 1.2rem;
}

.social-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.social-circle-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: var(--shadow-gold-subtle);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-family: var(--font-serif-royal);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--gold-primary);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-links-list a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-links-list a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-contact-item svg {
  fill: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a:hover {
  color: var(--gold-primary);
}

.footer-copyright {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-copyright a:hover {
  color: var(--gold-primary);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1200px) {
  .products-grid-royal {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
  .collections-grid-royal {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  #header {
    padding: 1rem 5%;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: var(--bg-deep);
    border-top: var(--border-gold);
    flex-direction: column;
    padding: 3rem 0;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 998;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-actions {
    gap: 1.2rem;
  }
  .legacy-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .legacy-visual-block {
    order: -1;
  }
  .legacy-frame-video {
    height: 380px;
  }
  .theater-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }
  .theater-card.large-main {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .product-detail-grid-royal {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .detail-stage-image-wrapper {
    height: 500px;
  }
  .detail-info-panel {
    position: static;
  }
  .about-hero-story {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-image-collage {
    order: -1;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .timeline-grid::after {
    display: none;
  }
  .timeline-node {
    text-align: center;
  }
  .timeline-year {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .products-grid-royal {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .collections-grid-royal {
    grid-template-columns: 1fr;
  }
  .collection-card-royal {
    height: 350px;
  }
  .theater-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }
  .theater-card.large-main {
    grid-column: auto;
    grid-row: auto;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-form-panel-royal {
    padding: 3rem 1.8rem;
  }
  .cart-drawer-royal {
    width: 100%;
    right: -100%;
  }
  .detail-action-row {
    grid-template-columns: 1fr;
  }
  .quickview-modal-content {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
  .quickview-gallery {
    height: 300px;
    border-right: none;
    border-bottom: var(--border-gold);
  }
  .quickview-info-panel {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .products-grid-royal {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .brand-text h1 {
    font-size: 1.1rem;
  }
  .brand-text span {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
  }
  .logo-symbol {
    width: 45px;
    height: 45px;
  }
  #header {
    padding: 0.8rem 1rem;
  }
}
