body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  overflow-x: hidden;
}

h1 {
  font-family: 'Playfair Display', serif;
}

/* NAVBAR */
.glass-navbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.6);
  padding: 18px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.glass-navbar.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.9);
}

/* BRAND */
.navbar-brand {
  font-size: 22px;
}

/* NAV LINKS */
.nav-link {
  position: relative;
  margin: 0 12px;
  font-weight: 500;
  color: #333 !important;
}

/* UNDERLINE */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #2f2a25;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* CTA BUTTON */
.btn-nav {
  background: #2b1c1c;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-nav:hover {
  background: #000000;
  color: white;
}

/* DUMMY SECTION */
.dummy-section {
  height: 200vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* HERO BASE */
.lux-hero {
  position: relative;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

/* SPLIT IMAGES */
.hero-left,
.hero-right {
  width: 50%;
  height: 100%;
}

.hero-left img,
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.lux-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* CONTENT */
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 600px;
}

/* HEADING */
.hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  letter-spacing: 3px;
}

/* TAGLINE */
.tagline {
  font-size: 13px;
  letter-spacing: 2px;
  margin: 15px 0;
  opacity: 0.9;
}

/* SUBTEXT */
.subtext {
  font-size: 16px;
  margin-bottom: 25px;
}

/* BUTTON */
.hero-btn {
  border: 1px solid #fff;
  padding: 12px 28px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  color: #fff;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

/* MOBILE */
@media(max-width:768px){
  .lux-hero {
    flex-direction: column;
  }
  .hero-left,
  .hero-right {
    width: 100%;
    height: 50%;
  }
  .hero-overlay h1 {
    font-size: 32px;
  }
}

/* SECTION TITLE */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  letter-spacing: 1px;
}

/* CARD */
.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  transition: 0.4s;
  cursor: pointer;
}

/* IMAGE */
.collection-card img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

/* INFO */
.collection-info {
  text-align: center;
  padding: 15px;
}

.collection-info h5 {
  margin-bottom: 5px;
}

.collection-info span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  position: relative;
}

/* UNDERLINE */
.collection-info span::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background: #000;
  margin: auto;
  transition: 0.3s;
}

/* HOVER EFFECT */
.collection-card:hover img {
  transform: scale(1.08);
}

.collection-card:hover span::after {
  width: 60%;
}

/* SHADOW */
.collection-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

/* SIZE VARIATIONS */
.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}

.overlay span {
  color: #fff;
  letter-spacing: 2px;
}

/* HOVER */
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* MOBILE */
@media(max-width:768px){
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* TITLE */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

/* REMOVE LINK STYLE */
a {
  text-decoration: none;
  color: inherit;
}

/* CARD */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.4s;
}

/* IMAGE */
.product-img img {
  width: 100%;
  transition: 0.6s;
}

/* OVERLAY */
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(30%);
  opacity: 0;
  transition: 0.4s;
}

/* TEXT */
.category {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.product-overlay h5 {
  margin: 5px 0;
}

/* BUTTON STYLE */
.view-btn {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  border-bottom: 1px solid #fff;
  display: inline-block;
}

/* HOVER EFFECT */
.product-card:hover img {
  transform: scale(1.1);
}

.product-card:hover .product-overlay {
  transform: translateY(0);
  opacity: 1;
}

.product-card:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}


/* about us */

