@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
:root {
    --accent: #1f1f1f;
    --muted: #7b7b7b;
    --soft: #f6f6f7;
    --white: #ffffff;
    --radius: 12px;
}
* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    font-family: "Playfair Display", serif;
    color: var(--accent);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    background: #e4e1de;
    
}
h1{
    font-family: "Playfair Display", serif;
}
h2{
    font-family: "Playfair Display", serif;
}


/* HEADER / NAV */
/* HEADER – Transparent at top */
/* ================= HEADER ================= */
/* ================= HEADER ================= */
.header-v4 {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: 0.35s ease;
  z-index: 999;
}

.header-v4 a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.logo img {
  width: 100px;
}

/* Desktop Nav */
.desktop-nav a {
  margin-left: 25px;
}

.header-v4.scrolled {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
}

/* ================= BURGER ================= */
.burger {
  width: 32px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger span {
  height: 3px;
  width: 100%;
  background: #fff;
  transition: 0.4s;
}

/* Burger to X */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  height: 100vh;
  background: #fff;
  padding: 80px 30px 40px;
  transition: 0.5s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-size: 20px;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

/* ================= ACTION BUTTONS ================= */
.mobile-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.action-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.action-btn:hover {
  transform: scale(1.1);
}

.action-btn.call {
  background: #111;
}

.action-btn.whatsapp {
  background: #25D366;
}

/* ================= OVERLAY ================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
}




/* Logo default */
.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
}

/* HERO */
.hero-v3 {
    position: relative;
    height: 100vh;
    overflow: hidden;
    top: -0vh;
    padding: 0;
}

/* Background Video */
.hero-videos video {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.3s ease-in-out;
}

.hero-v3-video.active {
    opacity: 1;
}

/* Text Area */
.hero-v3-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 20;
}

/* Reveal Animation (before GSAP) */
.reveal-text {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
    transition: 1s ease;
    font-family: "Playfair Display", serif;
}

.reveal-text.delay-1 {
    transition-delay: 0.3s;
}
.reveal-text.delay-2 {
    transition-delay: 0.6s;
}

.hero-v3-content h1 {
    font-size: 80px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 29px;
}

.hero-v3-content p {
    text-transform: capitalize;
    margin-top: 15px;
    font-size: 22px;
}

.hero-v3-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 35px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all .4s;
}
.hero-v3-btn:hover{
    background: #fff;
    color: #000;
    transition: all .4s;
}

/* DOTS */
.hero-v3-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 30;
}

.hero-v3-dots .dot {
    width: 13px;
    height: 13px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-v3-dots .dot.active {
    background: #fff;
    transform: scale(1.3);
}

p.lead {
    color: var(--muted);
    font-size: 17px;
    margin: 0 0 26px;
    max-width: 60ch;
}
.cta-row {
    display: flex;
    gap: 14px;
    align-items: center;
}
.btn {
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-ghost {
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--accent);
    background: transparent;
}

/* hero-right image */
.hero-media {
    position: relative;
    align-self: center;
    display: flex;
    gap: 14px;
    justify-content: center;
    transform: translateY(0);
}
.media-card {
    width: 260px;
    height: 360px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
    background: linear-gradient(180deg, #fff, #fafafa);
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
}
.media-card.small {
    width: 200px;
    height: 280px;
}
.media-card.front {
    transform: translateY(-18px) rotate(-2deg);
}

.hero .decor-circle {
    position: absolute;
    right: 12%;
    bottom: 8%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(250, 246, 244, 0.45), rgba(245, 241, 239, 0.15));
    z-index: 0;
    pointer-events: none;
}

/* sections common */
section {
    padding: 84px 6vw;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
}

/* OUR ETHNOS */
.ethnos{
    background: #fff;
}
.ethnos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}
.ethnos-text h2 {
    font-family: "Playfair Display";
    font-size: 55px;
    font-weight: 600;
    margin: 0 0 14px;
}
.ethnos-text strong{
    display: block;
    font-weight: 400;
    font-style: italic;
}
.ethnos-text p {
    color: var(--muted);
    margin: 0;
    max-width: 58ch;
}


