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

:root {
  --color-bg-dark: #ffffff;
  --color-bg-card: #f8f9fa;
  --color-gold: #d4af37;
  --color-gold-light: #b08d29;
  /* Darkened gold-light for better contrast on white */
  --color-gold-dark: #aa8c2c;
  --color-text-main: #1a1a1a;
  --color-text-muted: #666666;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  animation: pageFadeIn 0.35s ease-out forwards;
}

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

body.page-fade-out {
  opacity: 0 !important;
  transform: translateY(-4px) !important;
  transition: opacity 0.22s ease-in, transform 0.22s ease-in !important;
}

@media (min-width: 992px) {
  body {
    zoom: 90%;
  }
}

img, video, iframe, canvas, svg {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-gold-light);
}

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

ul {
  list-style: none;
}

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

.section {
  padding: 45px 0;
}

.page-hero {
  height: 35vh !important;
  min-height: 240px !important;
  padding-top: 50px !important;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 1.85rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--color-gold);
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 680px;
  margin: 0 auto 50px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #000;
  border: 1px solid var(--color-gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 20px 0;
  transition: all 0.3s ease;

}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 1px;
}

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

.nav-links a {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e0e0e0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--color-gold);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: -1;
}

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

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.25;
  margin-bottom: 15px;
  color: #f3e5ab;
  /* Light gold for dark hero overlay */
  animation: fadeUp 1s ease forwards;
}

.hero p {
  font-size: 0.95rem;
  color: #f5f5f5;
  margin-bottom: 22px;
  animation: fadeUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
}

/* Cards (Features & Products) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--color-bg-card);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 20px;
}

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

.feature-card p {
  color: var(--color-text-muted);
}

/* Product Cards */
.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.product-img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.6s ease;
}

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

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

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.product-info p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.rating {
  color: var(--color-gold);
  margin-bottom: 15px;
  letter-spacing: 2px;
}

/* Split Section (About / Products list) */
.split-section {
  display: flex;
  align-items: center;
  gap: 50px;
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  position: relative;
}

.split-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.split-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-gold);
  border-radius: 8px;
  z-index: -1;
}

/* Features List */
.features-list {
  margin-bottom: 30px;
}

.features-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li i {
  color: var(--color-gold);
}

/* Reviews */
.testimonial-slider-container {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-slider-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: slideContinuous 35s linear infinite;
}

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

@keyframes slideContinuous {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

.review-card {
  width: 380px;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.review-text {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.reviewer {
  font-weight: 700;
  color: var(--color-text-main);
  font-size: 1.1rem;
}

.review-card .rating {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 0;
  letter-spacing: 2px;
}

/* Tags / Icons section */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.tag {
  background: var(--color-bg-card);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--color-gold-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

.tag:hover {
  background: var(--color-gold);
  color: #000;
}

/* FAQ */
.faq-item {
  background: #fff;
  margin-bottom: 14px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.1);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.faq-question {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16.5px;
  font-weight: 600;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  color: #b8901d;
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #b8901d;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #d4af37, #b8901d);
  color: #000;
  border-color: #d4af37;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #555;
}

.faq-answer p {
  padding: 12px 22px 18px;
  color: #555;
  line-height: 1.7;
  font-size: 14.5px;
  margin: 0;
  border-top: 1px dashed rgba(212, 175, 55, 0.15);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Footer */
.footer {
  background: #f8f9fa;
  padding: 45px 0 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--color-gold);
}

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

.footer-links a {
  color: var(--color-text-muted);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Modern Why Choose Us Section */
.why-choose-section {
  background-color: var(--color-bg-dark);
  overflow: hidden;
}

.why-choose-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.why-choose-image {
  flex: 1;
  position: relative;
  border-radius: 20px;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  padding: 25px;
  border-radius: 15px;
  color: #000;
  text-align: center;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.experience-badge .exp-years {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.experience-badge .exp-text {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose-content {
  flex: 1.2;
}

.why-choose-content .section-title::after {
  left: 0;
  transform: translateX(0);
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item-modern {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-item-modern:hover {
  background: var(--color-bg-card);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.feature-icon-modern {
  font-size: 2rem;
  background: rgba(212, 175, 55, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.feature-text-modern h3 {
  font-size: 1.15rem;
  margin-bottom: 5px;
  color: var(--color-text-main);
}

.feature-text-modern p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .why-choose-wrapper {
    flex-direction: column;
  }

  .features-grid-modern {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    bottom: -15px;
    right: 15px;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .split-section {
    flex-direction: column;
  }

  .split-image::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

/* Discover Section */
.discover-section {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, #faf8f5 100%);
  padding: 45px 0;
  position: relative;
}

.discover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Side */
.love-reasons {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.love-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.love-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: bottom;
  z-index: -1;
}

.love-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
}

.love-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.love-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.love-item:hover .love-icon {
  background: var(--color-gold);
  color: #fff;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.love-text h4 {
  font-size: 1.15rem;
  margin-bottom: 5px;
  color: var(--color-text-main);
  font-family: var(--font-heading);
}

.love-text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

/* Right Side */
.discover-perfect {
  position: relative;
}

.perfect-box {
  background: var(--color-gold);
  border-radius: 24px;
  padding: 50px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.perfect-box::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.perfect-box .section-title {
  color: #ffffff;
}

.perfect-box .section-title::after {
  background-color: #ffffff;
}

.perfect-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.perfect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.perfect-tag {
  padding: 12px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.perfect-tag span {
  position: relative;
  z-index: 2;
}

.tag-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 1;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.perfect-tag:hover {
  color: var(--color-gold-dark);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.perfect-tag:hover .tag-bg {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .discover-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.contact-info-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: var(--color-gold);
}

.contact-info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--color-text-main);
}

.contact-info-card p {
  color: var(--color-text-muted);
  margin: 0;
}

.contact-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-text-main);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fdfdfd;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--color-text-main);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Modal Styles */
.product-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  background: rgba(10, 10, 10, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999999 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px !important;
  box-sizing: border-box !important;
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
}

.product-modal-content {
  background: #ffffff;
  border-radius: 20px;
  max-width: 760px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transform: scale(0.94) translateY(10px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}

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

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: #222;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 12;
  transition: all 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1;
}

.modal-close:hover {
  background: #111;
  color: #fff;
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  width: 100%;
  align-items: center;
}

.modal-img-container {
  background: #faf8f5;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border-right: 1px solid rgba(212, 175, 55, 0.15);
}

.modal-img-container img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.modal-info {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
}

.modal-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

#modalBuyBtn {
  border-radius: 30px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #d4af37, #b8901d);
  color: #000;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

#modalBuyBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
  .product-modal {
    padding: 15px;
  }

  .product-modal-content {
    max-height: 85vh;
    border-radius: 18px;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-img-container {
    min-height: 200px;
    padding: 15px;
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }

  .modal-img-container img {
    max-height: 180px;
  }

  .modal-info {
    padding: 20px 18px;
    text-align: center;
  }

  .modal-info h3 {
    font-size: 19px;
  }

  .modal-info p {
    font-size: 13.5px;
    margin-bottom: 15px;
  }
}

/* Premium Care Cards */
.care-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.care-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.care-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
}

.care-card:hover::before {
  opacity: 1;
}

.care-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #fdfdfd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
}

.care-card:hover .care-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: rgba(212, 175, 55, 0.05);
}

/* Redesigned Premium FAQ */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  background: rgba(212, 175, 55, 0.02);
}

.faq-question h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--color-text-main);
  font-weight: 500;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8f9fa;
  color: var(--color-gold);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.faq-item:hover .faq-toggle {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.2);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  background: #ffffff;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 300px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}
/*==============================
 WHY CHOOSE US
==============================*/

.why-premium{

padding:45px 0;

background:linear-gradient(to bottom,#ffffff,#faf8f2);

position:relative;

overflow:hidden;

}

.why-premium::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:rgba(212,175,55,.08);

border-radius:50%;

left:-150px;

top:-120px;

filter:blur(90px);

}

.why-header{

text-align:center;

margin-bottom:35px;

}

.why-header span{

font-size:14px;

letter-spacing:4px;

font-weight:600;

color:#b8901d;

text-transform:uppercase;

}

.why-header h2{

font-size:30px;

margin:10px 0;

color:#111;

}

.why-header p{

max-width:680px;

margin:auto;

font-size:15px;

color:#666;

line-height:1.6;

}

.why-grid{
display:grid;
grid-template-columns:1fr 1.15fr;
gap:40px;
align-items:center;
}

.why-image{
position:relative;
max-width:440px;
margin:0 auto;
}

.why-image img{
width:100%;
max-height:440px;
object-fit:cover;
border-radius:24px;
box-shadow:0 20px 45px rgba(0,0,0,.1);
transition:.5s;
}

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

.floating-card{
position:absolute;
bottom:20px;
right:-15px;
background:linear-gradient(135deg,#d4af37,#b8901d);
padding:16px 26px;
border-radius:16px;
text-align:center;
box-shadow:0 15px 35px rgba(212,175,55,.35);
animation:float 3s ease-in-out infinite;
z-index:2;
}

.floating-card h3{
font-size:26px;
margin:0;
color:#000;
font-weight:700;
}

.floating-card span{
font-weight:600;
font-size:12px;
color:#111;
letter-spacing:.5px;
}

.why-content{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:16px;
}

.feature{
display:flex;
flex-direction:column;
align-items:flex-start;
gap:10px;
padding:18px 16px;
background:#fff;
border-radius:16px;
border:1px solid rgba(212,175,55,.18);
box-shadow:0 8px 25px rgba(0,0,0,.04);
transition:all .35s ease;
}

.feature:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(212,175,55,.18);
border-color:rgba(212,175,55,.4);
}

.icon{
width:46px;
height:46px;
display:flex;
justify-content:center;
align-items:center;
border-radius:12px;
background:rgba(212,175,55,.08);
border:1px solid rgba(212,175,55,.2);
font-size:20px;
color:#b8901d;
flex-shrink:0;
transition:all .35s ease;
}

.feature:hover .icon{
background:linear-gradient(135deg,#d4af37,#b8901d);
color:#000;
border-color:#d4af37;
transform:rotate(-6deg) scale(1.05);
box-shadow:0 8px 20px rgba(212,175,55,.3);
}

.feature h3{
font-size:16px;
margin-bottom:4px;
color:#111;
font-weight:600;
}

.feature p{
color:#666;
font-size:13px;
line-height:1.5;
margin:0;
}

.why-content-footer{
grid-column:span 2;
margin-top:8px;
}

.why-content-footer .btn{
border-radius:40px;
padding:12px 30px;
font-size:14px;
font-weight:600;
}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0px);

}

}

/*==============================
 Responsive
==============================*/

@media(max-width:992px){

.why-grid{

grid-template-columns:1fr;

}

.why-header h2{

font-size:38px;

}

.floating-card{

right:20px;

bottom:20px;

}

}

@media(max-width:768px){

.why-premium{

padding:45px 0;

}

.why-header h2{

font-size:30px;

}

.feature{

padding:18px;

}

.icon{

width:60px;

height:60px;

font-size:22px;

}

.feature h3{

font-size:18px;

}

.feature p{

font-size:14px;

}

.why-content .btn{

width:100%;

}

}
/*==========================
FEATURED COLLECTION
===========================*/

.featured-section{

padding:45px 0;

background:linear-gradient(to bottom,#fff,#faf8f2);

}

.section-heading{

text-align:center;

margin-bottom:35px;

}

.section-heading span{

font-size:14px;

letter-spacing:4px;

text-transform:uppercase;

color:#c89b1d;

font-weight:600;

}

.section-heading h2{

font-size:30px;

margin:10px 0;

}

.section-heading p{

max-width:680px;

margin:auto;

line-height:1.6;

color:#666;

font-size:15px;

}

.products-grid{

display:grid;

grid-template-columns:repeat(auto-fill,minmax(230px,1fr));

gap:20px;

}

.product-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.06);

transition:.4s;

position:relative;

}

.product-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 50px rgba(212,175,55,.14);

}

.product-image{

position:relative;

overflow:hidden;

background:#f8f8f8;

}

.product-image img{

width:100%;

height:230px;

object-fit:contain;

transition:.7s;

padding:12px;

}

.product-card:hover img{

transform:scale(1.08);

}

.badge{

position:absolute;

top:20px;

left:20px;

background:#d4af37;

color:#111;

padding:8px 18px;

font-size:13px;

border-radius:30px;

font-weight:600;

z-index:2;

}

.product-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.45);

display:flex;

align-items:center;

justify-content:center;

opacity:0;

transition:.4s;

}

.product-card:hover .product-overlay{

opacity:1;

}

.overlay-btn{

padding:14px 28px;

background:#fff;

border-radius:40px;

text-decoration:none;

color:#111;

font-weight:600;

transition:.3s;

}

.overlay-btn:hover{

background:#d4af37;

}

.product-content{

padding:16px;

}

.product-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:8px;

}

