@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: 'Bestime';
  src:
    url('./font/Bestime.otf') format('opentype'),
    url('./font/Bestime.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

button:focus,
button:active {
  outline: none;
  transform: scale(1.05);
}

:root {
  --font-title: 'Bestime', sans-serif;
  --font-body: 'Noto Sans KR', sans-serif;

  /* Color palette */
  --sandy-brown: #ffa05c;
  --powder-blue: #b8cff4;
  --cornsilk: #fdf4d8;
  --salmon-pink: #ff9999;

  /* Color variations */
  --sandy-brown-100: #ffd5b3;
  --sandy-brown-200: #ffc699;
  --sandy-brown-300: #ffb780;
  --sandy-brown-400: #ffa05c;
  --sandy-brown-500: #ff8833;
  --sandy-brown-600: #ff860c;
  --sandy-brown-700: #ff710c;

  --powder-blue-100: #e5f4f2;
  --powder-blue-200: #d1e1f7;
  --powder-blue-300: #b8cff4;
  --powder-blue-400: #9fbef0;
  --powder-blue-500: #85acec;
  --powder-blue-600: #6c9be8;

  --cornsilk-100: #fffdf5;
  --cornsilk-200: #fffaeb;
  --cornsilk-300: #fff7e0;
  --cornsilk-400: #fdf4d8;
  --cornsilk-500: #f8ecc0;
  --cornsilk-600: #f3e4a8;

  --salmon-pink-100: #ffdddd;
  --salmon-pink-200: #ffcccc;
  --salmon-pink-300: #ffbbbb;
  --salmon-pink-400: #ffaaaa;
  --salmon-pink-500: #ff9999;
  --salmon-pink-600: #ff7777;

  --line-banner-height: 56px;
  --layout-width: 1440px;
  --header-height: 90px;
}

body {
  font-family: var(--font-body);
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

html {
  scroll-behavior: smooth;
}

.font-title {
  font-family: var(--font-title);
}

.py-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.relative {
  position: relative;
}

.container {
  max-width: var(--layout-width);
  margin: 0 auto;
  padding: 0 16px;
}

.wrapper {
  position: relative;
  padding-top: var(--line-banner-height);
}

.sec-heading {
  margin-bottom: 40px;
  text-align: center;
}

.sec-heading__title {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-title);
}

.sec-heading__desc {
  font-size: 1.425rem;
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 100%;
  padding-top: 24px;
}

/* @media (min-width: 1025px) {
  body,
  html {
    font-size: 1vw !important;
  }
} */

/* ====================================== Line Banner ===================================== */

.line-banner {
  white-space: nowrap;
  position: absolute;
  top: 0;
  width: 100%;
  height: var(--line-banner-height);
  overflow: hidden;
  background: var(--sandy-brown-700);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.7px;
  z-index: 1000;
  padding: 8px 0;
}

.line-banner-inner {
  display: inline-block;
  animation: marquee 200s linear infinite;
}

.line-banner-inner span {
  display: inline-block;
  padding-right: 120px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ====================================== Main Content ===================================== */

.hero-section {
  height: calc(100vh - var(--line-banner-height) - var(--header-height));
  background-image: url('./images/hero-section/hero-ngang.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--sandy-brown-100); /* Fallback color */
}

/* Hero center container */
.hero-center {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.wobble-hor-bottom {
  -webkit-animation: wobble-hor-bottom 1.5s both 0.6s infinite;
  animation: wobble-hor-bottom 1.5s both 0.6s infinite;
}

.hero-jiho {
  max-width: 40%;
  height: auto;
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-animation: scale-in-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
  animation: scale-in-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0) translate(-50%, -50%);
    transform: scale(0) translate(-50%, -50%);
  }
  50% {
    -webkit-transform: scale(1.2) translate(-50%, -50%);
    transform: scale(1.2) translate(-50%, -50%);
  }
  100% {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
  }
}

@keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-5deg);
    transform: translateX(-30px) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(5deg);
    transform: translateX(15px) rotate(5deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.5deg);
    transform: translateX(-15px) rotate(-3.5deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
    transform: translateX(-6px) rotate(-1.2deg);
  }
}