.ethnos-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(20, 20, 20, 0.06);
}
.ethnos-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* COLLECTIONS */
.collections-section {
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.collections-header {
  margin-bottom: 0;
  margin-left: 40px;
  max-width: 70%;
}

.collections-header h2 {
  font-size: 55px;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  margin-top: 0;
}

.collections-header p {
  font-size: 18px;
  opacity: 0.7;
}

.collections-wrapper {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: -12vh;
}

.horizontal-scroll {
  display: flex;
  gap: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.collection-card {
  width: 360px;
  text-align: center;
  opacity: 1 !important;
  filter: none !important;
  transform: translate(0px, 0px) !important;
  position: relative;
  height: 60vh;
  overflow: hidden !important;
  
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transform-origin: center;
  transform: translate3d(0px, 0px, 0px) scale(1.0, 1.0) !important;
}

.collection-card h3 {
  font-size: 22px;
  font-family: "Playfair Display", serif;
  position: absolute;
  bottom: -25px;
  color: #000;
  background: rgba(255, 255, 255, 0.4);
  width: 100%;
  padding: 10px;
}



/* WRAPPER - height controls scroll space */
.horizontal-wrapper {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Items scroll horizontally */
.horizontal-items {
  display: flex;
  gap: 80px;
  padding: 0 10vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.item {
  width: 450px;
}

.item img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.item h3 {
  margin-top: 20px;
  font-size: 22px;
  text-align: center;
  font-family: "Playfair Display", serif;
}

/* Smooth scroll animation */
.horizontal-items {
  transition: transform 0.1s linear;
}




/* Booking  SECTION */
/* Main section */
.appointment-pro {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Parallax Image */
.appointment-bg-pro {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.appointment-bg-pro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  filter: brightness(65%);
}

/* Middle Glass Box */
.appointment-box-pro {
  position: relative;
  z-index: 5;
  width: 70%;
  max-width: 780px;
  padding: 0 50px;
  text-align: center;

}

.appointment-box-pro h2 {
  font-size: 50px;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  color: #fff0ba;
  margin-bottom: 150px;
}

.appointment-box-pro p {
  font-size: 20px;
  margin-bottom: 1
  0px;
  color: #fff0ba;
  font-style: italic;
}

.book-btn-pro {
  display: inline-block;
  color: #fff0ba;
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 40px;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: italic;
  text-decoration: none;
  transition: 0.3s ease;
}

.book-btn-pro:hover {
  text-decoration: underline;
}

/* Popup Form */
.appointment-popup-pro {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 999999;
}

.popup-content-pro {
  background: #fff;
  width: 450px;
  padding: 40px;
  border-radius: 20px;
  transform: scale(0.6);
  transition: 0.4s ease;
  position: relative;
}

.popup-content-pro h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 25px;
}

.popup-content-pro input,
.popup-content-pro textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.submit-btn-pro {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  background: #000;
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

.close-popup-pro {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  cursor: pointer;
}

/* Active popup */
.appointment-popup-pro.active {
  opacity: 1;
  pointer-events: auto;
}

.appointment-popup-pro.active .popup-content-pro {
  transform: scale(1);
}

/* Responsive */
@media(max-width: 800px){
  .appointment-box-pro {
    width: 90%;
    padding: 40px 25px;
  }
  .appointment-box-pro h2 {
    font-size: 42px;
  }
  .appointment-box-pro p {
    font-size: 18px;
  }
}


/* Optional: glass blur effect under text */
.appointment-content::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 120%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  z-index: -1;
}


/* INSIGHTS & UPDATES */
/* Gallery Wrapper */
.gallery-section .heading h2{
    font-size: 55px;
    font-family: "Playfair Display", serif;
    text-align: center;
    margin: 0;
}
.gallery-section .heading p{
    text-align: center;
}
.gallery-section .heading a{
    text-decoration: none;
    color: #0f0f10;
}
.lr-marquee {
  width: 100%;
  height: 45vh;
  overflow: hidden;
  position: relative;
  margin-top: 60px;
  margin-bottom: 0;
}

.lr-track {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: leftRightScroll 15s linear infinite;
}

.lr-marquee:hover .lr-track {
  animation-play-state: paused;
}

@keyframes leftRightScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lr-item {
  height: 60vh;
  flex: 0 0 auto;
  position: relative;
  perspective: 1000px;
  overflow: hidden;
}

.lr-item img {
  height:60%;
  width: 18vw; /* Show 3–4 images per row depending on screen */
  object-fit: cover;
  transition: transform .25s ease-out;
  transform-style: preserve-3d;
}


.dream-dress {
  width: 100%;
  padding: 40px;
  padding-top: 0;
  padding-bottom: 80px;
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: -100px;
}
.dream-dress .heading h2 {
  font-size: 55px;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  margin-top: 0;
}
.dream-dress .heading p {
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 50px;
    max-width: 1100px;
}

.dream-dress-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  height: 80vh;
}

.dd-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.dd-item img,
.dd-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Hover zoom */
.dd-item:hover img,
.dd-item:hover video {
  transform: scale(1.15);
}
.dream-dress .bottom-column{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}
.dream-dress .bottom-column {
  height: 80vh;
}


/* Responsive */
@media (max-width: 1024px) {
  .dream-dress-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 40vh;
  }

  .dream-dress {
    height: auto;
  }
}

@media (max-width: 600px) {
  .dream-dress-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 60vh;
  }
}



/* FULL WIDTH */
.collection-carousel {
  width: 100%;
  overflow: hidden;
}

.collection-carousel .carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.collection-carousel .carousel-item {
  flex: 0 0 20%;
  padding: 10px;
}

/* IMAGE CONTAINER */
.collection-carousel .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* IMAGE */
.collection-carousel .image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* CAPTION ALWAYS VISIBLE */
.collection-carousel .caption-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  padding: 14px 10px;
  font-size: 14px;
  text-align: center;
}

