.container {
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}
.site-header {
  margin-bottom: 0px !important;
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 22px 24px;
  gap: 12px;
}
/* ===== BANNER SECTION ===== */
.banner-sec {
  background: url(https://min.com/wp-content/uploads/2025/09/origin-of-love-1.png)
    center/cover fixed no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.banner-sec::before,
.banner-sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-sec::after {
  background: rgb(0 0 0 / 21%);
  z-index: 1;
}

.banner-sec::before {
  width: 200%;
  height: 200%;
  background: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveStars 60s linear infinite;
}

@keyframes moveStars {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-500px);
  }
}

.banner-sec h2 {
  position: relative;
  font-size: clamp(24px, 5vw, 52px);
  font-weight: 800;
  font-family: serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 70%;
  line-height: 65px;
  animation: fadeInDown 2s ease forwards, glow 3s ease-in-out infinite alternate;
}
@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  to {
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== LUXURY SECTIONS ===== */
.luxury-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 120px 0px 0;
  background: #fff;
}

.luxury-content-header h2 {
  font-size: 5.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #000;
  margin-bottom: 25px;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1.5s ease forwards;
}

.luxury-content-header h2::after {
  content: "";
  display: block;
  margin-top: 18px;
  width: 110px;
  height: 4px;
  background: #000;
}

.luxury-content-header p {
  font-size: 1.7rem;
  line-height: 2;
  color: #333;
  max-width: 620px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 2s ease forwards 0.5s;
}

.luxury-image2 {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateX(60px);
  animation: fadeInRight 1.5s ease forwards 0.3s;
}

.luxury-image2 img {
  width: 100%;
  display: block;
  border-radius: var(--border-radius);
  transition: transform 0.6s ease;
  max-height: 748px;
  object-fit: cover;
}

.luxury-image2:hover img {
  transform: scale(1.1);
}

.luxury-image2 {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateX(60px);
  animation: fadeInRight 1.5s ease forwards 0.3s;
}

.luxury-image2 img {
  width: 100%;
  display: block;
  border-radius: 16px;
  transition: transform 0.6s ease;
  max-height: 748px;
  object-fit: cover;
}

