@font-face {
  font-family: saveurSans;
  src: url(fonts/Saveur_sans.otf);
}

@font-face {
  font-family: jost;
  src: url(fonts/Jost.ttf);
}

@font-face {
  font-family: jost_light;
  src: url(fonts/Jost_light.ttf);
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#scrollBtn {
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
}

   #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #f4f4f4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    font-size: 18px;
    animation: fadeIn 0.3s ease-in-out;
  }

  .spinner {
    border: 6px solid #ddd;
    border-top: 6px solid #4CAF50;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
  }

  .loader-text {
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: pulse 1.2s infinite ease-in-out;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

/* Sidebar Styles */
.sidebar {
  position: fixed;
  left: -350px; /* Hidden by default */
  top: 0;
  width: 350px;
  height: 100vh;
  background: rgba(20, 20, 20, 0.88); /* Slightly darker for readability */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border-right: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.151);
  color: #fff;
  transition: left 0.4s ease-in-out;
  z-index: 1000;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Open State */
.sidebar.open {
  left: 0;
}

/* Sidebar Menu */
.sidebar ul {
  list-style: none;
  padding: 0;
  width: 100%;
  text-align: center;
}

.sidebar ul li {
  padding: 15px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sidebar ul li a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease-in-out;
}

/* Hover Effects */
.sidebar ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 8px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  font-size: 20px;
  padding: 10px;
  border-radius: 5%;
  border: none;
  cursor: pointer;
}

/* Sidebar Footer */
.sidebar .footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .sidebar {
      width: 280px;
  }
  .sidebar ul li {
      font-size: 16px;
  }
}

.hr {
  border: none;
  border-top: 0.5px solid rgba(128, 128, 128, 0.421);
  margin: 35px 0 35px;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: transparent;
  padding: 0px 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.7s;
  z-index: 1000;
}

.navbar:hover,
.navbar.scrolled {
  background: white;
  color: black;
  border-bottom: 1px solid lightgray;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar ul li {
  list-style: none;
}

.navbar ul li a {
  font-family: 'Poppins', sans-serif;
  color: white;
  padding: 0 12px;
  font-size: 0.8em;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar:hover ul li a,
.navbar.scrolled ul li a {
  color: black;
}

.navbar .brand {
  font-family: 'Didot', 'Playfair Display', 'Garamond', serif;
  letter-spacing: 1px;
  font-size: 2.6em;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar:hover .brand,
.navbar.scrolled .brand {
  color: black;
}

.navbar i.fa-bars,
.navbar i.fa-magnifying-glass {
  color: white;
  font-size: inherit;
  transition: color 0.3s;
}

.navbar:hover i.fa-bars,
.navbar:hover i.fa-magnifying-glass,
.navbar.scrolled i.fa-bars,
.navbar.scrolled i.fa-magnifying-glass {
  color: black;
}

section {
  margin: 0;
  color: white;
  font-size: 24px;
  text-align: center;
  scroll-snap-align: start;
  overflow: hidden;
}

.videobg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 125vh;
  overflow: hidden;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(85%);
}

.videobg h2 {
  position: absolute;
  top: 81.2%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: white;
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}


.videobg button {
  position: absolute;
  top: 91%;
  left: 50%;

  transform: translate(-50%, -50%);
  z-index: 1;
  color: white;

  padding: 15px 40px;
  font-size: 15px;
  font-weight: 100;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(45px);
  border: 1px solid white;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.2s;
}

.videobg button:hover {
  /* border: 2px solid whitesmoke; */
  box-shadow: inset 0 0 0 1px white;
}

.imagebg {
  height: 110vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7)), url('assets/Hero\ Pages/i1.jpg'); */
  /* background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)), linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)), url('assets/Hero\ Pages/i1.jpg'); */

  /* background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7)), url('assets/Hero\ Pages/i1.jpg'); */

  background-image: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.85)), url('assets/Hero\ Pages/i1.jpg');

  background-size: cover;
  background-position: center;
}

.imagebg h2 {
  position: absolute;
  top: 77.2%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: white;
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
}

.imagebg button {
  position: absolute;
  top: 89%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: white;
  padding: 15px 40px;
  font-size: 15px;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(45px);
  border: 1px solid white;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.2s;
}

.imagebg button:hover {
  box-shadow: inset 0 0 0 1px white;
}

.services h2{
  font-family: 'Poppins';
  font-weight: 500;
  color: black;
  font-size:large;
  margin-top: 80px;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 4.5rem;
  align-items: start;
  margin-bottom: 85px;
}

.grid-item {
  background-color: white;
  overflow: hidden;
  cursor: pointer;
}

