/* Local reconstruction of the current Giraffe Tools convenience-video and garage comparison modules. */
#fykikta-home-convenience {
  padding: 60px 40px;
  position: relative;
  background: #fff;
}
#fykikta-home-convenience .fykikta-convenience__inner {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}
#fykikta-home-convenience .fykikta-convenience__heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 35px;
  color: #373f42;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 43px;
  letter-spacing: -0.035em;
}
#fykikta-home-convenience .fykikta-convenience__track {
  display: flex;
  width: 100%;
  gap: 12px;
  overflow: hidden;
}
#fykikta-home-convenience .fykikta-convenience__card {
  position: relative;
  flex: 0 0 16%;
  min-width: 0;
  height: 550px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  padding: 0;
  color: #fff;
  background: #20292d;
  cursor: pointer;
  transition: flex-basis .2s ease-in, filter .2s ease;
}
#fykikta-home-convenience .fykikta-convenience__card.is-active {
  flex-basis: calc(52% - 36px);
}
#fykikta-home-convenience .fykikta-convenience__card:focus-visible {
  outline: 3px solid #00a3af;
  outline-offset: 3px;
}
#fykikta-home-convenience .fykikta-convenience__card:not(.is-active) {
  filter: saturate(.88);
}
#fykikta-home-convenience .fykikta-convenience__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  background: #20292d;
}
#fykikta-home-convenience .fykikta-convenience__video--mobile { display: none; }
#fykikta-home-convenience .fykikta-convenience__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, #0000 2.52%, #0000001a 7.88%, #000000b3 58.73%, #000000e6 100%);
}
#fykikta-home-convenience .fykikta-convenience__label {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  color: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  text-align: left;
  text-shadow: 0 1px 12px rgb(0 0 0 / 28%);
}
#fykikta-home-convenience .fykikta-convenience__play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: none;
  min-width: 44px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  color: #fff;
  background: rgb(0 0 0 / 45%);
  font-size: 18px;
  line-height: 1;
}
#fykikta-home-convenience .fykikta-convenience__card.is-paused .fykikta-convenience__play { display: block; }

#fykikta-garage-contrast {
  padding: 30px 0 0;
  background: #fff;
}
#fykikta-garage-contrast .fykikta-garage-contrast__title {
  box-sizing: border-box;
  margin: 0 0 24px;
  padding: 0 24px;
  color: #373f42;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}
#fykikta-garage-contrast .fykikta-garage-contrast__details {
  box-sizing: border-box;
  margin: 0 0 24px;
  padding: 0 24px;
  color: #373f42;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}
#fykikta-garage-contrast .fykikta-garage-contrast__box {
  --percent: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  background: #edf1f2;
  contain: paint;
}
#fykikta-garage-contrast .fykikta-garage-contrast__image,
#fykikta-garage-contrast .fykikta-garage-contrast__image img {
  display: block;
  width: 100%;
  height: 100%;
}
#fykikta-garage-contrast .fykikta-garage-contrast__image img {
  object-fit: cover;
  object-position: center;
}
#fykikta-garage-contrast .fykikta-garage-contrast__image--before { clip-path: none; }
#fykikta-garage-contrast .fykikta-garage-contrast__image--after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--percent));
  transform: translateZ(0);
  will-change: clip-path;
  backface-visibility: hidden;
}
#fykikta-garage-contrast .fykikta-garage-contrast__handle {
  position: absolute;
  top: 0;
  left: var(--percent);
  z-index: 2;
  width: 28px;
  height: 100%;
  transform: translateX(-50%);
  border: 0;
  padding: 0;
  color: #273239;
  background: transparent;
  cursor: col-resize;
  touch-action: none;
  will-change: left;
  /* The imported global button rule transitions every property for 300ms.
   * A divider must paint at the pointer position in the same frame instead. */
  transition: none !important;
}
#fykikta-garage-contrast .fykikta-garage-contrast__handle::before,
#fykikta-garage-contrast .fykikta-garage-contrast__handle::after {
  position: absolute;
  left: 50%;
  width: 5px;
  height: 50%;
  content: "";
  transform: translateX(-50%);
  background: #fff;
}
#fykikta-garage-contrast .fykikta-garage-contrast__handle::before { top: 0; }
#fykikta-garage-contrast .fykikta-garage-contrast__handle::after { bottom: 0; }
#fykikta-garage-contrast .fykikta-garage-contrast__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  place-items: center;
  background: #fff;
}
#fykikta-garage-contrast .fykikta-garage-contrast__grip svg { width: 100%; height: 100%; }
#fykikta-garage-contrast .fykikta-garage-contrast__range {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
#fykikta-garage-contrast .fykikta-garage-contrast__handle:focus-visible { outline: 3px solid #00a3af; outline-offset: 3px; }

