/* Mobile: All | # Items Row above search bar */
@media (max-width: 768px) {
  .mobile-stock-row {
    text-align: center;
    padding: 0.5rem 0 0.5rem 0;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--white);
    border-bottom: 1px solid var(--border-gray);
    margin-bottom: 1.2rem;
  }
  .mobile-stock-ready {
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.01em;
  }
}
/* Mobile Store Button in Dropdown */
#site-nav .mobile-store-btn-wrap {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
#site-nav .mobile-store-btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary-black);
  font-weight: 600;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
}
#site-nav ul a {
  background: none !important;
  color: var(--white) !important;
  font-weight: 400 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 1rem !important;
  letter-spacing: normal !important;
  transition: none !important;
}
@media (max-width: 768px) {
  #site-nav {
    padding-bottom: 1.5rem;
  }
}
/* MM Website - Black Theme Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
:root {
  --header-h: 80px;
  --header-h-small: 64px;
  --primary-black: #000000;
  --secondary-black: #181818;
  --accent-gray: #333333;
  --light-gray: #919191;
  --white: #ffffff;
  --border-gray: #ffffff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--white);
  background-color: var(--primary-black);
}
/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--primary-black);
  border-bottom: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}
header.shrink {
  height: var(--header-h-small);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.logo {
  z-index: 1001;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo a {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
}
header.shrink .logo a {
  font-size: 2rem;
}
/* Mobile Menu Button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  width: 35px;
  height: 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
/* Navigation - Desktop */
#site-nav {
  display: none;
}
.desktop-nav-dropdown {
  display: block;
}
#site-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
#site-nav li {
  position: relative;
  padding-right: 2rem;
}
#site-nav li:last-child {
  padding-right: 0;
  padding-left: 0rem;
}
#site-nav li:not(:last-child):not(:nth-last-child(2))::after {
  display: none;
}
#site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
#site-nav li:last-child a {
  background: var(--white);
  color: var(--primary-black);
  padding: 8px 16px;
  border-radius: 4px;
}
#site-nav li:last-child a:hover {
  background: var(--light-gray);
  color: var(--primary-black);
}
#site-nav li:last-child a::after {
  display: none;
}
#site-nav a:hover {
  color: var(--light-gray);
}
#site-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}
#site-nav a:hover::after {
  width: 100%;
}
/* Cart Button */
.cart-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}
.cart-btn:hover {
  color: var(--light-gray);
}
.cart-count {
  background: var(--white);
  color: var(--primary-black);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}