.product-top h3{

font-size:17px;

}

.wishlist{

width:45px;

height:45px;

border:none;

background:#f5f5f5;

border-radius:50%;

cursor:pointer;

transition:.3s;

}

.wishlist:hover{

background:#d4af37;

color:#fff;

}

.stars{

color:#f4b400;

margin-bottom:15px;

}

.product-content p{

color:#666;

line-height:1.8;

margin-bottom:25px;

}

.product-content .btn{

width:100%;

border-radius:40px;

padding:15px;

font-weight:600;

}

.view-all{

margin-top:60px;

text-align:center;

}

@media(max-width:768px){

.section-heading h2{

font-size:34px;

}

.product-image img{

height:300px;

}

}
/*=============================
 FEATURED COLLECTION
==============================*/

.featured-section{
    padding:45px 0;
    background:#faf9f7;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
    gap:20px;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    border:1px solid #ececec;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.1);
}

.product-image{

    background:#ffffff;

    height:230px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:12px;

    position:relative;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#d4af37;

    color:#111;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.product-content{

    padding:28px;

}

.product-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:12px;

}

.product-top h3{

    font-size:24px;

    color:#222;

}

.wishlist{

    width:42px;

    height:42px;

    border-radius:50%;

    border:none;

    background:#f6f6f6;

    cursor:pointer;

    transition:.3s;

}

.wishlist:hover{

    background:#d4af37;

    color:#fff;

}

.stars{

    color:#ffb400;

    margin-bottom:15px;

    font-size:15px;

}

.product-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.product-content .btn{

    width:100%;

    border-radius:50px;

    padding:15px;

    font-size:16px;

    font-weight:600;

}

.product-content .btn:hover{

    transform:translateY(-3px);

}

@media(max-width:768px){

.product-image{

height:300px;

padding:20px;

}

}
/*==============================
CRAFTED FOR EVERY MOMENT
==============================*/

.luxury-section{
padding:55px 0;
background:linear-gradient(135deg,#0f0f12 0%,#1b1915 100%);
border-top:1px solid rgba(212,175,55,.18);
border-bottom:1px solid rgba(212,175,55,.18);
position:relative;
color:#fff;
}

.luxury-header{
text-align:center;
margin-bottom:35px;
}

.luxury-header span{
letter-spacing:4px;
text-transform:uppercase;
color:#d4af37;
font-weight:600;
font-size:14px;
}

.luxury-header h2{
font-size:30px;
margin:10px 0;
color:#ffffff;
}

.luxury-header p{
max-width:680px;
margin:auto;
line-height:1.6;
color:rgba(255,255,255,.82);
font-size:15px;
}

.luxury-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
}

.luxury-card{
background:rgba(255,255,255,.05);
backdrop-filter:blur(16px);
-webkit-backdrop-filter:blur(16px);
padding:24px;
border-radius:18px;
border:1px solid rgba(212,175,55,.22);
box-shadow:0 15px 40px rgba(0,0,0,.25);
transition:.4s;
}

.luxury-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 45px rgba(212,175,55,.25);
border-color:rgba(212,175,55,.45);
}

.luxury-card h3{
font-size:19px;
margin-bottom:20px;
color:#ffffff;
}

.luxury-feature{

display:flex;

gap:20px;

margin-bottom:28px;

align-items:flex-start;

}

.luxury-feature i{

width:65px;

height:65px;

display:flex;

justify-content:center;

align-items:center;

background:#faf6ea;

color:#c69c2d;

border-radius:18px;

font-size:26px;

transition:.4s;

}

.luxury-feature:hover i{

background:#c69c2d;

color:#fff;

}

.luxury-feature h4{
margin-bottom:8px;
font-size:22px;
color:#ffffff;
}

.luxury-feature p{
color:rgba(255,255,255,.78);
line-height:1.7;
}

.occasion-text{
color:rgba(255,255,255,.8);
margin-bottom:35px;
line-height:1.8;
}

.occasion-grid{
display:flex;
flex-wrap:wrap;
gap:15px;
}

.occasion-grid span{
padding:10px 20px;
background:rgba(212,175,55,.12);
border:1px solid rgba(212,175,55,.3);
color:#d4af37;
border-radius:40px;
font-weight:600;
font-size:13.5px;
transition:.3s;
cursor:pointer;
}

.occasion-grid span:hover{
background:#d4af37;
color:#000;
transform:translateY(-4px);
box-shadow:0 8px 20px rgba(212,175,55,.3);
}