.card-image {
  display: block;
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.card-content {
  text-align: left;
}

.card-content h1 {
  font-family: jost;
  color: black;
  font-size: 1.3rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
}

.card-content p {
  font-family: jost_light;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  margin-right: 1.7rem;
  font-weight: 500;
  color: black;
}

.card-btn {
  font-family: jost_light;
  color: black;
  border: none;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 100;
  text-decoration: underline;
  text-underline-offset: 6px;
  background-color: transparent;
  cursor: pointer;
}

.container {
  display: flex;
  /* align-items: flex-start; */
}

.column {
  flex: 1;
  /* padding: 30px; */
  /* margin: 0 auto; */
  padding: 0 4.5rem;
  text-align: left;
  
}

.cell {
  font-family: jost_light;
  color: black;
  margin-bottom: 10px;
  padding: 5px;
  font-size: 14px;
  /* font-weight: 500; */
  
}

a.links{
  color: inherit;
  text-decoration: none;
}

span{
  /* text-decoration-color: grey; */
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cell-head{
  font-size: 12px;
  font-weight: 600;
}


.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 20px; */
}

.language {
  font-family: jost_light;
  font-size: 0.9rem;
  color: inherit;
  text-decoration: none;
  padding: 0 4.5rem;
}

.footer ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style-type: none;
  /* margin-right: 10px; */
  padding-right: 50px;
}

.footer ul li {
  margin-left: 10px;
  margin-right: 30px;
}

.footer ul li a {
  font-family: jost_light;
  font-size: 0.9rem;
  color: inherit;
  text-decoration: none;
}

.footer .language .globe-icon {
  color: rgba(5, 4, 4, 0.775);
}

.footer span {
  padding-left: 10px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.last-logo{
  margin-top: 45px;
  margin-bottom: 50px;
  font-family: saveurSans ;
  font-size: 1.3em;
  text-align: center;
}

.accordian-container{
  display: none;
}
.hr-hid{
  display: none;
}

.mobile-footer{
  display: none;
}

#image1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* or center, depending on your layout preference */
}

#image1 h2 {
    margin: 0; /* Remove default margin */
    padding: 10px 0; /* Add padding to create space between elements */
}



#h2-1-imagebg {
    margin-bottom: 10px; /* Adjust the value as needed */
}

#h2-2-imagebg {
    margin-top: 0; /* Ensure no extra margin at the top */
}

/* ===================== MEDIUM DEVICES (TABLETS & LARGE MOBILES) ===================== */
@media screen and (max-width: 1024px) {

  .bottom-nav { 
    padding-bottom: 20px; /* Add extra space */
  }
  body {
    padding-bottom: 50px; /* Increase bottom spacing */
  }
  .container {
    margin-right: 4.5rem;
  }
  .column {
    flex: 1 0 50%;
    padding-left: 4.5rem;
    text-align: left;
  }
  .cell {
    font-family: jost_light;
    color: black;
    margin-bottom: 10px;
    font-size: 12px;
  }
  /* Navbar adjustments for medium devices */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 20px;
  }
  .navbar .brand {
    font-size: 2rem;
    flex-grow: 1;
    text-align: center;
  }
  .navbar-menu {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .navbar-menu a {
    font-size: 1.6rem;
    text-decoration: none;
    color: white;
  }
  #menu_icon,
  #search_icon {
    font-size: 1rem;
    margin-right: 10px;
  }
  .wishlist {
    display: none; /* Hide extra items if needed */
  }
}

