/* Icon Font */
@font-face {
  font-family: 'hnice-icons';
  src: url('assets/fonts/hnice-icon-1.2.2.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.hnice-icon {
  font-family: 'hnice-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
}

.hnice-icon-menu:before {
  content: "\e029";
}

.group:hover .hnice-icon-menu:before {
  content: "\e059";
}

.hnice-icon-close:before {
  content: "\e0a4";
}

/* Hide breadcrumb on homepage */
.home-page .header-breadcrumb {
  display: none !important;
}

/* About Image Border Animation */
.about-image a::before,
.about-image a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  transition: width 1s ease, height 1s ease, opacity 1s ease;
  background: transparent;
  z-index: 2;
  opacity: 0;
}

.about-image a::before {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 1px solid white;
}

.about-image a::after {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid white;
}

.about-image a:hover::before,
.about-image a:hover::after {
  width: calc(100% - 40px);
  opacity: 1;
}

.about-image a {
  position: relative;
}

.about-image a > span::before,
.about-image a > span::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  transition: height 1s ease, opacity 1s ease;
  z-index: 2;
  opacity: 0;
}

.about-image a > span::before {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 1px solid white;
}

.about-image a > span::after {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-right: 1px solid white;
}

.about-image a:hover > span::before,
.about-image a:hover > span::after {
  height: calc(100% - 40px);
  opacity: 1;
}

/* Additional icon definitions for index.html */
.hnice-icon-bathroom2:before {
  content: "\e00f";
}

.hnice-icon-location:before {
  content: "\e02a";
}

.hnice-icon-phone:before {
  content: "\e048";
}

.hnice-icon-clock:before {
  content: "\e053";
}

.hnice-icon-system-arrow-right:before {
  content: "\2192";
}

.hnice-icon-left-arrow:before {
  content: "\2190";
}

.hnice-icon-right-arrow:before {
  content: "\2192";
}

.hnice-icon-quote-left:before {
  content: "\201C";
}

.hnice-icon-menu-hover:before {
  content: "\e059";
}

/* Testimonial Pagination Bullets */
.testimonial-dots button {
  background-color: #D9D9D9;
  cursor: pointer;
  border-radius: 20px;
  width: 6px;
  height: 6px;
  position: relative;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}

.testimonial-dots button:before {
  content: "";
  position: absolute;
  border: 1px solid transparent;
  padding: 5px;
  width: 16px;
  height: 16px;
  border-radius: 20px;
  top: -5px;
  left: -5px;
  transition: all 0.3s ease;
}

.testimonial-dots button.active {
  background-color: #8D9396;
}

.testimonial-dots button.active:before {
  border-color: #8D9396;
}

.testimonial-dots button:hover {
  background-color: #8D9396;
}

.testimonial-dots button:hover:before {
  border-color: #8D9396;
}

/* Text selection color */
::selection {
  background-color: #E6AF5D;
  color: white;
}

::-moz-selection {
  background-color: #E6AF5D;
  color: white;
}

.stat-icon-wrapper {
  position: relative;
}

.stat-icon-wrapper::before {
  position: absolute;
  content: "";
  right: -10px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: #E6AF5D;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 0;
}

.stat-icon-wrapper:hover::before {
  right: -30px;
}

/* Video popup styles */
.elementor-video-wrapper {
  text-align: center;
}

.elementor-video-popup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  position: relative;
  box-shadow: none;
  text-decoration: none;
}

.elementor-video-popup .video-content {
  flex-grow: 1;
  order: 10;
  display: inline-flex;
  flex-direction: column;
}

.elementor-video-popup .elementor-video-icon {
  color: #fff;
  position: relative;
  height: 100px;
  width: 100px;
  transform: translateX(2px);
  transition: transform .8s cubic-bezier(.45, 0, .14, 1.03);
  display: flex;
  justify-content: center;
  align-items: center;
}

