*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/Sofia Pro Regular Az.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/Sofia Pro Semi Bold Az.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/Sofia Pro Bold Az.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  overflow-y: scroll;
}

body {
  font-family: 'Sofia Pro', sans-serif;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  margin-top: 85px;
  position: relative;
  z-index: 0;
}

.main {
  display: flex;
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #ccc;
  z-index: 1000;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 10px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  flex-wrap: nowrap;
}

#logo_container {
  width: 100%;
  max-width: 129px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#logo {
  width: 129px !important;
  height: 26px !important;
  cursor: pointer;
}

#contact_us_container {
  width: 129px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_menu {
  display: flex;
  gap: 10px;
  flex-grow: 1;
  overflow-x: auto;
  white-space: nowrap;
  justify-content: center;
}

.header_menu_item {
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: black;
  border-radius: 6px;
  user-select: none;
  transition: background 0.3s, color 0.3s;
  /* opacity: 0; */
}

.header_menu_item:hover,
.header_menu_item.active {
  background-color: black;
  color: white;
  border-radius: 8px;
}
.pswp__button--share { display: none !important; }
.header_menu_right {
  display: flex;
  align-items: center;
  max-width: 129px;
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sidenav_toggle {
  display: none;
  /* background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    max-width: 55px;
    height: 37px; */
}

#searchInputContainer {
  width: auto;
  height: auto;
  position: relative;
  background: #f7f9fb;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

#searchInput {
  background: #FFFFFF;
  width: 100%;
  height: 37px;
  padding: 6px 45px 6px 21px;
  border-radius: 5px;
  border: 2px solid #ededed;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: lightgray;
  box-sizing: border-box;
}

#searchInput:focus {
  outline: none;
}

#searchInput::placeholder {
  color: lightgray;
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
  font-family: 'Sofia Pro', sans-serif;
  padding-left: 0px;
}

#clearFilters {
  background: #FFFFFF;
  width: 100%;
  height: 37px;
  font-family: 'Sofia Pro', sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
  color: #000000;
  position: relative;
  border: 2px solid #ededed;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 10px;
  outline: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

#search {
  background: #FFFFFF;
  width: 100%;
  height: 37px;
  font-family: 'Sofia Pro', sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
  color: #000000;
  position: relative;
  border: 2px solid #ededed;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 10px;
  outline: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

#search_icon {
  position: absolute;
  right: 24px;
  width: 18px;
  height: auto;
  pointer-events: none;
}

#filter_icon {
  position: absolute;
  right: 21px;
  width: 18px;
  height: auto;
  pointer-events: none;
}

.left_nav {
  position: sticky;
  top: 105px;
  width: 250px;
  height: calc(100vh - 105px);
  overflow-y: auto;
  background: #f9f9f9;
  margin-top: 20px;
  border-radius: 5px 5px 0 0;
  margin-left: 20px;
}

.dropdown {
  background: #f7f9fb;
  margin-bottom: 10px;
}

li::marker {
  content: "";
}

.dropdown_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 42px;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  background: #ffffff;
  border: 2px solid #ededed;
  border-radius: 5px;
  user-select: none;
}

.arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.arrow.up {
  transform: rotate(180deg);
}

.dropdown ul {
  padding: 0 20px;
}

.dropdown.collapsed ul {
  max-height: 0;
}

.funnel_stage ul {
  max-height: none !important;
  display: block !important;
}

.dropdown li {
  list-style-type: none;
  font-weight: 600;
  margin: 6px 0;
  font-size: 15px;
}

.dropdown li a {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

.dropdown li a:hover {
  text-decoration: underline;
}

.content {
  flex: 1;
  padding: 20px 20px 0 20px;
}

.section {
  width: 100%;
  margin-bottom: 40px;
  padding: 20px;
  margin: 18px auto 24px;
  border-radius: 5px;
  background-color: #f7f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-tags {
  display: none;
}

.phone_container {
  width: 308px;
  height: 592px;
  margin-left: 75px;
  position: relative;
}

.phone {
  width: 308px !important;
  height: 592px !important;
}

.video_container {
  width: 225px;
  height: 450px;
  position: absolute;
  top: 95px;
  left: 41px;
  display: none;
}

.video_container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder_image_container {
  width: 225px;
  height: 450px;
}

.placeholder_image_container {
  width: 225px;
  height: 450px;
  position: absolute;
  top: 95px;
  left: 41px;
}

.placeholder_image_container img {
  width: 225px !important;
  height: 450px !important;
}

.section_info_block {
  width: 100%;
  height: auto;
  max-width: 400px;
}

.section_heading {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.black_bar {
  background: #1c1c1c;
  width: 100%;
  max-width: 60px;
  height: 2px;
  margin-bottom: 36px;
}

.section_subheading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 36px;
}

.best_for {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 12px;
}

.available_sizes {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 36px;
}

.font_bold {
  font-weight: 700;
}

.section_button_container {
  display: flex;
  gap: 12px;
  flex-direction: row;
}

.section_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  white-space: nowrap;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: auto;
  max-width: max-content;
  user-select: none;
  text-decoration: none;
}