/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}
.hero-content p {
  font-size: 1.2rem;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto 2rem;
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--white);
  color: var(--primary-black);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
}
.btn:hover {
  background: transparent;
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary-black);
}
/* Sections */
.section {
  padding: 80px 2rem;
}
.section:nth-child(even) {
  background: var(--secondary-black);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--white);
}
.section p {
  font-size: 1.1rem;
  color: var(--light-gray);
  max-width: 800px;
  margin: 0 auto 2rem;
}
/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card {
  background: var(--accent-gray);
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.card p {
  color: var(--light-gray);
}
/* Footer */
footer {
  background: var(--secondary-black);
  border-top: 1px solid var(--border-gray);
  padding: 2.5rem 2rem 1.5rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-column h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-column p {
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.footer-column ul {
  list-style: none;
}
.footer-column li {
  margin-bottom: 0.5rem;
}
.footer-column a {
  color: var(--light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.9rem;
}
.footer-column a:hover {
  color: var(--white);
  transform: translateX(3px);
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
.footer-social a:hover {
  transform: scale(1.2) translateX(0);
}
.footer-contact-info p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom .footer-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.footer-bottom p {
  color: var(--light-gray);
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--light-gray);
  font-size: 0.9rem;
}
/* Desktop Header Layout */
.desktop-mm-main,
.desktop-right-nav {
  display: flex;
}
/* Hide mobile store button wrapper on desktop */
.mobile-store-btn-wrap {
  display: none;
}
/* Hide nav on store pages (when desktop-mm-main exists) */
header:has(.desktop-mm-main) #site-nav {
  display: none !important;
}
/* Hide nav on services pages */
header.services-page-header #site-nav {
  display: none !important;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .desktop-nav-dropdown {
    display: none !important;
  }
  .menu-btn {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-wrap {
    justify-content: flex-start;
  }
  .desktop-mm-main,
  .desktop-right-nav {
    display: none !important;
  }
  #site-nav {
    display: block !important;
    position: absolute !important;
    top: var(--header-h) !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--primary-black);
    border-top: 1px solid var(--border-gray);
    transform: translateY(-100%) !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    margin-top: 0 !important;
  }
  #site-nav.active {
    transform: translateY(0) !important;
    opacity: 1;
    visibility: visible;
  }
  #site-nav ul {
    flex-direction: column !important;
    padding: 2rem 1.5rem 1.5rem 1.5rem !important;
    gap: 1.25rem !important;
    margin: 0 !important;
  }
  #site-nav ul li {
    padding: 0.5rem 0 !important;
    text-align: left;
  }
  /* Hide the separator pipes on mobile */
  #site-nav ul li:nth-child(even) {
    display: none !important;
  }
  /* Show mobile store button on mobile */
  .mobile-store-btn-wrap {
    display: block;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .section {
    padding: 60px 1rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .footer-column {
    padding: 0 1rem;
  }
  .footer-column h4 {
    margin-bottom: 1.25rem;
  }
  .footer-column a:hover {
    transform: translateX(0);
  }
  .footer-social {
    justify-content: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-bottom {
    margin-top: 2.5rem;
  }
  .footer-bottom .footer-container {
    gap: 1.5rem;
  }
  main > div {
    flex-direction: column !important;
  }
  aside {
    width: 100% !important;
    position: static !important;
    height: auto !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-gray) !important;
    padding: 1.5rem !important;
  }
  main > div > div > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  main > div > div > div[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  main > div > div > div[style*="grid-template-columns"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: var(--accent-gray);
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  color: var(--white);
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--white);
}
/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
/* MM Online border animation */
@keyframes drawBorder {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes hideBorder {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 100;
  }
}
.mm-online-link {
  position: relative;
}
.mm-online-link svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mm-online-link .border-path {
  stroke-dashoffset: 100;
}
.mm-online-link:hover .border-path {
  animation: drawBorder 0.6s ease-in-out forwards;
}
.mm-online-link:not(:hover) .border-path {
  animation: hideBorder 0.4s ease-in-out forwards;
}
/* Secret link - no animations */
.secret-link {
  transition: none !important;
  transform: none !important;
  cursor: default !important;
  display: inline !important;
}
.secret-link:hover {
  transform: none !important;
  color: inherit !important;
}
/* Home page header layout */
.mobile-only-nav {
  display: none;
}
.desktop-only-store {
  display: block;
}
@media (max-width: 768px) {
  .mobile-only-nav {
    display: block;
  }
  .desktop-only-store {
    display: none;
  }
}
/* MM Online border animation */
@keyframes drawBorder {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes hideBorder {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 100;
  }
}
.mm-online-link {
  position: relative;
}
.mm-online-link svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mm-online-link .border-path {
  stroke-dashoffset: 100;
}
.mm-online-link:hover .border-path {
  animation: drawBorder 0.6s ease-in-out forwards;
}
.mm-online-link:not(:hover) .border-path {
  animation: hideBorder 0.4s ease-in-out forwards;
}
/* Secret link - no animations */
.secret-link {
  transition: none !important;
  transform: none !important;
  cursor: default !important;
  display: inline !important;
}
.secret-link:hover {
  transform: none !important;
  color: inherit !important;
}
/* Home page header layout */
.mobile-only-nav {
  display: none;
}
.desktop-only-store {
  display: block;
}
@media (max-width: 768px) {
  .mobile-only-nav {
    display: block;
  }
  .desktop-only-store {
    display: none;
  }
}

