.lux-acrylic-section {
  padding: 40px 0;
  margin-top: 20px;
  background: linear-gradient(135deg, #fff, #fff3f5);
  font-family: 'Poppins', sans-serif;
}

/* HEADING */
.lux-heading h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(45deg, #87593f, #e7c0a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lux-heading p {
  color: #666;
  max-width: 600px;
  margin: 10px auto 50px;
}

/* CARD */
.lux-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
  position: relative;
}

.lux-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(212,175,55,0.2);
}

/* BADGE */
.lux-badge {
  position: absolute;
  top: 15px;
  z-index: 999;
  left: 15px;
  background: linear-gradient(45deg, #E8B4B8, #8c5f44);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

/* IMAGE */
.lux-img-box {
  
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.lux-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.4s;
}

.lux-img:hover {
  transform: scale(1.08);
}

/* TEXT */
.lux-card h5 {
  font-weight: 600;
}

.lux-desc {
  font-size: 14px;
  color: #555;
}

/* FEATURES */
.lux-features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.lux-features li {
  font-size: 14px;
  margin-bottom: 6px;
}

.lux-features i {
  color: #8c5f44;
  margin-right: 8px;
}

/* SIZE */
.lux-size {
  color: #888;
  font-size: 14px;
}

.lux-tagline {
  font-weight: 600;
}

/* FEATURE STRIP */
.lux-feature-strip {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding: 25px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.lux-feature-strip div {
  font-size: 14px;
}

.lux-feature-strip i {
  color: #8c5f44;
  margin-right: 8px;
}

/* BUTTON */
.lux-btn {
  background: linear-gradient(45deg, #87593f, #e7c0a3);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  color: white;
  margin: 10px;
  position: relative;
  overflow: hidden;
}

.lux-btn::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  background: rgba(255,255,255,0.5);
  top: 0;
  left: -60px;
  transform: skewX(-20deg);
}

.lux-btn:hover::after {
  left: 120%;
  transition: 0.6s;
}

.luxx-info-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff, #fff5f7);
}

/* FEATURE GRID */
.luxx-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}

.luxx-feature-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.luxx-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212,175,55,0.2);
}

/* ICON STYLE */
.luxx-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(45deg, #87593f, #e7c0a3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(212,175,55,0.4);
}

.luxx-feature-card h6 {
  font-weight: 600;
}

.luxx-feature-card p {
  font-size: 13px;
  color: #666;
}

/* SIZE SECTION */
.luxx-title {
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #87593f, #e7c0a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.luxx-size-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.luxx-size-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.luxx-size-card:hover {
  transform: translateY(-10px);
}

.luxx-size-card i {
  font-size: 28px;
  color: #8c5f44;
  margin-bottom: 10px;
}

.luxx-size-card h5 {
  font-weight: 700;
}

/* CTA */
.luxx-cta-box {
  margin-top: 80px;
  padding: 30px 30px;
  border-radius: 25px;
  background: linear-gradient(45deg, #87593f, #e7c0a3);
  color: white;
  position: relative;
  overflow: hidden;
}

.luxx-cta-box h2 {
  font-weight: 700;
}

.luxx-cta-box p {
  opacity: 0.9;
  margin-bottom: 25px;
}

/* BUTTONS */
.luxx-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.luxx-btn-primary {
  background: white;
  color: #8c5f44;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
}

.luxx-btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .luxx-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .luxx-size-grid {
    flex-direction: column;
    align-items: center;
  }
}
.lux-img-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
}

.lux-img-box:hover::after {
  left: 125%;
  transition: 0.7s;
}
.lux-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #f8f8f8;
}

/* BOTH IMAGES */
.lux-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease, transform 0.4s ease;
}

/* DEFAULT IMAGE */
.main-img {
  opacity: 1;
  z-index: 1;
}

/* HOVER IMAGE */
.hover-img {
  opacity: 0;
  z-index: 2;
}

/* HOVER EFFECT */
.lux-img-box:hover .hover-img {
  opacity: 1;
}

.lux-img-box:hover .main-img {
  opacity: 0;
}

/* SLIGHT ZOOM */
.lux-img-box:hover .lux-img {
  transform: scale(1.05);
}

/* MAIN */
.simple-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* SLIDE */
.slide {
  display: none;
  text-align: center;
}

/* ACTIVE */
.slide.active {
  display: block;
}