.section_button img {
  width: 21px;
  height: auto;
  flex-shrink: 0;
}


.section_button:hover {
  background-color: #333;
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.arrow_icon {
  width: 21px;
  height: auto;
}

#footer {
  width: 100%;
  height: auto;
  padding: 120px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer_logo {
  width: 280px !important;
  height: 57px !important;
  cursor: pointer;
}

#footer_links {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#fs_text_footer {
  width: 200px !important;
  height: 26px !important;
  cursor: pointer;
}

#privacy_notice {
  width: 130px;
  height: auto;
  text-align: center;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 5px;
  transition: 0.3s ease-in-out;
}

#privacy_notice:hover {
  color: #63C7C7;
}

.section.no-margin-bottom {
  margin-bottom: 0;
}

.category_heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  user-select: none;
  position: absolute;
  top: -18px;
  left: 36px;
}

#language_icon {
  width: 30px;
  height: auto;
}

/*--------- HAMBURGER START ---------*/

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham1 .top {
  stroke-dasharray: 40 139;
}

.ham1 .bottom {
  stroke-dasharray: 40 180;
}

.ham1.active .top {
  stroke-dashoffset: -98px;
}

.ham1.active .bottom {
  stroke-dashoffset: -138px;
}

/*--------- HAMBURGER END ---------*/


#txt-rotate-container {
  background: #000000;
  width: 100%;
  max-width: 400px;
  font-size: 24px;
  letter-spacing: 0.1rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  padding: 20px;
  margin: 0 auto;
}

.txt-rotate {
  color: #63C7C7;
  font-size: 24px;
  letter-spacing: 0.1rem;
}


/*--------- CTA PHRASE START ---------*/

.cta_phrase_container {
  background: #ffffff;
  width: 100%;
  max-width: 900px;
  text-align: center;
  border-radius: 15px;
  padding: 50px;
  font-size: 27px;
  line-height: 32px;
  font-weight: 600;
  margin: 50px auto;
}

.cta_phrase {
  background: #ffffff;
  text-align: center;
  border-radius: 15px;
  font-size: 27px;
  line-height: 32px;
  font-weight: 400;
}

.cta_phrase a {
  color: #2FBDBB;
  text-decoration: underline;
}


/*--------- CTA PHRASE END ---------*/























.funnel_stage_filters {
  list-style: none;
  padding: 0;
  margin: 0;
}

.funnel_stage_filters li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 21px;
  font-size: 15px;
}

.switch {
  position: relative;
  display: block;
  width: 100%;
  height: 18px;
  cursor: pointer;
  user-select: none;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  width: 35px;
  position: absolute;
  top: 0;
  right: 42px;
  bottom: 0;
  background-color: #ccc;
  border-radius: 18px;
  transition: 0.2s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  transition: 0.2s;
}

input:checked+.slider {
  background-color: #2ecc71;
}

input:checked+.slider:before {
  transform: translateX(16px);
}





/*--------- ACCORDION START ---------*/

.accordion,
.accordion-item {
  width: 100%;
  color: #646F86;
}

.accordion .accordion-item {
  border-bottom: 1px solid #000000;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 16px 0;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

.accordion button:hover,
.accordion button:focus {
  color: #2FBDBB;
}

.accordion button .accordion-title {
  width: 100%;
  display: block;
  padding-right: 34px;
  font-size: 18px;
  line-height: 30px;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.accordion button .icon::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: #2FBDBB;
}

.accordion button .icon::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: #2FBDBB;
}

/* When expanded, the vertical bar of the plus icon disappears */
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