@media (max-width: 999px) and (min-width: 751px) {
  #fykikta-home-convenience { padding: 35px 40px; }
  #fykikta-home-convenience .fykikta-convenience__heading { margin-bottom: 30px; }
}
@media (max-width: 750px) {
  #fykikta-home-convenience { padding: 10px 12px 26px; }
  #fykikta-home-convenience .fykikta-convenience__heading { margin: 0 0 25px; font-size: 28px; line-height: 1.15; }
  #fykikta-home-convenience .fykikta-convenience__track { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  #fykikta-home-convenience .fykikta-convenience__track::-webkit-scrollbar { display: none; }
  #fykikta-home-convenience .fykikta-convenience__card,
  #fykikta-home-convenience .fykikta-convenience__card.is-active { flex-basis: 84%; height: min(490px, 126vw); scroll-snap-align: start; }
  #fykikta-home-convenience .fykikta-convenience__video--desktop { display: none; }
  #fykikta-home-convenience .fykikta-convenience__video--mobile { display: block; }
  #fykikta-home-convenience .fykikta-convenience__label { padding: 20px; font-size: 16px; line-height: normal; }
  #fykikta-garage-contrast { padding-top: 24px; }
  #fykikta-garage-contrast .fykikta-garage-contrast__title { margin-bottom: 16px; font-size: 27px; }
  #fykikta-garage-contrast .fykikta-garage-contrast__details { margin-bottom: 16px; font-size: 14px; }
  #fykikta-garage-contrast .fykikta-garage-contrast__box { aspect-ratio: 2 / 1; }
}