@media(max-width:992px){

.luxury-grid{

grid-template-columns:1fr;

}

.luxury-header h2{

font-size:36px;

}

}
/*====================================
OUR PROMISE
=====================================*/

.promise-section{
padding:55px 0;
background:linear-gradient(180deg,#141416 0%,#201c15 100%);
border-top:1px solid rgba(212,175,55,.15);
position:relative;
overflow:hidden;
}

.promise-section::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:rgba(212,175,55,.08);

border-radius:50%;

top:-180px;

left:-150px;

filter:blur(80px);

}

.promise-section::after{

content:"";

position:absolute;

width:350px;

height:350px;

background:rgba(212,175,55,.06);

border-radius:50%;

bottom:-120px;

right:-120px;

filter:blur(80px);

}

.promise-box{

max-width:950px;

margin:auto;

text-align:center;

padding:30px 25px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(18px);

border-radius:20px;

}

.promise-label{

display:inline-block;

padding:6px 18px;

background:rgba(212,175,55,.15);

border:1px solid rgba(212,175,55,.35);

border-radius:40px;

color:#d4af37;

font-size:13px;

font-weight:600;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:15px;

}

.promise-box h2{

font-size:30px;

color:#fff;

margin-bottom:15px;

}

.promise-box p{

max-width:820px;

margin:auto;

font-size:18px;

line-height:1.9;

color:rgba(255,255,255,.75);

margin-bottom:55px;

}

.promise-features{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.promise-item{

padding:30px 20px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

transition:.4s;

}

.promise-item:hover{

transform:translateY(-8px);

background:#d4af37;

}

.promise-item i{

font-size:34px;

color:#d4af37;

margin-bottom:18px;

transition:.3s;

}

.promise-item span{

display:block;

font-size:18px;

font-weight:600;

color:#fff;

transition:.3s;

}

.promise-item:hover i,

.promise-item:hover span{

color:#111;

}

@media(max-width:992px){

.promise-features{

grid-template-columns:repeat(2,1fr);

}

.promise-box{

padding:50px 30px;

}

.promise-box h2{

font-size:36px;

}

}

@media(max-width:600px){

.promise-features{

grid-template-columns:1fr;

}

.promise-box h2{

font-size:30px;

}

.promise-box p{

font-size:16px;

}

}
/*==========================
TOP BAR
==========================*/

.top-bar{

background:#111;

padding:10px 0;

font-size:14px;

}

.top-container{

display:flex;

justify-content:space-between;

align-items:center;

}

.top-left{

display:flex;

gap:30px;

}

.top-left a{

color:#ddd;

text-decoration:none;

transition:.3s;

}

.top-left i{

color:#d4af37;

margin-right:8px;

}

.top-left a:hover{

color:#fff;

}

.top-right{

display:flex;

gap:15px;

}

.top-right a{

width:34px;

height:34px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:rgba(255,255,255,.08);

color:#d4af37;

transition:.3s;

text-decoration:none;

}

.top-right a:hover{

background:#d4af37;

color:#111;

}

/*==========================
HEADER
==========================*/

.navbar{

background:#fff;

padding:18px 0;

position:sticky;

top:0;

z-index:999;

box-shadow:0 5px 25px rgba(0,0,0,.06);

}

.nav-container{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

display:flex;

align-items:center;

gap:15px;

text-decoration:none;

}

.logo img{

height:70px;

}

.logo h2{

font-size:28px;

color:#222;

margin:0;

font-family:"Playfair Display",serif;

}

.logo span{

font-size:13px;

letter-spacing:2px;

color:#c69c2d;

text-transform:uppercase;

}

.nav-links{

display:flex;

gap:40px;

list-style:none;

}

.nav-links a{

text-decoration:none;

font-size:17px;

font-weight:600;

color:#222;

position:relative;

transition:.3s;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#d4af37;

transition:.3s;

}

.nav-links a:hover::after,

.nav-links .active::after{

width:100%;

}

.nav-links a:hover{

color:#d4af37;

}

.shop-btn{

padding:14px 34px;

border-radius:40px;

background:linear-gradient(135deg,#d4af37,#b68a00);

color:#fff;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.shop-btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(212,175,55,.35);

}

.mobile-menu-btn{

display:none;

font-size:28px;

cursor:pointer;

}

/*==========================
Responsive
==========================*/

@media(max-width:992px){

.top-bar{

display:none;

}

.shop-btn{

display:none;

}

.nav-links{

display:none;

}

.mobile-menu-btn{

display:block;

}

.logo img{

height:55px;

}

.logo h2{

font-size:22px;

}

}
/*======================
TOP BAR
=======================*/

.top-bar{

background:#111;

padding:14px 0;

}

.top-container{

display:flex;

justify-content:space-between;

align-items:center;

}

.top-left{

display:flex;

gap:40px;

}

.top-left a{

font-size:17px;

font-weight:500;

color:#fff;

text-decoration:none;

display:flex;

align-items:center;

gap:10px;

transition:.3s;

}

.top-left a:hover{

color:#d4af37;

}

.top-left i{

font-size:18px;

color:#d4af37;

}

.top-right{

display:flex;

gap:18px;

}

.top-right a{

width:40px;

height:40px;

display:flex;

justify-content:center;

align-items:center;

background:rgba(255,255,255,.08);

border-radius:50%;

color:#d4af37;

font-size:18px;

transition:.3s;

}

.top-right a:hover{

background:#d4af37;

color:#111;

transform:translateY(-3px);

}
.navbar{

position:sticky;

top:0;

left:0;

width:100%;

padding:10px 0;

background:transparent;

transition:.4s;

z-index:999;

}

.nav-container{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

display:flex;

align-items:center;

gap:12px;

text-decoration:none;

}

.logo img{

height:60px;

}

.logo-text h2{

font-size:30px;

font-weight:700;

margin:0;

color:#fff;

font-family:'Playfair Display',serif;

transition:.4s;

}

.nav-links{

display:flex;

gap:35px;

list-style:none;

}

.nav-links a{

color:#fff;

font-size:17px;

font-weight:600;

text-decoration:none;

position:relative;

transition:.3s;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:#d4af37;

transition:.3s;

}

.nav-links a:hover::after,

.nav-links .active::after{

width:100%;

}

.nav-links a:hover{

color:#d4af37;

}

.shop-btn{

padding:12px 30px;

border-radius:40px;

background:#d4af37;

color:#111;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.shop-btn:hover{

transform:translateY(-3px);

}
/*==============================
HEADER
==============================*/

.lux-header{
position:sticky;
top:0;
left:0;
width:100%;
z-index:1000;
padding:0;
background:rgba(255,255,255,.94);
backdrop-filter:blur(14px);
-webkit-backdrop-filter:blur(14px);
border-bottom:1px solid rgba(212,175,55,.2);
box-shadow:0 4px 20px rgba(0,0,0,.05);
transition:all .3s ease;
}

.lux-header.header-fixed{
position:sticky !important;
top:0 !important;
left:0 !important;
width:100% !important;
z-index:1000 !important;
background:rgba(255,255,255,.98) !important;
box-shadow:0 8px 30px rgba(0,0,0,.12) !important;
border-bottom-color:rgba(212,175,55,.35) !important;
}

.lux-wrapper{
max-width:1200px;
margin:auto;
padding:0 20px;
display:flex;
align-items:center;
justify-content:space-between;
min-height:64px;
}

/* Brand */
.brand-area{
display:flex;
align-items:center;
gap:12px;
text-decoration:none;
padding:0;
margin:0;
}

.brand-image{
height:40px;
width:auto;
display:block;
margin:0;
padding:0;
object-fit:contain;
}

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

.brand-title{
font-size:22px;
font-family:'Playfair Display',serif;
margin:0;
font-weight:700;
color:#111;
line-height:1;
transition:.3s;
}

.brand-subtitle{
margin:2px 0 0;
font-size:9px;
letter-spacing:4px;
color:#b8901d;
font-weight:700;
text-transform:uppercase;
}

.header-fixed .brand-title{
color:#111;
}

/* Navigation */
.primary-nav{
flex:1;
display:flex;
justify-content:center;
}

.primary-menu{
display:flex;
gap:36px;
list-style:none;
margin:0;
padding:0;
}

.primary-menu a{
position:relative;
text-decoration:none;
font-size:15px;
font-weight:500;
color:#222;
padding:4px 0;
transition:.3s;
}

.header-fixed .primary-menu a{
color:#222;
}

.primary-menu a::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0;
height:2px;
background:#b8901d;
transition:.3s;
}

.primary-menu a:hover,
.primary-menu .menu-active{
color:#b8901d;
font-weight:600;
}

.primary-menu a:hover::after,
.primary-menu .menu-active::after{
width:100%;
}

/* Button */
.header-right{
display:flex;
align-items:center;
gap:16px;
}

.premium-btn{
padding:9px 22px;
border-radius:30px;
background:linear-gradient(135deg,#d4af37,#b8901d);
text-decoration:none;
font-weight:600;
font-size:14px;
color:#000;
box-shadow:0 4px 15px rgba(212,175,55,.3);
transition:all .3s ease;
display:inline-flex;
align-items:center;
gap:8px;
}

.premium-btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 22px rgba(212,175,55,.45);
color:#000;
}

/* Mobile */

.menu-toggler{

display:none;

background:none;

border:none;

font-size:28px;

cursor:pointer;

color:#fff;

}

.header-fixed .menu-toggler{

color:#222;

}

@media(max-width:992px){

.primary-nav{

display:none;

}

.premium-btn{

display:none;

}

.menu-toggler{

display:block;

}

.brand-image{

height:50px;

}

.brand-title{

font-size:24px;

}

.brand-subtitle{

font-size:10px;

letter-spacing:4px;

}

}
/*==========================
TOP HEADER
==========================*/

.top-header{

background:#111;

border-bottom:1px solid rgba(255,255,255,.08);

padding:10px 0;

font-size:15px;

}

.top-header-wrapper{

max-width:1300px;

margin:auto;

padding:0 25px;

display:flex;

justify-content:space-between;

align-items:center;

gap:20px;

}

.top-contact{

display:flex;

align-items:center;

gap:30px;

}

.top-contact a{

display:flex;

align-items:center;

gap:8px;

text-decoration:none;

color:#f5f5f5;

font-weight:500;

transition:.3s;

}

.top-contact a:hover{

color:#D4AF37;

}

.top-contact i{

color:#D4AF37;

font-size:15px;

}

.top-offer{

display:flex;

align-items:center;

gap:10px;

color:#D4AF37;

font-weight:600;

letter-spacing:.5px;

}

.top-social{

display:flex;

align-items:center;

gap:12px;

}

.top-social a{

width:34px;

height:34px;

display:flex;

justify-content:center;

align-items:center;

border:1px solid rgba(255,255,255,.15);

border-radius:50%;

color:#fff;

transition:.35s;

text-decoration:none;

}

.top-social a:hover{

background:#D4AF37;

border-color:#D4AF37;

color:#111;

transform:translateY(-3px);

}
@media(max-width:992px){

.top-header{

display:none;

}

}
/*====================================
BRAND STORY
====================================*/

.brand-story-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 50px;
}

