/* menu.css - SP Menu Overlay */
/* Figma node: 537:1812 (menu_sp) */

/* ================================================
   Menu Overlay
   ================================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.menu-overlay--visible {
  display: block;
}

.menu-overlay__inner {
  background-color: #FF1100;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* ================================================
   Menu Header (657:5920)
   ================================================ */
.menu-header {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 15px 12px;
  box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.menu-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.menu-header__logo-link {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-header__logo-img {
  width: 61.2px;
  height: 34px;
  object-fit: cover;
}

.menu-header__logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.menu-header__tagline {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  color: #1e1e1e;
}

.menu-header__brand-logo {
  width: 102px;
  height: 14px;
  overflow: hidden;
}

.menu-header__brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Close Button */
.menu-close-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.menu-close-btn__inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  width: 36px;
}

.menu-close-btn__icon-wrap {
  width: 32px;
  height: 33px;
  overflow: hidden;
  position: relative;
}

.menu-close-btn__icon-bg {
  position: absolute;
  top: 21.21%;
  left: 12.5%;
  right: 12.5%;
  bottom: 24.24%;
  background: #FF1100;
  border-radius: 1px;
}

.menu-close-btn__icon-x {
  position: absolute;
  top: 24.24%;
  left: 25%;
  right: 25%;
  bottom: 27.27%;
}

.menu-close-btn__icon-x img {
  width: 100%;
  height: 100%;
  display: block;
}

.menu-close-btn__text {
  font-size: 9px;
  font-weight: 400;
  color: #1e1e1e;
  text-align: center;
  line-height: normal;
}

/* Tab Switcher in Menu Header */
.menu-header__tabs {
  display: flex;
  height: 60px;
  align-items: center;
  padding-bottom: 1px;
  width: 100%;
}

.menu-header__tab-wrap {
  display: flex;
  flex: 1;
  height: 50px;
  padding: 5px;
  background: #F2F0E8;
  border-radius: 40px;
}

.menu-header__tab {
  display: flex;
  flex: 1;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
}

.menu-header__tab--active {
  background: #FF1100;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}

.menu-header__tab--inactive {
  background: #F2F0E8;
}

.menu-header__tab-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.menu-header__tab-text {
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.menu-header__tab-text--active {
  font-weight: 700;
  color: #fff;
}

.menu-header__tab-text--inactive {
  font-weight: 400;
  color: #797979;
}

/* ================================================
   Menu Content (538:1800)
   ================================================ */
.menu-content {
  flex: 1;
  min-width: 0;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Logo + Search */
.menu-logo-search {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.menu-parkspark-logo {
  height: 37px;
  width: 100%;
}

.menu-parkspark-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.menu-search-form {
  display: flex;
  border: 1px solid #fff;
  border-radius: 5px;
  height: 60px;
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1);
  width: 100%;
}

.menu-search-input-wrapper {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  height: 60px;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  border-radius: 5px 0 0 5px;
}

.menu-search-input {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  border: none;
  outline: none;
}

.menu-search-input::placeholder {
  color: #797979;
}

.menu-search-btn {
  height: 60px;
  padding: 10px 20px;
  background: #FF1100;
  border-radius: 0 5px 5px 0;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-search-btn span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 16px;
  text-align: center;
}

/* ================================================
   Category Cards (2-column grid)
   ================================================ */
.menu-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
}

.menu-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1);
  width: calc(50% - 5px);
  height: 136px;
  text-decoration: none;
}

.menu-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-card__icon img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

.menu-card__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  color: #FF1100;
  text-align: center;
  white-space: nowrap;
}

/* ================================================
   Menu Footer Links
   ================================================ */
.menu-footer-links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-footer-video {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 5px 16px 5px 5px;
  text-decoration: none;
  align-self: flex-start;
}

.menu-footer-video__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.menu-footer-video__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.menu-footer-video__text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  text-align: center;
}

.menu-footer-external {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-footer-ext-link {
  display: flex;
  gap: 5px;
  align-items: center;
  text-decoration: none;
}

.menu-footer-ext-link__text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.menu-footer-ext-link__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.menu-footer-ext-link__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.menu-footer-separator {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
