/* @group CSS Variables for Consistent Vertical Spacing
------------------------------------ */
/* 
 * Penthouse Page Vertical Spacing Standards:
 * - Mobile: 5rem section padding, 3rem section gaps
 * - Desktop: 8rem section padding, 4rem section gaps
 * - Focus only on top/bottom spacing, no left/right padding/margins
 * - Breakpoint: 961px for mobile/desktop transition
 */
:root {
  --section-spacing-mobile: 5rem;
  --section-spacing-desktop: 8rem;
  --section-gap-mobile: 3rem;
  --section-gap-desktop: 4rem;
}

/* @end */

/* @group Features Header
------------------------------------ */
.penthouse-header {
  padding: var(--section-spacing-mobile) 0 var(--section-spacing-desktop);
  background-color: var(--navy);
}
.penthouse-header h2 {
  text-transform: uppercase;
}
.penthouse-header h3 {
  margin: 0 0 2rem;
}
@media only screen and (min-width: 961px) {
  .penthouse-header {
    padding: var(--section-spacing-desktop) 0;
  }
  .penthouse-header h3 {
    font-size: 3rem;
    letter-spacing: 0.05em;
    margin: 0 0 3rem;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1440px) {
}
@media only screen and (min-width: 0) and (max-width: 960px) {
  .penthouse-header h2 {
    margin: 0 0 4rem;
  }
  .penthouse-header h3 {
    text-transform: capitalize;
  }
}

/* @end */

/* @group Virtual Tour Tabs
------------------------------------ */

.tour-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.tour-tab {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tour-tab:hover {
  color: var(--orange-ada);
}

.tour-tab.active {
  color: var(--orange-ada);
}

.tour-tab .tab-icon {
  font-size: 1.8rem;
}

.tour-tab .tab-text {
  font-family: var(--scandia-font);
}

.tour-content {
  position: relative;
  min-height: 50vh;
}

.tour-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-panel.active {
  display: block;
  opacity: 1;
}

.vt_tour_wrap iframe {
  height: 50vh;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 961px) {
  .tour-tabs {
    margin-bottom: 4rem;
  }

  .tour-tab {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
  }

  .vt_tour_wrap iframe {
    height: 60vh;
  }
}

@media only screen and (min-width: 0) and (max-width: 960px) {
  .tour-tabs {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .tour-tab {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }

  .vt_tour_wrap iframe {
    height: 40vh;
  }
}

/* @end */

/* @group Features Content
------------------------------------ */
.penthouse-content {
  position: relative;
  --z-index-lowest: 1;
}
.penthouse-content::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  top: 0;
  pointer-events: none;
  background: var(--teal);
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  z-index: calc(var(--z-index-lowest) + 1);
}
.penthouse-content .img-box,
.penthouse-content .boxes {
  z-index: calc(var(--z-index-lowest) + 3);
}
.penthouse-content .img-box {
  padding: 0;
  height: 25rem;
  border-radius: 0 0 11rem 0;
}
.penthouse-content .boxes {
  padding-top: 4rem;
  padding-bottom: 10rem;
  padding-left: 5.33%;
}
@media only screen and (max-width: 961px) {
  .penthouse-content .boxes {
    padding-left: 0;
  }
  .penthouse-content .boxes .box {
    padding-left: 5.33%;
  }
  .penthouse-content .boxes .box--centered-image {
    padding-left: 0;
  }
}
.penthouse-content .boxes .box h3 {
  text-transform: capitalize;
  margin: 0 0 2rem;
}
.penthouse-content .boxes .box ul {
  list-style: disc outside none;
  padding-left: 2rem;
}
.penthouse-content .boxes .box ul ul {
  padding-left: 2rem;
}
.penthouse-content .boxes .box ul li:not(:last-of-type) {
  margin: 0 0 1rem;
}
@media only screen and (min-width: 961px) {
  .penthouse-content::after {
    content: "";
    background-color: var(--navy);
    width: 50%;
    height: 84.4rem;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    z-index: calc(var(--z-index-lowest) + 2);
  }
  .penthouse-content .img-box {
    height: 84.4rem;
    border-radius: 0 0 30rem 0;
  }
  .penthouse-content .boxes {
    display: flex;
    flex-wrap: wrap;
    row-gap: 6rem;
    column-gap: 10rem;
  }
  .penthouse-content .boxes .box {
    flex: 0 1 calc(50% - 5rem);
  }
  .penthouse-content .boxes .box h3 {
    margin: 0 0 3rem;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1440px) {
}
@media only screen and (min-width: 0) and (max-width: 960px) {
  .penthouse-content .boxes .box:not(:last-of-type) {
    margin: 0 0 3rem;
  }
}
/* ---------------- */

.lightbox__wrapper {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333333; /* $secondaryColor */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 1s ease-out;
  outline: none !important;
  border: none !important;
}

.lightbox__wrapper .lightbox__close {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  position: absolute;
  right: 20px;
  top: 5px;
  z-index: 20;
  border: 0;
}

.lightbox__wrapper .lightbox_img {
  max-height: 70vh;
  height: auto;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media screen and (max-height: 800px) {
  .lightbox__wrapper .lightbox_img {
    width: 70%;
  }
}

@media screen and (max-width: 992px) and (max-height: 750px) {
  .lightbox__wrapper .lightbox_img {
    max-height: 65vh;
  }
}

@media screen and (max-width: 1250px) and (max-height: 750px) and (orientation: landscape) {
  .lightbox__wrapper .lightbox_img {
    max-height: 50vh;
    max-width: 50%;
  }
}

.lightbox_open .lightbox__wrapper {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.lightbox_open .lightbox__wrapper .lightbox {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  justify-content: center;
  z-index: inherit;
}

.thumbnail-gallery {
  padding: var(--section-spacing-mobile) 0;
  margin-top: var(--section-gap-mobile);
}

.thumbnail-gallery .thumbnail-wrap-inner {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.thumbnail-gallery .thumbnail {
  width: calc(33.33% - 2vw);
  margin: 0 1vw 2vw;
  cursor: pointer;
}

.toggle-container {
  display: inline-flex;
  position: absolute;
  width: 200px;
  height: 50px;
  background-color: #eed9c4; /* $sandy */
  border-radius: 25px;
  overflow: hidden;
  top: 30px;
  right: 50%;
  transform: translateX(50%);
}

@media only screen and (max-width: 960px) {
  .toggle-container {
    top: 40px;
  }
}

@media screen and (max-width: 992px) and (max-height: 750px) {
  .toggle-container {
    top: 25px;
  }
}

.toggle-container input[type="radio"] {
  display: none;
}

.toggle-container input[type="radio"]:checked + label {
  background: #b08d57; /* $brass */
}

.toggle-container label {
  flex: 1;
  text-align: center;
  line-height: 53px;
  cursor: pointer;
  font-size: 18px;
  color: #222222; /* $primaryColor */
  transition: color 0.3s;
}

.penthouse_availability_wrap {
  color: #333333; /* $secondaryColor */
  padding-top: 60px;
}

@media only screen and (max-width: 960px) {
  .penthouse_availability_wrap {
    padding-top: 2.5rem;
  }
}

.penthouse_availability_wrap .mt_sec_sub_heading {
  color: #333333; /* $secondaryColor */
  text-align: center;
}

@media only screen and (max-width: 960px) {
  .penthouse_availability_wrap .mt_sec_sub_heading {
    margin-bottom: 2.5rem;
  }
}

.penthouse_availability_wrap
  .floor_plan_or_building_choose_buttons_container
  ~ div {
  padding-top: 32px;
}

.penthouse_availability_wrap .penthouse_building_view {
  height: 45vw;
}

@media only screen and (max-width: 960px) {
  .penthouse_availability_wrap .penthouse_building_view {
    height: 100vw;
  }
}

@media screen and (max-width: 992px) and (orientation: portrait) {
  .penthouse_availability_wrap .penthouse_building_view {
    height: 150vw;
  }
}
/* Gallery section styles */

.lightbox__wrapper {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(84, 28, 21, 0.95);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease-out;
  outline: none !important;
  border: none !important;
}

/* Ensure lightbox works properly within lateral view */
#lateral-view .lightbox__wrapper {
  position: fixed;
  z-index: 1001;
}
.lightbox__wrapper .lightbox__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 20;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lightbox__wrapper .lightbox__close::before {
  content: "×";
  font-size: 48px;
  color: var(--white); /* $secondaryColor */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lightbox__wrapper .lightbox__close:hover {
  transform: scale(1.1);
}
.lightbox__wrapper .lightbox_img {
  max-height: 70vh;
  height: auto;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}
@media screen and (max-height: 800px) {
  .lightbox__wrapper .lightbox_img {
    width: 70%;
  }
}
@media screen and (max-width: 992px) and (max-height: 750px) {
  .lightbox__wrapper .lightbox_img {
    max-height: 65vh;
  }
}
@media screen and (max-width: 1250px) and (max-height: 750px) and (orientation: landscape) {
  .lightbox__wrapper .lightbox_img {
    max-height: 50vh;
    max-width: 50%;
  }
}

.lightbox {
  display: flex;
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
}

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox_img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lateral-view {
  position: relative;
}

.lateral-view.no-scroll {
  overflow: hidden;
}

/* Lateral view scroll handling for lightbox */
#lateral-view.no-scroll {
  overflow: hidden;
}

#lateral-view.no-scroll .content {
  overflow: hidden;
}

/* Responsive styles for thumbnail gallery */
@media only screen and (max-width: 960px) {
  .thumbnail-gallery {
    padding: var(--section-spacing-mobile) 0;
    margin-top: var(--section-gap-mobile);
  }

  .thumbnail-gallery .thumbnail-wrap-inner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    width: 95%;
  }

  .thumbnail-gallery .thumbnail {
    width: calc(50% - 1vw);
    margin: 0 0.5vw 1vw;
  }

  .thumbnail-gallery .thumbnail img {
    height: 180px;
  }
}

@media only screen and (min-width: 961px) {
  .thumbnail-gallery {
    padding: var(--section-spacing-desktop) 0;
    margin-top: var(--section-gap-desktop);
  }
}

@media (max-width: 480px) {
  .thumbnail-gallery .thumbnail {
    width: calc(100% - 2vw);
    margin: 0 1vw 1vw;
  }
}

.lightbox_open .lightbox__wrapper {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.lightbox_open .lightbox__wrapper .lightbox {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  justify-content: center;
  z-index: inherit;
}

/* Enhanced lightbox positioning for lateral view */
#lateral-view .lightbox_open .lightbox__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1001;
}

.thumbnail-gallery .thumbnail-wrap-inner {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.thumbnail-gallery .thumbnail {
  width: calc(33.33% - 2vw);
  margin: 0 1vw 2vw;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail-gallery .thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.toggle-container {
  display: inline-flex;
  position: absolute;
  width: 200px;
  height: 50px;
  background-color: #e1d6c7;
  border-radius: 25px;
  overflow: hidden;
  top: 30px;
  right: 50%;
  transform: translateX(50%);
}
@media (max-width: 991px) {
  .toggle-container {
    top: 40px;
  }
}
@media screen and (max-width: 992px) and (max-height: 750px) {
  .toggle-container {
    top: 25px;
  }
}
.toggle-container input[type="radio"] {
  display: none;
}
.toggle-container input[type="radio"]:checked + label {
  background: #bea36a;
}
.toggle-container label {
  flex: 1;
  text-align: center;
  line-height: 53px;
  cursor: pointer;
  font-size: 18px;
  color: #904a3d;
  transition: color 0.3s;
}

.penthouse_availability_wrap {
  color: #541c15;
  padding-top: 60px;
}
@media (max-width: 991px) {
  .penthouse_availability_wrap {
    padding-top: 40px;
  }
}
.penthouse_availability_wrap .mt_sec_sub_heading {
  color: #541c15;
  text-align: center;
}
@media (max-width: 991px) {
  .penthouse_availability_wrap .mt_sec_sub_heading {
    margin-bottom: 40px;
  }
}
.penthouse_availability_wrap
  .floor_plan_or_building_choose_buttons_container
  ~ div {
  padding-top: 32px;
}
.penthouse_availability_wrap .penthouse_building_view {
  height: 45vw;
}
@media (max-width: 991px) {
  .penthouse_availability_wrap .penthouse_building_view {
    height: 100vw;
  }
}
@media screen and (max-width: 992px) and (orientation: portrait) {
  .penthouse_availability_wrap .penthouse_building_view {
    height: 150vw;
  }
}
/* ----------Gallery section styles end-------------- */
/* ------------------FP quick search------------------- */
.quick-search-form {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
.search-filters {
  display: flex;
  gap: 3vw;
}
.floorplan-quick-search {
  padding: var(--section-spacing-mobile) 0;
}

/* Floorplan quick search content spacing */
.floorplan-quick-search h2 {
  margin-bottom: 2rem;
  text-align: center;
}

.virtual-tour-section {
  margin-bottom: var(--section-gap-desktop);
}

.floorplan-quick-search p {
  margin-bottom: 4rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
}

.search-filters {
  display: flex;
  gap: 3vw;
  margin-bottom: 2rem;
}

.search-submit {
  margin-top: 1rem;
}

/* Filter group spacing */
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Calendar/Date input styling */

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

/* Mobile responsive styles for quick search */
@media only screen and (max-width: 960px) {
  .floorplan-quick-search h2 {
    margin-bottom: 1.5rem;
    font-size: 6.5rem;
  }

  .floorplan-quick-search p {
    margin-bottom: 3rem;
    font-size: 1.4rem;
  }

  .search-filters {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
  }

  .filter-group {
    width: 100%;
  }

  .search-dropdown {
    width: 100%;
  }

  .search-submit {
    margin-top: 0.5rem;
  }

  .search-submit .bttn {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
  }
}
/* ------------Grid view----------------- */
.availability-plan {
  display: flex;
  justify-content: center;
  padding: var(--section-spacing-mobile) 0;
  margin-top: var(--section-gap-mobile);
}

/* Floorplan section title spacing */
.floorplan-section-title {
  padding: var(--section-spacing-mobile) 0;
  margin-top: var(--section-gap-mobile);
  text-align: center;
}

@media only screen and (min-width: 961px) {
  .floorplan-section-title {
    padding: var(--section-spacing-desktop) 0;
    margin-top: var(--section-gap-desktop);
  }
}
@media only screen and (min-width: 961px) {
  .availability-content {
    padding-bottom: 0;
  }

  .floorplan-quick-search {
    padding: var(--section-spacing-desktop) 0;
    margin-top: var(--section-gap-desktop);
  }

  .floorplan-quick-search h2 {
    margin-bottom: 3rem;
  }

  .floorplan-quick-search p {
    margin-bottom: 5rem;
    font-size: 1.8rem;
  }

  .search-filters {
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .availability-plan {
    padding: var(--section-spacing-desktop) 0;
    margin-top: var(--section-gap-desktop);
  }
}
.penthouse-floorplans .availability-plan .cards-container .floorplan {
  background-color: var(--white);
  color: var(--navy);
  border: 1px solid var(--white);
  box-shadow: 0px 4px 10px 0px rgba(36, 46, 18, 0.2);
  position: relative;
  display: block;
}

.availability-plan .cards-container .floorplan h3.floorplan-name {
  color: var(--teal);
  text-align: left;
  text-transform: capitalize;
  margin: 3rem 1.5rem 1.5rem;
  max-width: 65%;
}

.availability-plan .cards-container .floorplan .penthouse-pill {
  position: absolute;
  right: 1.5rem;
  top: 3rem;
  background-color: #0d1a21;
  color: #fff;
  border-color: #ece7e1;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 16px;
  white-space: nowrap;
  font-size: 12px;
  line-height: 20px;
  display: inline-block;
  width: auto;
  font-family: var(--scandia-font);
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;

  @media only screen and (min-width: 961px) and (max-width: 1290px) {
    position: relative;
    top: 3rem;
    right: unset;
    left: 1.5rem;
    display: block;
    width: fit-content;
    margin-bottom: 1rem;
  }
}

.availability-plan .cards-container .floorplan ul {
  display: flex;
  align-items: center;
  margin: 0 2rem 3rem;
  padding-left: 0;
}

.availability-plan .cards-container .floorplan ul li {
  position: relative;
  padding: 0 1rem;
  list-style: none;
  flex: 0 1 32%;
  text-align: center;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.availability-plan .cards-container .floorplan ul li:first-of-type {
  flex-grow: 1;
  text-transform: capitalize;
}

.availability-plan .cards-container .floorplan ul li:not(:last-of-type)::after {
  content: "|";
  position: absolute;
  right: -0.5rem;
}

.availability-plan .cards-container .floorplan .img-box {
  height: 30rem;
  margin: 0 0 1.5rem;
  padding: 1rem 2rem;
}

.availability-plan .cards-container .floorplan .img-box img {
  object-fit: contain;
}

.availability-plan .cards-container .floorplan .bttn {
  text-transform: uppercase;
  font-size: 1.8rem;
  width: 100%;
  padding: 2.2rem 5rem 2rem;
  border: none;
  background: var(--orange-ada);
  margin: auto 0 0;
}

@media only screen and (min-width: 961px) {
  .availability-plan .cards-container {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    row-gap: 3rem;
    column-gap: 3rem;
  }

  .availability-plan .cards-container .floorplan {
    border-color: var(--navy);
    flex: 0 1 calc(33% - 1.8rem);
  }

  .availability-plan .cards-container .floorplan h3 {
    margin: 2.5rem 1rem 1.5rem;
    font-size: 2.6em;
  }

  .availability-plan .cards-container .floorplan ul {
    margin: 0 1rem 1.5rem;
  }

  .availability-plan .cards-container .floorplan .bttn {
    font-size: 1.6rem;
  }
}

@media only screen and (min-width: 961px) and (max-width: 1440px) {
}

@media only screen and (min-width: 0) and (max-width: 960px) {
  .availability-plan .cards-container .floorplan:not(:last-of-type) {
    margin-bottom: 3rem;
  }

  .availability-plan .cards-container .floorplan h3 {
    font-size: 3.5rem;
  }
}
.filter-group option {
  color: var(--orange-ada);
}

/* Centered image box styles moved from inline */
.penthouse-content .boxes .box.box--centered-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.penthouse-content .boxes .box .centered-img {
  width: 100%;
  height: auto;
}

/* Bullet list spacing for features */
[data-page="penthouse"] .feature-list {
  list-style: disc;
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  line-height: 1.6;
}
[data-page="penthouse"] .feature-list li {
  margin: 0.25rem 0;
}

/* Ensure thumbnail gallery spans full width inside lateral view */
#lateral-view .thumbnail-gallery {
  width: 100%;
}
#lateral-view .thumbnail-gallery .thumbnail-wrap-inner {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Full-width container within lateral view */
#lateral-view .container.container--full {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
#lateral-view .container.container--full .row {
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (max-width: 961px) {
  .penthouse-features {
    padding-bottom: 0 !important;
  }
  .penthouse-services {
    padding-top: 0 !important;
  }
}
.penthouse-disclaimer {
  position: absolute;
  bottom: 3rem;
  left: 47%;
}
@media only screen and (max-width: 961px) {
  .penthouse-disclaimer {
    position: absolute;
    bottom: 3rem;
    left: 5.33%;
  }
}
/*Feature Icons Overlay
------------------------------------ */

.img-box {
  position: relative;
}

.feature-icons-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.feature-icon {
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  z-index: 6;
}

.feature-icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature-icon svg {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-icon:hover svg circle:last-child {
  stroke: var(--orange, #ff6b35);
  stroke-width: 2;
}

/*Feature Icons Overlay
------------------------------------ */

.img-box {
  position: relative;
}

.feature-icons-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.feature-icon {
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  z-index: 6;
}

.feature-icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  z-index: 100;
}

.feature-icon svg {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-icon:hover svg circle:last-child {
  stroke: var(--orange, #ff6b35);
  stroke-width: 2;
}

.feature-tooltip {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #000000e6;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 1.2rem;
  white-space: normal;
  width: 200px;
  line-height: 1.5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.feature-tooltip::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #000000e6;
}

.feature-icon:hover .feature-tooltip {
  opacity: 1;
  visibility: visible;
  top: 110%;
}

/* Hide feature icons on mobile */
@media only screen and (max-width: 960px) {
  .feature-icons-overlay {
    display: none !important;
  }
}

/* Hide feature icons on mobile */
@media only screen and (max-width: 960px) {
  .feature-icons-overlay {
    display: none !important;
  }
}
/*Feature Icons Overlay End
------------------------------------ */