.story-image-area {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.story-image-box {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  padding: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.5s ease;
}

.story-image-box img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
  transition: 0.5s ease;
}

.story-image-box:hover img {
  transform: scale(1.03);
}

.experience-card {
  position: absolute;
  right: -15px;
  bottom: 25px;
  background: linear-gradient(135deg, #d4af37, #b8901d);
  padding: 16px 26px;
  border-radius: 16px;
  color: #000;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.35);
  text-align: center;
  z-index: 2;
}

.experience-card h2 {
  font-size: 26px;
  margin: 0;
  font-weight: 800;
  color: #000;
}

.experience-card p {
  margin: 2px 0 0;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #111;
}

.story-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #b8901d;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.story-content-area h2 {
  font-size: 28px;
  line-height: 1.35;
  margin-bottom: 16px;
  color: #111;
  font-weight: 700;
}

.story-description {
  font-size: 14.5px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 14px;
}

.story-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 25px 0 0;
}

.story-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
}

.story-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.story-feature i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #b8901d;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.story-feature:hover i {
  background: linear-gradient(135deg, #d4af37, #b8901d);
  color: #000;
  border-color: #d4af37;
  transform: rotate(-6deg);
}

.story-feature h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.story-feature p {
  margin: 0;
  font-size: 12.5px;
  color: #666;
  line-height: 1.4;
}

/* Button */

.story-btn{

display:inline-block;

padding:15px 38px;

background:linear-gradient(135deg,#D4AF37,#B8860B);

border-radius:40px;

color:#fff;

font-weight:600;

text-decoration:none;

transition:.35s;

}

.story-btn:hover{

transform:translateY(-4px);

box-shadow:0 20px 35px rgba(212,175,55,.35);

}

/* Responsive */

@media(max-width:992px){

.brand-story-grid{

grid-template-columns:1fr;

}

.story-content-area{

order:2;

}

.story-image-box img{

height:450px;

}

.experience-card{

right:20px;

bottom:20px;

padding:22px;

}

.story-content-area h2{

font-size:36px;

}

.story-features{

grid-template-columns:1fr;

}

}
/*==================================
CONTACT SECTION
==================================*/

.lux-contact-section{

padding:45px 0;

background:#111;

position:relative;

overflow:hidden;

}

.lux-contact-section::before{

content:"";

position:absolute;

width:420px;

height:420px;

background:#D4AF37;

opacity:.08;

border-radius:50%;

left:-120px;

top:-120px;

filter:blur(90px);

}

.lux-contact-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

/* LEFT */

.contact-tag{

display:inline-block;

padding:8px 18px;

background:rgba(212,175,55,.15);

color:#D4AF37;

border-radius:40px;

font-size:13px;

letter-spacing:2px;

font-weight:700;

margin-bottom:20px;

}

.contact-left h2{

font-size:30px;

color:#fff;

margin-bottom:20px;

line-height:1.2;

}

.contact-left>p{

font-size:17px;

line-height:1.9;

color:#bdbdbd;

margin-bottom:45px;

}

.contact-card{

display:flex;

gap:22px;

align-items:center;

padding:25px;

margin-bottom:20px;



border:1px solid rgba(255,255,255,.08);

border-radius:20px;

transition:.35s;
color:#fff;

}

.contact-card:hover{

transform:translateY(-8px);

border-color:#D4AF37;

}

.contact-icon{

width:65px;

height:65px;

display:flex;

justify-content:center;

align-items:center;

background:#D4AF37;

border-radius:18px;

color:#fff;

font-size:24px;

flex-shrink:0;

}

.contact-card h4{

margin:0 0 6px;

color:#fff;

font-size:20px;

}

.contact-card p{

margin:0;

color:#bdbdbd;

}

/* FORM */

.lux-form{

background:#1b1b1b;

padding:45px;

border-radius:30px;

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(10px);

box-shadow:0 25px 60px rgba(0,0,0,.25);

}

.lux-form h3{

color:#fff;

font-size:32px;

margin-bottom:30px;

}

.input-box{

margin-bottom:22px;

}

.input-box label{

display:block;

color:#ddd;

margin-bottom:8px;

font-weight:600;

}

.input-box input,

.input-box textarea{

width:100%;

padding:16px 18px;

border:none;

border-radius:12px;

background:#2a2a2a;

color:#fff;

font-size:16px;

outline:none;

transition:.3s;

}

.input-box input:focus,

.input-box textarea:focus{

border:1px solid #D4AF37;

background:#333;

}

.whatsapp-btn{

width:100%;

padding:17px;

background:linear-gradient(135deg,#25D366,#1ebe5d);

border:none;

border-radius:12px;

font-size:18px;

font-weight:600;

color:#fff;

cursor:pointer;

display:flex;

justify-content:center;

align-items:center;

gap:12px;

transition:.3s;

}

.whatsapp-btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(37,211,102,.35);

}

.whatsapp-btn i{

font-size:22px;

}

/* Responsive */

@media(max-width:992px){

.lux-contact-wrapper{

grid-template-columns:1fr;

}

.contact-left h2{

font-size:36px;

}

.lux-form{

padding:30px;

}

}
.lux-contact-section{

    padding:45px 0;

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(circle at top left,#fff8e8 0%,transparent 35%),
    radial-gradient(circle at bottom right,#fff4d8 0%,transparent 30%),
    linear-gradient(180deg,#ffffff,#f8f8f8);

}
.lux-contact-section::before{

content:"";

position:absolute;

width:450px;

height:450px;

border-radius:50%;

background:rgba(212,175,55,.12);

top:-180px;

left:-150px;

filter:blur(90px);

}

.lux-contact-section::after{

content:"";

position:absolute;

width:380px;

height:380px;

border-radius:50%;

background:rgba(212,175,55,.08);

bottom:-150px;

right:-120px;

filter:blur(90px);

}
.lux-contact-section{

padding:45px 0;

background:

linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.92)),

url(images/marble-bg.jpg);

background-size:cover;

background-position:center;

}
/*==================================================
CONTACT SECTION
==================================================*/

.lux-contact-section{
    position: relative;
    padding: 45px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,#FFF8EB 0%,transparent 35%),
        radial-gradient(circle at bottom right,#FFF3D7 0%,transparent 30%),
        linear-gradient(180deg,#ffffff,#f9f9f9);
}

/* Decorative Background */

.lux-contact-section::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:#D4AF37;
    opacity:.08;
    border-radius:50%;
    top:-180px;
    left:-150px;
    filter:blur(90px);
}

.lux-contact-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:#D4AF37;
    opacity:.06;
    border-radius:50%;
    bottom:-120px;
    right:-120px;
    filter:blur(80px);
}

.lux-contact-wrapper{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/*==================================================
LEFT CONTENT
==================================================*/

.contact-tag{
    display:inline-block;
    padding:10px 22px;
    background:#FFF2CF;
    color:#B8860B;
    border-radius:40px;
    font-size:13px;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:22px;
}

.contact-left h2{
    font-size:30px;
    color:#1b1b1b;
    line-height:1.2;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

.contact-left>p{
    color:#666;
    font-size:15px;
    line-height:1.9;
    margin-bottom:45px;
}

/*==================================================
CONTACT CARDS
==================================================*/

.contact-card{

    display:flex;
    align-items:center;
    gap:22px;

    background:#fff;

    padding:24px;

    margin-bottom:22px;

    border-radius:22px;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(212,175,55,.18);

}

.contact-icon{

    width:70px;

    height:70px;

    min-width:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#D4AF37,#B8860B);

    color:#fff;

    font-size:26px;

}

.contact-card h4{

    margin:0 0 6px;

    font-size:21px;

    color:#222;

}

.contact-card p{

    margin:0;

    color:#777;

    font-size:16px;

    line-height:1.7;

}

/*==================================================
FORM
==================================================*/

.lux-form{

    background:rgba(255,255,255,.95);

    padding:45px;

    border-radius:30px;

    border:1px solid rgba(212,175,55,.18);

    backdrop-filter:blur(20px);

    box-shadow:0 30px 70px rgba(0,0,0,.08);

}

.lux-form h3{

    font-size:34px;

    color:#222;

    margin-bottom:30px;

    font-family:'Playfair Display',serif;

}

.input-box{

    margin-bottom:22px;

}

.input-box label{

    display:block;

    margin-bottom:10px;

    color:#444;

    font-weight:600;

    font-size:15px;

}

.input-box input,

.input-box textarea{

    width:100%;

    padding:16px 18px;

    border-radius:12px;

    border:1px solid #e5e5e5;

    background:#fff;

    font-size:16px;

    color:#333;

    transition:.35s;

    resize:none;

}

.input-box input::placeholder,

.input-box textarea::placeholder{

    color:#aaa;

}

.input-box input:focus,

.input-box textarea:focus{

    outline:none;

    border-color:#D4AF37;

    box-shadow:0 0 0 4px rgba(212,175,55,.15);

}

/*==================================================
BUTTON
==================================================*/

.whatsapp-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:12px;

    background:linear-gradient(135deg,#25D366,#16a34a);

    color:#fff;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    transition:.35s;

}

.whatsapp-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 35px rgba(37,211,102,.30);

}

.whatsapp-btn i{

    font-size:22px;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

.lux-contact-wrapper{

grid-template-columns:1fr;

gap:60px;

}

}

@media(max-width:768px){

.lux-contact-section{

padding:45px 0;

}

.contact-left h2{

font-size:38px;

}

.contact-left>p{

font-size:16px;

}

.lux-form{

padding:30px;

}

.contact-card{

padding:18px;

}

.contact-icon{

width:60px;

height:60px;

min-width:60px;

font-size:22px;

}

.contact-card h4{

font-size:18px;

}

}

@media(max-width:480px){

.contact-left h2{

font-size:30px;

}

.contact-tag{

font-size:12px;

padding:8px 18px;

}

.lux-form h3{

font-size:28px;

}

.input-box input,

.input-box textarea{

padding:14px;

font-size:15px;

}

.whatsapp-btn{

font-size:16px;

padding:16px;

}

}
.hero{
    position: relative;
    height: 70vh;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.78) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.25) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
}

.hero-tagline{
    display:inline-block;
    padding:10px 22px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:40px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:36px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:15px;
}

.hero-content p{
    font-size:15px;
    line-height:1.6;
    color:#e6e6e6;
    margin-bottom:25px;
    max-width:580px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}

.hero-features{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:15px;
}

.feature-item i{
    color:#d4af37;
    font-size:20px;
}

@media(max-width:768px){

.hero{
    min-height:700px;
}

.hero-content h1{
    font-size:40px;
}

.hero-content p{
    font-size:17px;
}

.hero-buttons{
    flex-direction:column;
}

.hero-features{
    gap:18px;
}

}
.contact-card{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-header span{
    color:#c8a64b;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;
}

.contact-header h2{
    font-size:36px;
    margin:10px 0;
}

.contact-header p{
    color:#666;
    margin-bottom:30px;
}

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

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

.form-group input,
.form-group textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    transition:.3s;
    outline:none;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#d4af37;
    box-shadow:0 0 0 4px rgba(212,175,55,.15);
}

.send-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#25D366,#1EBE57);
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.send-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(37,211,102,.3);
}