/* IMAGE */
.about-img {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.about-img img {
  width: 100%;
  transition: 0.5s;
}

.about-img:hover img {
  transform: scale(1.05);
}

/* TEXT */
.about-text {
  color: #555;
  margin: 20px 0;
}

/* POINTS */
.about-points .point {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.about-points span {
  margin-right: 10px;
  color: #2f2a25;
}

/* BUTTON */
.about-btn {
 display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #2f2a25;
  color: #fff !important;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}
.about-btn {
  opacity: 1 !important;
}

.about-btn:hover {
  background: #000;
  color: #fff;
}

/* contact */

/* SECTION */
.contact-section {
  background: #2f2a25;
  color: #fff;
  padding: 80px 0;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  outline: none;
}

/* BUTTON */
.submit-btn {
  background: #fff;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #ddd;
}

/* WHATSAPP */
.whatsapp-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
}

/* footer */

/* FOOTER */
.footer {
  background: #1f1b18;
  color: #ccc;
  padding: 60px 0 20px;
}

/* LOGO */
.footer-logo {
  font-family: 'Playfair Display', serif;
  color: #fff;
}

/* HEADINGS */
.footer h5 {
  color: #fff;
  margin-bottom: 15px;
}

/* LIST */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* CONTACT ICONS */
.footer p i {
  margin-right: 8px;
  color: #aaa;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #2a2623;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

/* HOVER EFFECT */
.social-icon:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
}

/* CONTAINER */
.wtspp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

/* BUTTON */
.wtspp-btn {
  display: flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 10px 15px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}

/* ICON */
.wtspp-icon {
  font-size: 24px;
}

/* TEXT (HIDDEN INITIALLY) */
.wtspp-text {
  margin-left: 10px;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  transition: 0.3s;
}

/* HOVER EXPAND */
.wtspp-btn:hover .wtspp-text {
  opacity: 1;
  max-width: 200px;
}

/* BADGE */
.wtspp-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: #fff;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 50%;
}

/* HOVER */
.wtspp-btn:hover {
  transform: translateY(-3px);
  background: #1ebe5d;
}

/* ENTRY ANIMATION */
.wtspp-container {
  animation: slideIn 0.6s ease forwards;
}

/* KEYFRAME */
@keyframes slideIn {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* CONTAINER */
.wtspp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

/* BUTTON */
.wtspp-btn {
  display: flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 10px 15px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}

/* ICON */
.wtspp-icon {
  font-size: 24px;
}

/* TEXT (HIDDEN INITIALLY) */
.wtspp-text {
  margin-left: 10px;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  transition: 0.3s;
}

/* HOVER EXPAND */
.wtspp-btn:hover .wtspp-text {
  opacity: 1;
  max-width: 200px;
}

/* BADGE */
/* FLOAT BUTTON */
.wtspp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  z-index: 999;
  animation: floatIn 0.8s ease;
}

/* BADGE */
.badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: red;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

/* POPUP */
.wtspp-system {
  position: fixed;
  bottom: 100px;
  right: 25px;
  display: none;
  z-index: 999;
}

/* BOX */
.chat-box {
  width: 280px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* HEADER */
.chat-header {
  background: #25D366;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

/* BODY */
.chat-body {
  padding: 15px;
}

/* MESSAGE */
.msg {
  background: #f1f1f1;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: inline-block;
}

/* TYPING DOTS */
.typing span {
  width: 6px;
  height: 6px;
  background: #999;
  display: inline-block;
  border-radius: 50%;
  margin-right: 3px;
  animation: typing 1s infinite;
}

.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

/* BUTTON */
.start-chat {
  display: block;
  text-align: center;
  padding: 12px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
}

/* ANIMATIONS */
@keyframes floatIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes typing {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
/* lead */
.lead-popup {
  position: fixed;
  bottom: 100px;
  right: 25px;
  display: none;
  z-index: 999;
}

.lead-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.lead-box input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}

.lead-box button {
  width: 100%;
  padding: 10px;
  background: #25D366;
  color: #fff;
  border: none;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f8f5f2;
}

/* SWIPER */
.swiper {
  width: 90%;
  margin: 40px auto;
}

.swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(100%);
  transition: 0.5s;
}


.swiper-slide-active img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 10px;
  padding: 20px;
}

.grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

/* MODAL */
#modalImg {
  max-width: 100%;
  max-height: 80vh;

  width: auto;
  height: auto;

  object-fit: contain; /* KEY FIX */

  margin: auto;
  display: block;
}

/* NAV */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ACTION BUTTONS */
.action-buttons {
  margin-top: 15px;
}

.action-buttons button {
  margin: 5px;
  padding: 8px 14px;
  border: none;
  background: white;
  border-radius: 6px;
  cursor: pointer;
}


body {
  background: #f8f5f2;
  overflow-x: hidden;
}

/* SWIPER */
.swiper {
  width: 90%;
  margin: 40px auto;
}

.swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(100%);
  transition: 0.5s;
}

.swiper-slide-active img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 10px;
  padding: 20px;
}

.grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

/* MODAL */
#modalImg {
  max-height: 80vh;
}

/* NAV */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ACTION BUTTONS */
.action-buttons {
  margin-top: 15px;
}

.action-buttons button {
  margin: 5px;
  padding: 8px 14px;
  border: none;
  background: white;
  border-radius: 6px;
  cursor: pointer;
}