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

:root {
  --amber: #f5a800;
  --amber-hover: #e09600;
  --amber-dark: #c87d00;
  --red: #c0392b;
  --red-hover: #a93226;
  --cream: #faf7f2;
  --warm-cream: #f5f0e8;
  --white: #ffffff;
  --charcoal: #2c2c2c;
  --muted: #777777;
  --border: #e8e2d9;
  --font: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
}

.btn-watch {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
}
.btn-watch:hover {
  background: var(--red-hover);
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 68px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar-logo img {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 38%;
  border: 2px solid rgba(245, 168, 0, 0.45);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text strong {
  color: var(--red);
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -1px;
}
.brand-text small {
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.navbar-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.15s ease;
}
.navbar-nav a:hover {
  color: var(--red);
}
.navbar-nav a.active {
  color: var(--red);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 560px;
  background: var(--cream);
  overflow: hidden;
}
.hero-slider-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-bg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #f5a800 0%, #e8870a 100%);
  clip-path: polygon(0 0, 85% 0, 65% 100%, 0 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 40px;
  width: 100%;
  min-height: 560px;
}

.hero-product {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-product-visual {
  width: 280px;
  height: 380px;
  background: var(--white);
  border-radius: 50% 50% 45% 45% / 40% 40% 60% 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  padding: 10px;
}
.hero-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.product-badge-overlay {
  position: absolute;
  top: 30px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 10;
}
.product-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  font-style: italic;
  line-height: 1.1;
}

.hero-copy {
  padding: 40px 0;
}
.hero-copy h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--red);
  line-height: 1.15;
  margin-bottom: 28px;
}
.hero-copy h1 em {
  font-style: normal;
  font-weight: 900;
}

.hero-carousel-dots {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active {
  background: var(--amber);
}

/* ── PRODUCT CAROUSEL ("For X") ── */
.product-section {
  background: var(--cream);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.product-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.product-slide {
  display: none;
  align-items: center;
  gap: 40px;
  position: relative;
}
.product-slide.active {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.guide-path {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  height: 2px;
  border-top: 2px dashed rgba(212, 150, 10, 0.5);
  z-index: 0;
}

.food-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, #e8870a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 12px rgba(245, 168, 0, 0.15);
  margin: 0 auto;
}
.food-inner {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.food-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.bottle-visual {
  width: 160px;
  height: 240px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}
.bottle-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-arrows {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber);
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.arrow-btn:hover {
  background: var(--amber-hover);
}

.product-copy {
  position: relative;
  z-index: 1;
}
.product-copy .for-label {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}
.product-copy .main-heading {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 16px;
}
.product-copy .sub-heading {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--red);
  margin-bottom: 32px;
}

/* ── WORLD OF GIRI (VIDEO CARDS ON AMBER) ── */
.video-section {
  background: var(--amber);
  padding: 80px 60px 100px;
  position: relative;
  overflow: hidden;
}
.section-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
}
.video-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.video-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.video-card:hover {
  transform: translateY(-2px);
}
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #1a1a1a;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.play-icon {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid var(--amber);
  margin-left: 4px;
}
.video-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.video-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 42px;
  flex: 1;
}

.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 168, 0, 0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.video-nav:hover {
  background: var(--amber-hover);
}
.video-nav.prev {
  left: -22px;
}
.video-nav.next {
  right: -22px;
}

