@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins-Light.woff2");
  font-weight: 300;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins-Regular.woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins-Medium.woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins-SemiBold.woff2");
  font-weight: 600;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins-Bold.woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins-ExtraBold.woff2");
  font-weight: 800;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background: var(--black);
  overflow-x: hidden;
}

:root {
  --white: #fff;
  --black: #000;
  --yellow: #FEC33F;
  --darkyellow: #FBAE3C;
  --red: #A02320;
  --red2: #AE1830;
  --darkred: #5B1412;
  --whitetransparent: #FFFFFF52;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

main {
  margin-top: 0;
  min-height: 0;
  background: none;
}

section {
  float: none;
  background: none;
}

/* Legacy sitewide css/style.css has a bare `path { fill: lightgray; stroke: white; }`
   rule that overrides every inline SVG icon's fill/stroke="currentColor" or hardcoded
   hex color (CSS always wins over presentation attributes, and `revert` goes past the
   attribute to the UA default instead of restoring it, so it's not usable here).
   Re-declaring the originally-intended value per icon group beats the legacy rule's
   low (0,0,1) specificity. */
.caught-in-act__feature svg path {
  stroke: currentColor;
}
.all-things-craveable__nav-btn svg path {
  fill: currentColor;
}
.caught-in-act__nav svg path {
  fill: var(--red);
}
.caught-in-act__play svg path {
  fill: var(--white);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 58px 40px 0;
  pointer-events: none;
}
.header__logo {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.header__logo a {
  display: inline-block;
}
.header__logo img {
  display: block;
  width: 133px;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .header__logo {
    width: 110px;
  }
  .header__logo img {
    width: 100%;
  }
}
@media only screen and (max-width: 563px) {
  .header__logo {
    width: 90px;
  }
}
.header__toggle {
  display: none;
  pointer-events: auto;
  position: relative;
  z-index: 110;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--whitetransparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.55), inset -1px -1px 0 rgba(255, 255, 255, 0.2);
}
.header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.header__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.header__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media only screen and (max-width: 991px) {
  .header__toggle {
    display: flex;
    margin-left: auto;
  }
}
.header__nav {
  pointer-events: auto;
}
@media only screen and (max-width: 991px) {
  .header__nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 20, 18, 0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .header__nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.header__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--whitetransparent);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.header__menu li a {
  display: block;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
}
.header__menu li a.active, .header__menu li a:hover {
  color: var(--yellow);
}
@media only screen and (max-width: 991px) {
  .header__menu {
    flex-direction: column;
    gap: 20px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
  }
  .header__menu li a {
    font-size: 22px;
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .header {
    padding: 20px 28px 0;
  }
}
@media only screen and (max-width: 991px) {
  .header {
    padding: 16px 20px 0;
    align-items: center;
  }
}

.footer {
  position: relative;
  width: 100%;
  background: var(--darkred);
  overflow: hidden;
  border-top: 1px solid rgba(251, 174, 60, 0.35);
  padding: 64px 80px;
}
.footer__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1.2fr 0.7fr;
  gap: 48px;
  align-items: start;
  border: 1px solid rgba(251, 174, 60, 0.55);
  border-radius: 12px;
  margin-top: 18px;
  padding: 27px;
  overflow: hidden;
  background-image: url("../../img/home2026/bikanofooterbg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.footer__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  z-index: 1;
  width: 42%;
  max-width: 520px;
  height: 105px;
  background: var(--darkyellow);
  transform: rotate(-12.2deg);
  transform-origin: top left;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .footer__inner::before {
    width: 55%;
    transform: rotate(-8.2deg);
  }
}
@media only screen and (max-width: 991px) {
  .footer__inner::before {
    width: 70%;
    height: 88px;
    left: -28px;
    transform: rotate(-8.2deg);
  }
}
@media only screen and (max-width: 563px) {
  .footer__inner::before {
    width: 85%;
    height: 72px;
    left: -20px;
    transform: rotate(-15.2deg);
  }
}
@media only screen and (max-width: 1200px) {
  .footer__inner {
    padding: 48px 32px 40px;
    gap: 36px;
  }
}
@media only screen and (max-width: 991px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px 36px;
    gap: 32px;
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media only screen and (max-width: 563px) {
  .footer__inner {
    grid-template-columns: 1fr;
    padding: 36px 18px 28px;
    gap: 28px;
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 20px 20px 0 0;
  }
}
.footer__brand {
  position: relative;
  z-index: 2;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 18px;
}
.footer__logo img {
  display: block;
  width: 118px;
  height: auto;
}
@media only screen and (max-width: 563px) {
  .footer__logo img {
    width: 96px;
  }
}
.footer__tagline {
  margin-bottom: 28px;
}
.footer__tagline img {
  display: block;
  width: min(100%, 280px);
  height: auto;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__contact a:link,
.footer__contact a:visited,
.footer__contact a {
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.25s ease;
}
.footer__contact a:hover {
  color: var(--yellow);
}
.footer__contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer__contact-icon img {
  width: 20px;
  height: 20px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.footer__social a img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__social a:hover {
  transform: translateY(-2px);
}
.footer__location {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__map {
  width: 100%;
  overflow: hidden;
  border: 2px solid var(--yellow);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
}
.footer__map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}
@media only screen and (max-width: 1200px) {
  .footer__map iframe {
    height: 200px;
  }
}
@media only screen and (max-width: 563px) {
  .footer__map iframe {
    height: 180px;
  }
}
.footer__address h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}
.footer__address p {
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
}
.footer__links {
  position: relative;
  padding-left: 36px;
  border-left: 1px solid var(--darkyellow);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media only screen and (max-width: 991px) {
  .footer__links {
    grid-column: 1/-1;
    padding-left: 0;
    padding-top: 8px;
    border-left: none;
    border-top: 1px solid var(--darkyellow);
    flex-direction: row;
    gap: 48px;
  }
}
@media only screen and (max-width: 563px) {
  .footer__links {
    flex-direction: column;
    gap: 24px;
  }
}
.footer__links-group h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}
.footer__links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links-group a:link,
.footer__links-group a:visited,
.footer__links-group a {
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.25s ease;
}
.footer__links-group a:hover {
  color: var(--yellow);
}
.footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 0 0;
}
.footer__bottom p {
  color: var(--white);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.9;
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .footer__bottom p {
    line-height: 23px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 991px) {
  .footer__bottom {
    justify-content: center;
  }
  .footer__bottom p {
    text-align: center;
  }
}
@media only screen and (max-width: 563px) {
  .footer__bottom p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .footer {
    padding: 40px 0;
  }
  .footer__inner {
    max-width: calc(100% - 40px);
    margin: auto;
  }
}

.home-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--darkred);
}
@media only screen and (max-width: 991px) {
  .home-banner {
    height: 95vh;
  }
}
.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  z-index: 5;
  width: 90%;
  height: 105px;
  background: var(--red);
  transform: rotate(-5.2deg);
  transform-origin: top left;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .home-banner::before {
    width: 100%;
    transform: rotate(-8.2deg);
  }
}
@media only screen and (max-width: 991px) {
  .home-banner::before {
    width: 100%;
    height: 88px;
    left: -28px;
    transform: rotate(-8.2deg);
  }
}
@media only screen and (max-width: 563px) {
  .home-banner::before {
    height: 72px;
    left: -20px;
    transform: rotate(-15.2deg);
  }
}
.home-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-banner__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.42);
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}
.home-banner__title {
  position: relative;
  z-index: 1;
  width: min(72%, 720px);
  max-width: 720px;
  height: auto;
  display: block;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .home-banner__title {
    width: min(78%, 520px);
  }
}
@media only screen and (max-width: 563px) {
  .home-banner__title {
    width: min(86%, 340px);
  }
}