/* Source-faithful homepage replacement for the marked Best Selling lookbook. */
#fykikta-home-space-scenes {
  box-sizing: border-box;
  padding: 45px 40px;
  background: #f5f5f5;
}
#fykikta-home-space-scenes *,
#fykikta-home-space-scenes *::before,
#fykikta-home-space-scenes *::after { box-sizing: border-box; }
#fykikta-home-space-scenes .Scene_tab_Image_Slide_box { width: 100%; max-width: 1500px; margin-inline: auto; }
#fykikta-home-space-scenes .Scene_Image_Slide__heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 35px; }
#fykikta-home-space-scenes .Scene_Image_Slide_heading_content,
#fykikta-home-space-scenes .Scene_Image_Slide__stretch { min-width: 0; }
#fykikta-home-space-scenes .heading.title { margin: 0; color: #383f42; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important; font-size: 36px !important; font-weight: 700 !important; line-height: 43px !important; letter-spacing: -0.035em !important; }
#fykikta-home-space-scenes .Scene_Image_Slide__hyperlink { position: relative; flex: none; color: #383f42; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; font-weight: 700; line-height: 1; text-decoration: none; white-space: nowrap; }
#fykikta-home-space-scenes .Scene_Image_Slide__hyperlink::after { position: absolute; right: 0; bottom: -4px; left: 0; width: 0; height: 1px; content: ""; background: currentColor; transition: width .25s ease; }
#fykikta-home-space-scenes .Scene_Image_Slide__hyperlink:hover::after,
#fykikta-home-space-scenes .Scene_Image_Slide__hyperlink:focus-visible::after { width: 100%; }
#fykikta-home-space-scenes .Scene_tab_Image_Slide-module { position: relative; }
#fykikta-home-space-scenes .Scene_tab_swiper_title_left { display: flex; gap: 40px; overflow-x: auto; border-bottom: 1px solid #e3e3e3; scrollbar-width: none; }
#fykikta-home-space-scenes .Scene_tab_swiper_title_left::-webkit-scrollbar,
#fykikta-home-space-scenes .Scene_tab_Slide_picture::-webkit-scrollbar { display: none; }
#fykikta-home-space-scenes .Scene_tab_swiper-title { display: flex !important; width: auto !important; min-width: 0 !important; flex: none; border: 0; border-bottom: 2px solid transparent; padding: 12px 0 10px; color: #383f42; background: transparent; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 18px; font-weight: 700; line-height: 22px; cursor: pointer; }
#fykikta-home-space-scenes .Scene_tab_swiper-title.is-active { border-bottom-color: #00a3af; }
#fykikta-home-space-scenes .Scene_tab_swiper-title:focus-visible,
#fykikta-home-space-scenes .scene_tab_buttons button:focus-visible { outline: 3px solid #00a3af; outline-offset: 3px; }
#fykikta-home-space-scenes .Scene_tab_Slide_picture { overflow-x: auto; overscroll-behavior-x: contain; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; touch-action: pan-y; }
#fykikta-home-space-scenes .Scene_tab_Slide_picture.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; user-select: none; }
#fykikta-home-space-scenes .Scene_tab_swiper_title_content { display: flex; width: 100%; gap: 12px; padding-top: 24px; }
#fykikta-home-space-scenes .fykikta-home-space-scenes__card { position: relative; flex: 0 0 calc(83.333333% - 10px); width: calc(83.333333% - 10px); aspect-ratio: 2110 / 1200; overflow: hidden; scroll-snap-align: start; border-radius: 10px; background: #273239; }
#fykikta-home-space-scenes .Scene_tab_swiper__link { position: absolute; inset: 0; z-index: 1; }
#fykikta-home-space-scenes .Scene_tab_Image_Slide_list,
#fykikta-home-space-scenes .Scene_tab_Image_Slide_list img { display: block; width: 100%; height: 100%; }
#fykikta-home-space-scenes .Scene_tab_Image_Slide_list img { object-fit: cover; }
#fykikta-home-space-scenes .Scene_tab_swiper_content { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; display: flex; min-height: 37%; flex-direction: column; justify-content: flex-end; gap: 10px; padding: 30px; color: #fff; pointer-events: none; background: linear-gradient(180deg, #0000 2.52%, #0000001a 7.88%, #000000b3 58.73%, #000000e6 100%); }
#fykikta-home-space-scenes .Scene_tab_swiper_grid_heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
#fykikta-home-space-scenes .Scene_tab_swiper_content .title { margin: 0; color: #fff; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important; font-size: 24px !important; font-weight: 700 !important; line-height: 29px !important; }
#fykikta-home-space-scenes .Scene_tab_swiper_content .describe { margin: 0; color: #fff; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important; font-size: 14px !important; font-weight: 400 !important; line-height: 17px !important; }
#fykikta-home-space-scenes .grid-start-btns { display: inline-flex; flex: none; align-items: baseline; gap: 4px; color: #fff; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 20px; font-weight: 700; line-height: 1; text-decoration: none; pointer-events: auto; white-space: nowrap; }
#fykikta-home-space-scenes .scene_tab_buttons { position: absolute; top: calc(50% + 17px); right: 0; left: 0; z-index: 4; display: flex; align-items: center; justify-content: space-between; pointer-events: none; transform: translateY(-50%); }
#fykikta-home-space-scenes .scene_tab_buttons button { display: grid; min-width: 56px !important; width: 56px !important; height: 56px !important; padding: 0 !important; border: 0; border-radius: 50%; color: #383f42; background: #fff; box-shadow: 0 0 12px rgb(0 0 0 / 15%); font-size: 34px; line-height: 1; cursor: pointer; place-items: center; pointer-events: auto; transition: background-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease; }
#fykikta-home-space-scenes .scene_tab_buttons .prev { transform: translateX(-50%); }
#fykikta-home-space-scenes .scene_tab_buttons .next { transform: translateX(50%); }
#fykikta-home-space-scenes .scene_tab_buttons button:hover:not(:disabled) { transform: translateX(var(--fykikta-space-arrow-x, 0)) scale(1.06); }
#fykikta-home-space-scenes .scene_tab_buttons .prev:hover:not(:disabled) { --fykikta-space-arrow-x: -50%; }
#fykikta-home-space-scenes .scene_tab_buttons .next:hover:not(:disabled) { --fykikta-space-arrow-x: 50%; }
#fykikta-home-space-scenes .scene_tab_buttons button:disabled { opacity: 1; cursor: pointer; }
#fykikta-home-space-scenes .scene_tab_buttons button:hover,
#fykikta-home-space-scenes .scene_tab_buttons button:focus-visible { color: #006b64; background: #e8f5f3; box-shadow: 0 6px 18px rgb(0 163 175 / 24%); }
@media (max-width: 999px) and (min-width: 750px) {
  #fykikta-home-space-scenes { padding: 35px 40px; }
  #fykikta-home-space-scenes .Scene_Image_Slide__heading { margin-bottom: 30px; }
}
@media (max-width: 749px) {
  #fykikta-home-space-scenes { padding: 30px 12px; }
  #fykikta-home-space-scenes .Scene_Image_Slide__heading { display: block; margin-bottom: 25px; }
  #fykikta-home-space-scenes .heading.title { font-size: 26px !important; line-height: 31px !important; }
  #fykikta-home-space-scenes .Scene_Image_Slide__hyperlink { display: block; margin-top: 25px; text-align: center; }
  #fykikta-home-space-scenes .Scene_tab_Image_Slide_title,
  #fykikta-home-space-scenes .scene_tab_buttons { display: none; }
  #fykikta-home-space-scenes .Scene_tab_Slide_picture { overflow: visible; }
  #fykikta-home-space-scenes .Scene_tab_swiper_title_content { display: flex; width: 100%; flex-direction: column; gap: 14px; padding-top: 0; }
  #fykikta-home-space-scenes .fykikta-home-space-scenes__card { flex: 0 0 auto; width: 100%; aspect-ratio: 1476 / 1040; border-radius: 8px; }
  #fykikta-home-space-scenes .Scene_tab_swiper_content { min-height: 34%; padding: 10px; border-radius: 0 0 8px 8px; }
  #fykikta-home-space-scenes .Scene_tab_swiper_content .title { font-size: 18px !important; line-height: normal !important; }
  #fykikta-home-space-scenes .Scene_tab_swiper_content .describe { font-size: 14px !important; line-height: 17px !important; }
  #fykikta-home-space-scenes .grid-start-btns { gap: 2px; font-size: 12px; }
}


