:root {
  /* Brand Colors */
  --gold: #C8A96B;
  --gold-hover: #b09255;
  --black: #111111;
  --black-light: #222222;
  --beige: #F5F0E8;
  --beige-dark: #e8e0d3;
  --white: #ffffff;
  --gray: #666666;
  --gray-light: #f9f9f9;
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-body);
  background-color: var(--beige);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--black);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.text-gold {
  color: var(--gold) !important;
}

.bg-gold {
  background-color: var(--gold) !important;
}

/* Buttons */
.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 12px 30px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 30px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

/* Topbar */
.topbar {
  background-color: var(--black);
  color: var(--beige);
  padding: 8px 0;
  font-size: 0.85rem;
}

.topbar-item {
  color: var(--beige-dark);
}

/* Navbar */
#mainNav {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 15px 0;
  transition: var(--transition);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  background-color: var(--gold);
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--black);
}

.nav-link {
  color: var(--black) !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 10px 15px !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.nav-search .input-group {
  border-bottom: 1px solid var(--black);
}

.search-input {
  border: none;
  background: transparent;
  padding: 5px 0;
  box-shadow: none !important;
  border-radius: 0;
}

.btn-search {
  border: none;
  background: transparent;
  color: var(--black);
  padding: 5px 10px;
}

/* Mega Dropdown */
.mega-dropdown {
  border: none;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 20px 0;
  margin-top: 15px;
}

.dropdown-item {
  padding: 10px 30px;
  font-weight: 400;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--beige);
  color: var(--gold);
  padding-left: 35px;
}

/* Hero Section */
.hero-slider {
  height: 85vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background-color: var(--black);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.active .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(17,17,17,0.8) 0%, rgba(17,17,17,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding-left: 5vw;
}

.hero-subtitle {
  font-family: var(--font-body);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: block;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.3s;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.5s;
}

.hero-title strong {
  font-weight: 600;
  display: block;
}

.hero-text {
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 40px;
  color: var(--beige);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.7s;
}

.hero-btn-group {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.9s;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 34px;
  color: rgba(255,255,255,0.82);
  font-size: 0.86rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 1.05s;
}

.hero-highlights span {
  border-left: 1px solid rgba(200,169,107,0.65);
  padding-left: 14px;
}

.hero-highlights strong {
  color: var(--white);
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-slide.active .hero-subtitle,
.hero-slide.active .hero-title,
.hero-slide.active .hero-text,
.hero-slide.active .hero-btn-group,
.hero-slide.active .hero-highlights {
  transform: translateY(0);
  opacity: 1;
}

.slider-controls {
  position: absolute;
  bottom: 40px;
  right: 5vw;
  z-index: 10;
  display: flex;
  gap: 15px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

/* Sections */
.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Categories */
.category-card {
  display: block;
  text-align: center;
  padding: 40px 20px;
  background-color: var(--white);
  transition: var(--transition);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.category-icon {
  width: 80px;
  height: 80px;
  background-color: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 2rem;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background-color: var(--gold);
  color: var(--white);
}

.category-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--black);
}

.category-card-image {
  position: relative;
  height: 330px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  background: var(--black);
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.category-card-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.13);
}

.category-card-image:hover img {
  transform: scale(1.07);
  opacity: 0.88;
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(17,17,17,0.82), rgba(17,17,17,0.08) 60%);
}

.category-card-overlay span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.category-card-overlay h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0;
}

/* Product Cards */
.product-card {
  background: var(--white);
  padding: 20px;
  margin-bottom: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  padding-top: 100%; /* 1:1 Aspect Ratio */
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge {
  padding: 5px 10px;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
}

.badge-featured {
  background-color: var(--black);
  color: var(--white);
}

.badge-hot {
  background-color: var(--gold);
  color: var(--white);
}

.product-action {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.product-card:hover .product-action {
  bottom: 20px;
}

.btn-wa-book {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-wa-book:hover {
  background-color: #128C7E;
  color: white;
  transform: translateY(-2px);
}

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

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.product-title a {
  color: var(--black);
}

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

/* Showroom Feature */
.showroom-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr) minmax(220px, 0.65fr);
  min-height: 560px;
  background: #181818;
}

.showroom-copy {
  padding: clamp(48px, 6vw, 92px);
  align-self: center;
}

.section-kicker {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.showroom-copy h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  margin-bottom: 22px;
}

.showroom-copy p {
  color: rgba(255,255,255,0.68);
  margin-bottom: 32px;
  max-width: 520px;
}

.showroom-image {
  min-height: 560px;
  background-position: center;
  background-size: cover;
}

.showroom-image-main {
  background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1100&q=82');
}

.showroom-image-side {
  background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=900&q=82');
}

/* Promo */
.promo-panel {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-panel-image {
  background: url('https://images.unsplash.com/photo-1618220179428-22790b461013?auto=format&fit=crop&w=1200&q=82') center/cover;
}

.promo-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-panel h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.promo-panel-dark {
  background:
    linear-gradient(135deg, rgba(200,169,107,0.14), transparent 35%),
    var(--black);
}

.promo-panel-dark p {
  color: rgba(255,255,255,0.62);
  max-width: 440px;
}

/* Footer */
.site-footer {
  background-color: var(--black);
  color: var(--beige);
  padding-top: 80px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white) !important;
}

.footer-desc {
  color: var(--gray-light);
  margin-bottom: 20px;
}

.footer-heading {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 25px;
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--gray-light);
  transition: var(--transition);
}

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

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

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--gray-light);
}

.footer-contact i {
  color: var(--gold);
  font-size: 1.2rem;
}

.footer-contact a {
  color: var(--gray-light);
}

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

.social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.05);
  color: var(--white);
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-wa-footer {
  background-color: transparent;
  border: 1px solid #25D366;
  color: #25D366;
  padding: 10px 25px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-wa-footer:hover {
  background-color: #25D366;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding: 20px 0;
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: white;
}

.wa-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25D366;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Product Detail Page */
.product-gallery-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-bottom: 20px;
  background: var(--white);
}

.product-gallery-thumb {
  width: 100%;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
  background: var(--white);
}

.product-gallery-thumb.active, .product-gallery-thumb:hover {
  opacity: 1;
  border-bottom: 3px solid var(--gold);
}

.product-detail-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.product-meta {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.product-description {
  margin-bottom: 30px;
  color: var(--gray);
}

.spec-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.spec-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
}

.spec-label {
  font-weight: 600;
  width: 120px;
  color: var(--black);
}

/* Gallery Masonry */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: 20px;
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17,17,17,0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery-category {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-title,
.gallery-item:hover .gallery-category {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title { font-size: 3rem; }
  .section-padding { padding: 60px 0; }
  .product-action { bottom: 20px; }
  .showroom-feature {
    grid-template-columns: 1fr 1fr;
  }
  .showroom-copy {
    grid-column: 1 / -1;
  }
  .showroom-image,
  .showroom-feature {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: auto;
    min-height: 680px;
  }
  .hero-content {
    padding-left: 0;
    padding-right: 20px;
  }
  .hero-title { font-size: 2.5rem; }
  .hero-text { font-size: 1rem; }
  .hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-btn-group .btn {
    margin-right: 0 !important;
  }
  .hero-highlights {
    gap: 14px;
  }
  .slider-controls {
    bottom: 24px;
    right: 24px;
  }
  .category-card-image {
    height: 260px;
  }
  .showroom-feature {
    grid-template-columns: 1fr;
  }
  .showroom-image-side {
    display: none;
  }
  .showroom-image {
    min-height: 340px;
  }
  .promo-panel {
    min-height: 420px;
  }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 25px; }
}
