:root {
  --bg-color: #030303; /* Deeper black for high contrast */
  --bg-secondary: #0a0908;
  --text-primary: #ffffff;
  --text-secondary: #a8947a;
  --accent-color: #e6b973;
  --accent-glow: rgba(230, 185, 115, 0.4);
  --accent-dark: #b8860b;
  --purple-glow: rgba(155, 77, 202, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(230, 185, 115, 0.12);
  --card-hover-border: rgba(230, 185, 115, 0.35);
  --font-family: 'Outfit', 'Inter', 'Noto Sans SC', sans-serif;
  
  /* Natural Easing Curve - The Gold Standard for Premium Motion */
  --transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --stagger-delay: 0.1s;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Aurora Background System */
.aurora-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: var(--bg-color);
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  filter: blur(100px);
  opacity: 0.5;
  mix-blend-mode: screen;
  animation: aurora-float 20s infinite alternate-reverse;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vh;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0,0,0,0) 70%);
}

.blob-2 {
  bottom: -20%;
  right: -10%;
  width: 70vw;
  height: 70vh;
  background: radial-gradient(circle, var(--purple-glow) 0%, rgba(0,0,0,0) 75%);
  animation-duration: 25s;
  animation-delay: -5s;
}

.blob-3 {
  top: 40%;
  left: 50%;
  width: 50vw;
  height: 50vh;
  background: radial-gradient(circle, rgba(230, 185, 115, 0.15) 0%, rgba(0,0,0,0) 60%);
  animation-duration: 30s;
  animation-delay: -10s;
}

@keyframes aurora-float {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(10vw, 5vh) scale(1.1) rotate(5deg); }
  66% { transform: translate(-5vw, 15vh) scale(0.9) rotate(-10deg); }
  100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
}

.accent {
  color: var(--accent-color);
}

.accent-glow {
  background: linear-gradient(90deg, #fff, var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px var(--accent-glow);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Utility */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(45deg, var(--accent-dark), var(--accent-color));
  color: #000;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
  filter: brightness(1.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--card-hover-border);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  padding: 15px 0;
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  height: 58px; /* Slightly increased for better visibility with the new clean asset */
  width: auto;
  object-fit: contain;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 1px;
}

.logo-text-main {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.logo-text-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 2px;
  margin-top: 2px;
}

.logo-text-sub::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, #9b4dca, #e6b973);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.nav a:hover {
  color: var(--text-primary);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
}

.hero-bg-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%; /* Focused more on the shop sign and top banners */
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.1); /* Slightly larger for a high-end feel */
  filter: brightness(0.8) contrast(1.1);
}

.hero-bg.active {
  opacity: 1;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(13, 10, 6, 0.9) 0%, rgba(13, 10, 6, 0.6) 40%, rgba(13, 10, 6, 0) 80%);
  z-index: 2;
  pointer-events: none;
}

.hero-container-full {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-left: max(5%, calc((100% - 1200px) / 2));
}

.hero-content {
  max-width: 580px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-feature-list {
  list-style: none;
  margin-bottom: 40px;
}

.hero-feature-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.hero-feature-list span {
  color: var(--accent-color);
  margin-right: 15px;
  font-weight: bold;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Intersection Observer Classes */
.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* About Section */
.about-section {
  background-color: transparent;
  padding: 100px 0;
  position: relative;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 30px;
}

.about-text-wrapper {
  padding: 0;
  width: 100%;
}

.about-text-wrapper p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.highlight-text {
  font-size: 1.15rem !important;
  color: var(--text-primary) !important;
  font-weight: 800;
  border-left: 4px solid var(--accent-color);
  padding-left: 16px;
  margin-top: 30px;
}

/* About Section Mobile Optimization */
@media (max-width: 991px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-image-wrapper {
    padding: 20px;
  }
  
  .about-main-img-circle {
    width: 250px; /* Reduced for mobile */
  }
  
  .about-text-wrapper {
    padding-right: 0;
  }
  
  .about-text-wrapper .section-title {
    text-align: center !important;
  }
  
  .highlight-text {
    border-left: none;
    border-top: 4px solid var(--accent-color);
    padding-left: 0;
    padding-top: 16px;
  }
}

/* Product Lineup Showcase */
.products-lineup {
  padding: 100px 24px;
  background-color: var(--bg-secondary);
  border-radius: 40px;
  margin: 40px auto;
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--card-hover-border);
  box-shadow: 0 10px 40px rgba(230, 185, 115, 0.08);
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--glass-border);
}

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

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