/* IMAGE 🔥 */
.slide img {
  max-width: 100%;   /* responsive */
  height: auto;      /* original ratio maintain */
  display: block;
  margin: 0 auto;    /* center */
}
.luxp-product-section {
  padding: 45px 0;
  background: linear-gradient(135deg, #fff, #fff5f7);
  font-family: 'Poppins', sans-serif;
}

/* MAIN IMAGE */
.luxp-main-img {
  background: #fff;
  
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.luxp-main-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* TEXT */
.luxp-content h2 {
  font-weight: 700;
  background: linear-gradient(45deg, #87593f, #e7c0a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.luxp-overview {
  color: #555;
  margin-bottom: 12px;
  font-size: 15px;
}


/* ICON STYLE */
.luxp-feature i {
  font-size: 18px;
  color: #8c5f44;
  background: rgba(212,175,55,0.1);
  padding: 10px;
  border-radius: 50%;
}

/* SIDE IMAGE */
.luxp-side-img img {
  width: 100%;
  border-radius: 20px;
}

/* WHY */
.luxp-why {
  margin-top: 70px;
  text-align: center;
}

.luxp-why h3 {
  margin-bottom: 10px;
}

/* PERFECT FOR */
.luxp-perfect {
  margin-top: 60px;
  text-align: center;
}

.luxp-perfect-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.luxp-perfect-grid div {
  background: #fff;
  padding: 15px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ICON */
.luxp-perfect-grid i {
  color: #8c5f44;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .luxp-feature-grid {
    grid-template-columns: 1fr;
  }

  .luxp-perfect-grid {
    flex-direction: column;
  }
}

/* SECTION WRAP */
.luxp-feature-wrap {
  padding: 80px 0;
}

/* TITLE */
.luxp-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* GRID */
.luxp-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.luxp-feature {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 18px 20px;
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.1);

  transition: all 0.3s ease;
  cursor: pointer;
}

/* ICON */
.luxp-feature i {
  font-size: 22px;
  color: #8c5f44; /* gold */
}

/* TEXT */
.luxp-feature span {
  font-size: 15px;
  font-weight: 500;
}

/* HOVER EFFECT 🔥 */
.luxp-feature:hover {
  transform: translateY(-5px) scale(1.02);
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(232,180,184,0.15));
  border-color: rgba(212,175,55,0.4);
}

/* SIDE IMAGE */
.luxp-side-img {
  position: relative;
  text-align: center;
}

.luxp-side-img img {
  max-width: 100%;
  border-radius: 20px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

/* IMAGE HOVER */
.luxp-side-img:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .luxp-feature-grid {
    grid-template-columns: 1fr;
  }

  .luxp-title {
    font-size: 28px;
  }
}

.luxx-why-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff, #fff4f6);
  position: relative;
  overflow: hidden;
}

/* HEADING */
.luxx-why-top h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(45deg, #87593f, #e7c0a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.luxx-why-top p {
  max-width: 750px;
  margin: 12px auto;
  color: #555;
  font-size: 15px;
}

/* GRID */
.luxx-why-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.luxx-why-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

/* HOVER EFFECT */
.luxx-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212,175,55,0.25);
}

/* ICON */
.luxx-why-card i {
  font-size: 22px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(45deg, #87593f, #e7c0a3);
  color: white;
  box-shadow: 0 5px 15px rgba(212,175,55,0.4);
}

/* TEXT */
.luxx-why-card span {
  font-size: 14px;
  color: #333;
}

/* RESULT BOX */
.luxx-result-box {
margin-top: 50px;
    padding: 23px 17px;
  border-radius: 25px;
  background: linear-gradient(45deg, #87593f, #e7c0a3);
  color: white;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.luxx-result-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
}

.luxx-result-box:hover::after {
  left: 120%;
  transition: 0.8s;
}

.luxx-result-box h3 {
  font-weight: 700;
}

.luxx-result-box p {
  margin-top: 10px;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .luxx-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .luxx-why-grid {
    grid-template-columns: 1fr;
  }

  .luxx-why-top h2 {
    font-size: 30px;
  }
}

.luxc-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #E8B4B8, #fbe3e6);
  position: relative;
  overflow: hidden;
}

/* SOFT WHITE OVERLAY */
.luxc-cta-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(208 155 125);
  top: 0;
  left: 0;
}

/* CONTENT FIX */
.luxc-cta-section .container {
  position: relative;
  z-index: 2;
}

/* SIZE BOX */
.luxc-size-box {
  text-align: center;
  margin-bottom: 60px;
}

.luxc-size-box h2 {
  font-weight: 700;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SIZE GRID */
.luxc-size-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.luxc-size-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.luxc-size-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212,175,55,0.3);
}

.luxc-size-card h4 {
  color: #d09b7c;
  font-weight: 700;
}

/* CTA */
.luxc-main-cta {
  margin: 34px 0;
  padding: 60px 30px;
  border-radius: 25px;
  background: linear-gradient(45deg, #87593f, #e7c0a3);
  color: white;
  box-shadow: 0 15px 50px rgba(212,175,55,0.3);
}

.luxc-main-cta h2 {
  font-weight: 700;
}

.luxc-main-cta p {
  margin: 15px 0 25px;
}

/* BUTTONS */
.luxc-btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.luxc-btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

/* PRIMARY */
.luxc-btn.primary {
  background: white;
  color: #d09b7c;
}

/* OUTLINE */
.luxc-btn.outline {
  border: 2px solid white;
  color: white;
}

/* SHINE EFFECT */
.luxc-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 40px;
  height: 100%;
  background: rgba(255,255,255,0.6);
  transform: skewX(-20deg);
}

.luxc-btn:hover::after {
  left: 120%;
  transition: 0.6s;
}