.send-btn i{
    margin-right:10px;
    font-size:22px;
}
.lux-enquiry-box{
    background:#fff;
    border-radius:25px;
    padding:45px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.lux-enquiry-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#d4af37,#f8e08b,#d4af37);
}

.lux-enquiry-head{
    margin-bottom:35px;
}

.lux-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fdf5df;
    color:#b8860b;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.lux-enquiry-head h3{
    font-size:34px;
    color:#222;
    margin-bottom:12px;
}

.lux-enquiry-head p{
    color:#777;
    line-height:1.8;
}

.lux-contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.lux-field{
    display:flex;
    align-items:center;
    background:#fafafa;
    border:1px solid #e8e8e8;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
}

.lux-field:hover,
.lux-field:focus-within{
    border-color:#d4af37;
    box-shadow:0 0 0 4px rgba(212,175,55,.12);
}

.lux-field i{
    width:60px;
    text-align:center;
    color:#c9a227;
    font-size:18px;
}

.lux-field input,
.lux-field textarea{
    width:100%;
    border:none;
    background:transparent;
    padding:18px 18px 18px 0;
    outline:none;
    font-size:15px;
    color:#333;
    resize:none;
}

.lux-textarea{
    align-items:flex-start;
}

.lux-textarea i{
    margin-top:20px;
}

.lux-send-btn{
    border:none;
    border-radius:15px;
    padding:18px;
    font-size:17px;
    font-weight:600;
    color:#fff;
    cursor:pointer;
    background:linear-gradient(135deg,#25D366,#169d49);
    transition:.35s;
}

.lux-send-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(37,211,102,.35);
}

.lux-send-btn i{
    margin-right:10px;
    font-size:20px;
}

@media(max-width:768px){

.lux-enquiry-box{
    padding:30px 22px;
}

.lux-enquiry-head h3{
    font-size:28px;
}

}
.lux-field input,
.lux-field textarea{
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    padding:18px 20px;   /* Left padding */
    font-size:15px;
    color:#333;
}
.lux-footer{
    background:#111;
    color:#fff;
    padding:45px 0 25px;
}

.lux-footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.lux-footer-logo img{
    width:180px;
}

.lux-footer-text{
    color:#bbb;
    line-height:1.8;
    margin:25px 0;
}

.lux-footer-col h3{
    color:#d4af37;
    font-size:22px;
    margin-bottom:25px;
    position:relative;
}

.lux-footer-col h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:50px;
    height:2px;
    background:#d4af37;
}

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

.lux-footer-col ul li{
    margin-bottom:15px;
}

.lux-footer-col ul li a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.lux-footer-col ul li a:hover{
    color:#d4af37;
    padding-left:8px;
}

.lux-contact-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    align-items:flex-start;
}

.lux-contact-item i{
    color:#d4af37;
    font-size:18px;
    margin-top:4px;
}

.lux-contact-item span,
.lux-contact-item a{
    color:#ccc;
    text-decoration:none;
    line-height:1.7;
}

.lux-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.lux-social a{
    width:45px;
    height:45px;
    border:1px solid rgba(255,255,255,.15);
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    color:#fff;
    transition:.35s;
}

.lux-social a:hover{
    background:#d4af37;
    color:#111;
    transform:translateY(-5px);
}

.lux-footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    color:#999;
}

.lux-footer-bottom strong{
    color:#d4af37;
}