/* ====================================== Story Section ===================================== */

.story-section {
  background-color: var(--cornsilk-400);
}

.scroll-header {
  position: relative;
  margin-top: 40px;
}

.scroll-title-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-header .scroll-title {
  position: relative;
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-title);
  color: var(--sandy-brown-700);
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
  z-index: 2;
  letter-spacing: 1px;
  line-height: 120%;

  /* để text trở thành mask */
  -webkit-mask-image: linear-gradient(#fff 0 0);
  -webkit-mask-clip: text;
  -webkit-mask-repeat: no-repeat;
}

.scroll-header .scroll-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./images/elements/text-mask.png');
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

/* Decorative elements positioning */
.scroll-element {
  position: absolute;
  z-index: 1;
  transform: scale(0);
}

.scroll-element-top-left {
  top: -80px;
  left: 20%;
  max-width: 30%;
  object-fit: cover;
}

.scroll-element-left {
  left: -1%;
  top: 5%;
  width: 320px;
  height: auto;
}

.scroll-element-right {
  right: 5%;
  top: 12%;
  object-fit: cover;
  max-width: 15%;
}

.scroll-element-bottom-right {
  bottom: -20px;
  right: 14%;
  max-width: 10%;
  object-fit: cover;
  /* transform: scaleX(-1); */
}

.scroll-element {
  transform: scale(0) rotate(0deg);
}

.scroll-title-wrapper:hover .scroll-element {
  animation: enterAnim 0.9s ease-in-out forwards;
}

.scroll-title-wrapper:not(:hover) .scroll-element {
  animation: exitAnim 0.5s ease forwards;
}

@keyframes enterAnim {
  0% {
    transform: scale(0) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(-5deg);
  }
  80% {
    transform: scale(1) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.story-section .jiro-run-section__wrapper img {
  width: 100%;
  height: auto;
}

@keyframes exitAnim {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(0) rotate(0deg);
  }
}

/* Jiro Animation Keyframes */
@keyframes jiroFloat {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) translateX(10px) scale(1.05);
  }
}

.jiro-run-section__wrapper-start {
  --path: path(
    'M821 242C921 259 1106 324 1142 487 1099 620 914 710 844 768 790 797 774 834 702 851'
  );
  position: absolute;
  top: 0%;
  width: 20%;
  transition: offset-distance 2.1s cubic-bezier(0.34, 1.56, 0.64, 1);

  offset-path: var(--path);
  offset-distance: 0%;
  offset-rotate: 0deg;
}

.jiro-run {
  width: 100% !important;
  object-fit: cover;
  transition: all 0.7s ease;
}