/* Source-parity home rhythm: one shared rail starts below the banner and is
 * reused by the scene component through to the footer. */
body.index-template #MainContent { --fykikta-home-rail: clamp(24px, 3.4vw, 40px); }
@media (min-width: 751px) {
  body.index-template #MainContent > .shopify-section:not(.section--slideshow) > :is(.container, .page-width),
  body.index-template #MainContent > .shopify-section:not(.section--slideshow) > .section__color-wrapper > :is(.container, .page-width) {
    box-sizing: border-box;
    width: min(1500px, calc(100% - (var(--fykikta-home-rail) * 2))) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
  #fykikta-home-space-scenes { padding-right: var(--fykikta-home-rail); padding-left: var(--fykikta-home-rail); }
}

/* The active source tab paints directly over the shared neutral rule. */
#fykikta-home-space-scenes .Scene_tab_swiper-title.is-active { position: relative; z-index: 1; margin-bottom: -1px; }
#fykikta-home-space-scenes .Scene_tab_swiper-title.is-active::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; content: ""; background: #00a3af; }
#fykikta-home-space-scenes .fykikta-home-space-scenes__card { scroll-snap-stop: always; }

/* Comment 1: Garage/Garden/Desktop are source tabs, never rounded cyan chips.
 * The only selected affordance is the cyan rule that masks the shared divider. */
#fykikta-home-space-scenes .Scene_tab_swiper-title,
#fykikta-home-space-scenes .Scene_tab_swiper-title.is-active {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
#fykikta-home-space-scenes .Scene_tab_swiper-title.is-active::after {
  bottom: -1px;
  z-index: 3;
  height: 3px;
}

/* Homepage convenience module: it now uses the shared 1,500px FYKIKTA rail
 * used by every other post-hero section, with a matching display-heading
 * rhythm rather than its former isolated 1,400px frame. */
body.index-template #fykikta-home-convenience {
  padding-block: clamp(52px, 4vw, 64px) !important;
  padding-inline: var(--fykikta-home-shared-edge, clamp(24px, calc((100vw - 1500px) / 2), 96px)) !important;
}

body.index-template #fykikta-home-convenience .fykikta-convenience__inner {
  width: 100% !important;
  max-width: 1500px !important;
  margin-inline: auto !important;
}

body.index-template #fykikta-home-convenience .fykikta-convenience__heading {
  margin: 0 0 clamp(24px, 2vw, 32px) !important;
  color: #273239 !important;
  font-family: "Barlow Condensed", "Roboto Condensed", "Arial Narrow", sans-serif !important;
  font-size: clamp(38px, 3vw, 48px) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.012em !important;
}