/* Accordion content starts hidden — JS (GSAP) will animate these */
.accordion .accordion-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* Optional: Keep first item open by default */
.accordion-item:first-child .accordion-content {
  height: auto;
  overflow: visible;
  opacity: 1;
}

/* Optional: Paragraph styling inside accordion */
.accordion .accordion-content p,
.accordion .accordion-content ul {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin: 32px 0;
  color: #646F86;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #2FBDBB;
}

.about_container {
  margin-bottom: 40px;
  padding: 20px;
}

.about_container_inner {
  background: #f7f9fb;
}

.about_header {
  width: 100%;
  font-size: 28px;
  line-height: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.underline {
  width: 50px;
  height: 2px;
  background: #000000;
}

.about_accordion_container {
  overflow: hidden;
}

.about_accordion_container_inner {
  padding: 50px 100px;
}

/*--------- ACCORDION END ---------*/


/*--------- ABOUT START ---------*/

#about .container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 32px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  font-family: 'Sofia Pro', sans-serif;
}

#about ul {
  padding-left: 20px !important;
}

#about li {
  line-height: 1.5;
  list-style-type: disc !important;
  font-weight: 400;
  margin: 15px 0;
}

/*--------- ABOUT END ---------*/

/*--------- LANGUAGE SWITCHER START---------*/

.content-wrapper {
  margin-right: 10px;
}

#language-switcher {
  max-width: 156px;
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

#selector {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  padding: 8px 16px;
  font-size: 14px;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.36s ease-in-out;
}

#selector i {
  margin-right: 6px;
  font-size: 20px;
}

#default-lang i {
  display: none;
}

/* Options Dropdown */
#options {
  display: none;
  max-width: 156px;
  margin-top: 8px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.16);
  border-radius: 6px;
  position: relative;
  z-index: 5;
  position: absolute;
  white-space: nowrap;
  transition: all 0.36s ease-in-out;
}

#options.active {
  display: block;
}

/* Dropdown Arrow */
#options::before,
#options::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 24px;
  border: solid transparent;
  height: 0;
  width: 0;
  pointer-events: none;
}

#options::before {
  border-width: 8px;
  margin-left: -8px;
  border-bottom-color: rgba(15, 15, 15, 0.16);
}

#options::after {
  border-width: 7px;
  margin-left: -7px;
  border-bottom-color: #fff;
}

/* Option Items */
.option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.36s ease-in-out;
}

.option i {
  margin-left: auto;
}

.option:hover:not(.active) {
  background: rgba(0, 0, 0, 0.08);
}

.option.active {
  background: #e9f7ff;
  color: #0870d3;
}

.option.active span,
.option.active i {
  color: #0870d3;
}

/*--------- LANGUAGE SWITCHER END ---------*/

/*--------- MEDIA QUERIES START ---------*/


@media (max-width: 1200px) {

  .container {
    max-width: 950px;
    margin-top: 91px;
  }

  .main {
    flex-direction: column;
  }

  .header_inner {
    gap: 5px;
  }

  .header_menu {
    gap: 5px;
  }

  .header_menu_item {
    font-size: 16px;
    padding: 10px;
  }

  .left_nav {
    position: fixed;
    top: 91px;
    left: 0;
    width: 100%;
    height: calc(100vh - 91px);
    z-index: 1000;
    margin-left: 0;
    margin-top: 0;
  }

  .sidenav_toggle {
    display: block;
    /* left: 20px;
        top: 20px;
        z-index: 1100; */
  }

  #contact_us_container {
    display: none;
  }

  .left_nav {
    transform: translateX(-100%);
  }

  .left_nav.active {
    transform: translateX(0);
  }

  .phone_container {
    width: 248px;
    height: 476px;
    margin-left: 20px;
  }

  .phone {
    width: 248px !important;
    height: 476px !important;
  }

  .video_container {
    width: 182px;
    height: 365px;
    top: 77px;
    left: 33px;
  }

  .placeholder_image_container {
    width: 225px;
    height: 450px;
    position: absolute;
    top: 77px;
    left: 33px;
  }

  .placeholder_image_container img {
    width: 182px !important;
    height: 365px !important;
  }

  .section_heading {
    font-size: 32px;
  }

  .best_for {
    font-size: 16px;
  }

  .available_sizes {
    font-size: 16px;
  }

  #footer {
    padding: 50px;
  }

  #footer_logo {
    width: 200px !important;
    height: 40px !important;
  }

  #logo_container {
    max-width: 90px;
  }

  .header_menu_right {
    width: auto;
    max-width: none;
  }

  #format_library_logo {
    width: 220px;
  }

  #searchInputContainer {
    padding-top: 10px;
  }

  .about_header {
    font-size: 24px;
  }

  .about_container {
    margin-left: 0;
  }

}