/* DOTS */
.collection-carousel .carousel-dots {
  text-align: center;
  padding: 16px 0;
}

.collection-carousel .carousel-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.collection-carousel .carousel-dots span.active {
  background: #000;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .collection-carousel .carousel-item { flex: 0 0 33.33%; }
}

@media (max-width: 768px) {
  .collection-carousel .carousel-item { flex: 0 0 50%; }
}

@media (max-width: 480px) {
  .collection-carousel .carousel-item { flex: 0 0 100%; }
}





.testimonial-section {
  padding: 60px 20px;
  background: #f9fafb;
  text-align: center;
  font-family: Arial, sans-serif;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonial-carousel {
  max-width: 90%;
  margin: auto;
}

.testimonial-slide {
  display: none;
  padding: 20px 40px;
  border-radius: 14px;
}

.testimonial-slide.active {
  display: block;
  animation: fade 0.4s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-text {
  font-size: 18px;
  color: #374151;
  margin-bottom: 20px;
}

.testimonial-name {
  font-size: 20px;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 14px;
  color: #6b7280;
}

/* buttons under text */
.testimonial-nav {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.testimonial-nav .prev{
  border-radius: 30px 0 0 30px;
}
.testimonial-nav .next{
  border-radius: 0 30px 30px 0;
}
.nav-btn {
  padding: 10px 15px;
  border: none;
  border-radius: 30px;
  background: #000;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}


.nav-btn:hover {
  background: #1b1b1b;
}

/* bottom button */
.testimonial-action {
  margin-top: 30px;
}

.testimonial-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
}

.testimonial-btn:hover {
  background: #1b1b1b;
}





/* FOOTER */
/* FOOTER */
.lux-footer {
    background: #222;
    padding: 70px 0 40px;
    border-top: 1px solid #ccc;
    font-family: "Playfair Display", serif;
    color: #222;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 0;
}

.footer-about {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.newsletter-box {
    position: relative;
}



/* MENU */
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-menu {
    list-style: none;
    padding: 0;
}
.footer-col p{
    color: #ccc;
}
.footer-col a{
  color: #ccc;
  text-decoration: none;
}
.footer-menu li a {
    text-decoration: none;
    color: #ccc;
    font-size: 15px;
    display: block;
    padding: 6px 0;
    transition: 0.3s;
}

.footer-menu li a:hover {
    opacity: 0.6;
}

/* Contact */
.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #ccc;
}



/* FLOATING WIDGET */
.floating-widget {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Buttons */
.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.call-btn { 
    background: #007aff;
    text-decoration: none; 
}
.whatsapp-btn { 
    background: #25D366;
    text-decoration: none; 
}
.close-btn { 
    background: #ff4d6d; 
    text-decoration: none;
    display: none;
}
.plus-btn { background: #25D366; display: none; }

/* Hide Animation */
.hidden {
    display: none !important;
}


/* Accessories page css */
.accessories-section {
  width: 100%;
  padding: 120px 20px;
  background: #e2dfdc;
  box-sizing: border-box;
  overflow: hidden;
}

.accessories-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Image */
.accessories-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

/* Content */
.accessories-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
  margin-top: 15px;
  color: #2a2a2a;
}

.accessories-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Scroll Animations */
.fade1-left,
.fade1-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.fade1-left {
  transform: translateX(-60px);
}

.fade1-right {
  transform: translateX(60px);
}

.fade-in {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Mobile */
@media (max-width: 900px) {
  .accessories-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .accessories-content h2 {
    font-size: 32px;
  }
}


/* SECTION */
/* ===========================
   ACCESSORIES COLLECTION
=========================== */

.acc-collection-section {
  width: 100%;
  padding: 80px 20px;
  background: #e2dfdc;
}
.accessories-masonry{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px;
}
.accessories-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Masonry layout */
.acc-masonry {
  column-count: 3;
  column-gap: 30px;
}

@media (max-width: 1024px) {
 .accessories-masonry{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
}

@media (max-width: 640px) {
  .accessories-masonry{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
}

.acc-card {
  position: relative;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 12px;
}

/* Image */
.acc-card img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

/* Hover zoom */
.acc-card:hover img {
  transform: scale(1.2);
}

/* Caption (always visible, bottom) */
.acc-card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  z-index: 2;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
=========================== */

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-active {
  opacity: 1;
  transform: translate(0, 0);
}




/* Studio page css */
/* ===============================
   STUDIO GALLERY SECTION
================================ */

/* ===== STUDIO GALLERY SECTION ===== */
.studio-gallery {
    width: 100%;
    padding: 80px 40px;
    background: #fff;
    box-sizing: border-box;
}

.studio-gallery-heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #222;
    font-weight: 400;
}

/* Main layout */
.studio-gallery-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* LEFT COLUMN */
.studio-gallery-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Image container */
.studio-gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

/* Images */
.studio-gallery-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

/* Hover zoom */
.studio-gallery-img:hover img {
    transform: scale(1.15);
}

/* RIGHT COLUMN VIDEO */
.studio-gallery-right {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

/* Video styling */
.studio-gallery-right video {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.studio-gallery-right img{
  width: 100%;
    height: 620px;
    object-fit: cover;
}
.studio-accessories{
  background: #e2dfdc;
}

/* ============================= */
/* Meet The Owner Section */
/* ============================= */

.meet-owner {
  width: 100%;
  padding: 100px 5vw;
  background: #e2dfdc;
  overflow: hidden;
}

.meet-owner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image */
.meet-owner-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.meet-owner-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s ease;
}

.meet-owner-image:hover img {
  transform: scale(1.08);
}

/* Content */
.meet-owner-content h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #222;
}

.meet-owner-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}



/* ============================= */
/* Responsive */
/* ============================= */

@media (max-width: 900px) {
  .meet-owner-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .meet-owner-content h2 {
    font-size: 36px;
  }
}



/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .studio-gallery-wrapper {
        grid-template-columns: 1fr;
    }

    .studio-gallery-right {
        height: 70vh;
    }
}

@media (max-width: 600px) {
    .studio-gallery {
        padding: 60px 20px;
    }

    .studio-gallery-heading {
        font-size: 32px;
    }

    .studio-gallery-left {
        grid-template-columns: 1fr;
    }

    .studio-gallery-right {
        height: 60vh;
    }
}



/* Bridal Appointment page css */
.bridal-appointment-sec .accessories-content h2{
    font-size: 35px;
    margin-top: 0;
}
.bridal-appointment-sec .accessories-content p{
    font-size: 16px;
}
.bridal-appointment-sec .accessories-content{
  text-align: center;
}


/* Contact page css */
/* ================= CONTACT SECTION ================= */
.contact-section {
    background: #e2dfdc;
    padding: 100px 20px;
}

.contact-wrapper {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

/* ---------- FORM AREA ---------- */
.contact-form-area h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-form-area p {
    color: #555;
    margin-bottom: 30px;
    max-width: 520px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c08b8b;
}

.contact-form button {
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    background: #000;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    background: #333;
}

/* ---------- INFO AREA ---------- */
.contact-info-area {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.contact-info-area h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 25px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.info-icon.phone {
    background: #25d366;
}
.info-icon.email {
    background: #ea4335;
}
.info-icon.location {
    background: #4285f4;
}

.info-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.info-item p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

/* ---------- SOCIAL ICONS ---------- */
.contact-social {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}
.contact-social a{
    text-decoration: none;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-icon.facebook {
    background: #1877f2;
}
.social-icon.whatsapp {
    background: #25d366;
}
.social-icon.tiktok {
    background: #000;
}

/* ---------- MAP ---------- */
.contact-map {
    margin-top: 0;
    border-radius: 14px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}






/* Wedding Dresses page css*/
/* Sub Page Hero Section */
.sub-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.sub-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35); /* Light dark overlay */
    z-index: 2;
}

.sub-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.sub-hero-title {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    font-family: "Playfair Display", serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.sub-hero-content p{
  font-size: 20px;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Fix */
@media(max-width: 768px){
    .sub-hero {
        height: 32vh;
    }
    .sub-hero-title {
        font-size: 30px;
    }
}


/* Wedding dresses page */
.gallery-section {
  width: 100%;
  padding: 60px 20px;
  background: #fff;
  box-sizing: border-box;
}

.gallery-section h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  color: #333;
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 20px;
}
.gallery-section p{
  max-width: 950px;
  text-align: center;
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}

@media (max-width: 980px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }
}

.gallery-item {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  height: 70vh;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Image hover effect */
.gallery-item img.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1);
}

.gallery-item:hover img.hover-img {
  opacity: 1;
  transform: scale(1.1);
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 0 12px 12px;
}

.gallery-item:hover .caption {
  opacity: 1;
}





/* ==============================
   ANIMATIONS
============================== */
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-left {
  transform: translateX(-50px);
}

.fade-right {
  transform: translateX(50px);
}

.show {
  opacity: 1;
  transform: translate(0,0);
}

/* ==============================
   HOW IT WORKS
============================== */
.how-works-page .how-it-work {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.how-works-page .how-it-work h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.how-works-page .how-it-work .intro {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
}

/* Section 1 */
.how-works-page .how-it-work .work-box {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 16px;
  text-align: left;
}

.how-works-page .how-it-work h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.how-works-page .how-it-work .sub {
  font-size: 20px;
  margin-bottom: 40px;
  color: #777;
}

.how-works-page .how-it-work ol {
  padding-left: 20px;
  margin-bottom: 40px;
}

.how-works-page .how-it-work ol li {
  margin-bottom: 18px;
  font-size: 17px;
}

/* Button */
.how-works-page .btn {
  display: inline-block;
  padding: 14px 34px;
  background: #2b2b2b;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.how-works-page .btn:hover {
  background: #000;
  transform: translateY(-2px);
}

/* ==============================
   ABOUT BRIDAL
============================== */
.how-works-page .how-about-bridal {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.how-works-page .how-about-bridal h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.how-works-page .how-about-bridal blockquote {
  font-size: 22px;
  font-style: italic;
  margin: 0 auto 20px;
  max-width: 700px;
}

.how-works-page .how-about-bridal p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
  .how-works-page .how-it-work h1 {
    font-size: 34px;
  }

  .how-works-page .how-it-work h2,
  .how-works-page .how-about-bridal h2 {
    font-size: 28px;
  }

  .how-works-page .how-it-work .work-box {
    padding: 40px 20px;
  }
}


/* About Us page css */
.about-page {
  font-family: "Georgia", serif;
  background: #e2dfdc;
  color: #2b2b2b;
}

/* ===== INTRO ===== */
.about-page .about-intro {
  padding: 120px 20px;
  max-width: 1100px;
  margin: auto;
}

.about-page .about-intro h1 {
  font-size: 60px;
  margin-bottom: 30px;
}

.about-page .about-intro h1 span {
  font-style: italic;
}

.about-page .about-intro p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-page .highlight {
  font-style: italic;
  font-size: 20px;
}

.about-page .signature-block {
  margin-top: 60px;
}

.about-page .signature-block img {
  max-width: 180px;
  display: block;
  margin: 15px 0;
}

.about-page .signature-block .name {
  font-weight: bold;
}

/* ===== HOW IT WORKS (FULL WIDTH PARALLAX) ===== */
.about-page .how-it-work {
  position: relative;
  height: 80vh;
  background-image: url("https://picsum.photos/1920/1080");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.about-page .how-it-work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.about-page .how-it-work-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 800px;
  padding: 40px;
}

.about-page .how-it-work-content h2 {
  font-size: 52px;
  margin-bottom: 20px;
}

.about-page .how-it-work-content p {
  font-size: 20px;
  line-height: 1.6;
}

/* ===== APPOINTMENT ===== */
.about-page .appointment-section {
  padding: 120px 20px;
}

.appointment-card {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.about-page .appointment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .appointment-image {
  flex: 1;
}

.about-page .appointment-content {
  flex: 1;
  padding: 80px;
}

.about-page .appointment-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.about-page .appointment-content p {
  font-size: 18px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.about-page .btn-primary,
.about-page .btn-outline {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  text-decoration: none;
  font-size: 16px;
}

.about-page .btn-primary {
  background: #2b2b2b;
  color: #fff;
}

.about-page .btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

/* ===== ANIMATIONS ===== */
.fade-up, .fade-left, .fade-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.show {
  opacity: 1;
  transform: translate(0);
}





 .terms-wrapper {
      max-width: 900px;
      margin: 0 auto;
      padding: 80px 20px 120px;
    }

    .terms-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .terms-title h1 {
      font-family: "Playfair Display", serif;
      font-size: 40px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .terms-title p {
      color: var(--muted);
      font-size: 15px;
    }

    .terms-section {
      margin-bottom: 36px;
      padding: 0;
      border-bottom: 1px solid var(--border);
    }

    .terms-section:last-child {
      border-bottom: none;
    }

    .terms-section h2 {
      font-family: "Playfair Display", serif;
      font-size: 22px;
      margin-bottom: 14px;
    }

    .terms-section p {
      margin-bottom: 10px;
      font-size: 15px;
    }

    .terms-section ul {
      margin-left: 20px;
      margin-top: 10px;
    }

    .terms-section ul li {
      margin-bottom: 8px;
      font-size: 15px;
    }

    .company-name {
      margin-top: 60px;
      text-align: center;
      font-weight: 500;
      font-size: 15px;
      color: var(--muted);
    }

    @media (max-width: 600px) {
      .terms-title h1 {
        font-size: 32px;
      }
    }

/* ===== RESPONSIVE ===== */
@media(max-width: 900px) {
  .appointment-card {
    flex-direction: column;
  }

  .appointment-content {
    padding: 40px;
  }

  .about-intro h1 {
    font-size: 42px;
  }
}






/* responsive */
@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr 380px;
        padding-top: 100px;
    }
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ethnos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
@media (max-width: 720px) {
  .logo img{
    width: 60px;
  }
  .header-v4{
    padding: 15px 30px;
  }
    .site-header {
        padding: 14px 20px;
    }
    .hero {
        grid-template-columns: 1fr;
        padding-top: 84px;
        gap: 22px;
    }
    h1.hero-title {
        font-size: 36px;
    }
    .hero-media {
        justify-content: flex-start;
    }
    .collections-grid {
        grid-template-columns: 1fr;
    }
    section {
        padding: 56px 5vw;
    }
    .nav {
        display: none;
    }
    .floating-widget{
      display: none;
    }
    .hero-v3-content h1{
      font-size: 40px;
    }
    .hero-v3-content{
      width: 100%;
      padding: 20px;
    }
    .collections-header h2{
      font-size: 40px;
    }
    .collections-section{
      padding: 70px 20px;
    }
    .horizontal-scroll{
        top: 55%;
    }
    .collection-card{
        height: 60vh;
    }
    .dream-dress {
        padding: 40px 20px;
    }
    .dream-dress-grid{
        height: 100%;
        grid-gap: 30px;
    }
    .dream-dress .bottom-column{
        height: 100%;
    }
    .ethnos-text h2{
        font-size: 40px;
    }
    .appointment-pro{
        padding: 60px 0;
        height: 100%;
    }
    .gallery-section .heading h2{
        font-size: 40px;
        margin-bottom: 10px;
    }
    .lr-marquee{
        height: 100%;
    }
    .lr-track{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        animation: unset;
    }
    .lr-item img{
        width: 100%;
    }
    .lr-item{
        height: 30vh;
    }
    .lux-footer .footer-col{
        padding: 0 20px;
    }
    .footer-container{
        gap: 20px;
    }
    .lux-footer .footer-col h4{
        margin-top: 0;
    }
    .mobile-meu .fa-whatsapp{
        font-size: 25px;
    }
    .accessories-section{
        padding: 80px 20px;
    }
    .mobile-sub-hero{
        height: 100%;
    }
    .mobile-sub-hero .sub-hero-title{
        margin-top: 50px;
    }
    .gallery-section h2{
        font-size: 40px;
    }
    .gallery-section p{
        font-size: 18px;
        line-height: 1.7em;
    }
    .accessories-title{
        font-size: 40px;
    }
    .accessories-masonry{
        grid-gap: 20px;
    }
    .acc-card h3{
        font-size: 16px;
        text-shadow: 1px 2px 5px #000;
        font-weight: 600;
    }
    .contact-form-area h2{
        margin-top: 0;
    }
    .contact-info-area{
        padding: 30px;
    }
    .collections-header{
      margin-left: 5px;
      max-width: 100%;
    }

}