body { margin: 0; font-family: Arial, sans-serif; background-color: #F0F1EB; overflow-x: hidden; } 
.top-header a { text-decoration: none; color: inherit; outline: none; } 
.top-header a:hover { text-decoration: none; color: #7D722D; } 
.main-header {
  display: flex;
  justify-content: space-between; /* logo left, nav center, icons+search right */
  align-items: center;
  padding: 0rem 5vw;
  margin-top: 0rem;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background-color: white;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  background-color: #F0F1EB;
  margin-right: 20px; /* space between search bar and icons */
  max-width: 100px;   /* fixed width */
  transition: all 0.3s ease;
  cursor: text;
}
.search-bar input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
}
.search-bar button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

/* Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: white;
  transition: height 0.4s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.search-overlay.active {
  height: 50vh; /* expands to half screen */
}
.overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}

#overlaySearchInput {

  border: 1px solid #ccc;
  background-color: #f0f0f0;
  outline: none;

  flex-shrink: 0; /* prevents stretching */
}

#overlaySearchInput:hover {
  background-color: #f0f0f0;
}
.logo13-text {
  font-family: 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: black;
  position: relative;
  right: 150px;
  text-decoration: none; /* removes underline */
}


.logo13-text:hover {
  text-decoration: none;
}

/* Overlay Header */
.overlay-header {
  display: flex;
  align-items: center;
  justify-content: center; /* center everything */
  gap: 12px;
  margin: 20px 0;
}

/* Kill the stretching */
.overlay-header input {
  flex: unset !important; 
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

/* Now only this rules the search box */
#overlaySearchInput {
  width: 800px;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ccc;
  background-color: #f0f0f0;
  outline: none;
  font-size: 14px;
}

/* Keep it grey always */
#overlaySearchInput:hover,
#overlaySearchInput:focus {
  background-color: #f0f0f0;
}

.cancel-btn {
  cursor: pointer;
  font-weight: bold;
  color: #333;
  position: relative;
  left: 50px;
}

/* Suggestions */
.search-suggestions {
  margin-bottom: 100px;
  text-align: left;
  margin-left: 390px; /* adds space on the left */
}

.search-suggestions h4 {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color:#544F4B;

}

/* Hide on mobile (max width 768px, you can adjust) */
@media (max-width: 768px) {
  .overlay-header,
  .search-suggestions {
    display: none;
  }
}




.search-suggestions ul {
  display: flex;
  justify-content: left; /* center items */
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 20 0 15px 0;
}
.search-suggestions li {
  padding: 8px 16px;
  background-color: #e0e0e0; /* grey box */
  border-radius: 16px;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
}

/* Logo: sits left with 50px margin */
.logo12-text {
  font-family: 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.15rem;
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  margin-left: 50px;
}
.logo12-text:hover {
  color: #333;
}

/* Nav links in the center */
.nav-links {
  display: flex;
  gap: 2vw;
  padding: 0.7rem 2vw !important;
  border-radius: 50px;
  list-style: none;
  margin: 0 auto; /* keeps it centered */
}
.nav-links a {
  text-decoration: none;
  font-family: 'Javanese Text', sans-serif;
  font-size: 1.2rem;
  color: rgb(8, 1, 1);
  position: relative;
  top: 0.3rem;
}

/* Icons + search on the right */
/* Icons group */
.main-icons {
  display: flex;
  gap: 1.2rem;       /* space between each icon */
  align-items: center;
  margin-right: 50px; /* spacing from right edge */
}

.main-icons img {
  width: 1.6rem;
  height: 1.6rem;
  cursor: pointer;
}

/* Search bar beside icons */
.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  background-color: white;
  margin-right: 20px; /* ✅ space between search bar and icons */
  max-width: 180px;   /* ✅ reduce width */
}
.search-bar input {
  border: none;
  outline: none;
  padding: 0.3rem;
  font-size: 1rem;
  background: transparent;
  width: 100%;
}
.search-bar button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}