.product-card-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-info h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.product-card-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

.product-card-info .btn {
  align-self: flex-start;
}





/* Footer */
.footer {
  padding: 80px 0 30px;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 15px;
}

.footer-links {
  display: contents;
}

.link-col {
  display: flex;
  flex-direction: column;
}

.link-col h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.link-col a {
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 12px;
  transition: var(--transition);
}

.link-col a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== New CTA Footer ===== */
.footer-new {
  margin-top: 0;
}

.footer-cta-wrap {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background: #0a0806;
}

.footer-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/bg1.png');
  background-size: cover;
  background-position: center left;
  opacity: 0.18;
}

.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,8,6,0.6) 0%, rgba(10,8,6,0.85) 60%, rgba(10,8,6,0.95) 100%);
}

.footer-cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(230, 185, 115, 0.15);
}

.footer-cta-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.footer-cta-right p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-cta-right strong {
  color: var(--accent-color);
}

.footer-contact-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 48px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(230, 185, 115, 0.1);
  border: 1px solid rgba(230, 185, 115, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer-contact-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-top: 8px;
}

/* ===== Why Choose Us Section ===== */
.why-us-section {
  padding: 100px 0;
  background: var(--bg-color);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: var(--card-hover-border);
  background: rgba(230, 185, 115, 0.05);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(230, 185, 115, 0.1);
  border: 1px solid rgba(230, 185, 115, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-color);
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Special Case for 4th and 5th cards to center or grid them well */
@media (min-width: 992px) {
  .why-us-grid > div:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: 50%;
  }
  .why-us-grid > div:nth-child(5) {
    grid-column: 2 / 3;
    margin-left: 50%;
  }
}