/* TRUST GRID */
.luxc-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.luxc-trust-item {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

.luxc-trust-item:hover {
  transform: translateY(-8px);
}

/* ICON */
.luxc-trust-item i {
  font-size: 26px;
  color: #8c5f44;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .luxc-size-grid {
    flex-direction: column;
    align-items: center;
  }

  .luxc-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .luxc-trust-grid {
    grid-template-columns: 1fr;
  }
}

.marquee {
  width: 100%;
  overflow: hidden;
  background: #000;
  color: #d4af37;
  padding: 10px 0;
  font-weight: 500;
  letter-spacing: 1px;
}

.marquee h6 {
    color: white;
    font-weight: 500;
  display: inline-block;
  white-space: nowrap;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.lux-shine-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  background: linear-gradient(45deg, #D4AF37, #E8B4B8);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
  transition: 0.3s ease;
}

/* SHINE EFFECT */
.lux-shine-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.5);
  transform: skewX(-25deg);
  animation: shineMove 2.5s infinite;
}

/* ANIMATION */
@keyframes shineMove {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* HOVER EFFECT */
.lux-shine-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212,175,55,0.6);
}
.lux-shine-btn {
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(5px);
}
/* OPEN BUTTON */
.lux-open-btn {
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(45deg, #D4AF37, #E8B4B8);
  color: white;
  font-weight: 600;
}

/* MODAL */
.lux-modal {
  border-radius: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #fff, #fff5f7);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* TITLE */
.lux-modal .modal-title {
  font-weight: 700;
  background: linear-gradient(45deg, #D4AF37, #E8B4B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FIELD */
.lux-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ICON */
.lux-field i {
  color: #D4AF37;
  font-size: 18px;
}

/* INPUT */
.lux-field input,
.lux-field select {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  background: transparent;
}

/* SUBMIT BUTTON */
.lux-submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  color: white;
  font-weight: 600;
  background: linear-gradient(45deg, #D4AF37, #E8B4B8);
  position: relative;
  overflow: hidden;
}

/* SHINE */
.lux-submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 40px;
  height: 100%;
  background: rgba(255,255,255,0.6);
  transform: skewX(-20deg);
}

.lux-submit-btn:hover::after {
  left: 120%;
  transition: 0.6s;
}
/* OVERLAY */
.lux-success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

/* ACTIVE */
.lux-success-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* BOX */
.lux-success-box {
  background: white;
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  max-width: 320px;
}

/* TEXT */
.lux-success-box h3 {
  margin-top: 15px;
  font-weight: 700;
  background: linear-gradient(45deg, #D4AF37, #E8B4B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lux-success-box p {
  color: #666;
  font-size: 14px;
}

/* SVG */
.lux-check {
  width: 80px;
  height: 80px;
}

.lux-check-circle {
  stroke: #E8B4B8;
  stroke-width: 3;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.6s ease forwards;
}

.lux-check-path {
  stroke: #D4AF37;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCheck 0.4s 0.6s ease forwards;
}

/* ANIMATIONS */
@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.lux-footer {
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
  color: #ddd;
  padding: 80px 0 30px;
  font-family: 'Poppins', sans-serif;
}

/* TITLES */
.lux-footer-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}

.lux-footer-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(45deg, #D4AF37, #E8B4B8);
  display: block;
  margin-top: 6px;
}

/* TEXT */
.lux-footer p {
  font-size: 14px;
  color: #bbb;
}

/* LIST */
.lux-footer-list {
  list-style: none;
  padding: 0;
}

.lux-footer-list li {
  margin-bottom: 10px;
  font-size: 14px;
}

.lux-footer-list i {
  color: #D4AF37;
  margin-right: 8px;
}

/* LINKS */
.lux-footer-links {
  list-style: none;
  padding: 0;
}

.lux-footer-links li {
  margin-bottom: 8px;
}

.lux-footer-links a {
  text-decoration: none;
  color: #bbb;
  transition: 0.3s;
}

.lux-footer-links a:hover {
  color: #E8B4B8;
  padding-left: 5px;
}

/* BOTTOM */
.lux-footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
}

/* BUSINESS INFO */
.lux-business-info {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.lux-business-info div {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lux-business-info i {
  color: #D4AF37;
}

/* TAGLINE */
.lux-tagline {
  font-weight: 600;
  background: linear-gradient(45deg, #D4AF37, #E8B4B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* COPYRIGHT */
.lux-copy {
  font-size: 13px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .lux-footer {
    text-align: center;
  }
}

.luxr-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff, #fff5f7);
}

/* HEADING */
.luxr-heading h2 {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(45deg, #D4AF37, #E8B4B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.luxr-heading p {
  color: #666;
  margin-top: 10px;
}

/* CARD */
.luxr-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 25px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
}

.luxr-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(212,175,55,0.25);
}

/* STARS */
.luxr-stars {
  color: #D4AF37;
  margin-bottom: 15px;
}

/* TEXT */
.luxr-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* USER */
.luxr-user h6 {
  margin: 0;
  font-weight: 600;
}

.luxr-user span {
  font-size: 13px;
  color: #888;
}

/* TRUST */
.luxr-trust {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.luxr-trust div {
  background: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.luxr-trust i {
  color: #D4AF37;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .luxr-heading h2 {
    font-size: 28px;
  }
}