.floating-actions {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(40, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 1.5px 1.5px 0 rgba(255, 255, 255, 0.55), inset -1.5px -1.5px 0 rgba(255, 255, 255, 0.22);
}
.floating-actions__item {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.floating-actions__item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.floating-actions__item:hover {
  transform: scale(1.08);
}
.floating-actions__item--whatsapp {
  background: #25d366;
}
.floating-actions__item--cart {
  background: var(--red2);
}
@media only screen and (max-width: 991px) {
  .floating-actions__item {
    width: 42px;
    height: 42px;
  }
}
@media only screen and (max-width: 563px) {
  .floating-actions__item {
    width: 38px;
    height: 38px;
  }
}

.certified-by {
  --certified-bg: #faf5e4;
  width: 100%;
  background: var(--certified-bg);
  padding: 64px 0 64px;
}
@media only screen and (max-width: 991px) {
  .certified-by {
    padding: 40px 0;
  }
}
.certified-by__container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0;
}
@media only screen and (max-width: 991px) {
  .certified-by__container {
    padding: 0 24px;
  }
}
@media only screen and (max-width: 563px) {
  .certified-by__container {
    padding: 0 16px;
  }
}
.certified-by__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: var(--red2);
  text-align: center;
  margin-bottom: 48px;
  text-shadow: 4px 4px 0 #FECE5A;
}
@media only screen and (max-width: 991px) {
  .certified-by__title {
    font-size: 34px;
    line-height: 1.2;
    text-shadow: 3px 3px 0 #FECE5A;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 563px) {
  .certified-by__title {
    font-size: 34px;
    line-height: 1.2;
    text-shadow: 2px 2px 0 #FECE5A;
  }
}
.certified-by__marquee {
  position: relative;
  width: 100%;
  min-height: 72px;
  overflow: hidden;
}
.certified-by__swiper {
  width: 100%;
  overflow: hidden;
}
.certified-by__swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.certified-by__swiper .swiper-wrapper.is-animated {
  animation: certified-marquee-scroll var(--marquee-duration, 40s) linear infinite;
}
.certified-by__swiper .swiper-slide {
  width: auto !important;
  height: auto;
  flex-shrink: 0;
  margin-right: 64px;
}
@media only screen and (max-width: 991px) {
  .certified-by__swiper .swiper-slide {
    margin-right: 48px;
  }
}
@media only screen and (max-width: 563px) {
  .certified-by__swiper .swiper-slide {
    margin-right: 36px;
  }
}
.certified-by__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.certified-by__slide img {
  display: block;
  height: 56px;
  width: auto;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  will-change: filter;
  transition: filter 0.12s linear;
}
@media only screen and (max-width: 991px) {
  .certified-by__slide img {
    height: 48px;
  }
}
@media only screen and (max-width: 563px) {
  .certified-by__slide img {
    height: 40px;
  }
}

@keyframes certified-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.all-things-craveable {
  --atc-yellow: var(--yellow);
  --atc-red: var(--red2);
  --atc-dark-red: var(--darkred);
  --atc-slide-scale: 0.68;
  --atc-slide-active-scale: 1.24;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 56px 0 0;
  background-image: url("../../img/home2026/second_sectoin_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media only screen and (max-width: 991px) {
  .all-things-craveable {
    padding-top: 44px;
  }
}
@media only screen and (max-width: 563px) {
  .all-things-craveable {
    padding-top: 36px;
    --atc-slide-scale: 0.72;
    --atc-slide-active-scale: 1.08;
  }
}
.all-things-craveable__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(100% - 128px);
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .all-things-craveable__container {
    max-width: calc(100% - 48px);
  }
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__container {
    max-width: calc(100% - 32px);
  }
}
.all-things-craveable__decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.all-things-craveable__decor img {
  display: block;
  width: 100%;
  height: auto;
}
.all-things-craveable__decor--tab-arrows {
  position-anchor: --atc-categories;
  right: anchor(left);
  bottom: anchor(top);
  width: 49px;
  margin: 0 14px -8px 0;
}
@media only screen and (max-width: 991px) {
  .all-things-craveable__decor--tab-arrows {
    width: 40px;
  }
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__decor--tab-arrows {
    width: 30px;
    margin: 0 0px -12px 0;
  }
}
.all-things-craveable__decor--bolt-left {
  bottom: 80px;
  left: 20%;
  width: 35px;
  transform: translateX(-20%);
}
@media only screen and (max-width: 991px) {
  .all-things-craveable__decor--bolt-left {
    left: 6%;
    bottom: 20px;
  }
}
.all-things-craveable__decor--bolt-right {
  top: 304px;
  right: 20%;
  width: 55px;
  transform: translateY(-20%);
}
@media only screen and (max-width: 991px) {
  .all-things-craveable__decor--bolt-right {
    right: 10%;
    width: 46px;
  }
}
.all-things-craveable__header {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-bottom: 28px;
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__header {
    margin-bottom: 20px;
  }
}
.all-things-craveable__title-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .all-things-craveable__title-wrap {
    flex-direction: row;
  }
}
.all-things-craveable__title-icon {
  position: absolute;
  position-anchor: --atc-title-line;
  right: anchor(left);
  bottom: anchor(top);
  z-index: 1;
  width: 53px;
  margin: 0px -8px -22px 0;
  pointer-events: none;
}
.all-things-craveable__title-icon img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__title-icon {
    width: 36px;
  }
}
.all-things-craveable__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0;
}
.all-things-craveable__title-line {
  anchor-name: --atc-title-line;
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
  color: var(--atc-red);
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 991px) {
  .all-things-craveable__title-line {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__title-line {
    font-size: 24px;
    line-height: 1.2;
  }
}
.all-things-craveable__title-main {
  font-weight: 600;
  font-size: 80px;
  line-height: 1.2;
  color: var(--atc-red);
  letter-spacing: -0.03em;
}
@media only screen and (max-width: 991px) {
  .all-things-craveable__title-main {
    font-size: 72px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__title-main {
    font-size: 34px;
    line-height: 1.2;
  }
}
.all-things-craveable__toolbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__toolbar {
    gap: 12px;
    margin-bottom: 14px;
  }
}
.all-things-craveable__categories-wrap {
  position: relative;
}
.all-things-craveable__categories {
  anchor-name: --atc-categories;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
.all-things-craveable__category:link,
.all-things-craveable__category:visited,
.all-things-craveable__category {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  padding: 8px 16px;
  color: #4a4a4a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.all-things-craveable__category:hover {
  color: var(--atc-red);
}
.all-things-craveable__category.is-active, .all-things-craveable__category.active {
  font-weight: 700;
  color: var(--atc-red);
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__category:link,
  .all-things-craveable__category:visited,
  .all-things-craveable__category {
    font-size: 11px;
    line-height: 1.2;
    padding: 6px 10px;
    flex-shrink: 0;
  }
}
@media only screen and (max-width: 480px) {
  .all-things-craveable__categories {
    padding: 8px 8px;
  }
  .all-things-craveable__category:link,
  .all-things-craveable__category:visited,
  .all-things-craveable__category {
    font-size: 9px;
    padding: 5px 6px;
    letter-spacing: 0.02em;
  }
}
@media only screen and (max-width: 767px) {
  .all-things-craveable__categories {
    max-width: calc(100vw - 48px);
  }
}
.all-things-craveable__cta:link,
.all-things-craveable__cta:visited,
.all-things-craveable__cta {
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 14px 22px;
  border-radius: 10px;
  background: var(--atc-red);
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
.all-things-craveable__cta span,
.all-things-craveable__cta svg {
  flex-shrink: 0;
}
.all-things-craveable__cta:hover {
  background: var(--red);
  transform: translateY(-1px);
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__cta {
    justify-content: center;
    font-size: 12px;
    line-height: 1.2;
    padding: 12px 18px;
  }
}
.all-things-craveable__slider {
  position: relative;
  z-index: 3;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 0 24px;
}
@media only screen and (max-width: 991px) {
  .all-things-craveable__slider {
    padding-bottom: 16px;
  }
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__slider {
    padding-bottom: 12px;
  }
}
.all-things-craveable__swiper {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 0 80px;
  overflow: hidden;
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__swiper {
    padding: 48px 0 40px;
  }
}
.all-things-craveable__swiper .swiper-wrapper {
  align-items: center;
}
.all-things-craveable__swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
  transform: scale(var(--atc-slide-scale));
  opacity: 0.82;
  transition: transform 0.5s cubic-bezier(0.34, 1.1, 0.64, 1), opacity 0.45s ease;
  will-change: transform;
}
@media only screen and (max-width: 991px) {
  .all-things-craveable__swiper .swiper-slide {
    height: 320px;
  }
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__swiper .swiper-slide {
    height: 240px;
  }
}
.all-things-craveable__swiper .swiper-slide-prev,
.all-things-craveable__swiper .swiper-slide-next {
  z-index: 2;
}
.all-things-craveable__swiper .swiper-slide-active {
  transform: scale(var(--atc-slide-active-scale));
  opacity: 1;
  z-index: 4;
}
.all-things-craveable__slide {
  width: 100%;
}
.all-things-craveable__product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  transform-style: preserve-3d;
  perspective: 900px;
}
.all-things-craveable__burst {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 138%;
  max-width: 460px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.6);
  transform-origin: center center;
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.34, 1.15, 0.64, 1);
}
.all-things-craveable__burst img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.16));
}
.swiper-slide-active .all-things-craveable__burst {
  opacity: 1;
  transform: translate(-50%, -50%) scale(0.87);
}
@media only screen and (max-width: 767px) {
  .swiper-slide-active .all-things-craveable__burst {
    transform: translate(-50%, -50%) scale(0.77);
  }
}
@media only screen and (max-width: 563px) {
  .swiper-slide-active .all-things-craveable__burst {
    transform: translate(-50%, -50%) scale(0.62);
  }
}
.all-things-craveable__packet {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  max-width: 260px;
  max-height: 300px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.2));
  transform: none;
  transition: filter 0.45s ease, transform 0.45s ease;
}
.swiper-slide-active .all-things-craveable__packet {
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.26));
  transform: rotate(12deg);
  scale: 1.2;
}
@media only screen and (max-width: 991px) {
  .all-things-craveable__packet {
    max-width: 220px;
    max-height: 260px;
  }
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__packet {
    max-width: 140px;
    max-height: 180px;
  }
}
.all-things-craveable__accent {
  position: absolute;
  right: 12%;
  bottom: 4%;
  z-index: 5;
  width: 32%;
  max-width: 96px;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, 10px) scale(0.82);
  transition: opacity 0.45s ease, transform 0.5s cubic-bezier(0.34, 1.15, 0.64, 1);
}
.all-things-craveable__accent img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.22));
}
.swiper-slide-active .all-things-craveable__accent {
  opacity: 1;
  transform: none;
}
@media only screen and (max-width: 991px) {
  .all-things-craveable__accent {
    max-width: 78px;
    right: 10%;
  }
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__accent {
    max-width: 56px;
    right: 8%;
    bottom: 2%;
  }
}
.all-things-craveable__accent--sweets {
  width: 70%;
  max-width: 150px;
}
@media only screen and (max-width: 991px) {
  .all-things-craveable__accent--sweets {
    max-width: 150px;
  }
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__accent--sweets {
    max-width: 100px;
  }
}
.all-things-craveable__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 116px;
  padding: 0;
  border: none;
  background: var(--atc-red);
  color: var(--white);
  cursor: pointer;
}
.all-things-craveable__nav-btn svg {
  display: block;
  width: 22px;
  height: 38px;
  flex-shrink: 0;
}
.all-things-craveable__nav-btn--prev {
  left: 0;
  border-radius: 0 999px 999px 0;
  padding-left: 6px;
}
.all-things-craveable__nav-btn--prev svg {
  transform: rotate(180deg);
}
.all-things-craveable__nav-btn--next {
  right: 0;
  border-radius: 999px 0 0 999px;
  padding-right: 6px;
}
@media only screen and (max-width: 991px) {
  .all-things-craveable__nav-btn {
    width: 48px;
    height: 96px;
  }
  .all-things-craveable__nav-btn svg {
    width: 18px;
    height: 31px;
  }
}
@media only screen and (max-width: 563px) {
  .all-things-craveable__nav-btn {
    width: 40px;
    height: 80px;
  }
  .all-things-craveable__nav-btn svg {
    width: 15px;
    height: 26px;
  }
}