/* ── TABS (ABOUT SECTION) ── */
.about-section {
  background: var(--warm-cream);
  padding: 80px 60px;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 32px;
  text-align: center;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--charcoal);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.tab-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.about-card img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 16px;
}
.about-card p {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── QUALITY FEATURES ── */
.features-section {
  background: var(--cream);
  padding: 80px 60px;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--warm-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--red);
}
.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ── CONTACT FORM ── */
.contact-section {
  background: var(--white);
  padding: 80px 60px;
}
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-copy h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 16px;
}
.contact-copy p {
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 32px;
  line-height: 1.6;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-list li {
  display: flex;
  gap: 16px;
  align-items: center;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.contact-info-list span {
  font-size: 15px;
  font-weight: 500;
}

.contact-form {
  background: var(--cream);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid #d4c9b8;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── FOOTER UPPER ── */
.footer-upper {
  background: var(--white);
  padding: 64px 60px 48px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.2fr 1fr 0.9fr;
  gap: 40px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--charcoal);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.15s;
}
.footer-col ul li a:hover {
  color: var(--red);
}
.footer-col ul li a.bold-link {
  font-weight: 700;
  color: var(--charcoal);
}
.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-brand-logo {
  display: block;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 38%;
  border: 3px solid rgba(245, 168, 0, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin-bottom: 10px;
}
.footer-parent {
  font-size: 28px;
  font-weight: 900;
  color: #1a9e6e;
  letter-spacing: -1px;
}
.footer-parent span {
  color: #333;
}
.footer-parent-sub {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  letter-spacing: 1px;
}

/* ── FOOTER BRAND SIGN-OFF ── */
.footer-brand-showcase {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 36px 60px 52px;
  text-align: center;
}
.footer-brand-showcase::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -72px;
  height: 150px;
  background: linear-gradient(135deg, var(--amber) 0%, #e8870a 100%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.footer-brand-showcase-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-brand-showcase img {
  width: clamp(130px, 18vw, 190px);
  height: clamp(130px, 18vw, 190px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 38%;
  border: 5px solid rgba(245, 168, 0, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  margin-top: 10px;
}
.footer-parent-lockup {
  text-align: center;
}
.footer-parent-lockup h2 {
  color: #139f94;
  font-size: clamp(58px, 12vw, 132px);
  font-weight: 900;
  letter-spacing: -6px;
  line-height: 0.78;
  text-transform: uppercase;
}
.footer-parent-lockup p {
  color: var(--charcoal);
  font-size: clamp(26px, 5vw, 48px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}
.footer-brand-tagline {
  color: var(--red);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ── FOOTER BOTTOM ── */
.footer-bottom {
  background: var(--amber);
  padding: 20px 60px;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright {
  font-size: 13px;
  color: var(--white);
  font-weight: 400;
}
.social-icons {
  display: flex;
  gap: 20px;
}
.social-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.social-icon:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 40px 20px;
  }
  .hero-product-visual {
    margin: 0 auto;
  }
  .product-slide.active {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .product-copy .main-heading {
    font-size: 40px;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .navbar {
    padding: 0 16px;
    height: 64px;
  }
  .navbar-logo {
    gap: 8px;
  }
  .navbar-logo img {
    width: 44px;
    height: 44px;
    border-width: 1px;
  }
  .brand-text strong {
    font-size: 24px;
  }
  .brand-text small {
    font-size: 8px;
  }
  .navbar-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
  }
  .navbar-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .navbar-nav a {
    display: block;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 15px;
  }
  .navbar-nav a:hover,
  .navbar-nav a.active {
    background: var(--warm-cream);
  }
  .mobile-menu-btn {
    display: flex;
    padding: 8px;
  }
  .hero {
    min-height: auto;
  }
  .hero-bg-shape {
    width: 100%;
    height: 48%;
    top: auto;
    bottom: 0;
    clip-path: none;
    opacity: 0.92;
  }
  .hero-content {
    min-height: auto;
    gap: 24px;
    padding: 44px 20px 28px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero-copy h1 {
    font-size: clamp(30px, 9vw, 38px);
    margin-bottom: 22px;
  }
  .hero-product-visual {
    width: min(68vw, 230px);
    height: min(88vw, 310px);
  }
  .product-badge-overlay {
    top: 22px;
    padding: 7px 12px;
  }
  .product-name {
    font-size: 19px;
  }
  .hero-carousel-dots {
    justify-content: center;
    margin-top: 8px;
  }
  .product-section,
  .video-section,
  .about-section,
  .features-section,
  .contact-section {
    padding: 56px 20px;
  }
  .product-slide.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .food-circle {
    width: 180px;
    height: 180px;
  }
  .food-inner {
    width: 150px;
    height: 150px;
  }
  .bottle-visual {
    width: 120px;
    height: 180px;
    margin-bottom: 10px;
  }
  .carousel-arrows {
    margin-top: 4px;
  }
  .arrow-btn {
    width: 44px;
    height: 44px;
  }
  .product-copy .for-label {
    font-size: 28px;
  }
  .product-copy .main-heading {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .product-copy .sub-heading {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .guide-path {
    display: none;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .video-card {
    border-radius: 16px;
  }
  .video-body {
    padding: 18px;
  }
  .about-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .tab-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0 -20px 28px;
    padding: 0 20px 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tab-nav::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    flex: 0 0 auto;
    font-size: 13px;
    padding: 8px 16px;
  }
  .about-card {
    padding: 24px;
    gap: 24px;
    border-radius: 16px;
    text-align: left;
  }
  .about-card h3 {
    font-size: 22px;
  }
  .about-card img {
    aspect-ratio: 16/11;
    order: -1;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-card {
    padding: 26px 20px;
  }
  .contact-copy h2 {
    font-size: 28px;
  }
  .contact-inner {
    gap: 32px;
  }
  .contact-info-list li {
    align-items: flex-start;
  }
  .contact-form {
    padding: 24px;
    border-radius: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-upper {
    padding: 40px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand-logo {
    width: 88px;
    height: 88px;
  }
  .footer-bottom {
    padding: 20px;
  }
  .footer-brand-showcase {
    padding: 44px 20px 56px;
  }
  .footer-brand-showcase-inner {
    gap: 12px;
  }
  .footer-brand-showcase img {
    width: 132px;
    height: 132px;
    border-width: 4px;
  }
  .footer-parent-lockup h2 {
    font-size: clamp(54px, 18vw, 80px);
    letter-spacing: -3px;
  }
  .footer-parent-lockup p {
    font-size: clamp(24px, 8vw, 34px);
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand-text small {
    max-width: 74px;
  }
  .hero-content {
    padding: 36px 16px 24px;
  }
  .product-section,
  .video-section,
  .about-section,
  .features-section,
  .contact-section {
    padding: 48px 16px;
  }
  .about-card,
  .contact-form {
    padding: 20px;
  }
  .features-section h2[style] {
    font-size: 28px !important;
    line-height: 1.18;
  }
  .social-icons {
    gap: 12px;
  }
}