@media (max-width: 750px) {
  body.index-template #fykikta-home-convenience {
    padding: 40px 12px !important;
  }

  body.index-template #fykikta-home-convenience .fykikta-convenience__heading {
    margin-bottom: 22px !important;
    font-size: 34px !important;
    line-height: 1.08 !important;
  }
}

/* Direct Giraffe scrolling-text adaptation: exact source desktop geometry,
 * duplicated metrics queue and continuous -50% marquee. */
#fykikta-home-proof-strip.fykikta-home-source-scrolling-text {
  box-sizing: border-box;
  width: 100%;
  padding: 45px 40px;
  overflow: hidden;
  color: #383f42;
  background: #fff;
  --fykikta-source-scroll-speed: 30s;
}
#fykikta-home-proof-strip.fykikta-home-source-scrolling-text *,
#fykikta-home-proof-strip.fykikta-home-source-scrolling-text *::before,
#fykikta-home-proof-strip.fykikta-home-source-scrolling-text *::after { box-sizing: border-box; }
#fykikta-home-proof-strip .fykikta-home-source-scrolling-text__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 35px;
  overflow: hidden;
}
#fykikta-home-proof-strip .fykikta-home-source-scrolling-text__heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 35px;
  text-align: left;
}
#fykikta-home-proof-strip .fykikta-home-source-scrolling-text__title {
  margin: 0;
  color: #383f42;
  font-family: Lato, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 43px !important;
  text-transform: capitalize;
}
#fykikta-home-proof-strip .fykikta-home-source-scrolling-text__title strong { color: #ff6900 !important; font-weight: 700 !important; }
#fykikta-home-proof-strip .fykikta-home-source-scrolling-text__viewport { overflow: hidden; }
#fykikta-home-proof-strip .fykikta-home-source-scrolling-text__rail {
  display: flex;
  width: max-content;
  gap: 81px;
  visibility: visible;
  white-space: nowrap;
  animation: fykikta-source-scrolling-text var(--fykikta-source-scroll-speed) linear infinite;
  animation-play-state: running;
  will-change: transform;
}
#fykikta-home-proof-strip .fykikta-home-source-scrolling-text__item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}
#fykikta-home-proof-strip .fykikta-home-source-scrolling-text__image { display: block; max-width: 102px; height: auto; }
#fykikta-home-proof-strip .fykikta-home-source-scrolling-text__image--tablet,
#fykikta-home-proof-strip .fykikta-home-source-scrolling-text__image--mobile { display: none; }
#fykikta-home-proof-strip .fykikta-home-source-scrolling-text__description {
  margin: 0;
  color: #818181;
  font-family: Lato, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
}
@keyframes fykikta-source-scrolling-text {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media screen and (max-width: 999px) and (min-width: 751px) {
  #fykikta-home-proof-strip.fykikta-home-source-scrolling-text { padding: 35px 40px; }
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__heading { margin-bottom: 30px; }
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__title { line-height: 39px !important; }
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__image--desktop,
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__image--mobile { display: none; }
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__image--tablet { display: block; }
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__description { font-size: 12px; line-height: 15px; }
}
@media screen and (max-width: 750px) {
  #fykikta-home-proof-strip.fykikta-home-source-scrolling-text { padding: 30px 12px; --fykikta-source-scroll-speed: 35s; }
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__container { margin-bottom: 0; }
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__heading { margin-bottom: 25px; }
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__title { font-size: 28px !important; line-height: 31px !important; }
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__rail { gap: 31px; }
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__image--desktop,
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__image--tablet { display: none; }
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__image--mobile { display: block; }
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__description { font-size: 12px; line-height: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  #fykikta-home-proof-strip .fykikta-home-source-scrolling-text__rail { animation-play-state: paused; }
}


/* Exact Giraffe Banner_swiper.css controls, scoped only to the FYKIKTA hero.
 * This preserves the reference geometry and reveal behavior while retaining
 * FYKIKTA's existing hero images and content fields. */
body.index-template #MainContent .section--slideshow .slideshow-wrapper.banner-swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body.index-template #MainContent .section--slideshow .slideshow-wrapper.banner-swiper .swiper-wrapper {
  display: flex;
}
body.index-template #MainContent .section--slideshow .slideshow-wrapper.banner-swiper .swiper-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-right: 0 !important;
}
/* Keep the source carousel position legible at rest: the dots show that all
 * three FYKIKTA banners are available without forcing hover on the artwork. */