.jiro-run:hover {
  animation-play-state: paused;
  transform: scale(1.1) rotate(2deg);
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.jiro-hover {
  transition: all 0.7s ease;
}

.jiro-hover:hover {
  animation-play-state: paused;
  transform: scale(1.1) rotate(2deg);
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.jiro-run-section__wrapper-end {
  --path: path('M179 268C215 316 89 432 20 494-64 565-132 618-388 747');
  position: absolute;
  bottom: 32%;
  right: 5%;
  width: 30%;
  transition: offset-distance 2.1s cubic-bezier(0.34, 1.56, 0.64, 1);

  offset-path: var(--path);
  offset-distance: 0%;
  offset-rotate: 0deg;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scroll-header .scroll-title {
    font-size: 3rem;
    max-width: 76%;
  }

  .scroll-element-top-left,
  .scroll-element-bottom-right {
    width: 15%;
  }

  .scroll-element-left,
  .scroll-element-right {
    width: 20%;
  }

  .scroll-element-left {
    left: 0%;
  }

  .scroll-element-right {
    right: 2%;
  }

  .scroll-element-top-left {
    top: -58%;
  }
}

/* ====================================== Product Section ===================================== */

section.product-section {
  background-color: var(--sandy-brown-500);
}

.product-section .hero-list-produts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.product-section .hero-list-produts .hero__item {
  position: relative;
  margin-right: -2px;
  overflow: hidden;
  z-index: 1;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  will-change: transform;
}

.product-section .hero-list-produts .hero__item-img {
  width: 100%;
  object-fit: contain;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.product-section .hero-list-produts .img_mb {
  display: none;
}

.product-section .hero-list-produts .hero__item:hover {
  transform: scale(1.03);
  z-index: 2;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.related-swiper .swiper-slide {
  height: auto;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
}

.product-card__media {
  padding: 32px 38px;
  display: flex;
  height: 280px;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card__body {
  padding: 0px 18px 22px;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 130%;
  height: 47px;
}

.product-card__desc {
  color: #666;
  font-size: 0.875rem;
}

.product-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.btn-more {
  background: #fff;
  border: none;
  font-weight: 700;
  padding: 10px 38px;
  border-radius: 6px;
  cursor: pointer;
}

.product-section .related-content.py-section {
  padding-bottom: 0;
}

/* ====================================== About Us Section ===================================== */

.about-us-section {
  background-color: var(--cornsilk-400);
}

.about-us-section .sec-heading__desc {
  max-width: 30rem;
  margin: 0 auto;
}

.about-us-section .content__creator-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.creator-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.creator-card:hover {
  transform: translateY(-4px);
}

.creator-card__media {
  height: 400px;
  background: #eee;
}

.creator-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-card__body {
  padding: 14px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.creator-card__name {
  font-weight: 700;
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.creator-card__role {
  color: #666;
  font-size: 1.125rem;
}

.creator-card__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 16px 16px;
}

.creator-card__social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--powder-blue-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.creator-card__social > svg {
  width: 20px;
  height: 20px;
}

.creator-card__social:hover {
  background: var(--powder-blue-200);
  transform: translateY(-2px);
}

/* ====================================== Features Section ===================================== */

.features-section {
  background-color: var(--cornsilk-400);
}

.features-section .sec-heading__desc {
  max-width: 32rem;
  margin: 0 auto;
}

.features-section .content__features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.feature-card__icon {
  margin: 0 auto 24px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card__img {
  width: 100px;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-card__body {
  text-align: center;
  max-width: 260px;
  margin: 0 auto;
}

.feature-card__title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.5rem;
  color: #2d2d2d;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.feature-card__desc {
  color: #666;
  font-size: 1.25rem;
  line-height: 100%;
  margin: 0;
  font-family: var(--font-body);
}

/* ====================================== Brand Section ===================================== */

.brand-section {
  background-color: var(--sandy-brown-500);
}

.brand-section .content__brand-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.brand-card {
  position: relative;
  flex: 1;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.3s ease;
}

.brand-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.brand-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.brand-card__content {
  position: absolute;
  bottom: -40px; /* ẩn xuống */
  left: 0;
  width: 100%;
  padding: 28px 24px;
  z-index: 3;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s 0.2s ease;
}

.brand-card__title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-card:hover {
  flex: 2;
}

.brand-card:hover .brand-card__overlay {
  opacity: 1;
}

.brand-card:hover .brand-card__content {
  opacity: 1;
  transform: translateY(0);
  bottom: 0;
}

.brand-card__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  opacity: 0.95;
}

/* ====================================== Footer Section ===================================== */
.footer {
  background-color: var(--cornsilk-400);
}

.footer.py-section {
  padding-top: 100px;
  padding-bottom: 40px;
}

.footer .container {
  display: flex;
  align-items: center;
  padding-top: 40px;
  position: relative;
}

.footer .container .col-4 {
  width: 33.3333333333%;
  padding: 0 20px;
}

.footer .line-footer {
  position: relative;
  width: 100%;
}

.footer .line-footer .line-footer__hotdog {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  object-fit: cover;
  max-width: 30%;
}

.newsletter-title {
  color: var(--sandy-brown-600);
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.4;
  max-width: 300px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-input {
  padding: 16px 24px;
  border: 2px solid var(--sandy-brown-600);
  border-radius: 8px;
  font-size: 14px;
  background-color: transparent;
}

.newsletter-input::placeholder {
  color: #626262;
}

.newsletter-form__bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}

.newsletter-btn {
  background-color: var(--sandy-brown-600);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-btn:hover {
  background-color: var(--sandy-brown-700);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.newsletter-checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #ff6b35;
}

.checkbox-label > input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  border: 1px solid var(--sandy-brown-600);
  background-color: transparent;
  height: 16px;
  width: 16px;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: -1px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  transform-origin: 0px 10px;
  border-radius: 4px;
  box-sizing: border-box;
}

.checkbox-label input:checked ~ .checkmark {
  background-color: var(--sandy-brown-600);
  height: 16px;
  width: 16px;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: -1px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  transform-origin: 0px 10px;
  border-radius: 4px;
  margin: -1px 10px 0px 0px;
  padding: 0px;
  box-sizing: border-box;
}

.checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-label .checkmark:after {
  left: 0.32em;
  top: 0.18em;
  width: 0.25em;
  height: 0.5em;
  border: solid white;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
  transition: all 500ms ease-in-out;
}

.checkbox-text {
  font-size: 10px;
  color: #666;
  text-align: left;
  line-height: 1.3;
}

/* Mascot Section */
.mascot-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.mascot-image {
  max-width: 60%;
  height: auto;
}

/* Footer Navigation Section */
.footer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-nav {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.nav-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-link {
  color: var(--sandy-brown-600);
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--sandy-brown-300);
}

/* Social Media */
.social-media {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--sandy-brown-600);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: var(--sandy-brown-700);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

/* Legal Links */
.legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.legal-link {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s;
}

.legal-link:hover {
  color: #333;
}

.separator {
  font-size: 14px;
}

/* Copyright */
.copyright {
  font-size: 14px;
  margin-top: 12px;
}

/* Corndog Decoration */
.corndog-decoration {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

/* ====================================== Header Styles ===================================== */

#header {
  position: sticky;
  top: 0;
  background-color: white;
  width: 100%;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  height: var(--header-height);
}
#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

/* Logo Styles */
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.logo-img {
  width: auto;
  height: 60px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-korean {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: bold;
  color: #141b34;
  line-height: 1;
  letter-spacing: 1px;
}

.logo-food-style {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: #141b34;
  font-style: italic;
  margin-top: -2px;
  letter-spacing: 0.5px;
}

/* Navigation Styles */
.header-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4.5rem;
}

.nav-menu li a {
  text-decoration: none;
  color: #141b34;
  font-weight: 500;
  font-size: 1rem;
  transition:
    color 0.3s ease,
    transform 0.2s ease;
  position: relative;
}

.nav-menu li a:hover {
  color: var(--sandy-brown-400);
  transform: translateY(-2px);
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sandy-brown-400);
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.icon-link:hover {
  transform: scale(1.1);
}

.header-icon {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}

.icon-link:hover .header-icon {
  filter: brightness(0.8);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger {
  width: 45px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: end;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #141b34;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger > span:first-of-type {
  width: 100%;
}

.hamburger:hover > span:first-of-type {
  width: 20px;
}

.hamburger > span:nth-of-type(2) {
  width: 30px;
}

.hamburger > span:nth-of-type(3) {
  width: 20px;
}

.hamburger:hover > span:nth-of-type(3) {
  width: 100%;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 1);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--sandy-brown-200);
}

.mobile-logo .logo-korean {
  font-size: 2rem;
}

.mobile-logo .logo-food-style {
  font-size: 1rem;
}

/* Close Button */
.close-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-menu-btn span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #141b34;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.close-menu-btn span:first-child {
  transform: rotate(45deg);
}

.close-menu-btn span:last-child {
  transform: rotate(-45deg);
}

.close-menu-btn:hover span {
  background-color: var(--sandy-brown-400);
  transform: rotate(45deg) scale(1.1);
}

.close-menu-btn:hover span:last-child {
  transform: rotate(-45deg) scale(1.1);
}

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  margin-bottom: 2rem;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li a {
  text-decoration: none;
  color: #141b34;
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
  padding: 1rem 0;
  transition:
    color 0.3s ease,
    transform 0.2s ease;
  border-bottom: 1px solid transparent;
}

.mobile-nav-menu li a:hover {
  color: var(--sandy-brown-400);
  transform: translateX(10px);
}

/* Mobile Icons */
.mobile-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--sandy-brown-200);
}

.mobile-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.mobile-icon-link:hover {
  transform: scale(1.2);
}

.mobile-icon {
  width: 28px;
  height: 28px;
}

@keyframes jiroFloatStart {
  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-8px) translateX(6px) rotate(-2deg) scale(1.03);
  }
  50% {
    transform: translateY(-12px) translateX(-6px) rotate(2deg) scale(1.05);
  }
  75% {
    transform: translateY(-6px) translateX(4px) rotate(-1.5deg) scale(1.02);
  }
}