.elementor-video-popup .elementor-video-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: none;
  pointer-events: none;
  border-radius: 8px;
  filter: blur(8px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.elementor-video-popup:hover .elementor-video-icon::before {
  width: 180%;
  height: 180%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  filter: blur(1px);
  transition: all 0.4s ease-out;
  animation: cloudExpand 0.4s ease-out forwards;
}

@keyframes cloudExpand {
  0% {
    width: 70%;
    height: 70%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    width: 180%;
    height: 180%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

.elementor-video-popup .video-icon-align-after {
  order: 15;
}

.elementor-video-popup .elementor-video-icon .animation {
  border: 2px solid #fff;
  border-right: 2px solid rgba(255, 255, 255, .3);
  border-bottom: 2px solid rgba(255, 255, 255, .3);
  height: 100%;
  width: 100%;
  border-radius: 50%;
  animation: loading 1.8s infinite linear;
  transition: border-color 0.3s ease;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.elementor-video-popup:hover .elementor-video-icon .animation {
  border: 2px solid #E6AF5D;
  border-right: 2px solid rgba(230, 175, 93, .3);
  border-bottom: 2px solid rgba(230, 175, 93, .3);
}

.elementor-video-popup .elementor-video-icon:hover {
  animation: pulse .5s ease;
}

.elementor-video-popup i.hnice-icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.elementor-video-popup i.hnice-icon-play svg {
  width: 15px;
  height: 15px;
}

.elementor-video-popup:hover i.hnice-icon-play {
  color: #E6AF5D;
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Hotspot pulse animation */
@keyframes lexus-scale {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.28729);
    opacity: 0.0423822;
  }
}

.animate-lexus-scale {
  animation: lexus-scale 2s infinite;
}

/* Product popup styles */
.product-popup {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0.1);
  width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0s linear 0.2s, transform 0.2s ease-out;
  z-index: 200;
  pointer-events: none;
}

.product-popup.position-top {
  bottom: 30px;
  transform-origin: center center;
}

.product-popup.position-bottom {
  top: 30px;
  transform-origin: center center;
}

.product-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  transition: opacity 0.2s ease-out, visibility 0s linear 0s, transform 0.2s ease-out;
  pointer-events: auto;
}

.popup-content {
  display: flex;
  flex-direction: column;
}

.popup-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.popup-info {
  padding: 16px;
  text-align: center;
}

.popup-title {
  font-family: 'Marcellus', serif;
  font-size: 16px;
  color: #332F2C;
  margin-bottom: 8px;
  line-height: 1.3;
}

.popup-price {
  font-size: 15px;
  color: #E6AF5D;
  font-weight: 600;
  margin: 0;
}

/* Icon box styles */
.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon {
  margin-bottom: unset;
  margin-left: 0;
  margin-right: 15px;
}

.elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon {
  display: inline-flex;
  flex: 0 0 auto;
}

.elementor-icon-box-icon .elementor-icon {
  font-size: 50px;
  color: #332F2C;
}

.elementor-icon-box-wrapper .elementor-icon-box-icon {
  margin-top: -15px;
}

.elementor-icon-box-title {
  font-size: 22px;
  line-height: 30px;
  transition: color 0.3s ease;
}

.elementor-icon-box-wrapper:hover .elementor-icon-box-title {
  color: #E6AF5D;
}

.elementor-icon-box-description,
.elementor-icon-box-content p {
  font-size: 16px;
  line-height: 28px;
}

.elementor-icon i {
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
}

.elementor-icon i:before {
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

/* FAQ specific styles */
.faq-tab-btn.active::after {
  width: 100% !important;
}

.faq-image a::before,
.faq-image a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  transition: width 1s ease, height 1s ease, opacity 1s ease;
  background: transparent;
  z-index: 2;
  opacity: 0;
}

.faq-image a::before {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 1px solid white;
}

.faq-image a::after {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid white;
}

.faq-image a:hover::before,
.faq-image a:hover::after {
  width: calc(100% - 40px);
  opacity: 1;
}

.faq-image a {
  position: relative;
}

.faq-image a > span::before,
.faq-image a > span::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  transition: height 1s ease, opacity 1s ease;
  z-index: 2;
  opacity: 0;
}

.faq-image a > span::before {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 1px solid white;
}

.faq-image a > span::after {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-right: 1px solid white;
}

.faq-image a:hover > span::before,
.faq-image a:hover > span::after {
  height: calc(100% - 40px);
  opacity: 1;
}

.accordion-item.active .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms ease-in-out, padding-bottom 500ms ease-in-out, padding-right 500ms ease-in-out;
  padding-bottom: 0;
  will-change: grid-template-rows;
}

.accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
  padding-bottom: 30px;
}

@media (min-width: 1024px) {
  .accordion-item.active .accordion-content {
    padding-right: 0;
  }
}

@media (min-width: 880px) and (max-width: 1023px) {
  .accordion-item.active .accordion-content {
    padding-right: 0;
  }
}

.accordion-content > div {
  overflow: hidden;
}