/* Global Mobile Overhaul */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .container {
    padding: 0 20px;
  }

  /* Hero Mobile */
  .hero-title {
    font-size: 2.8rem;
    text-align: center;
    width: 100%;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-container-full {
    padding: 0 20px;
    text-align: center;
    padding-top: 100px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-feature-list {
    display: inline-block;
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  /* Floating Buttons Mobile (Scaling down & Moving to Right) */
  .map-float, .whatsapp-float, .fb-float, .ig-float {
    width: 44px;
    height: 44px;
    left: auto; /* Remove left positioning */
    right: 20px; /* Stay on the right */
  }
  
  .map-float { bottom: 200px; }
  .whatsapp-float { bottom: 145px; }
  .fb-float { bottom: 90px; }
  .ig-float { bottom: 35px; }

  .map-float svg, .whatsapp-float svg, .fb-float svg, .ig-float svg {
    width: 20px;
    height: 20px;
  }

  /* Section Title Mobile */
  .section-title {
    font-size: 1.8rem !important;
  }

  /* Cards Mobile */
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  /* Product Modal Mobile */
  .modal-content {
    width: 95vw;
    height: 90vh;
    padding: 20px;
  }

  .modal-body {
    grid-template-columns: 1fr;
    overflow-y: auto;
    max-height: calc(90vh - 40px);
  }

  .modal-img-col img {
    max-height: 250px;
  }
}

/* Bottom bar */
.footer-bottom-bar {
  background: #060504;
  padding: 20px 0;
  border-top: 1px solid rgba(230, 185, 115, 0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-inner p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(230, 185, 115, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #000;
}

/* Map Float */
.map-float {
  position: fixed;
  bottom: 240px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.map-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 170px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* Facebook Float */
.fb-float {
  position: fixed;
  bottom: 100px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1877F2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.fb-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.6);
}

/* Instagram Float */
.ig-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.ig-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.6);
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-cta-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-cta-title {
    font-size: 2rem;
  }
  .footer-contact-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .features-grid, .product-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .ambient-title {
    font-size: 2.5rem;
  }
  
  .nav {
    display: none;
  }
  
  /* Additional Mobile Spacing fixes */
  .about-section, .products-lineup, .photo-gallery, .brands-section, .reviews-section {
    padding: 60px 0;
  }
  
  .products-lineup {
    margin: 20px auto;
    border-radius: 24px;
  }
}

/* Product Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1001;
  padding: 40px;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera for ALL modal scrolls */
.modal-content::-webkit-scrollbar,
.modal-body::-webkit-scrollbar,
.models-list::-webkit-scrollbar,
.deep-detail-wrap::-webkit-scrollbar {
  display: none;
}

.modal.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.modal-img-col img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.modal-info-col h2 {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.modal-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.modal-features, .modal-specs {
  margin-bottom: 25px;
}

.modal-features h3, .modal-specs h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 8px;
}

.modal-features ul, .modal-specs ul {
  list-style: none;
}

.modal-features li, .modal-specs li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.modal-features li::before, .modal-specs li::before {
  content: '✦';
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

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

/* Photo Gallery Section */
.photo-gallery {
  padding: 100px 0;
  background-color: transparent;
  width: 100%;
}

.gallery-carousel-wrap {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.gallery-carousel {
  overflow: hidden;
  background: #000;
}

.gallery-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-track img {
  width: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  user-select: none;
  transition: transform 0.5s ease;
}

.gallery-track img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-track img {
    width: 100%;
    flex: 0 0 100%;
    height: 70vh; /* Set an explicit height bounds for mobile */
    aspect-ratio: auto;
    object-fit: contain; /* Fit the entire image inside the bounds without cropping */
    background: #000;
  }
}

.gallery-nav-btn {
  display: none;
}

.gallery-nav-btn:hover {
  background: var(--accent-color);
  color: #000;
  box-shadow: 0 0 20px rgba(230, 185, 115, 0.4);
}

.gallery-prev-btn { left: 30px; }
.gallery-next-btn { right: 30px; }

/* Brand Partners Section */
.brands-section {
  padding: 80px 0 100px;
}

.brands-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.brand-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(230, 185, 115, 0.15);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/2;
  transition: all 0.3s ease;
  overflow: hidden;
}

.brand-card:hover {
  background: rgba(230, 185, 115, 0.08);
  border-color: rgba(230, 185, 115, 0.4);
  box-shadow: 0 8px 30px rgba(230, 185, 115, 0.1);
  transform: translateY(-4px);
}

.brand-card img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  filter: brightness(0.9) saturate(0.8);
  transition: filter 0.3s ease;
}

.brand-card:hover img {
  filter: brightness(1) saturate(1);
}

.brands-desc {
  padding-left: 20px;
}

.brands-label {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 16px;
}

.brands-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.brands-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 400px;
}

@media (max-width: 768px) {
  .brands-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .brands-desc {
    padding-left: 0;
  }
  .brands-title {
    font-size: 2rem;
  }
}