@keyframes jiroFloatEnd {
  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-6px) translateX(-8px) rotate(1.5deg) scale(1.02);
  }
  50% {
    transform: translateY(-10px) translateX(8px) rotate(-2deg) scale(1.04);
  }
  75% {
    transform: translateY(-4px) translateX(-6px) rotate(1deg) scale(1.01);
  }
}

/* ====================================== Product Page ===================================== */

section.product-detail-section {
  background-color: var(--cornsilk-400);
  min-height: 100vh;
  padding: 20px 0;
}

.product-detail-section .product-detail {
  display: flex;
  gap: 20px;
}

.product-detail-section .product-detail__left {
  width: 50%;
  max-width: 100%;
}

.product-detail-section .product-detail__right {
  background-color: #fff;
  border-radius: 40px;
  padding: 2rem;
  width: 50%;
}

/* Product gallery - main */
.product-detail-section .product-gallery-main {
  width: 100%;
  height: 520px; /* increase main gallery height */
}

.product-detail-section .product-gallery-main .swiper-wrapper,
.product-detail-section .product-gallery-main .swiper-slide {
  height: 100%;
}

.product-detail-section .product-gallery-main .img-wrap {
  height: 100%;
  display: flex; /* center image in slide */
  align-items: center;
  justify-content: center;
}

