:root {
  --color-dark: #0a0a0a;
  --color-darker: #050505;
  --color-light: #f5f5f5;
  --color-gray: #a3a3a3;
  --color-gold: #d4af37;
  --color-gold-hover: #f1c40f;
  --font-primary: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-dark);
  color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animation Classes */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 1;
  transform: translateX(0);
  transition: var(--transition-slow);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 1;
  transform: translateX(0);
  transition: var(--transition-slow);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 1;
  transform: scale(1);
  transition: var(--transition-slow);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-gold);
  font-weight: 400;
}

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

a:hover {
  color: var(--color-gold);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--color-gold);
  color: var(--color-dark);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

header .logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

header .logo-container img {
  height: 85px;  /* Significantly larger than the letters */
  object-fit: contain;
}

header .logo-container span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 5px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-darker);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
    z-index: 200;
  }
  
  header nav.active {
    right: 0;
  }
  
  header nav ul {
    flex-direction: column;
    gap: 20px;
  }
  
  header nav a {
    font-size: 1.1rem;
  }
  
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 150;
  }
  
  .nav-overlay.active {
    display: block;
  }
}

header nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main Area */
main {
  min-height: 100vh;
}

/* Sections */
section {
  padding: 120px 5% 60px 5%;
}

/* Hero sections should be full height without padding */
section.hero {
  padding: 0;
  height: 100vh;
}

/* First section on each page should have more top padding (but not hero sections) */
section:first-of-type:not(.hero) {
  padding-top: 140px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  padding: 100px 5% 20px 5%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-gray);
}

.breadcrumb a {
  color: var(--color-gray);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb .separator {
  color: var(--color-gray);
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--color-gold);
  font-weight: 500;
}

/* Social Media Sharing */
.social-share {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
}

.social-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--color-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}

.social-share-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.social-share-btn.facebook:hover {
  background: rgba(66, 103, 178, 0.2);
  border-color: #4267B2;
}

.social-share-btn.twitter:hover {
  background: rgba(29, 161, 242, 0.2);
  border-color: #1DA1F2;
}

.social-share-btn.linkedin:hover {
  background: rgba(0, 119, 181, 0.2);
  border-color: #0077B5;
}

.social-share-btn.pinterest:hover {
  background: rgba(189, 8, 28, 0.2);
  border-color: #BD081C;
}

.share-container {
  text-align: center;
  padding: 20px 0;
}

.share-container h4 {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}