@media screen and (max-width: 1024px) { .nav-links { gap: 3vw; right: 1vw; padding: 0.7rem 1vw !important; } .main-icons { transform: translateY(-50%) translateX(0); right: 1vw; } } 
@media screen and (max-width: 768px) { .main-header { display: none !important; } } 
.dropdown { position: fixed; top: 1; left: 0; background-color: rgba(0, 0, 0, 0.74); width: 100vw; height: 453px; display: none; z-index: 999; }  
.dropdown-content { max-width: 1440px; margin: 0 auto; padding: 30px 60px; display: flex; gap: 60px; box-sizing: border-box; } 
.dropdown-section h4 { margin-bottom: 10px; font-family: 'Javanese Text', sans-serif; font-size: 24px; font-weight: 400; color: white; margin-left: 100px; } 
.dropdown-section ul { list-style: none; padding: 0; margin-left: 100px; margin-top: 10px; line-height: 2; } 
.dropdown-section ul li { margin: 5px 0; } 
.dropdown-section ul li a { font-family: 'Javanese Text', sans-serif; font-size: 20px; font-weight: 400; line-height: 20px; color: white; text-decoration: none; } 
.dropdown-section ul li a:hover { text-decoration: underline; } 
.nav-links li { list-style: none; position: relative; } 
.nav-links li:hover .dropdown { display: block; } 
.header-hero-wrapper { background-color: #F0F1EB; box-shadow: inset 0 -50px 150px 0 white; transform-origin: 0 0; will-change: transform; } 
.hero-section { display: flex; align-items: center; justify-content: center; gap: 50px; padding: 50px 20px; flex-wrap: wrap; } 
.header-hero-wrapper .hero-section { display: flex; flex-wrap: nowrap; justify-content: center; align-items: center; gap: 4vw; } 
.center-svg { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; } 
.center-svg img { max-width: 40vw; height: auto; position: relative; left: 0; transform: translateX(-3vw); } 
.logo-content { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; left: 0; } 
@media (max-width: 768px) { .center-svg img { max-width: 50vw; transform: translateX(-2vw); } } 
.center-svg img { max-width: 75%; height: auto; position: relative; left: 250px; } 
.logo-content { display: flex; flex-direction: column; align-items: flex-start; position: relative; left: 200px; } 
.logo-text { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; } 
.logo-text .h { grid-area: h; font-family: 'Joan', serif; color: #544F4B; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); font-size: 89px; position: relative; bottom: 200px; left: -150px; } 
.logo-text .o { grid-area: o; font-family: 'Jomolhari', serif; color: #544F4B; font-size: 89px; position: relative; bottom: 200px; left: -150px; } 
.logo-text .w { grid-area: w; font-family: 'Jomolhari', serif; color: #544F4B; font-size: 89px; position: relative; bottom: 200px; left: -150px; } 
.logo-text .ca { grid-area: ca; font-family: 'Jomolhari', serif; color: #544F4B; font-size: 59px; position: relative; bottom: 100px; left: -260px; } 
.logo-text .n { grid-area: n; font-family: 'Jomolhari', serif; color: #544F4B; font-size: 89px; position: relative; bottom: 100px; left: -260px; } 
.logo-text .i { grid-area: i; font-family: 'Jomolhari', serif; color: #544F4B; font-size: 89px; position: relative; bottom: 15px; left: -260px; } 
.logo-text .dress { grid-area: dress; font-family: 'Jomolhari', serif; color: #544F4B; font-size: 69px; position: relative; left: -240px; } 
.logo-text .better { grid-area: better; font-family: 'Jomolhari', serif; color: #544F4B; font-size: 89px; position: relative; top: 85px; left: -600px; }



.about-section { background: #fff; padding: 60px 20px; text-align: center; margin-top: -60px; }
.brand-title { font-family: 'Italianno', cursive; font-weight: 400; font-size: 40px; color: #000; margin-bottom: -60px; }
.tagline { font-family: 'Javanese Text', serif; font-weight: 400; font-size: 36px; color: #000; margin-bottom: -12px; }
.description { font-family: 'Javanese Text', serif; font-weight: 400; font-size: 16px; color: #000; margin: 0 auto 12px auto; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shop-btn { width: 148px; height: 37px; background: #000; color: #fff; font-family: 'Javanese Text', serif; font-weight: 400; font-size: 24px; border: none; cursor: pointer; border-radius: 20px; transition: background 0.3s ease; }
.shop-btn:hover { background: #333; }
.shop-text { position: relative; top: -7px; }

@media (max-width: 768px) {
  .about-section { margin-top: 400px; padding: 40px 15px; }
  .brand-title { font-size: 32px; margin-bottom: 12px; }
  .tagline { font-size: 28px; margin-bottom: 12px; line-height: 1.2; }
  .description { font-size: 14px; margin: 0 auto 12px auto; white-space: normal; overflow: visible; text-overflow: unset; line-height: 1.4; max-width: 90%; }
  .shop-btn { width: 130px; height: 35px; font-size: 18px; }
  .shop-text { position: relative; top: 0px; }
}

.featured-section { text-align: center; margin-top: 72px; }
.featured-title { font-family: 'Javanese Text', sans-serif; font-weight: 400; font-size: 32px; color: #000; text-align: left; margin: 0 auto 60px; max-width: 1080px; }
.featured-images { display: flex; justify-content: center; gap: 0; }
.featured-item { position: relative; width: 357px; height: 377px; }
.featured-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-btn { position: absolute; left: 10px; bottom: 10px; width: 126px; height: 41px; background: #7D722D; color: #fff; font-family: 'Javanese Text', sans-serif; font-weight: 400; font-size: 20px; border: none; cursor: pointer; border-radius: 50px; }
.featured-banner { margin-top: 60px; }
.featured-banner img { width: 1080px; height: 92px; object-fit: cover; display: block; margin: 0 auto; }

@media (max-width: 768px) {
  .featured-images { flex-direction: column; align-items: center; }
  .featured-item { width: 100%; max-width: 357px; height: auto; margin-bottom: 20px; font-family: 'Javanese Text', sans-serif; font-weight: 400; font-size: 32px; color: #000; }
  .featured-item img { width: 100%; height: auto; }
  .featured-btn { left: 10px; bottom: 10px; color: #fff; font-family: 'Javanese Text', sans-serif; font-weight: 400; font-size: 20px; }
  .featured-banner { display: none; }
  .featured-title { position: relative; left: 35px; }
}

.tagline2-section { background: #fff; padding: 60px 20px; text-align: center; margin-top: 60px; }
.tagline2-title { font-family: 'Javanese Text', sans-serif; font-weight: 400; font-size: 36px; color: #000; margin-bottom: -12px; }
.tagline2-subtitle { font-family: 'Javanese Text', sans-serif; font-weight: 400; font-size: 16px; color: #000; margin: 0 auto 12px auto; max-width: 800px; line-height: 1.5; }
.tagline2-btn { width: 148px; height: 41px; background: black; color: #fff; font-family: 'Javanese Text', sans-serif; font-weight: 400; font-size: 20px; border: none; cursor: pointer; border-radius: 20px; transition: background 0.3s ease; }
.tagline2-btn:hover { background: #333; }

@media (max-width: 768px) {
  .tagline2-section { padding: 40px 15px; margin-top: 40px; }
  .tagline2-title { font-size: 28px; margin-bottom: 12px; line-height: 1.2; font-family: 'Javanese Text', sans-serif; font-weight: 400; }
  .tagline2-subtitle { font-size: 14px; margin: 0 auto 20px auto; max-width: 90%; line-height: 1.4; font-family: 'Javanese Text', sans-serif; font-weight: 400; color: #000; }
  .tagline2-btn { width: 130px; height: 35px; font-size: 18px; background: black; color: #fff; font-family: 'Javanese Text', sans-serif; font-weight: 400; }
}


/*SHOPBYICONS*/ 
.shop-icons { margin-top: 99px; } 
.shop-icons-title { font-family: "Javanese Text", sans-serif; font-size: 28px; font-weight: 400; color: #000; text-align: left; margin-bottom: 40px; position: relative; left: 60px; } 
.shop-icons-wrapper { display: flex; align-items: center; gap: 20px; position: relative; } 
.shop-icons-container { display: flex; gap: 20px; overflow: hidden; } 
.shop-box { width: 100%; max-width: 340px; aspect-ratio: 340 / 269; background: #7D722D; box-shadow: inset 0 -50px 100px 10px rgba(50, 6, 6, 0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; } 
.shop-box img { max-width: 100%; max-height: 100%; object-fit: contain; } 
.arrow { width: 52px; height: 52px; border-radius: 16px; background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; box-shadow: 0 0 6px rgba(0,0,0,0.1); flex-shrink: 0; z-index: 2; position: relative; }

@media (max-width: 768px) { 
  .shop-icons-container { overflow-x: auto; gap: 10px; } 
  .shop-box { width: calc(100% - 40px); max-width: none; margin: 0 20px; height: auto; aspect-ratio: 340 / 269; } 
  .shop-box img { width: 100%; height: 100%; object-fit: contain; } 
  .arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 12px; } 
  .arrow.left { left: 10px; } 
  .arrow.right { right: 10px; } 
  .shop-icons-wrapper { position: relative; } 
  .shop-icons-title { font-family: "Javanese Text", sans-serif; font-size: 28px; font-weight: 400; color: #000; text-align: left; margin-bottom: 40px; position: relative; left: 20px; }
}

/*NEW ARRIVALS*/ 
.new-arrivals { margin-top: 99px; } 
.new-arrivals-title { font-family: "Javanese Text", sans-serif; font-size: 28px; font-weight: 400; color: #000; text-align: left; margin-left: 60px; margin-bottom: 58px; } 
.new-arrivals-wrapper { display: flex; align-items: center; gap: 20px; } 
.new-arrivals-container { display: flex; gap: 26px; overflow: hidden; flex: 1; } 
.new-arrival-box { width: 435px; height: 375px; background-color: #CBC7B0; box-shadow: 0 20px 4px 0 rgba(50, 6, 6, 0.25) !important; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } 
.arrow svg { width: 32px; height: 32px; fill: #464646; } 
.new-arrival-box img { width: 287px; height: auto; object-fit: contain; } 
.new-arrival-text { margin-top: 16px; text-align: left; } 
.bag-title { font-family: "Javanese Text", sans-serif; font-size: 24px; font-weight: 400; color: #000; margin: 0 0 4px 0; margin-top: 50px; } 
.bag-desc { font-family: "Javanese Text", sans-serif; font-size: 24px; font-weight: 400; color: #464646; margin: 0 0 4px 0; line-height: 1.3; } 
.bag-price { font-family: "Javanese Text", sans-serif; font-size: 20px; font-weight: 400; color: #000; margin: 0; text-align: left; width: 100%; display: block; }

@media screen and (max-width: 768px) { 
  .new-arrivals-title { font-family: "Javanese Text", sans-serif; font-weight: 400; color: #000; font-size: 28px; margin-left: 20px; margin-bottom: 40px; } 
  .new-arrivals-wrapper { gap: 12px; position: relative; } 
  .new-arrivals-container { display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth; padding-left: 20px; padding-right: 20px; } 
  .new-arrival-item { flex-shrink: 0; width: calc(100% - 40px); display: flex; flex-direction: column; } 
  .new-arrival-box { width: 100%; height: auto; min-height: 300px; display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 4px 0 rgba(50, 6, 6, 0.25); } 
  .new-arrival-box img { width: 100%; height: auto; } 
  .arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; } 
  .arrow.left { left: 10px; } 
  .arrow.right { right: 10px; } 
  .new-arrival-text { margin-top: 12px; padding-left: 5px; padding-right: 5px; } 
  .bag-title { font-family: "Javanese Text", sans-serif; font-size: 24px; font-weight: 400; color: #000; margin: 0 0 4px 0; margin-top: 50px; } 
  .bag-desc { font-family: "Javanese Text", sans-serif; font-size: 24px; font-weight: 400; color: #464646; margin: 0 0 4px 0; line-height: 1.3; } 
  .bag-price { font-family: "Javanese Text", sans-serif; font-size: 20px; font-weight: 400; color: #000; margin: 0; text-align: left; width: 100%; display: block; } 
}

/* Collection */
.collection-title { font-family: "Javanese Text", sans-serif; font-size: 32px; font-weight: 400; color: #000; text-align: left; margin-right: 1050px; margin-top: 99px; }
.collection-title { font-family: "Javanese Text", sans-serif; font-size: 32px; font-weight: 400; color: #000; text-align: center; }
.collection-images { display: flex; justify-content: center; gap: 20px; margin-top: 52px; }
.img-box { position: relative; width: 395px; height: 375px; overflow: hidden; }
.img-box img { width: 100%; height: 100%; object-fit: cover; }
.img-button { position: absolute; bottom: 10px; left: 25%; transform: translateX(-50%); background-color: #7D722D; width: 154px; height: 41px; border: none; border-radius: 32px; font-family: "Javanese Text", sans-serif; font-size: 20px; font-weight: 400; color: #fff; cursor: pointer; }

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .collection-title { text-align: left; margin-left: 20px; font-size: 28px; font-family: "Javanese Text", sans-serif; font-weight: 400; color: #000; }
  .collection-images { flex-direction: column; gap: 20px; align-items: center; margin-top: 40px; }
  .img-box { width: 90%; height: auto; }
  .img-box img { height: auto; }
  .img-button { left: 25%; transform: translateX(-50%); }
}

/* Footer */
.footer-section { background-color: #fff; margin-top: 160px; padding: 60px 40px 40px; }
.footer-container { display: flex; justify-content: space-between; align-items: flex-start; gap: 80px; max-width: 1200px; margin: 0 auto; flex-wrap: nowrap; }
.footer-column h3 { font-family: "Javanese Text", sans-serif; font-size: 20px; font-weight: 400; color: #000; margin-bottom: 20px; }
.footer-column ul { list-style: none; padding: 0; }
.footer-column ul li { font-family: "Javanese Text", sans-serif; font-size: 16px; font-weight: 400; color: #544F4B; line-height: 1.8; }
.footer-image img { width: 484px; height: 299px; object-fit: cover; }
.footer-copy { font-family: "Javanese Text", sans-serif; font-size: 16px; font-weight: 400; color: #000; margin-top: 40px; text-align: center; }

/* Force desktop layout on tablet / Nest Hub */
@media screen and (max-width: 1280px) and (min-width: 769px) {
  .footer-container { flex-wrap: nowrap; gap: 157px; margin: 0 150px; top: 60px; position: relative; right: 100px; }
  .resources, .help, .company { margin-right: 0; }
  .footer-copy { margin-left: 50; position: relative; top: 40px; }
}

/* Mobile / Tablet Responsive */
@media screen and (max-width: 1024px) {
  .footer-container { flex-direction: column; margin: 0 40px; gap: 40px; top: 0; }
  .resources, .help, .company { margin-right: 0; }
  .footer-image img { width: 100%; height: auto; }
  .footer-copy { margin-left: 80px; text-align: left; }
}

/* Hide on desktop */
.footer-mobile { display: none; padding: 20px; }

/* Mobile styles */
@media screen and (max-width: 768px) {
  .footer-section { display: none; margin-top: 100px; }
  .footer-mobile { display: block; background-color: #fff; padding: 20px; margin-top: 160px; text-align: center; }
  .footer-mobile-menu { display: flex; flex-direction: column; gap: 10px; }
  .footer-item { text-align: left; }
  .footer-btn { width: 100%; background: none; border: none; font-family: "Javanese Text", sans-serif; font-size: 20px; font-weight: 400; color: #000; text-align: left; padding: 10px 0; cursor: pointer; }
  .footer-submenu { list-style: none; padding-left: 20px; display: none; }
  .footer-submenu li { font-family: "Javanese Text", sans-serif; font-size: 16px; font-weight: 400; color: #544F4B; line-height: 1.8; padding: 5px 0; }
  hr { border: none; border-top: 1px solid #ccc; margin: 5px 0 10px 0; }
  .footer-mobile-image img { width: 100%; height: auto; margin-top: 20px; }
  .footer-mobile-copy { font-family: "Javanese Text", sans-serif; font-size: 16px; color: #000; margin-top: 20px; text-align: center; }
}

.menu-btn { font-size: 28px; background: transparent !important; border: none !important; outline: none; cursor: pointer; color: black; padding: 0; margin: 0; }
.mobile-sidebar .arrow { display: none; }

/* Top white header */
.top-header { width: 100%; height: 45px; background: #F0F1EB;; border-bottom: 1px solid #eee; }
.top-header-content { max-width: 1200px; height: 100%; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.brand-name { font-family: "Italianno", cursive; font-size: 20px; color: #CBC7B0; -webkit-text-stroke: 0.7px #7D722D; }
.top-header-links { display: flex; align-items: center; gap: 10px; }
.top-header-links a { font-size: 14px; color: #333; text-decoration: none; }
.top-header-links a:hover { text-decoration: underline; }
.divider { color: #999; }

@media (max-width: 768px) { .top-header { display: none; } }

/*MOBILE HEADER*/

@media screen and (max-width: 768px) { .header-hero-wrapper { display: none; } }
@media screen and (max-width: 1024px) { .nav-links { right: 30px; gap: 50px; } .main-icons { transform: translateY(-50%) translateX(0); right: 30px; } }
  .mobile-header { box-shadow: inset 0px -50px 100px 10px rgba(255, 254, 254, 0.25); display: none; justify-content: flex-end; align-items: center; width: 100%; height: 63px; background-color: white; padding: 0 15px; position: fixed; top: 0; left: 0; z-index: 1000; }
  .mobile-header .icon { width: 28px; height: 28px; margin-right: 10px; cursor: pointer; }
  .menu-btn { font-size: 28px; background: none; border: none; cursor: pointer; color: black; }
.mobile-sidebar { position: fixed; top: 0; right: 0; width: 70%; height: 100vh; background-color: rgba(0,0,0,0.95); color: white; padding: 70px 20px; z-index: 999; overflow-y: auto; box-sizing: border-box; }
.mobile-sidebar .dropdown { max-height: none; overflow: visible; }
.mobile-sidebar::-webkit-scrollbar { width: 8px; }
.mobile-sidebar::-webkit-scrollbar-track { background: transparent; }
.mobile-sidebar::-webkit-scrollbar-thumb { background-color: white; border-radius: 4px; }
.mobile-sidebar::-webkit-scrollbar-thumb:hover { background-color: #333; }
.mobile-sidebar.open { right: 0; }
.mobile-sidebar ul { list-style: none; padding: 0; margin: 0; }
.mobile-sidebar li { margin-bottom: 15px; }
.mobile-sidebar a { text-decoration: none; color: white; font-size: 18px; display: flex; justify-content: space-between; align-items: center; padding: 10px 0; line-height: 1.8; border-bottom: 1px solid rgba(200, 200, 200, 0.3); }

.mobile-top { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.mobile-icons { display: flex; align-items: center; position: relative; right: 25px; }
.mobile-brand { font-family: "Italiana", serif; font-size: 20px; color: #CBC7B0; -webkit-text-stroke: 0.7px #7D722D; margin-left: 5px; text-decoration: none; display: inline-block; }

.submenu { display: none; flex-direction: column; padding-left: 15px; margin-top: 5px; }
.sidebar-extra { margin-top: 30px; padding-top: 20px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-title { font-family: 'Italianno', cursive; font-size: 36px; color: white; -webkit-text-stroke: 1px #CBC7B0; margin: 0; }
.sidebar-vertical { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sidebar-vertical li a { font-family: 'Javanese Text', serif; font-size: 20px; color: white; text-decoration: none; padding: 5px 0; line-height: 1; border-bottom: 1px solid rgba(200, 200, 200, 0.3); }
.sidebar-btn { width: 120px; height: 40px; background-color: white; color: black; font-family: 'Javanese Text', serif; font-size: 16px; border: none; cursor: pointer; border-radius: 25px; }
.mobile-sidebar a.active { color: #676135; font-weight: bold; }
.mobile-sidebar > ul > li > a { border-bottom: 1px solid rgba(200, 200, 200, 0.3); }
.submenu a { border-bottom: none !important; padding-left: 20px; font-size: 16px; }

@media screen and (max-width: 768px) { .main-header { display: none !important; } .mobile-header { display: flex !important; } .mobile-sidebar { display: block; } }
.mobile-header { display: none; }
.mobile-sidebar { display: none; }
.mobile-sidebar.open { display: block; right: 0; }

.mobile-only-container, .mobile-svg { display: block; }
@media (min-width: 769px) { .mobile-only-container, .mobile-svg { display: none !important; } }
@media (max-width: 768px) { .mobile-only-container, .mobile-svg { display: block !important; } }



@media only screen and (max-width: 420px) {.mobile-only-container { display: flex; flex-direction: column; align-items: center; gap: 15px; margin-top: 100px;   transform-origin: top center;
  will-change: transform;
  -webkit-font-smoothing: antialiased; } 
} .mobile-only-logo-text .h { font-family: 'Joan', serif; font-size: 64px; color: #544F4B; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); position: relative; top: 100px; left: 68px; } 
.mobile-only-logo-text .o { font-family: 'Jomolhari', serif; font-size: 64px; color: #544F4B; position: relative; top: 100px; left: 70px; } 
.mobile-only-logo-text .w { font-family: 'Jomolhari', serif; font-size: 64px; color: #544F4B; position: relative; top: 100px; left: 73px; }
.mobile-only-logo-text .ca { font-family: 'Jomolhari', serif; font-size: 40px; color: #544F4B; position: relative; top: 145px; right: 20px; }

.mobile-only-logo-text .n {  font-family: 'Jomolhari', serif; font-size: 64px; color: #544F4B; position: relative; top: 170px; right: 25px; }
.mobile-only-logo-text .i { font-family: 'Jomolhari', serif; font-size: 64px; color: #544F4B; position: relative; top: 220px; left: -25px; }
.mobile-only-logo-text .dress { font-family: 'Jomolhari', serif; font-size: 40px; color: #544F4B; position: relative; top: 215px; left: -15px; }
.mobile-only-logo-text .better{ font-family: 'Jomolhari', serif; font-size: 64px; color: #544F4B; position: relative; top: 220px; left: 85px; }

.mobile-only-box-button .box-btn { width: 180px; height: 50px; font-size: 24px; position: relative; top: 250px; left: 130px; }
  
.box-btn { width: 250px; height: 55px; background-color: black; border: 2px solid white; border-radius: 30px; font-family: 'Italianno', cursive; font-size: 34px; font-weight: 400; color: white; -webkit-text-stroke: 1px white; text-shadow: 1px white; cursor: pointer; }





:root { --mobile-header-height: 63px; } /* match .mobile-header height */

.content-below-header {
  box-sizing: border-box;
  padding-top: var(--mobile-header-height);
}

/* only apply the offset on mobile where header is fixed; no change on desktop */
@media (min-width: 768px) {
  .content-below-header { padding-top: 0; }
}