.product-detail-section .product-gallery-main .img-wrap img {
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain; /* keep image ratio while maximizing size */
}

@media (max-width: 768px) {
  .product-detail-section .product-gallery-main {
    height: 480px; /* keep mobile comfortable */
  }
}

/* Product gallery - thumbs */
.product-detail-section .product-gallery-thumbs {
  width: 100%;
  margin-top: 16px;
}

.product-detail-section .product-gallery-thumbs .swiper-wrapper {
  justify-content: center; /* center the row of thumbs */
}

.product-detail-section .product-gallery-thumbs .swiper-slide {
  width: 96px; /* fixed square thumb */
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.product-detail-section .product-gallery-thumbs .swiper-slide img {
  width: 80%;
  height: 80%;
  object-fit: cover; /* crop to fill square */
  display: block;
}

/* Active thumb outline like the screenshot */
.product-detail-section .product-gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  box-shadow: 0 0 0 2px #111 inset;
}

@media (max-width: 768px) {
  .product-detail-section .product-gallery-thumbs .swiper-slide {
    width: 78px;
    height: 78px;
    border-radius: 12px;
  }
}

/* Product Detail Right Side Styles */
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.product-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0;
  line-height: 1.2;
  flex: 1;
  margin-right: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1.2rem;
  color: #ddd;
  transition: color 0.2s ease;
}

.star.filled {
  color: var(--sandy-brown-400);
}

.star.partial {
  background: linear-gradient(90deg, var(--sandy-brown-400) 50%, #ddd 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-text {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.product-description {
  margin-bottom: 1rem;
}

.product-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.product-pricing {
  margin-bottom: 2rem;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d2d2d;
}

.discount-banner {
  background: var(--powder-blue-200);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sandy-brown-700);
}