.hero::after {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.hero img.bg {
  position: absolute;
  top: 0; left: 0; 
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
  transition: transform 0.6s ease;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Hero image loading animation */
.hero img.bg:not(.loaded) {
  opacity: 0;
  transform: scale(1.02);
}

.hero img.bg.loaded {
  opacity: 1;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

/* Parallax effect on scroll */
.hero img.bg.parallax {
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--color-gray);
  margin-bottom: 40px;
}

/* Grid / Showroom */
.showroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.product-card {
  background: var(--color-darker);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
}

.product-media {
  height: 400px;
  overflow: hidden;
  position: relative;
}

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

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

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

.product-category {
  font-size: 0.8rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.product-name {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.product-price {
  color: var(--color-light);
  font-size: 1.1rem;
}

.product-hidden-price {
  color: var(--color-gray);
  font-style: italic;
  font-size: 0.9rem;
}

/* Product Detail Page */
.product-detail-section {
  padding-top: 150px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.detail-media {
  position: sticky;
  top: 120px;
}

.detail-media img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.detail-info h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.detail-info .price {
  font-size: 1.5rem;
  color: var(--color-light);
  margin-bottom: 30px;
  display: block;
}

.detail-info .desc {
  font-size: 1.1rem;
  color: var(--color-gray);
  margin-bottom: 40px;
  line-height: 1.8;
}

.specs-box {
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 24px;
  margin-bottom: 40px;
}

.specs-box h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.specs-box ul {
  list-style: none;
}

.specs-box li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--color-gray);
}

.specs-box li:last-child {
  border-bottom: none;
}

.specs-box span.val {
  color: var(--color-light);
}

.actions {
  display: flex;
  gap: 16px;
}

/* Footer */
footer {
  background: var(--color-darker);
  padding: 60px 5% 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
  color: var(--color-gray);
}

.copyright {
  text-align: center;
  color: var(--color-gray);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}

/* Filters */
.filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  color: var(--color-gray);
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 4px;
  position: relative;
  font-family: var(--font-primary);
}

.filter-btn.active {
  color: var(--color-gold);
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--color-gold);
  transition: var(--transition);
}

.filter-btn.active::after, .filter-btn:hover::after {
  width: 100%;
}

@media (max-width: 900px) {
  .product-detail-section {
    grid-template-columns: 1fr;
  }
  .detail-media {
    position: relative;
    top: 0;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .showroom-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .bespoke-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  header {
    padding: 16px 5%;
  }
  
  header .logo-container img {
    height: 60px;
  }
  
  header .logo-container span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .showroom-grid {
    grid-template-columns: 1fr;
  }
  
  .product-media {
    height: 300px;
  }
  
  section {
    padding: 40px 5%;
  }
  
  .hero {
    padding: 0 5%;
  }
}

/* Bespoke Page */
.bespoke-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.bespoke-intro p {
  color: var(--color-gray);
  font-size: 1.1rem;
}

.bespoke-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.bespoke-media {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bespoke-media img, .bespoke-media iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border: none;
}

.bespoke-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.bespoke-text p {
  color: var(--color-gray);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.appointment-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-darker);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 40px;
  border-radius: 4px;
}

.appointment-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

/* Showroom Section Styles */
.showroom-section {
  margin: 80px 0 40px;
  padding: 60px 5%;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 8px;
}

.showroom-content {
  max-width: 800px;
  margin: 0 auto;
}

.showroom-content h3 {
  color: var(--color-gold);
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.showroom-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 4px;
  border-left: 3px solid var(--color-gold);
}

.feature h4 {
  color: var(--color-gold);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature p {
  color: var(--color-light);
  line-height: 1.6;
  margin: 0;
}

/* Heritage Collection Styles */
.heritage-collection {
  margin: 60px 0;
  padding: 40px 5%;
}

.artifact-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.artifact-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.placeholder-box {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--color-gold);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  min-width: 200px;
}

.ph-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.ph-text {
  color: var(--color-light);
  font-size: 1.1rem;
}

.artifact-description {
  background: rgba(0, 0, 0, 0.03);
  padding: 30px;
  border-radius: 8px;
  border-left: 3px solid var(--color-gold);
}

.artifact-description h3 {
  color: var(--color-gold);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.artifact-description p {
  color: var(--color-light);
  line-height: 1.6;
  margin: 0;
}

/* Gems into Jewellery Story Section Styles */
.gems-jewellery-story {
  margin: 80px 0 40px;
  padding: 60px 5%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.gems-jewellery-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.3;
}

.story-hero {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.story-content {
  max-width: 700px;
  margin: 0 auto;
}

.story-content h2 {
  color: var(--color-gold);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.story-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-gray);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.story-narrative {
  margin-top: 60px;
}

.narrative-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.narrative-flow:nth-child(1) { animation-delay: 0.2s; }
.narrative-flow:nth-child(2) { animation-delay: 0.4s; }
.narrative-flow:nth-child(3) { animation-delay: 0.6s; }
.narrative-flow:nth-child(4) { animation-delay: 0.8s; }

.story-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.story-image:hover {
  transform: scale(1.02);
}

.story-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.story-text {
  padding: 20px 0;
}

.story-text h3 {
  color: var(--color-gold);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.story-text h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  opacity: 0.6;
}

.story-text p {
  color: var(--color-gray);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.story-finale {
  background: rgba(212, 175, 55, 0.05);
  border-radius: 12px;
  padding: 50px;
  margin-top: 40px;
  text-align: center;
  position: relative;
}

.story-finale::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--color-gold);
  top: -20px;
}

.finale-content h3 {
  color: var(--color-gold);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.finale-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-gray);
  max-width: 700px;
  margin: 0 auto 30px;
}

.video-embed {
  margin-top: 40px;
}

.video-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-container:hover {
  transform: translateY(-5px);
}

.video-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.3s ease;
}