/* ===================== SMALL DEVICES (ALL MOBILE PHONES) ===================== */
@media screen and (max-width: 600px) {
  /* --- Original Code (unchanged) --- */
  body {
    width: 120vh;
  }
  
  h2{
    margin-top: 125px;
  }
  /* Hide anything with this class on mobile */
  .hideinmobile {
    display: none !important;
  }

  .videobg {
    height: 225vh;
    width: 125vh;
  }
  .imagebg {
    height: 225vh;
    width: 125vh;
  }
  .videobg h2 {
    top: 79%;
    font-size: 3rem;
    font-weight: 550;
    white-space: nowrap;
  }
  .videobg button {
    font-family: jost_light;
    top: 91%;
    left: 50%;
    padding: 38px 145px;
    font-size: 2rem;
    font-weight: 100;
    white-space: nowrap;
    backdrop-filter: blur(100px);
    border-radius: 100px;
    border: 2px solid white;
  }
  #h2-1-imagebg {
    font-family: jost_light;
    top: 79%;
    font-size: 3.5rem;
    white-space: nowrap;
  }
  #h2-2-imagebg {
    font-family: jost_light;
    top: 82%;
    font-size: 3.5rem;
    white-space: nowrap;
  }
  .imagebg button {
    font-family: jost_light;
    top: 89%;
    padding: 38px 145px;
    font-size: 2rem;
    font-weight: 100;
    white-space: nowrap;
    backdrop-filter: blur(100px);
    border-radius: 100px;
    border: 2px solid white;
  }
  .services {
    width: 125vh;
  }
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .card-image {
    height: 20rem;
    border-radius: 5%;
  }
  .card-content h1 {
    margin-top: 3.5rem;
    font-size: 3rem;
  }
  .card-content p {
    font-size: 2rem;
  }
  .card-btn {
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: 2rem;
  }
  .column {
    flex-direction: row;
    padding: 0 1rem;
  }
  .links {
    display: none;
  }
  .footer {
    display: none;
  }
  .last-logo {
    width: 125vh;
    font-size: 2.10rem;
  }
  .hr {
    width: 125vh;
  }
  .hr-hid {
    display: block;
    
    align-content: center;
    width: 100%;
  }
  .accordian-container {
    display: contents;
  }
  .accordion {
    font-family: jost_light;
    background-color: white;
    color: black;
    cursor: pointer;
    padding: 30px 4.5rem;
    width: 125vh;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.2rem;
    transition: 0.4s;
  }
  .active,
  .accordion:hover {
    background-color: white;
  }
  .accordion:after {
    content: '\002B';
    color: black;
    font-weight: 500;
    float: right;
    margin-left: 5px;
  }
  .active:after {
    content: "\2212";
    transform: rotate(90deg);
  }
  .panel {
    display: block;
    margin-left: 4.5rem;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .panel a {
    font-family: jost_light;
    display: block;
    margin: 30px 20px;
    text-decoration: none;
    color: black;
    font-weight: 400;
    font-size: 1.0rem;
  }
  .panel a span {
    text-underline-offset: 12px;
  }
  .social {
    align-items: center;
    margin: 30px 40px 30px 30px;
    font-size: 60px;
    color: black;
  }
  .insta {
    margin-left: 100px;
  }
  .pin {
    margin-left: 200px;
  }
  .socialmedia {
    margin-top: 100px;
    align-content: center;
  }
  .mobile-footer {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
  }
  .mobile-footer ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
  }
  .mobile-footer ul li {
    margin: 0 0px;
  }
  .mobile-language {
    font-family: jost_light;
    color: black;
    font-size: 2.5rem;
    margin-top: 10px;
  }
  footer ul li a {
    color: black;
    font-family: jost_light;
    margin: 0 10px;
    text-decoration: none;
    font-size: 2.5rem;
  }
  .mobile-footer .mobile-language .globe-icon {
    color: rgba(5, 4, 4, 0.775);
  }
  footer a {
    margin-top: 40px;
    text-decoration: none;
  }
  .mobile-footer span {
    margin-top: 70px;
    padding-left: 10px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 20px;
  }
  .contain {
    margin-top: 65px;
  }
  .nav-hid {
    display: none;
  }
  .navbar {
    height: 75px;
    padding-left: 10px;
  }
  .navbar .brand {
    font-size: 2.8em;
  }
  .navbar ul li i {
    margin-left: 40px;
  }
  .navbar ul li a {
    font-size: 1.4rem;
  }
  #menu_icon {
    font-size: 2.5rem;
    margin-left: 5px;
  }
  #search_icon {
    margin-left: 20px;
    font-size: 2.5rem;
  }
}

.grid-product__title-inner{
  font-family: serif;
}

.grid-product__price-value ec-price-item{
  font-family: serif;
}

/* 
  =====================
  FINAL OVERRIDES FOR A 'DIOR-LIKE' TOP BAR ON MOBILE
  =====================
*/
@media screen and (max-width: 600px) {
  /* 1. No zoom + no horizontal scroll */
  html, body {
    margin: 0;
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* 2. Minimal white background, black text/icons for the navbar */
  .navbar {
    background-color: #fff !important;
    color: #000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 60px !important; /* Slightly smaller for mobile */
  }
  /* Brand name centered */
  .navbar .brand {
    color: #000 !important;
    text-align: center !important;
    margin-right: 17%;
    flex: 1 !important; /* Ensures brand is centered */
    font-size: 1.8em !important;
  }

  /* Left & right icons black */
  #menu_icon,
  #search_icon {
    color: #000 !important;
    font-size: 1.4rem !important;
    background: none !important;
    border: none !important;
    cursor: pointer;
  }

  /* If you have .navbar-menu or .navbar ul li a, override color to black */
  .navbar-menu a,
  .navbar ul li a {
    color: #000 !important;
    font-size: 1.4rem !important;
    text-decoration: none;
  }

  /* 3. Fit wide elements to screen width */
  .videobg,
  .imagebg,
  .services,
  .last-logo,
  .hr,
  .accordion {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* 4. Make large text/buttons smaller for mobile */
  .videobg h2,
  #h2-1-imagebg,
  #h2-2-imagebg {
    font-size: 1.90rem !important;
  }
  .videobg button,
  .imagebg button {
    font-size: 1.6rem !important;
    padding: 10px 30px !important;
  }
  .card-content h1 {
    font-size: 2rem !important;
  }
  .card-content p {
    font-size: 1.6rem !important;
  }
  .card-btn {
    font-size: 1.6rem !important;
  }
  .social {
    font-size: 40px !important;
  }
  .mobile-footer ul li a {
    font-size: 0.35rem !important;
  }
  .mobile-language {
    font-size: 1rem !important;
  }
}

/* Reviews iframe styles */
.reviews-container {
    width: 100%;
    margin: 2rem 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.reviews-iframe {
    width: 100%;
    height: 1000px;
    border: none;
    display: block;
    overflow: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.reviews-iframe::-webkit-scrollbar {
    display: none;
}

/* Responsive styles for reviews iframe */
@media screen and (max-width: 768px) {
    .reviews-iframe {
        height: 900px;
    }
}

@media screen and (max-width: 480px) {
    .reviews-iframe {
        height: 800px;
    }
}