body.index-template #MainContent .section--slideshow .banner-swiper .banner-pagination {
  position: absolute !important;
  bottom: clamp(18px, 2vw, 30px) !important;
  left: 50% !important;
  z-index: 4 !important;
  display: flex !important;
  width: max-content !important;
  height: auto !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  padding: 8px 12px;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto;
  border-radius: 999px;
  background: rgb(12 26 37 / 28%);
  backdrop-filter: blur(6px);
  transform: translateX(-50%);
  transition: opacity .3s;
}
body.index-template #MainContent .section--slideshow .banner-swiper .banner-pagination .banner-pagination-item {
  box-sizing: border-box;
  display: block !important;
  width: 40px !important;
  min-width: 0 !important;
  height: 3px !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  opacity: .68;
  background: #fff !important;
  border: 0 !important;
  box-shadow: 0 1px 2px rgb(0 0 0 / 28%);
  border-radius: 50px !important;
}
body.index-template #MainContent .section--slideshow .banner-swiper .banner-pagination .banner-pagination-item.active { opacity: 1; }
body.index-template #MainContent .section--slideshow .banner-swiper .banner-navigation-buttons {
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  z-index: 3 !important;
  display: block !important;
  width: 100% !important;
  height: 44px !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none !important;
  transform: translateY(-50%) !important;
  transition: opacity .3s;
}
body.index-template #MainContent .section--slideshow .banner-swiper .banner-navigation-buttons .banner-navigation-prev,
body.index-template #MainContent .section--slideshow .banner-swiper .banner-navigation-buttons .banner-navigation-next {
  position: absolute !important;
  top: 50% !important;
  display: flex !important;
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  cursor: pointer;
  pointer-events: auto !important;
  background: #0003 !important;
  border: 0 !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  transform: translateY(-50%) !important;
}
body.index-template #MainContent .section--slideshow .banner-swiper .banner-navigation-buttons .banner-navigation-prev { left: 20px !important; right: auto !important; }
body.index-template #MainContent .section--slideshow .banner-swiper .banner-navigation-buttons .banner-navigation-next { right: 20px !important; left: auto !important; }
body.index-template #MainContent .section--slideshow .banner-swiper .banner-navigation-buttons svg { width: 24px !important; height: 24px !important; }
body.index-template #MainContent .section--slideshow .banner-swiper .banner-navigation-buttons svg path { fill: #fff !important; }
body.index-template #MainContent .section--slideshow .banner-swiper:hover .banner-pagination,
body.index-template #MainContent .section--slideshow .banner-swiper:hover .banner-navigation-buttons { visibility: visible; opacity: 1; }
body.index-template #MainContent .section--slideshow .swiper.fykikta-source-banner-fallback .swiper-wrapper { display: flex; transition: transform .5s ease; }
body.index-template #MainContent .section--slideshow .swiper.fykikta-source-banner-fallback .swiper-slide { flex: 0 0 100%; }
@media screen and (max-width: 550px) {
  body.index-template #MainContent .section--slideshow .banner-swiper .banner-pagination { visibility: visible; opacity: 1; }
}

/* The shared FYKIKTA display-heading selector uses :is() with higher type
 * specificity. Keep the source typography isolated from that global contract. */
body.index-template #MainContent #fykikta-home-proof-strip.fykikta-home-source-scrolling-text h2.fykikta-home-source-scrolling-text__title {
  color: #383f42 !important;
  font-family: Lato, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 43px !important;
  letter-spacing: normal !important;
}
body.index-template #MainContent #fykikta-home-proof-strip.fykikta-home-source-scrolling-text h2.fykikta-home-source-scrolling-text__title strong { color: #ff6900 !important; }
@media screen and (max-width: 999px) and (min-width: 751px) {
  body.index-template #MainContent #fykikta-home-proof-strip.fykikta-home-source-scrolling-text h2.fykikta-home-source-scrolling-text__title { line-height: 39px !important; }
}
@media screen and (max-width: 750px) {
  body.index-template #MainContent #fykikta-home-proof-strip.fykikta-home-source-scrolling-text h2.fykikta-home-source-scrolling-text__title { font-size: 28px !important; line-height: 31px !important; }
}
