.elementor-4537 .elementor-element.elementor-element-e61ddc0{--display:flex;--min-height:80vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4537 .elementor-element.elementor-element-b8e2224 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(max-width:767px){.elementor-4537 .elementor-element.elementor-element-e61ddc0{--width:100%;--min-height:100vh;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0%;--margin-bottom:0%;--margin-left:0%;--margin-right:0%;--padding-top:0%;--padding-bottom:0%;--padding-left:0%;--padding-right:0%;}.elementor-4537 .elementor-element.elementor-element-b8e2224 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}}@media(min-width:768px){.elementor-4537 .elementor-element.elementor-element-e61ddc0{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-b8e2224 */@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;600&display=swap');

/* ==============================
   MENU CONTAINER
============================== */
.menu {
  width: 100%;
  height: 100vh;
  padding-top: 10px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;

  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch; /* Force all pills full width */

  font-family: 'Jost', sans-serif;
}

/* ==============================
   MAIN MENU PILLS
============================== */
.menu-link,
.menu-item > summary {
  width: 100%;
  text-align: center;

  padding: 12px 40px;
  border-radius: 999px;

  background: #C62F2F;
  color: #fff;

  font-size: 15px;
  font-weight: 400;
  text-decoration: none;

  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

/* REMOVE DEFAULT ARROWS */
summary::-webkit-details-marker {
  display: none;
}
summary::marker {
  content: "";
}

/* Hover MAIN menu */
.menu-link:hover,
.menu-item > summary:hover {
  background: #fff;
  color: #C62F2F;
}

/* ==============================
   SHOP ACTIVE STATE (NO SIZE CHANGE)
============================== */
.menu-item.shop > summary {
  position: relative;
  text-align: center;
  padding-left: 40px;
  padding-right: 40px; /* keeps text centered */
}

.menu-item.shop[open] > summary {
  background: #fff;
  color: #C62F2F;
}

/* PLUS / MINUS ICON (SHOP) */
.menu-item.shop > summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 14px;
  font-weight: 400;
}

.menu-item.shop[open] > summary::after {
  content: "−";
}

/* ==============================
   SUBMENU CONTAINER
============================== */
.submenu {
  width: 100%;
  margin-top: 12px;

  background: #C62F2F;
  border-radius: 28px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);

  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* Progressive reveal smooth animation */
.menu-item[open] .submenu {
  max-height: 100vh;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* ==============================
   SUBMENU PILLS
============================== */
.submenu a,
.submenu-summary {
  padding: 10px 40px;
  border-radius: 999px;

  background: #fff;
  color: #C62F2F;

  font-size: 14px;
  font-weight: 500;

  text-align: center;
  text-decoration: none;
  cursor: pointer;

  opacity: 0;
  transform: translateY(6px);
  animation: revealItem 0.35s ease forwards;
}

/* Hover SUBMENU */
.submenu a:hover,
.submenu-summary:hover {
  background: #e13b3b;
  color: #fff;
}

/* ==============================
   CEILING FANS (+ / -)
============================== */
.submenu-item > summary {
  position: relative;
}

.submenu-item > summary::after {
  content: "+";
  position: absolute;
  right: 10px;
  font-size: 14px;
}

.submenu-item[open] > summary::after {
  content: "−";
}

/* ==============================
   INNER SUBMENU
============================== */
.submenu-inner {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==============================
   VIEW ALL
============================== */
.view-all {
  border: 1px solid #fff;
}

/* ==============================
   HIDE OTHER ITEMS WHEN INNER OPEN
============================== */
.submenu details[open] ~ a,
.submenu details[open] ~ details,
.submenu details[open] ~ .view-all {
  display: none;
}

/* ==============================
   PROGRESSIVE REVEAL KEYFRAME
============================== */
@keyframes revealItem {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger each submenu item */
.submenu > *:nth-child(1) { animation-delay: 0.05s; }
.submenu > *:nth-child(2) { animation-delay: 0.1s; }
.submenu > *:nth-child(3) { animation-delay: 0.15s; }
.submenu > *:nth-child(4) { animation-delay: 0.2s; }
.submenu > *:nth-child(5) { animation-delay: 0.25s; }

.submenu-inner > *:nth-child(1) { animation-delay: 0.05s; }
.submenu-inner > *:nth-child(2) { animation-delay: 0.1s; }
.submenu-inner > *:nth-child(3) { animation-delay: 0.15s; }
.submenu-inner > *:nth-child(4) { animation-delay: 0.2s; }
.submenu-inner > *:nth-child(5) { animation-delay: 0.25s; }
/* ==============================
   TOP-LEVEL PILL ANIMATION
============================== */
.menu > * {
  opacity: 0;
  transform: translateY(6px);
  animation: revealItem 0.35s ease forwards;
}

/* ==============================
   TOP-LEVEL PILL ANIMATION (SLOWER)
============================== */
.menu > * {
  opacity: 0;
  transform: translateY(8px); /* slightly more movement for smooth effect */
  animation: revealItem 0.5s ease forwards; /* slower duration */
}

/* Stagger top-level items a little more for smooth flow */
.menu > *:nth-child(1) { animation-delay: 0.1s; }
.menu > *:nth-child(2) { animation-delay: 0.2s; }
.menu > *:nth-child(3) { animation-delay: 0.3s; }
.menu > *:nth-child(4) { animation-delay: 0.4s; }
.menu > *:nth-child(5) { animation-delay: 0.5s; }
.menu > *:nth-child(6) { animation-delay: 0.6s; }
.menu > *:nth-child(7) { animation-delay: 0.7s; }
.menu > *:nth-child(8) { animation-delay: 0.8s; }
.menu-item.shop > summary::after {
  display: inline-block;
  transition: transform 0.3s ease;
}
.menu-item[open] .submenu {
  transform: translateY(0) scale(0.98);
  animation: scaleUp 0.35s ease forwards;
}
@keyframes scaleUp {
  to { transform: translateY(0) scale(1); }
}
.menu-item > summary::after,
.submenu-item > summary::after {
  transition: transform 0.3s ease, scale 0.3s ease;
}
.menu-item[open] > summary::after,
.submenu-item[open] > summary::after {
  transform: rotate(360deg) scale(1);
}/* End custom CSS */