/* Tailwind utility classes used across pages */
.section-label {
  font-size: 13px;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: #E6AF5D;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.breadcrumb-section {
  min-height: 312px;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

/* Ensure breadcrumb title doesn't have extra bottom margin in the section */
.breadcrumb-content {
  padding-top: 0 !important;
  margin: 0 !important;
}

.section-label-header {
  font-size: 14px;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 18px;
  display: inline-block;
  max-width: 247px;
}

.section-heading {
  font-family: 'Marcellus', serif;
  font-size: 36px;
  font-weight: normal;
  line-height: 1.15;
  color: #332F2C;
  margin-bottom: 1.5rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #EAEAEA;
  border-radius: 9999px;
  padding: 1rem 2.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-weight: 600;
  color: #332F2C;
  transition: all 0.3s;
  background-color: transparent;
  width: fit-content;
}

.btn-outline:hover {
  background-color: #E6AF5D;
  color: white;
  border-color: #E6AF5D;
}

.btn-outline .arrow {
  font-size: 1.125rem;
  transition: transform 0.3s;
}

.btn-outline:hover .arrow {
  transform: translateX(0.25rem);
}

/* Product card hover effects */
.product-card:hover .main-img {
  opacity: 0;
}

.product-card:hover .hover-img {
  opacity: 1;
}

/* Prevent zoom effect on products section background image */
.products-section .split-left img {
  transform: scale(1);
  transition: none;
}

/* Prevent zoom effect on all split-left images */
.split-left img {
  transform: scale(1) !important;
  transition: none !important;
}

/* Allow zoom on collection card images */
.collection-card img {
  transform: scale(1) !important;
  transition: transform 0.2s ease-out !important;
}

.collection-card:hover img {
  transform: scale(1.1) !important;
}

/* Product card wrapper for fixed height */
.product-card-wrapper {
  position: relative;
}

/* Product card with absolute positioning for independent expansion */
.product-card {
  border-radius: 0.5rem;
  overflow: hidden;
}

/* Mobile Menu Sidebar */
.mobile-menu {
  pointer-events: none;
}

.mobile-menu.active {
  pointer-events: auto;
}

.mobile-menu.active .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu.active .menu-sidebar {
  transform: translateX(0);
}

.menu-sidebar {
  scrollbar-width: thin;
  scrollbar-color: #E6AF5D #f0f0f0;
}

.menu-sidebar::-webkit-scrollbar {
  width: 6px;
}

.menu-sidebar::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.menu-sidebar::-webkit-scrollbar-thumb {
  background: #E6AF5D;
  border-radius: 3px;
}

.menu-sidebar::-webkit-scrollbar-thumb:hover {
  background: #d49a4a;
}

.menu-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.menu-close i {
  font-size: 15px !important;
  line-height: 15px !important;
}

.language-flag {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.language-flag:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Submenu styles */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  display: block !important;
}

.has-submenu.active > .submenu {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

.submenu-arrow {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.has-submenu.active > .submenu-toggle .submenu-arrow {
  transform: rotate(90deg);
}

.submenu-toggle {
  background: none;
  border: none;
  cursor: pointer;
}

/* Footer2 Newsletter Form Styles */
.footer2-subscribe-btn:hover {
  color: #E6AF5D;
}

.footer2-email-input:hover ~ .footer2-subscribe-btn {
  border-color: #E6AF5D;
}

.newsletter-form:hover .footer2-email-input,
.newsletter-form:hover .footer2-subscribe-btn {
  border-color: #E6AF5D;
}

.footer2-email-input:focus ~ .footer2-subscribe-btn {
  border-color: #E6AF5D;
}

/* Phone icon for footer2 */
.hnice-icon-phonecall2:before {
  content: "\e032";
}


@media (max-width: 1023px) {

  .section-heading {
    font-size: 28px;
  }

  .products-carousel-wrap {
    margin-left: 0 !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .products-carousel-wrap::-webkit-scrollbar {
    display: none;
  }

  .product-card-wrapper {
    min-width: 260px !important;
    width: 260px !important;
    height: auto !important;
    margin-right: 16px !important;
  }

  .product-card {
    position: relative !important;
  }


  .collections-carousel-wrap {
    max-width: 100% !important;
    width: 100%;
  }

  .collection-card img {
    width: 100% !important;
    height: 240px !important;
  }

  .elementor-icon-box-icon .elementor-icon {
    font-size: 36px;
  }

  video {
    max-width: 100%;
  }

}

@media (max-width: 480px) {

  .section-heading {
    font-size: 24px;
  }

  .product-card-wrapper {
    min-width: 230px !important;
    width: 230px !important;
  }

  .btn-outline {
    padding: 0.875rem 1.5rem;
  }

  .hero-slide-left h1 {
    font-size: 26px !important;
  }
}

.faq-tabs-scroll-wrap {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.faq-tabs-scroll-wrap::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1023px) {
  .faq-tab-btn {
    padding-bottom: 10px;
  }
}