@media(max-width:992px){

.lux-footer-grid{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.lux-footer-grid{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.lux-contact-item{
    justify-content:center;
}

.lux-social{
    justify-content:center;
}

.lux-footer-col h3::after{
    left:50%;
    transform:translateX(-50%);
}

}
.lux-faq-section{
    padding:45px 0;
    background:linear-gradient(180deg,#faf8f4 0%,#ffffff 100%);
}

.lux-faq-heading{
    text-align:center;
    max-width:680px;
    margin:0 auto 35px;
}

.lux-faq-heading span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 16px;
    background:rgba(212,175,55,.12);
    border:1px solid rgba(212,175,55,.3);
    border-radius:30px;
    color:#b8860b;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:12px;
}

.lux-faq-heading h2{
    font-size:30px;
    margin-bottom:12px;
    color:#111;
}

.lux-faq-heading p{
    color:#666;
    line-height:1.6;
    font-size:15px;
}

.lux-faq-wrapper{
    max-width:740px;
    width:100%;
    margin:0 auto;
}

.lux-faq-item{
    background:#fff;
    margin-bottom:14px;
    max-width:740px;
    margin-left:auto;
    margin-right:auto;
    border-radius:16px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.18);
    box-shadow:0 6px 20px rgba(0,0,0,.03);
    transition:all .35s ease;
}

.lux-faq-item:hover{
    transform:translateY(-3px);
    border-color:rgba(212,175,55,.35);
    box-shadow:0 12px 30px rgba(212,175,55,.1);
}

.lux-faq-item.active{
    border-color:rgba(212,175,55,.5);
    box-shadow:0 12px 35px rgba(212,175,55,.15);
}

.lux-faq-question{
    width:100%;
    padding:18px 22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:none;
    background:#fff;
    cursor:pointer;
    font-size:16.5px;
    font-weight:600;
    color:#1a1a1a;
    text-align:left;
    gap:15px;
    transition:all .3s ease;
}

.lux-faq-item.active .lux-faq-question{
    color:#b8901d;
}

.lux-faq-question i{
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(212,175,55,.1);
    border:1px solid rgba(212,175,55,.25);
    color:#b8901d;
    font-size:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:all .35s ease;
}

.lux-faq-item.active .lux-faq-question i{
    transform:rotate(45deg);
    background:linear-gradient(135deg,#d4af37,#b8901d);
    color:#000;
    border-color:#d4af37;
    box-shadow:0 4px 15px rgba(212,175,55,.35);
}

.lux-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.lux-faq-item.active .lux-faq-answer{
    max-height:300px;
}

.lux-faq-answer p{
    padding:12px 22px 18px;
    color:#555;
    line-height:1.7;
    font-size:14.5px;
    margin:0;
    border-top:1px dashed rgba(212,175,55,.15);
}

.lux-faq-support{
    margin-top:30px;
    max-width:740px;
    margin-left:auto;
    margin-right:auto;
    background:#fff;
    border-radius:16px;
    padding:18px 24px;
    border:1px solid rgba(212,175,55,.2);
    box-shadow:0 8px 25px rgba(0,0,0,.04);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.lux-faq-support .support-text{
    display:flex;
    align-items:center;
    gap:15px;
}

.lux-faq-support .support-text i{
    font-size:26px;
    color:#b8901d;
}

.lux-faq-support h4{
    font-size:16px;
    margin:0 0 2px;
    color:#111;
}

.lux-faq-support p{
    font-size:13.5px;
    margin:0;
    color:#666;
}
.privacy-hero{

    position:relative;
    height:380px;

    background:url("../images/hero-banner.png") center/cover;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    color:#fff;

}

.overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.72);

}

.privacy-hero .container{

    position:relative;
    z-index:2;

}

.hero-tag{

    display:inline-block;

    background:#d4af37;

    color:#111;

    padding:10px 22px;

    border-radius:40px;

    font-size:14px;

    letter-spacing:2px;

    font-weight:600;

}

.privacy-hero h1{

    font-size:28px;

    margin:15px 0 10px;

}

.privacy-hero p{

    max-width:700px;

    margin:auto;

    color:#ddd;

    line-height:1.8;

}

/* Section */

.privacy-section{

    padding:45px 0;

}

.privacy-card{

    background:#fff;

    border-radius:20px;

    padding:60px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.privacy-item{

    margin-bottom:45px;

}

.privacy-item h2{

    color:#222;

    margin-bottom:18px;

    font-size:28px;

}

.privacy-item h2 i{

    color:#d4af37;

    margin-right:12px;

}

.privacy-item p{

    color:#666;

    line-height:1.9;

}

.privacy-item ul{

    padding-left:22px;

}

.privacy-item li{

    margin-bottom:12px;

    color:#666;

}

.last-update{

    background:#faf4df;

    border-left:5px solid #d4af37;

    padding:20px;

    border-radius:10px;

    font-weight:600;

    color:#444;

}

/* Responsive */

@media(max-width:768px){

.privacy-hero{

height:320px;

}

.privacy-hero h1{

font-size:38px;

}

.privacy-card{

padding:30px;

}

.privacy-item h2{

font-size:24px;

}

}
.terms-section{
padding:45px 0;
background:#f8f8f8;
}

.terms-wrapper{
max-width:1100px;
margin:auto;
}

.terms-card{
display:flex;
gap:30px;
background:#fff;
padding:35px;
border-radius:20px;
margin-bottom:25px;
box-shadow:0 10px 35px rgba(0,0,0,.08);
transition:.35s;
}

.terms-card:hover{
transform:translateY(-8px);
}

.terms-icon{
width:80px;
height:80px;
background:linear-gradient(135deg,#d4af37,#f8d76a);
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
color:#fff;
flex-shrink:0;
}

.terms-card h3{
margin-bottom:15px;
font-size:28px;
}

.terms-card p{
line-height:1.9;
color:#666;
}

.terms-contact{
margin-top:60px;
background:#111;
color:#fff;
padding:50px;
border-radius:20px;
text-align:center;
}

.contact-box{
margin-top:30px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.contact-box div{
background:#1f1f1f;
padding:25px;
border-radius:15px;
line-height:1.8;
}

.contact-box i{
display:block;
font-size:30px;
margin-bottom:15px;
color:#d4af37;
}

.updated{
margin-top:40px;
text-align:center;
padding:20px;
background:#fff8e6;
border-left:5px solid #d4af37;
font-weight:600;
}

@media(max-width:768px){

.terms-hero h1{
font-size:28px;
}

.terms-card{
flex-direction:column;
text-align:center;
}

.terms-icon{
margin:auto;
}

.contact-box{
grid-template-columns:1fr;
}

}
.shipping-section{
padding:45px 0;
background:#f7f7f7;
}

.shipping-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-bottom:35px;
}

.shipping-card{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;
text-align:center;
}

.shipping-card:hover{
transform:translateY(-8px);
}

.shipping-icon{
width:80px;
height:80px;
margin:auto;
background:linear-gradient(135deg,#d4af37,#f8df8a);
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
color:#fff;
margin-bottom:25px;
}

.shipping-card h3{
margin-bottom:15px;
}

.shipping-card p{
color:#666;
line-height:1.8;
}

.shipping-timeline{
background:#fff;
padding:60px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
margin-bottom:35px;
}

.shipping-timeline h2{
text-align:center;
margin-bottom:30px;
}

.timeline-item{
display:flex;
gap:25px;
margin-bottom:35px;
align-items:flex-start;
}

.number{
width:60px;
height:60px;
background:#d4af37;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
font-weight:bold;
color:#fff;
flex-shrink:0;
}

.shipping-contact{
background:#111;
color:#fff;
text-align:center;
padding:60px;
border-radius:20px;
}

.shipping-content{
margin-bottom:35px;
}

.shipping-contact h2{
margin-bottom:20px;
}

.shipping-contact p{
color:#ddd;
margin-bottom:30px;
}

.shipping-btn{
display:inline-block;
padding:16px 40px;
background:#d4af37;
color:#111;
font-weight:600;
border-radius:40px;
text-decoration:none;
transition:.3s;
}

.shipping-btn:hover{
transform:translateY(-3px);
}

@media(max-width:768px){

.shipping-hero h1{
font-size:28px;
}

.shipping-timeline{
padding:30px;
}

.timeline-item{
flex-direction:column;
align-items:center;
text-align:center;
}

.shipping-contact{
padding:40px 25px;
}

}
.return-section{
padding:45px 0;
background:#f8f8f8;
}

.return-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-bottom:35px;
}

.return-card{
background:#fff;
padding:40px 35px;
border-radius:20px;
box-shadow:0 12px 35px rgba(0,0,0,.08);
text-align:center;
transition:.35s;
}

.return-card:hover{
transform:translateY(-8px);
}

.return-icon{
width:80px;
height:80px;
margin:auto;
border-radius:50%;
background:linear-gradient(135deg,#d4af37,#f7d66b);
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
color:#fff;
margin-bottom:20px;
}

.return-card h3{
margin-bottom:10px;
font-size:24px;
}

.return-card p{
color:#666;
line-height:1.8;
}

.return-process{
background:#fff;
padding:60px;
border-radius:20px;
box-shadow:0 12px 35px rgba(0,0,0,.08);
margin-bottom:60px;
}

.return-process h2{
text-align:center;
margin-bottom:30px;
}

.process-wrapper{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.step{
text-align:center;
}

.step-number{
width:65px;
height:65px;
margin:auto auto 20px;
border-radius:50%;
background:#d4af37;
color:#fff;
font-size:24px;
font-weight:bold;
display:flex;
justify-content:center;
align-items:center;
}

.step h4{
margin-bottom:10px;
}

.step p{
color:#666;
}

.return-content{
margin-bottom:35px;
}

.return-contact{
margin-top:60px;
background:#111;
padding:60px;
border-radius:20px;
text-align:center;
color:#fff;
}

.return-contact p{
color:#ddd;
margin:20px 0 30px;
}

.return-btn{
display:inline-block;
padding:16px 40px;
background:#d4af37;
color:#111;
font-weight:600;
border-radius:40px;
text-decoration:none;
transition:.3s;
}

.return-btn:hover{
transform:translateY(-3px);
}

.policy-note{
margin-top:40px;
padding:25px;
background:#fff8e8;
border-left:5px solid #d4af37;
border-radius:12px;
font-size:16px;
line-height:1.8;
}

.policy-note i{
color:#d4af37;
margin-right:10px;
}

@media(max-width:768px){

.return-hero{
height:340px;
}

.return-hero h1{
font-size:28px;
}

.process-wrapper{
grid-template-columns:1fr;
}

.return-process{
padding:35px;
}

.return-contact{
padding:40px 25px;
}

}
/*==========================
VIDEO SECTION & PRODUCT PRICING
==========================*/

.video-showcase{
    padding:45px 0;
    background:#fff;
}

.video-container{
    max-width:1200px;
    margin:auto;
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.video-showcase-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    background: url('../images/SC1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.video-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(0, 0, 0, 0.65) 100%);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:30px 20px;
}

.video-overlay h2{
    color:#fff;
    font-size:28px;
    margin-bottom:12px;
}

.video-overlay p{
    color:#e2e8f0;
    font-size:15px;
    max-width:600px;
    line-height:1.6;
    margin-bottom:22px;
}

.video-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 26px;
    background:linear-gradient(135deg,#D4AF37,#B8860B);
    color:#000;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
    transition:all 0.35s ease;
    box-shadow:0 8px 25px rgba(212, 175, 55, 0.3);
}

.video-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(212, 175, 55, 0.5);
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #b8901d;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 12px;
}

.product-price .old-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

    box-shadow:0 20px 40px rgba(212,175,55,.35);

} */

@media(max-width:768px){

.showcase-video{

height:350px;

}

/* .video-overlay h2{

font-size:34px;

}

.video-overlay p{

font-size:16px;

} */

}
/* =========================================
   RESPONSIVE & PREMIUM DESIGN UPDATES (V2)
   ========================================= */

/* --- Fluid Variables --- */
:root {
  --nav-height: 80px;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(212, 175, 55, 0.2);
}

/* --- Hero Section Adjustment --- */
.hero {
  margin-top: 0; 
}

/* --- Grids --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .menu-toggler {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.4s ease, opacity 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 60px 30px 30px;
    visibility: hidden;
    opacity: 0;
  }

  .primary-nav.nav-open {
    right: 0;
    visibility: visible;
    opacity: 1;
  }

  .primary-menu {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    width: 100%;
  }

  .primary-menu a {
    font-size: 1.15rem;
    font-weight: 600;
  }

  .header-right .premium-btn {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
      font-size: 1rem;
  }
  
  .hero-buttons {
      flex-direction: column;
      width: 100%;
  }
  
  .hero-buttons .btn {
      width: 100%;
      text-align: center;
  }

  .section {
    padding: 30px 0;
  }

  .page-hero {
    height: 30vh !important;
    min-height: 180px !important;
    padding-top: 30px !important;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .why-header h2 {
      font-size: 2rem;
  }
  
  .product-img {
    height: 280px;
    object-fit: contain !important;
    background: #ffffff;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 1.4rem;
  }
  
  .brand-image {
      height: 40px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }

  .product-img {
    height: 240px;
    object-fit: contain !important;
    background: #ffffff;
    padding: 10px;
  }
  
  .luxury-header h2 {
      font-size: 2rem;
  }
}

/* --- Touch Targets --- */
button, a, input[type="submit"], input[type="button"] {
    min-height: 44px;
}

/* Utility Class to prevent body scroll when nav is open */
.body-no-scroll {
  overflow: hidden;
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.nav-overlay.nav-open {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   CONTACT FORM MOBILE FIXES
   ========================================= */
@media (max-width: 768px) {
  .lux-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    overflow: hidden;
  }
  
  .lux-enquiry-box {
    padding: 25px 15px !important;
    width: 100%;
    box-sizing: border-box;
    border-radius: 15px;
  }
  
  .lux-contact-form {
    width: 100%;
  }

  .lux-field {
    width: 100%;
    box-sizing: border-box;
  }
  
  .lux-field input,
  .lux-field textarea {
    padding: 12px 10px 12px 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .lux-field i {
    width: 40px;
  }
  
  .lux-enquiry-head h3 {
    font-size: 24px !important;
  }
  
  .contact-left h2 {
    font-size: 28px !important;
  }
}

/* =========================================
   CONTACT LEFT SECTION MOBILE FIXES
   ========================================= */
@media (max-width: 768px) {
  .contact-left {
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    text-align: center;
  }
  
  .contact-left h2 {
    font-size: 26px !important;
    margin-bottom: 15px !important;
  }
  
  .contact-left > p {
    font-size: 15px !important;
    margin-bottom: 30px !important;
  }
  
  .contact-card {
    flex-direction: column !important;
    text-align: center !important;
    padding: 20px !important;
    gap: 15px !important;
    width: 100%;
    box-sizing: border-box;
  }
  
  .contact-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
    margin: 0 auto !important;
  }
  
  .contact-card h4 {
    font-size: 18px !important;
  }
  
  .contact-card p {
    font-size: 14px !important;
    word-break: break-word;
  }
}

/* =========================================
   FAQ SECTION MOBILE FIXES
   ========================================= */
@media (max-width: 768px) {
  .lux-faq-section {
    padding: 35px 20px !important;
  }
  
  .lux-faq-heading h2 {
    font-size: 28px !important;
  }
  
  .lux-faq-question {
    padding: 18px 20px !important;
    gap: 15px;
  }
  
  .lux-faq-question span {
    text-align: left;
    font-size: 16px !important;
    line-height: 1.4;
  }
  
  .lux-faq-question i {
    flex-shrink: 0; /* Prevents icon from getting squished by long text */
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
  }
  
  .lux-faq-item.active .lux-faq-answer {
    max-height: 400px !important; /* Allow more room for wrapped text */
  }
  
  .lux-faq-answer p {
    padding: 0 20px 20px !important;
    font-size: 14px !important;
  }
}

/* =========================================
   MOBILE HORIZONTAL SCROLLBAR PREVENTION
   ========================================= */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative !important;
}

header, section, footer, main, 
.lux-header, .lux-wrapper, .hero, .container, 
.split-section, .lux-contact-section, .review-card, 
.perfect-box, .split-image, .why-grid, .luxury-grid,
[class*="container"], [class*="wrapper"], [class*="section"] {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Fix fixed width elements */
.review-card {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ==================================================
   COMPREHENSIVE RESPONSIVE DESIGN FOR ALL SCREEN SIZES
   ================================================== */

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

img, video, svg, canvas {
  max-width: 100% !important;
  height: auto;
}

/* --- Large Screen & Laptop (993px - 1200px) --- */
@media (max-width: 1200px) {
  .container, .lux-wrapper {
    max-width: 100% !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

/* --- Tablets & Medium Screens (769px - 992px) --- */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 36px !important;
    line-height: 1.3 !important;
  }

  .why-content {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .why-content-footer {
    grid-column: span 2 !important;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
  }

  .promise-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
  }

  .lux-footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 35px !important;
  }
}

/* --- Mobile Landscape & Tablets (481px - 768px) --- */
@media (max-width: 768px) {
  /* Top Header */
  .top-header-wrapper {
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center !important;
  }

  .top-contact {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    font-size: 12px !important;
  }

  /* Header Navigation */
  .lux-wrapper {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .brand-title {
    font-size: 22px !important;
  }

  .brand-subtitle {
    font-size: 10px !important;
  }

  .primary-nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    background: #ffffff !important;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15) !important;
    z-index: 1001 !important;
    transition: right 0.35s ease !important;
    padding: 40px 25px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    overflow-y: auto !important;
  }

  .primary-nav.nav-open {
    right: 0 !important;
  }

  .primary-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 22px !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  .primary-menu a {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #222222 !important;
    text-decoration: none !important;
    padding: 6px 0 !important;
    display: block !important;
  }

  .primary-menu a.menu-active {
    color: #b8901d !important;
  }

  .menu-toggler {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(212,175,55,0.3) !important;
    background: rgba(212,175,55,0.08) !important;
    color: #b8901d !important;
    font-size: 20px !important;
    cursor: pointer !important;
  }

  .premium-btn {
    display: none !important;
  }

  /* Hero Section */
  .hero {
    min-height: 420px !important;
    padding: 60px 18px !important;
  }

  .hero-content h1 {
    font-size: 28px !important;
    line-height: 1.35 !important;
    margin-bottom: 15px !important;
  }

  .hero-content p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin-bottom: 25px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 14px 20px !important;
  }

  .hero-features {
    flex-wrap: wrap !important;
    gap: 12px !important;
    justify-content: center !important;
    margin-top: 25px !important;
  }

  .feature-item {
    font-size: 13px !important;
  }

  /* Featured Section */
  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .product-card {
    width: 100% !important;
  }

  .product-img {
    height: 280px !important;
    object-fit: contain !important;
    background: #ffffff !important;
    padding: 15px !important;
  }

  .product-info {
    padding: 20px 16px !important;
  }

  .product-info h3 {
    font-size: 20px !important;
  }

  .buy-now-btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 14px 18px !important;
  }

  /* Why Choose Us Section */
  .why-premium {
    padding: 40px 18px !important;
  }

  .why-content {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .why-content-footer {
    grid-column: span 1 !important;
    text-align: center !important;
  }

  .why-content-footer .btn {
    width: 100% !important;
  }

  /* Reviews & Promises */
  .reviews-grid,
  .promise-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .review-card,
  .promise-card {
    width: 100% !important;
    padding: 24px 20px !important;
  }

  /* FAQ Section */
  .lux-faq-wrapper {
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .lux-faq-question {
    font-size: 15px !important;
    padding: 16px 18px !important;
  }

  /* Footer */
  .lux-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }

  .lux-footer-col {
    align-items: center !important;
  }

  .lux-footer-col ul {
    align-items: center !important;
  }

  .top-social, .lux-social-links {
    justify-content: center !important;
  }
}

/* --- Extra Small Mobile Screens (320px - 480px) --- */
@media (max-width: 480px) {
  .container, .lux-wrapper {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .brand-area {
    gap: 8px !important;
  }

  .brand-image {
    height: 34px !important;
  }

  .brand-title {
    font-size: 19px !important;
  }

  .hero-content h1 {
    font-size: 23px !important;
  }

  .hero-tagline {
    font-size: 11px !important;
    padding: 6px 14px !important;
  }

  .product-img {
    height: 240px !important;
    object-fit: contain !important;
    background: #ffffff !important;
    padding: 12px !important;
  }

  .product-info h3 {
    font-size: 18px !important;
  }

  .why-header h2 {
    font-size: 24px !important;
  }

  .section-title {
    font-size: 24px !important;
  }

  .btn {
    font-size: 14px !important;
    padding: 12px 18px !important;
  }
}

/* ==========================================================================
   Product Details Pop-Up Modal
   ========================================================================== */
.product-modal-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background-color: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.product-modal-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 0 30px rgba(212, 175, 55, 0.15);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-modal-backdrop.active .product-modal-card {
  transform: scale(1) translateY(0);
}

.product-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
  font-size: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
  line-height: 1;
}

.product-modal-close:hover {
  background: var(--color-gold);
  color: #ffffff;
  border-color: var(--color-gold);
  transform: rotate(90deg);
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  padding: 35px;
}

.product-modal-media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fdfbf7;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #f0e6d2;
}

.product-modal-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #d4af37 0%, #aa8c2c 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.product-modal-img {
  max-height: 300px;
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product-modal-img:hover {
  transform: scale(1.03);
}

.product-modal-features-row {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  width: 100%;
  justify-content: space-around;
  font-size: 12px;
  color: #555555;
  border-top: 1px dashed #e2d7be;
  padding-top: 15px;
}

.product-modal-features-row span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.product-modal-features-row i {
  color: var(--color-gold-dark);
}

.product-modal-details {
  display: flex;
  flex-direction: column;
}

.product-modal-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-modal-title {
  font-size: 26px;
  font-family: var(--font-heading);
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.25;
}

.product-modal-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.product-modal-rating .stars {
  color: #f5a623;
  font-size: 14px;
}

.product-modal-rating .rating-text {
  font-size: 13px;
  color: #666666;
  font-weight: 500;
}

.product-modal-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 18px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 14px;
}

.product-modal-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  background: #f9f9f9;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid var(--color-gold);
}

.spec-item {
  font-size: 13px;
  color: #444444;
}

.spec-item strong {
  color: #1a1a1a;
}

.product-modal-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option-label {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
}

.size-selector {
  display: flex;
  gap: 8px;
}

.size-btn {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-btn:hover, .size-btn.active {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold-dark);
  font-weight: 600;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  overflow: hidden;
  width: max-content;
}

.qty-btn {
  background: #f5f5f5;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease;
}

.qty-btn:hover {
  background: #e0e0e0;
}

#modalQtyVal {
  width: 40px;
  height: 32px;
  text-align: center;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
}