/* ===== Customer Reviews Section ===== */
.reviews-section {
  padding: 80px 0 120px;
  background: linear-gradient(180deg, transparent 0%, rgba(230,185,115,0.03) 50%, transparent 100%);
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  padding: 8px 20px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.google-stars {
  color: #f5c542;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* Scrolling track */
.reviews-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollReviews 28s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scrollReviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual card */
.review-card {
  width: 320px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(230, 185, 115, 0.15);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  color: rgba(230, 185, 115, 0.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(230, 185, 115, 0.4);
  background: rgba(230, 185, 115, 0.06);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(230,185,115,0.08);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.reviewer-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.review-time {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.review-stars {
  color: #f5c542;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== Multi-Model Modal Styles ===== */
.modal.multi-model .modal-content {
  max-width: 1100px;
}

.modal-models-container {
  width: 100%;
}

.modal-multi-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 30px;
  text-align: center;
}

.models-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.model-item {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  padding: 30px;
  align-items: center;
  border: 1px solid rgba(230, 185, 115, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.model-item:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 185, 115, 0.4);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.model-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.5s ease;
}

.model-item:hover .model-img img {
  transform: scale(1.08);
}

.model-content h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.model-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(230, 185, 115, 0.3);
}

.model-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Fix for standard modal body when replaced */
.modal-body {
  width: 100%;
}

@media (max-width: 768px) {
  .model-item {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }
  
  .model-content h3 {
    font-size: 1.3rem;
  }
  
  .model-price {
    font-size: 1.2rem;
  }

  .modal-multi-title {
    font-size: 1.8rem;
  }
}

/* ===== Deep Detail Modal Styles ===== */
.deep-modal .modal-content {
  max-width: 1000px;
  background: rgba(13, 10, 6, 0.95);
  border: 1px solid rgba(230, 185, 115, 0.2);
  padding: 0;
  overflow-x: hidden;
}

.deep-detail-wrap {
  display: flex;
  flex-direction: column;
}

.deep-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.deep-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.deep-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 10, 6, 1) 0%, rgba(13, 10, 6, 0) 100%);
  z-index: -1;
}

.deep-hero-text h2 {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.deep-subtitle {
  font-size: 1.2rem;
  color: var(--text-primary);
  opacity: 0.9;
}

.deep-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px;
  background: #0d0a06;
}

.deep-feature-card {
  padding: 30px;
  border: 1px solid rgba(230, 185, 115, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.deep-feature-card:hover {
  border-color: var(--accent-color);
  background: rgba(230, 185, 115, 0.05);
  transform: translateY(-5px);
}

.deep-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.deep-feature-card h4 {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.deep-feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.deep-footer-cta {
  padding: 40px;
  text-align: center;
  background: linear-gradient(0deg, rgba(230, 185, 115, 0.05) 0%, transparent 100%);
  border-top: 1px solid rgba(230, 185, 115, 0.1);
}

.deep-footer-cta p {
  margin-bottom: 20px;
  color: var(--text-primary);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .deep-hero {
    height: 300px;
    padding: 24px;
  }
  
  .deep-hero-text h2 {
    font-size: 2rem;
  }
  
  .deep-feature-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  
  .deep-feature-card {
    padding: 20px;
  }
}

/* Hero Section Mobile Optimization (Stacked Layout) */
@media (max-width: 991px) {
  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    background-color: #0d0a06; /* Solid background for text area */
  }

  .hero-bg-carousel {
    position: relative;
    height: 48vh; /* Fixed height for the "Photo Banner" */
    width: 100%;
    z-index: 1;
  }

  .hero-container-full {
    position: relative;
    padding: 30px 20px;
    z-index: 3;
    width: 100%;
    display: block;
    text-align: left;
    background: #0d0a06; /* Flows under the photo */
    margin-top: -1px; /* Overlap slightly to prevent gaps */
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0;
    /* Removed glass panel to focus on readability as a direct content block */
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    text-align: left;
    box-shadow: none;
  }
  
  .hero-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: var(--text-primary);
  }
  
  .hero-feature-list {
    display: block !important; /* Restore information visibility */
    margin-bottom: 35px;
    padding-left: 0;
  }

  .hero-feature-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--text-secondary);
  }
  
  .hero-bg {
    transform: scale(1);
    object-position: center 30%; /* Focus on shop sign */
    opacity: 0 !important;
  }
  
  .hero-bg.active {
    opacity: 1 !important; 
  }
  
  .hero-overlay-gradient {
    /* Subtle fade at the bottom of the photo banner only */
    background: linear-gradient(180deg, rgba(13, 10, 6, 0) 70%, rgba(13, 10, 6, 1) 100%);
    height: 100%;
    width: 100%;
  }
  
  .hero-actions {
    justify-content: flex-start;
  }
}