.moments-with {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 64px 0;
  background-image: url("../../img/home2026/bikanoBG.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media only screen and (max-width: 991px) {
  .moments-with {
    padding: 40px 0;
  }
}
.moments-with__decor {
  position: absolute;
  z-index: 1;
  border: 2px dashed var(--yellow);
  border-radius: 50%;
  opacity: 0.85;
  pointer-events: none;
}
.moments-with__decor--top-left {
  top: 28px;
  left: -70px;
  width: 220px;
  height: 220px;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-18deg);
}
.moments-with__decor--top-right {
  top: 10px;
  right: -90px;
  width: 260px;
  height: 260px;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(18deg);
}
@media only screen and (max-width: 563px) {
  .moments-with__decor {
    display: none;
  }
}
.moments-with__thunder {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.moments-with__thunder img {
  display: block;
  width: 100%;
  height: auto;
}
.moments-with__thunder--bottom {
  bottom: 33%;
  left: 72px;
  width: 35px;
  transform: translateY(-33%);
}
@media only screen and (max-width: 991px) {
  .moments-with__thunder--bottom {
    left: 24px;
    bottom: 150px;
  }
}
.moments-with__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(100% - 342px);
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .moments-with__container {
    max-width: calc(100% - 40px);
  }
}
.moments-with__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  text-align: center;
}
.moments-with__eyebrow-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 2px;
}
.moments-with__title-icon {
  position: absolute;
  position-anchor: --mw-eyebrow;
  right: anchor(left);
  bottom: anchor(top);
  z-index: 1;
  width: 53px;
  margin: 0 0px -30px 0;
  pointer-events: none;
}
.moments-with__title-icon img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 563px) {
  .moments-with__title-icon {
    width: 36px;
  }
}
.moments-with__eyebrow {
  anchor-name: --mw-eyebrow;
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  font-style: italic;
  color: var(--yellow);
  margin-bottom: 0;
  text-shadow: 0px 2px 0px 0px var(--white);
  padding-right: 12px;
}
@media only screen and (max-width: 991px) {
  .moments-with__eyebrow {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 563px) {
  .moments-with__eyebrow {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 991px) {
  .moments-with__eyebrow {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 563px) {
  .moments-with__eyebrow {
    font-size: 20px;
    line-height: 1.2;
  }
}
.moments-with__title {
  font-weight: 800;
  font-size: 80px;
  line-height: 1.2;
  color: var(--yellow);
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 991px) {
  .moments-with__title {
    font-size: 58px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 563px) {
  .moments-with__title {
    font-size: 44px;
    line-height: 1.2;
  }
}
.moments-with__col {
  min-height: 0;
  height: 100%;
}
.moments-with__col--side .moments-with__frame {
  height: 100%;
}
.moments-with__col--center {
  display: grid;
  grid-template-rows: 1.12fr 0.88fr;
  gap: 12px;
  min-height: 0;
}
@media only screen and (max-width: 991px) {
  .moments-with__col--center {
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .moments-with__col--center {
    grid-template-rows: auto auto;
  }
}
@media only screen and (max-width: 767px) {
  .moments-with__col {
    height: auto;
  }
}
.moments-with__frame {
  margin: 0;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #3a0d0b;
}
.moments-with__frame img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 767px) {
  .moments-with__frame {
    min-height: 240px;
  }
}
.moments-with__order {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.3215686275);
}
@media only screen and (max-width: 991px) {
  .moments-with__order {
    gap: 20px;
    padding: 16px 24px;
  }
}
@media only screen and (max-width: 563px) {
  .moments-with__order {
    flex-direction: column;
    gap: 16px;
    padding: 16px 18px;
    width: 100%;
  }
}
.moments-with__order-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: var(--black);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 563px) {
  .moments-with__order-text {
    font-size: 15px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
  }
}
.moments-with__order-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
.moments-with__order-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  border-radius: 10px;
  border: none;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.moments-with__order-logo img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 563px) {
  .moments-with__order-logo {
    width: 46px;
    height: 46px;
  }
  .moments-with__order-logo img {
    width: 32px;
    height: 32px;
  }
}

.momentGallery {
  display: flex;
  gap: 14px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .momentGallery {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}
.momentGallery .col-40 .leftGalleryImg {
  height: 100%;
}
.momentGallery .col-40 img {
  height: 100%;
}
.momentGallery .galleryRightClub {
  display: flex;
  gap: 14px;
}
.momentGallery .galleryRightClub .rightGalleryImg {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.momentGallery .galleryRightClub .rightGalleryImg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.momentGallery .galleryRightClub .galleryclub {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.momentGallery .galleryRightClub .galleryclub img {
  height: 100%;
}
.momentGallery .galleryRightClub .galleryclub .topImg {
  box-shadow: 0px 4px 6.5px 0px rgba(255, 255, 255, 0.2509803922);
}
.momentGallery .galleryRightClub .galleryclub .bottomImg {
  box-shadow: 0px 4px 6.5px 0px rgba(255, 255, 255, 0.2509803922);
}

.houseBikano {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 64px 0 64px;
  background-image: url("../../img/home2026/houseBg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media only screen and (max-width: 991px) {
  .houseBikano {
    padding: 56px 0 64px;
  }
}
@media only screen and (max-width: 563px) {
  .houseBikano {
    padding: 48px 0 56px;
  }
}
.houseBikano__top-decor {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 200px;
  height: 100px;
  border: 2px dashed var(--red2);
  border-bottom: none;
  border-radius: 200px 200px 0 0;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.9;
}
@media only screen and (max-width: 563px) {
  .houseBikano__top-decor {
    width: 140px;
    height: 70px;
  }
}
.houseBikano__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  padding-top: 38px;
}
@media only screen and (max-width: 991px) {
  .houseBikano__header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
  }
}
.houseBikano__heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.houseBikano__title-icon {
  position: absolute;
  position-anchor: --hob-title;
  right: anchor(left);
  bottom: anchor(top);
  z-index: 1;
  width: 53px;
  margin: 0 -8px -22px 0;
  pointer-events: none;
}
.houseBikano__title-icon img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 563px) {
  .houseBikano__title-icon {
    width: 36px;
  }
}
.houseBikano__title {
  anchor-name: --hob-title;
  font-weight: 600;
  font-size: 80px;
  line-height: 1.2;
  color: var(--red2);
  letter-spacing: -0.02em;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .houseBikano__title {
    font-size: 42px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 563px) {
  .houseBikano__title {
    font-size: 34px;
    line-height: 1.2;
  }
}
.houseBikano__spring {
  position: absolute;
  position-anchor: --hob-title;
  left: anchor(right);
  top: anchor(bottom);
  z-index: 1;
  width: 72px;
  margin: -18px 0 0 -10px;
  pointer-events: none;
}
.houseBikano__spring img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 563px) {
  .houseBikano__spring {
    width: 56px;
    margin-top: -12px;
  }
}
.houseBikano__btn:link,
.houseBikano__btn:visited,
.houseBikano__btn {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 14px 20px 14px 32px;
  border-radius: 8px;
  background: var(--red2);
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.houseBikano__btn span {
  font-size: 20px;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .houseBikano__btn span {
    line-height: 0;
  }
}
.houseBikano__btn:hover {
  background: var(--red);
}
@media only screen and (max-width: 991px) {
  .houseBikano__btn {
    justify-content: center;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 26px;
  }
}
.houseBikano__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 60px;
}
@media only screen and (max-width: 991px) {
  .houseBikano__cards {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
}
.houseBikano__card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 15px 12px 60px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 433px;
  perspective: 1000px;
  transition: box-shadow 0.4s ease, z-index 0s;
}
.houseBikano__card:hover {
  z-index: 5;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.houseBikano__card:hover .houseBikano__card-visual img {
  transform: scale3d(1.4, 1.4, 1.4);
}
.houseBikano__card-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 20px;
  overflow: visible;
  padding: 24px 16px;
}
.houseBikano__card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center center;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}
.houseBikano__card-visual--tapri {
  background: radial-gradient(53.86% 53.86% at 50% 50%, #CF2958 42.81%, #A5163E 100%);
}
.houseBikano__card-visual--eat-easy {
  background: radial-gradient(60.99% 60.99% at 50% 50%, #336515 65.92%, #18402B 98.56%);
}
.houseBikano__card-visual--fatax {
  background: radial-gradient(61.54% 61.54% at 49.92% 44.64%, #4194C7 44.99%, #2056B3 100%);
}
.houseBikano__card-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  margin-top: 16px;
  color: var(--red2);
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 563px) {
  .houseBikano__card-name {
    font-size: 16px;
    line-height: 1.2;
  }
}

.houseContainer {
  max-width: calc(100% - 128px);
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .houseContainer {
    max-width: calc(100% - 48px);
  }
}
@media only screen and (max-width: 563px) {
  .houseContainer {
    max-width: calc(100% - 32px);
  }
}

.caught-in-act {
  --caught-bg: #faf5e4;
  width: 100%;
  background: var(--caught-bg);
  padding: 64px 0 72px;
}
@media only screen and (max-width: 991px) {
  .caught-in-act {
    padding: 56px 0 64px;
  }
}
@media only screen and (max-width: 563px) {
  .caught-in-act {
    padding: 44px 0 52px;
  }
}
.caught-in-act__container {
  width: 100%;
  max-width: calc(100% - 128px);
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .caught-in-act__container {
    max-width: calc(100% - 48px);
  }
}
@media only screen and (max-width: 563px) {
  .caught-in-act__container {
    max-width: calc(100% - 32px);
  }
}
.caught-in-act__header {
  position: relative;
  margin-bottom: 26px;
}
@media only screen and (max-width: 563px) {
  .caught-in-act__header {
    margin-bottom: 20px;
  }
}
.caught-in-act__title {
  position: relative;
  display: inline-block;
  font-size: 80px;
  line-height: 1.2;
  color: var(--red);
  font-weight: 600;
  line-height: 90px;
  transition: all ease 0.5s;
}
@media only screen and (max-width: 991px) {
  .caught-in-act__title {
    font-size: 34px;
    line-height: 1.2;
    line-height: 38px;
    text-align: center;
  }
}
.caught-in-act__title-sub {
  anchor-name: --caught-title-sub;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: var(--red2);
  line-height: 50px;
  transition: all ease 0.5s;
}
@media only screen and (max-width: 991px) {
  .caught-in-act__title-sub {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 991px) {
  .caught-in-act__title-sub {
    display: block;
    font-size: 20px;
    line-height: 1.2;
    line-height: 28px;
  }
}
@media (min-width: 1251px) and (max-width: 1400px) {
  .caught-in-act__title {
    font-size: 64px;
  }
}
@media (min-width: 992px) and (max-width: 1250px) {
  .caught-in-act__title {
    font-size: 48px;
  }
  .caught-in-act__title-sub {
    font-size: 28px;
  }
}
.caught-in-act__spark {
  position: absolute;
  position-anchor: --caught-title-sub;
  left: anchor(right);
  bottom: anchor(top);
  z-index: 1;
  width: 53px;
  margin: 0 0 -18px -6px;
  pointer-events: none;
}
.caught-in-act__spark img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 563px) {
  .caught-in-act__spark {
    width: 36px;
    margin: 0 0 20px 4px;
  }
}
.caught-in-act__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  margin-top: 16px;
}
@media only screen and (max-width: 563px) {
  .caught-in-act__subtitle {
    font-size: 14px;
    line-height: 22px;
    margin-top: 8px;
    text-align: center;
  }
}
.caught-in-act__slider {
  position: relative;
}
.caught-in-act__swiper {
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 563px) {
  .caught-in-act__swiper {
    border-radius: 18px;
  }
}
.caught-in-act__slide {
  position: relative;
  width: 100%;
}
.caught-in-act__media {
  position: relative;
  display: block;
  width: 100%;
  height: 500px;
  border-radius: 70px;
  overflow: hidden;
  border: 4px solid var(--yellow);
  background: var(--darkred);
}
.caught-in-act__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.caught-in-act__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .caught-in-act__media {
    height: 400px;
    border-radius: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .caught-in-act__media {
    height: 320px;
  }
}
@media only screen and (max-width: 563px) {
  .caught-in-act__media {
    height: 240px;
    border-radius: 18px;
    border-width: 3px;
  }
}
.caught-in-act__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 28, 22, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 1.5px 1.5px 0 rgba(255, 255, 255, 0.6), inset -1.5px -1.5px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}
.caught-in-act__play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}
@media only screen and (max-width: 563px) {
  .caught-in-act__play {
    width: 58px;
    height: 58px;
  }
  .caught-in-act__play svg {
    width: 18px;
    height: 18px;
  }
}
.caught-in-act__media:hover .caught-in-act__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(40, 28, 22, 0.58);
}
.caught-in-act__features {
  position: absolute;
  top: 50%;
  left: 40px;
  z-index: 4;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 22px;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .caught-in-act__features {
    left: 28px;
    gap: 18px;
  }
}
@media only screen and (max-width: 563px) {
  .caught-in-act__features {
    left: 16px;
    gap: 12px;
  }
}
.caught-in-act__feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 8px;
  width: 128px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}