/* Price and Badge in Product Cards */
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 15px;
  flex-wrap: wrap;
}

.product-price .price-current {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-gold, #d4af37);
  letter-spacing: 0.3px;
}

.product-price .price-old {
  font-size: 0.95rem;
  color: #888888;
  text-decoration: line-through;
  font-weight: 400;
}

.product-price .discount-badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold-dark, #aa8c2c);
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Modal Price Box */
.product-modal-price-box {
  background: #fdfaf3;
  border: 1px solid #ebdcb9;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
}

.product-modal-price-box .price-main {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.modal-current-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.modal-old-price {
  font-size: 1.05rem;
  color: #888888;
  text-decoration: line-through;
  font-weight: 400;
}

.modal-discount-tag {
  background: linear-gradient(135deg, #d4af37 0%, #aa8c2c 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

.product-modal-price-box .price-sub {
  font-size: 12px;
  color: #27ae60;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Customer Shipping Details Input Fields */
.checkout-customer-fields {
  background: #faf8f5;
  border: 1px solid #eee5d3;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.customer-fields-header {
  font-size: 12px;
  font-weight: 700;
  color: #444444;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.customer-fields-header i {
  color: var(--color-gold, #d4af37);
}

.checkout-customer-fields .input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.checkout-customer-fields .input-group input {
  width: 100%;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #dcd3c1;
  border-radius: 6px;
  font-size: 13px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.checkout-customer-fields .input-group input:focus {
  border-color: var(--color-gold, #d4af37);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.checkout-customer-fields .input-group input::placeholder {
  color: #999999;
}

/* Modal Action Buttons */
.product-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.modal-pay-btn {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37 0%, #aa8c2c 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modal-pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #e5bf43 0%, #ba9934 100%);
}

.modal-pay-btn:active {
  transform: translateY(0);
}

.modal-whatsapp-btn {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #25d366;
  color: #25d366;
  background: transparent;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.modal-whatsapp-btn:hover {
  background: #25d366;
  color: #ffffff;
}

/* Trust Badges */
.modal-trust-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11.5px;
  color: #666666;
  padding-top: 12px;
  border-top: 1px solid #eeeeee;
}

.modal-trust-badges span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.modal-trust-badges i {
  color: #27ae60;
}

/* Payment Success Modal */
.success-card {
  max-width: 520px !important;
  text-align: center;
  padding: 10px;
}

.payment-success-body {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon-wrapper {
  font-size: 64px;
  color: #27ae60;
  margin-bottom: 16px;
  animation: popSuccess 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popSuccess {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-title {
  font-size: 24px;
  font-family: var(--font-heading);
  color: #1a1a1a;
  margin-bottom: 6px;
}

.success-subtitle {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
}

.success-order-summary {
  width: 100%;
  background: #fdfbf7;
  border: 1px solid #ebdcb9;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 24px;
  text-align: left;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13.5px;
  border-bottom: 1px dashed #ebdcb9;
}

.summary-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-label {
  color: #666666;
  font-weight: 500;
}

.summary-value {
  color: #1a1a1a;
  font-weight: 600;
}

.highlight-id {
  font-family: monospace;
  font-size: 12.5px;
  color: #b8860b;
  background: rgba(212, 175, 55, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
}

.highlight-price {
  font-size: 16px;
  font-weight: 800;
  color: #27ae60;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.whatsapp-confirm-btn {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.whatsapp-confirm-btn:hover {
  background: #1eb857;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
  .product-modal-body {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .product-modal-card {
    max-height: 95vh;
  }

  .product-modal-title {
    font-size: 22px;
  }

  .checkout-customer-fields .input-row {
    grid-template-columns: 1fr;
  }

  .product-modal-img {
    max-height: 220px;
  }

  .modal-trust-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