@media (max-width: 870px) {

  .section {
    flex-direction: column;
    padding: 60px;
  }

  .section_heading {
    font-size: 28px;
    margin-bottom: 12px;
    text-align: center;
  }

  .black_bar {
    margin: 0 auto 24px auto !important;
  }

  .section_subheading {
    text-align: center;
    margin-bottom: 24px;
  }

  .best_for {
    text-align: center;
  }

  .available_sizes {
    text-align: center;
    margin-bottom: 24px;
  }

  .section_button_container {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .phone_container {
    margin-left: 0;
  }

  #footer {
    gap: 0px
  }

  #footer_logo {
    width: 180px !important;
    height: 36px !important;
  }

  .section {
    padding: 35px 20px;
  }

  .category_heading {
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    white-space: nowrap;
    font-size: 14px;
  }

  .about_accordion_container_inner {
    padding: 50px;
  }

  .cta_phrase {
    font-size: 20px;
  }

}

@media (max-width: 680px) {

  #footer_links {
    flex-direction: column;
  }

  #footer_logo {
    width: 145px !important;
    height: 29px !important;
  }

  #logo {
    width: 90px !important;
    height: 20px !important;
  }

  #format_library_logo {
    width: 180px;
    height: 32px;
  }

  .about_accordion_container_inner {
    padding: 50px 20px;
  }

}

@media (max-width: 584px) {

  .header_menu {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  #footer {
    gap: 0px
  }

  #footer {
    flex-direction: column;
  }

  #footer_logo {
    margin-bottom: 50px;
  }

  #format_library_logo {
    width: 148px;
    height: 28px;
  }

  .content-wrapper {
    margin-right: 2px;
  }

  #language-switcher {
    max-width: 156px;
    width: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
  }

  #selector {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 30px;
    padding: 2px 7px;
    font-size: 13px;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.36s ease-in-out;
  }

  #selector i {
    margin-right: 0;
    font-size: 16px;
  }

  #default-lang {
    display: none;
  }

  #options {
    display: none;
    width: 100%;
    max-width: none;
    margin-top: 8px;
    padding: 8px;
    background: #fff;
    border: 1px solid rgba(15, 15, 15, 0.16);
    border-radius: 6px;
    z-index: 5;
    position: absolute;
    left: 0;
    top: 82px;
    white-space: nowrap;
    transition: all 0.36s ease-in-out;
  }

  #options::before,
  #options::after {
    display: none;
  }

}

@media (max-width: 450px) {

  .header_menu_right {
    max-width: none;
  }

  #logo_container {
    width: 90px;
  }

  .accordion button .accordion-title {
    width: 100%;
    display: block;
    padding-right: 34px;
    font-size: 16px;
    line-height: 30px;
  }

  .txt-rotate {
    font-size: 18px;
  }

  #txt-rotate-container {
    font-size: 18px;
  }

}

@media (max-width: 376px) {

  .container {
    margin-top: 81px;
  }

  .left_nav {
    top: 81px;
    height: calc(100vh - 81px);
  }

  #footer {
    padding: 35px;
  }

  #footer_logo {
    width: 120px !important;
    height: 24px !important;
    margin-bottom: 35px;
  }

  #footer_links {
    gap: 10px;
  }

  #fs_text_footer {
    width: 150px !important;
    height: 19px !important;
  }

  #privacy_notice {
    font-size: 15px;
  }

  #logo_container {
    max-width: 90px;
  }

  #logo {
    width: 75px !important;
    height: 15px !important;
  }

  #format_library_logo {
    width: 125px;
    height: 25px;
  }

  .header_menu_right {
    max-width: none;
  }

  #sidenav_toggle {
    width: 30px;
  }

  .cta_phrase_container {
    padding: 20px;
  }

  .header_inner {
    gap: 5px;
  }

  #options {
    top: 62px;
  }

}

/*--------- MEDIA QUERIES END ---------*/

.invisible{opacity: 0;}