.luxury-image2:hover img {
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .luxury-sec {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .luxury-content h2 {
    font-size: 3rem;
  }
  .luxury-content h2::after {
    margin: 18px auto 0;
  }
  .luxury-content p {
    margin: 0 auto;
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .luxury-slider {
    margin: 50px auto !important;
  }
  .product-showcase {
    margin-top: 50px !important;
  }
  .maison-showcase {
    padding: 50px 0px !important;
  }
  .luxury-sec {
    padding: 50px 0px;
  }
  .maison-showcase {
    flex-direction: column;
  }
  .maison-card {
    width: 100% !important;
  }
  .banner-sec h2 {
    max-width: 100%;
    line-height: 39px;
    padding: 0 4px;
  }
  .luxury-content-header h2::after {
    margin: 0 auto;
  }
}

/* Slider wrapper */
.luxury-slider {
  max-width: 1400px;
  margin: 100px auto;
  position: relative;
  margin-bottom: 80px;
}

/* Each slide */
.luxury-perfume {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 0px 0%;
  background: #fff;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.luxury-perfume.alt {
  flex-direction: row-reverse;
}

.luxury-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.luxury-image img {
  max-width: 500px;
  width: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 25px;
  object-fit: cover;
  transform: scale(0.95);
  opacity: 0;
  animation: fadeInScale 1.2s ease forwards;
  transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
}
@keyframes fadeInScale {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.luxury-content {
  flex: 1;
  opacity: 0;
  transform: translateX(50px);
  animation: slideIn 1.3s ease forwards 0.3s;
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.luxury-content h2 {
  font-size: 4.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  color: #111;
  position: relative;
  line-height: 5rem;
}
.luxury-content h2::after {
  content: "";
  display: block;
  margin-top: 18px;
  width: 110px;
  height: 4px;
  background: #000;
}

.luxury-content h2:hover::after {
  transform: scaleX(1.2); /* slight hover animation */
}

.luxury-content p {
  font-size: 1.7rem;
  line-height: 1.9;
  color: #444;
  max-width: 600px;
  margin: 25px 0 35px;
}

/* Luxury button */
.luxury-content button {
  padding: 14px 34px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #000, #333);
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.luxury-content button:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #444, #000);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Slick arrows */
.slick-prev:before,
.slick-next:before {
  color: #000;
  font-size: 40px;
}

.slick-prev {
  left: unset !important;
}

.slick-dots li button:before {
  color: #000;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  .luxury-perfume {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .luxury-perfume.alt {
    flex-direction: column;
  }
  .luxury-content h2 {
    font-size: 2.2rem;
  }
  .luxury-content p {
    font-size: 1.1rem;
  }
  .luxury-image img {
    max-width: 90%;
  }
}

.luxury-perfume {
  overflow: visible; 
}


.slick-prev,
.slick-next {
  z-index: 99; 
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8); 
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.slick-prev:hover,
.slick-next:hover {
  background: rgba(0, 0, 0, 1); 
}
.slick-prev:before,
.slick-next:before {
  color: #fff; 
  font-size: 24px;
}


.slick-dots {
  bottom: -40px; 
}

.slick-dots li button:before {
  font-size: 12px;
  color: #666;
  opacity: 0.6;
}
.slick-dots li.slick-active button:before {
  color: #000; /* active dot darker */
  opacity: 1;
}
.product-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
  background: #fff;
  margin-top: 100px;
}


@media (max-width: 1024px) {
  .product-showcase {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }
}

@media (max-width: 640px) {
  .product-showcase {
    grid-template-columns: 1fr; /* 1 column for mobile */
  }
}
.product-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  cursor: pointer;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px,
    rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px,
    rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
    rgba(42, 51, 70, 0.04) 0px 6px 6px -3px,
    rgba(14, 63, 126, 0.04) 0px 12px 12px -6px,
    rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(0px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Image */
.product-image {
  overflow: hidden;
  background: #fdfdfd;
  transition: background 0.3s ease;
}

.product-card:hover .product-image {
  background: #fafafa;
}

.product-image img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
}

.product-info {
  padding: 20px;
  animation: fadeUp 1s ease forwards;
}
.product-info h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 10px 0;
  letter-spacing: 0.025em;
  color: #111;
  text-align: left;
}
.product-info .type {
  font-size: 1.3rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.product-info .price {
  margin-block: 5px !important;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  gap: 20px;
}
.product-info .price span {
  /*  display: block;*/
  font-size: 1.5rem;
  font-weight: 400;
  color: #888;
  display: inline-block;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.maison-showcase {
  display: flex;
  justify-content: space-between;
  padding: 100px 0px;
  gap: 40px;
}
.maison-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  width: 50%;
  max-height: 600px;
  object-fit: cover;
}
.maison-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.maison-card:hover img {
  opacity: 0.8;
  transform: scale(1.1) rotate(5deg);
}

.maison-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  padding: 40px 30px 30px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.maison-card:hover .maison-overlay {
  transform: translateY(0);
  opacity: 1;
}

.maison-overlay h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  animation: slideUp 0.6s ease-out;
}
.maison-overlay p {
  font-size: 1.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #fff;
  animation: fadeIn 0.8s ease-out;
}

.maison-btn {
  padding: 10px 24px;
  background: #fff;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  animation: bounceIn 1s ease-out;
}

.maison-btn:hover {
  background: #f1f1f1;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .maison-showcase {
    grid-template-columns: 1fr;
  }
}

.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  filter: grayscale(100%) brightness(0.7); /* black & white theme */
}

/* Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* subtle dark overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}


.video-overlay h1 {
  color: #fff;
  font-size: 2rem;
  max-width: 800px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1.2s forwards;
  text-transform: capitalize !important;
}


.video-overlay a {
  position: relative;
  display: inline-block;
  color: #000;
  background: #fff;
  font-size: 1.1rem;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s forwards;
  animation-delay: 0.5s;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Button hover animations */
.video-overlay a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: left 0.5s;
}
.video-overlay a:hover::before {
  left: 125%;
}

.video-overlay a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}


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

@media (min-width: 768px) {
  .video-overlay h1 {
    font-size: 43px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 1px;
  }
  .video-overlay a {
    font-size: 1.3rem;
    padding: 15px 50px;
  }
}
.video-overlay h5 {
  color: #fff;
  font-size: 18px;
  max-width: 800px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1.2s forwards;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 26px;
}
.text-dark span {
  color: #000 !important;
}

.slick-list.draggable {
  height: unset !important;
}