.signup-link {
  color: var(--sandy-brown-700);
  text-decoration: underline;
  font-weight: 700;
}

.signup-link:hover {
  color: var(--sandy-brown-600);
}

.size-selection {
  margin-bottom: 2rem;
}

.size-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 1rem;
}

.size-visual {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.can-illustration {
  position: relative;
  width: 60px;
  height: 80px;
}

.can-body {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.bubbles {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 20px;
}

.bubble {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: float 2s ease-in-out infinite;
}

.bubble:nth-child(1) {
  top: 5px;
  left: 10px;
  animation-delay: 0s;
}

.bubble:nth-child(2) {
  top: 8px;
  left: 20px;
  animation-delay: 0.5s;
}

.bubble:nth-child(3) {
  top: 6px;
  left: 30px;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

.size-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4ade80;
}

.purchase-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.purchase-option {
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
}

.purchase-option:last-child {
  margin-bottom: 0;
}

.option-label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: border-color 0.3s ease;
}

.option-label:has(input[type='radio']:checked) {
  border-color: #000;
}

.option-label input[type='radio'] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.option-label__left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.option-label input[type='radio']:checked + .radio-custom {
  border-color: var(--sandy-brown-600);
  background: var(--sandy-brown-600);
}

.option-label input[type='radio']:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.option-text {
  color: #2d2d2d;
  font-size: 1rem;
  transition: font-weight 0.3s ease;
}

.option-label:has(input[type='radio']:checked) .option-text {
  font-weight: 700;
}

.option-price {
  font-size: 1rem;
  font-weight: 500;
  color: #2d2d2d;
  margin-left: 28px;
  transition: font-weight 0.3s ease;
}

.option-label:has(input[type='radio']:checked) .option-price {
  font-weight: 700;
}

.option-pricing {
  margin-left: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.original-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}

.discounted-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d2d2d;
}