.video-container:hover .video-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.play-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--color-gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-overlay p {
  font-size: 1.1rem;
  font-weight: 500;
}

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

.video-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 600px;
}

/* Social Media Links Styles */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  color: var(--color-gold);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Enhanced Page Headings */
h1, h2, h3 {
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
}

h1:hover, h2:hover, h3:hover {
  color: var(--color-gold);
  transform: scale(1.02);
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.2px;
}

/* Active Page Heading Styling */
.active-page-heading {
  color: var(--color-gold) !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
  transform: scale(1.05) !important;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-step {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .step-image {
    margin-bottom: 20px;
  }
  
  .gems-header h2 {
    font-size: 1.8rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
}

.appointment-card > p {
  text-align: center;
  color: var(--color-gray);
  margin-bottom: 30px;
}

.appointment-form .form-group {
  margin-bottom: 20px;
}

.appointment-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-light);
  font-size: 0.9rem;
}

.appointment-form input, 
.appointment-form textarea, 
.appointment-form select {
  width: 100%;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-light);
  font-family: var(--font-primary);
  border-radius: 2px;
}

.appointment-form input:focus, 
.appointment-form textarea:focus, 
.appointment-form select:focus {
  outline: none;
  border-color: var(--color-gold);
}

.appointment-form button {
  width: 100%;
  margin-top: 10px;
}

/* Form validation styles */
.appointment-form .form-group input.error,
.appointment-form .form-group textarea.error,
.appointment-form .form-group select.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.appointment-form .error-message {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
}

.appointment-form .success-message {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-align: center;
}

.appointment-form .loading {
  pointer-events: none;
  opacity: 0.6;
}

.appointment-form button:disabled {
  background: var(--color-gray);
  border-color: var(--color-gray);
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .bespoke-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Categorized Showroom Styles */
.category-section {
  margin-bottom: 100px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.category-section:last-child {
  border-bottom: none;
}

.category-header {
  margin-bottom: 40px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.category-header h2 {
  font-size: 2.5rem;
  margin: 0;
}

.category-header p {
  color: var(--color-gray);
  font-size: 1rem;
  max-width: 500px;
  font-style: italic;
}

.placeholder-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.placeholder-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.05), transparent);
  transform: skewX(-20deg);
  transition: var(--transition);
}

.placeholder-box:hover {
  border: 1px solid rgba(212, 175, 55, 0.8);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.placeholder-box:hover::before {
  left: 200%;
  transition: 1s ease;
}

.placeholder-box .ph-icon {
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.5);
  font-weight: 300;
  margin-bottom: 10px;
  transition: var(--transition);
}

.placeholder-box:hover .ph-icon {
  transform: scale(1.2);
  color: var(--color-gold);
}

.placeholder-box .ph-text {
  color: var(--color-gray);
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  transition: var(--transition);
}

.placeholder-box:hover .ph-text {
  color: var(--color-light);
}

/* Loading States */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-top: 2px solid var(--color-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(212,175,55,0.1) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Image Optimization */
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.lazy-image {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lazy-image.loaded {
  opacity: 1;
}

/* Enhanced loading states */
.image-loading {
  background: linear-gradient(90deg, 
    rgba(212, 175, 55, 0.05) 0%, 
    rgba(212, 175, 55, 0.1) 25%, 
    rgba(212, 175, 55, 0.05) 50%, 
    rgba(212, 175, 55, 0.1) 75%, 
    rgba(212, 175, 55, 0.05) 100%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
  border-radius: 4px;
}

@keyframes loading-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Product image loading states */
.product-media img {
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.product-media img:not(.loaded) {
  opacity: 0;
}

.product-media img.loaded {
  opacity: 1;
}

/* Hero image loading */
.hero img.bg {
  transition: opacity 1s ease;
}

.hero img.bg:not(.loaded) {
  opacity: 0;
}

.hero img.bg.loaded {
  opacity: 1;
}