.caught-in-act__feature svg {
  width: 24px;
  height: 24px;
  color: var(--yellow);
}
.caught-in-act__feature span {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media only screen and (max-width: 563px) {
  .caught-in-act__feature {
    width: 104px;
    gap: 6px;
    padding-bottom: 6px;
  }
  .caught-in-act__feature svg {
    width: 18px;
    height: 18px;
  }
  .caught-in-act__feature span {
    font-size: 9px;
    line-height: 12px;
  }
}
.caught-in-act__nav {
  position: absolute;
  top: 50%;
  z-index: 6;
  transform: translateY(-50%);
  padding: 0;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.caught-in-act__nav svg {
  display: block;
  width: 16px;
  height: 27px;
}
.caught-in-act__nav:hover {
  transform: translateY(-50%) scale(1.12);
}
.caught-in-act__nav--prev svg {
  transform: rotate(180deg);
}
.caught-in-act__nav--prev {
  left: -40px;
}
@media only screen and (max-width: 1200px) {
  .caught-in-act__nav--prev {
    left: -46px;
  }
}
@media only screen and (max-width: 991px) {
  .caught-in-act__nav--prev {
    left: -22px;
  }
}
@media only screen and (max-width: 767px) {
  .caught-in-act__nav--prev {
    left: -20px;
  }
}
.caught-in-act__nav--next {
  right: -40px;
}
@media only screen and (max-width: 1200px) {
  .caught-in-act__nav--next {
    right: -46px;
  }
}
@media only screen and (max-width: 991px) {
  .caught-in-act__nav--next {
    right: -22px;
  }
}
@media only screen and (max-width: 767px) {
  .caught-in-act__nav--next {
    right: -20px;
  }
}
.caught-in-act__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
@media only screen and (max-width: 563px) {
  .caught-in-act__nav {
    display: none;
  }
}
.caught-in-act__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.caught-in-act__pagination .swiper-pagination-bullet {
  /* app.css's `.swiper-pagination-bullet { width/height/border-radius: ... !important }`
     is a sitewide legacy rule meant for another slider; matching !important here
     (with our higher two-class specificity) is the only way to beat it. */
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: transparent;
  border: 1.5px solid var(--red2);
  opacity: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}
.caught-in-act__pagination .swiper-pagination-bullet-active {
  /* app.css sets `background: var(--green) !important` here too. */
  background: var(--red2) !important;
  transform: scale(1.05);
}
@media only screen and (max-width: 563px) {
  .caught-in-act__pagination {
    margin-top: 16px;
  }
}

.bikano-buzz {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  background-image: url("../../img/home2026/BikanoBuzz.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 0 112px;
}
@media only screen and (max-width: 991px) {
  .bikano-buzz {
    padding: 48px 0 60px;
  }
}
@media only screen and (max-width: 563px) {
  .bikano-buzz {
    padding: 36px 0 44px;
  }
}
.bikano-buzz__container {
  width: 100%;
  max-width: calc(100% - 128px);
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .bikano-buzz__container {
    max-width: calc(100% - 48px);
  }
}
@media only screen and (max-width: 563px) {
  .bikano-buzz__container {
    max-width: calc(100% - 32px);
  }
}
.bikano-buzz__header {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 88px;
}
@media only screen and (max-width: 563px) {
  .bikano-buzz__header {
    margin-bottom: 28px;
    gap: 6px;
  }
}
.bikano-buzz__title-wrap {
  position: relative;
}
.bikano-buzz__title-icon {
  position: absolute;
  position-anchor: --buzz-title;
  right: anchor(left);
  bottom: anchor(bottom);
  z-index: 1;
  width: 53px;
  margin: 0 -8px -5px 0;
  pointer-events: none;
}
.bikano-buzz__title-icon img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 563px) {
  .bikano-buzz__title-icon {
    width: 36px;
  }
}
.bikano-buzz__title {
  anchor-name: --buzz-title;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
  color: var(--yellow);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (max-width: 991px) {
  .bikano-buzz__title {
    font-size: 44px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  .bikano-buzz__title {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 563px) {
  .bikano-buzz__title {
    font-size: 30px;
    line-height: 1.2;
    white-space: normal;
  }
}
.bikano-buzz__badge {
  display: block;
  flex-shrink: 0;
  width: 96px;
  margin-top: 4px;
}
.bikano-buzz__badge img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .bikano-buzz__badge {
    width: 72px;
  }
}
@media only screen and (max-width: 563px) {
  .bikano-buzz__badge {
    width: 54px;
    margin-top: 2px;
  }
}
.bikano-buzz__stage {
  position: relative;
  overflow: visible;
}
.bikano-buzz__marquee {
  position: relative;
  width: 100%;
  padding: 36px 0 40px;
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.bikano-buzz__marquee::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.bikano-buzz__marquee:hover .bikano-buzz__swiper .swiper-wrapper.is-animated {
  animation-play-state: paused;
}
.bikano-buzz__decor {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.bikano-buzz__decor img {
  display: block;
  width: 100%;
  height: auto;
}
.bikano-buzz__decor--lines {
  top: -24px;
  left: 8%;
  width: 48px;
}
@media only screen and (max-width: 991px) {
  .bikano-buzz__decor--lines {
    top: -5px;
    width: 30px;
  }
}
.bikano-buzz__decor--electricity-top {
  top: -58px;
  right: 18%;
  width: 68px;
}
@media only screen and (max-width: 991px) {
  .bikano-buzz__decor--electricity-top {
    right: 10%;
    width: 50px;
    top: -20px;
  }
}
.bikano-buzz__decor--electricity-bottom {
  bottom: -24px;
  left: 22%;
  width: 49px;
}
@media only screen and (max-width: 991px) {
  .bikano-buzz__decor--electricity-bottom {
    left: 14%;
    width: 40px;
  }
}
.bikano-buzz__decor--spring {
  bottom: -10px;
  right: 24%;
  width: 72px;
}
@media only screen and (max-width: 991px) {
  .bikano-buzz__decor--spring {
    right: 12%;
    width: 56px;
  }
}
.bikano-buzz__swiper {
  width: 100%;
  overflow: visible;
}
.bikano-buzz__swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  gap: 28px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.bikano-buzz__swiper .swiper-wrapper.is-animated {
  animation: bikano-buzz-marquee var(--marquee-duration, 40s) linear infinite;
}
.bikano-buzz__swiper .swiper-wrapper.is-animated.is-paused {
  animation-play-state: paused;
}
@media only screen and (max-width: 563px) {
  .bikano-buzz__swiper .swiper-wrapper {
    gap: 18px;
  }
}
.bikano-buzz__swiper .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}
.bikano-buzz__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bikano-buzz__card {
  position: relative;
  width: 320px;
  aspect-ratio: 3/4.4;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  border: 4px solid var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
.bikano-buzz__card img,
.bikano-buzz__card video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 8px;
}
.bikano-buzz__card .instagram-media,
.bikano-buzz__card iframe.instagram-media,
.bikano-buzz__card blockquote.instagram-media {
  margin: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 100% !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
@media only screen and (max-width: 991px) {
  .bikano-buzz__card {
    width: 260px;
    border-width: 5px;
  }
}
@media only screen and (max-width: 563px) {
  .bikano-buzz__card {
    width: 220px;
    border-width: 4px;
  }
}
.bikano-buzz__views {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: var(--white);
}
.bikano-buzz__views svg {
  width: 15px;
  height: 15px;
}
@media only screen and (max-width: 563px) {
  .bikano-buzz__views {
    left: 8px;
    bottom: 8px;
    padding: 3px 8px;
    font-size: 10px;
    line-height: 1;
  }
  .bikano-buzz__views svg {
    width: 12px;
    height: 12px;
  }
}

@keyframes bikano-buzz-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.bikano-buzz__sociablekit-demo,
.bikano-buzz__feedpane-demo {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}