.subscribe-benefits {
  margin-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.benefit-icon {
  font-size: 1rem;
}

.more-payment {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: 0.5rem;
}

details {
  padding: 14px 0;
}

summary {
  font-weight: bold;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none; /* Ẩn dấu mũi tên mặc định */
}

summary:after {
  content: '➖';
  float: right;
  transition: transform 0.3s;
}

details[open] summary:after {
  content: '➕';
}

details p {
  margin-top: 10px;
  font-size: 14px;
  color: #616467;
}

.product-detail__right > details {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.remedy-lovers__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.remedy-lovers__list {
  display: flex;
  gap: 8px;
  overflow: auto !important;
  scroll-behavior: smooth;
  width: 100%;
  z-index: 0;
}

.remedy-lovers__list .remedy-lovers__item video {
  border-radius: 135.2px;
  border: 1px solid rgb(255, 255, 255);
  padding: 2px;
  height: 104px;
  width: 104px;
  object-fit: cover;
}

/* FAQ Section */
.faq-section {
  margin-top: 4rem;
}

.faq-section .faq-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.faq-section .faq-content {
  border-radius: 24px;
  background-color: white;
  padding: 2rem;
}

/* Responsive Design for Product Detail */
@media screen and (max-width: 768px) {
  .product-detail-section .product-detail {
    flex-direction: column;
    gap: 2rem;
  }

  .product-detail-section .product-detail__left,
  .product-detail-section .product-detail__right {
    width: 100%;
    max-width: 100%;
  }

  .product-detail-section .product-detail__right {
    padding: 1.25rem;
    border-radius: 24px;
  }

  /* Override gallery height on small screens for better fit */
  .product-detail-section .product-gallery-main {
    height: 360px;
  }

  .product-header {
    flex-direction: column;
    gap: 1rem;
  }

  .product-title {
    font-size: 2rem;
    margin-right: 0;
  }

  .price-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .product-price {
    font-size: 2rem;
  }

  .size-visual {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .subscribe-benefits {
    margin-left: 0;
  }

  .option-pricing {
    margin-left: 0;
  }

  .option-price {
    margin-left: 0;
  }
}

/* ====================================== Responsive Design ===================================== */

/* Desktops and medium screens */
@media screen and (max-width: 1440px) {
  .container {
    padding: 0 80px;
  }

  .scroll-header .scroll-title {
    font-size: 4rem;
    max-width: 60%;
  }

  .scroll-element-top-left {
    top: -102px;
    left: 24%;
  }

  .scroll-element-left,
  .scroll-element-right {
    width: 25%;
  }

  .scroll-element-left {
    left: -3%;
  }

  .scroll-element-right {
    right: 0;
    top: 0;
  }

  .jiro-run-section__wrapper-start {
    --path: path(
      'M821 242C921 259 1046 306 1046 488 1006 543 969 562 855 637 829 652 783 684 744 705'
    );
  }
}

/* Tablets and small laptops */
@media screen and (max-width: 1025px) {
  .container {
    padding: 0 50px;
  }

  .section {
    padding: 80px 0;
  }

  .hero-jiho {
    max-width: 40%;
    top: 20%;
  }

  .hero-section {
    background-image: url('./images/hero-section/hero-doc.png');
  }

  .jiro-run-section__wrapper-end {
    --path: path('M179 268C215 316 89 432 20 494-64 565-132 618-242 650');

    bottom: 38%;
    right: 10%;
  }

  .jiro-run-section__wrapper-start {
    --path: path(
      'M611 235C731 275 744 322 724 397 718 419 697 426 655 442 617 464 583 505 548 515'
    );
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .header-icons {
    gap: 1rem;
  }

  /* Section heading responsive (tablet) */
  .sec-heading {
    margin-bottom: 20px;
  }
  .sec-heading__title {
    font-size: 3rem;
  }
  .sec-heading__desc {
    font-size: 1.125rem;
  }

  .about-us-section .content__creator-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Features Section Tablet */
  .features-section .content__features-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: center;
    justify-content: center;
  }

  .features-section.py-section {
    padding-top: 0;
  }

  /* Brand Section Tablet */
  .brand-section .content__brand-list {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-card {
    min-width: 240px;
    height: 350px;
  }

  .brand-card__title {
    font-size: 2.2rem;
  }

  .feature-card__icon {
    width: 120px;
    height: 120px;
  }

  .feature-card__img {
    width: 70px;
    object-fit: contain;
  }

  .creator-card__media {
    height: 360px;
  }

  .creator-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 991px) {
  :root {
    --line-banner-height: 48px;
  }

  .line-banner {
    font-size: 1rem;
    line-height: 190%;
  }

  .line-banner-inner span {
    padding-right: 40px;
  }

  .hero-section .sec-heading__desc {
    max-width: 20rem;
  }

  .logo-img {
    height: 55px;
  }
  .header-nav {
    display: none;
  }

  .header-icons {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-overlay {
    padding-top: calc(var(--line-banner-height) + 2rem);
  }
}

/* Small tablets and large phones */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero-jiho {
    max-width: 50%;
    top: 20%;
  }

  .logo-img {
    height: 50px;
  }

  .jiro-run-section__wrapper-start,
  .jiro-run-section__wrapper-end {
    offset-path: unset;
    width: 30%;
  }

  .jiro-run-section__wrapper-start {
    right: 20%;
    top: 10%;
    animation: jiroFloatStart 4.5s ease-in-out infinite;
  }

  .jiro-run-section__wrapper-end {
    bottom: 10%;
    width: 50%;
    animation: jiroFloatEnd 5s ease-in-out infinite;
  }

  .mobile-menu-overlay {
    padding: 1.5rem;
    padding-top: calc(var(--line-banner-height) + 1.5rem);
  }

  .mobile-nav-menu li a {
    font-size: 1.3rem;
  }

  .brand-section .content__brand-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .brand-card {
    width: calc(50% - 10px);
    min-width: 200px;
    height: 320px;
  }

  .brand-card__title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .brand-card__desc {
    font-size: 0.9rem;
  }

  /* Section heading responsive (small tablets / large phones) */
  .sec-heading {
    margin-bottom: 18px;
  }
  .sec-heading__title {
    font-size: 2.5rem;
  }
  .sec-heading__desc {
    font-size: 1rem;
  }

  .copyright {
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .hero-list-produts {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .product-section .hero-list-produts .img_mb {
    display: block;
  }

  .hero__item:has(.img_mb) .hero__item-img:not(.img_mb) {
    display: none;
  }

  .footer .container .col-4 {
    width: 100%;
    padding: 0;
  }

  .footer-nav {
    justify-content: center;
  }

  .social-media {
    justify-content: center;
  }

  .newsletter-form__bottom {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 640px) {
  :root {
    --line-banner-height: 36px;
    --header-height: 56px;
  }

  .hero-jiho {
    max-width: 70%;
    top: 20%;
  }

  .scroll-header .scroll-title {
    font-size: 2rem;
  }
  .hero-section {
    height: 70vh;
  }

  .line-banner {
    font-size: 0.75rem;
  }

  .line-banner-inner span {
    padding-right: 40px;
  }

  .logo-img {
    height: 45px;
  }

  .mobile-menu-overlay {
    padding: 1rem;
  }

  .mobile-nav-menu li a {
    font-size: 1.2rem;
  }

  .mobile-icons {
    gap: 1.5rem;
  }

  .mobile-icon {
    width: 24px;
    height: 24px;
  }
  .py-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sec-heading {
    margin-bottom: 16px;
  }
  .sec-heading__title {
    font-size: 2.2rem;
  }
  .sec-heading__desc {
    font-size: 0.95rem;
  }

  .about-us-section .content__creator-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .creator-card__media {
    height: 300px;
  }

  .creator-card__body {
    padding: 14px;
  }

  .creator-card__footer {
    gap: 12px;
    padding: 10px 14px 14px;
  }

  .creator-list {
    grid-template-columns: 1fr;
  }

  .features-section .content__features-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-section .content__brand-list {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .brand-card {
    width: 100%;
    max-width: 320px;
    height: 280px;
    flex: none;
  }

  .brand-card__title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .brand-card__desc {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .feature-card__icon {
    width: 120px;
    height: 120px;
  }

  .feature-card__title {
    font-size: 1.2rem;
  }

  .feature-card__desc {
    font-size: 0.9rem;
  }

  .brand-card:hover {
    flex: auto;
  }

  .footer .container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .newsletter-form__bottom {
    flex-direction: row;
  }

  .mascot-image {
    max-width: 40%;
  }
}

/* Mobile devices */
@media screen and (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .logo-img {
    height: 40px;
  }

  .mobile-menu-overlay {
    padding: 0.8rem;
  }

  .mobile-nav-menu li a {
    font-size: 1.1rem;
    padding: 0.8rem 0;
  }

  .mobile-icons {
    gap: 1rem;
  }

  .sec-heading {
    margin-bottom: 14px;
  }
  .sec-heading__title {
    font-size: 1.5rem;
  }
  .sec-heading__desc {
    font-size: 0.9rem;
  }

  .scroll-element-top-left {
    top: -20%;
  }

  .scroll-element-left,
  .scroll-element-right {
    width: 25%;
  }

  .scroll-element-left {
    left: -6%;
  }

  .scroll-element-bottom-right {
    bottom: 10px;
  }

  .features-section .content__features-list {
    gap: 38px;
  }

  .feature-card__icon {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
  }

  .feature-card__img {
    width: 60px;
    object-fit: contain;
  }

  .feature-card__title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  /* Brand Section Extra Small Mobile */
  .brand-section .content__brand-list {
    gap: 16px;
  }

  .brand-card {
    height: 250px;
  }

  .brand-card__title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .brand-card__desc {
    font-size: 0.85rem;
    line-height: 1.2;
  }

  .feature-card__desc {
    font-size: 0.85rem;
  }
}

/* Breadcrumbs Styles */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  padding-bottom: 20px;
}

.breadcrumb-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #333;
}

.breadcrumb-separator {
  color: #999;
  font-weight: 500;
}

.breadcrumb-current {
  color: #333;
  font-weight: 500;
}
