:root{
  --purple-deep:#3B1E57;
  --purple-mid:#5C3A82;
  --purple-soft:#7A56A8;
  --gold:#E7B23F;
  --gold-deep:#C4841F;
  --cream:#FBF3E4;
  --cream-dim:#F3E7D0;
  --ink:#33231A;
  --ink-soft:#5B4A3E;
  --crust:#B85C1E;
  --line: rgba(59,30,87,0.14);
  --radius: 22px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:'Work Sans', sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x: hidden;
}
h1,h2,h3,.display{
  font-family:'Fredoka', sans-serif;
  font-weight:600;
  letter-spacing:0.2px;
}
.mono{
  font-family:'Space Mono', monospace;
}
a{color:inherit; transition: var(--transition);}
img{max-width:100%;display:block;}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

.speckle{
  position:relative;
}
.speckle::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle, rgba(0,0,0,0.55) 1px, transparent 1.4px),
    radial-gradient(circle, rgba(0,0,0,0.35) 1px, transparent 1.2px);
  background-size: 34px 34px, 21px 21px;
  background-position: 0 0, 11px 9px;
  opacity:0.16;
  pointer-events:none;
}

header{
  position:sticky; top:0; z-index:50;
  background:var(--purple-deep);
  border-bottom:3px solid var(--gold);
  transition: var(--transition);
}
header.scrolled {
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.scroll-progress {
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 3px;
  background: var(--gold-deep);
  width: 0%;
  transition: width 0.1s ease-out;
  z-index: 100;
}
.nav-wrap{
  max-width:1180px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 24px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.brand img{ height:46px; width:46px; border-radius:50%; transition: transform 0.3s; }
.brand:hover img { transform: rotate(10deg); }
.brand-text{
  color:var(--cream);
  line-height:1.05;
}
.brand-text .name{ font-family:'Fredoka'; font-size:1.15rem; color:var(--gold); }
.brand-text .tag{ font-family:'Space Mono'; font-size:0.62rem; letter-spacing:0.06em; color:var(--cream); opacity:0.8; text-transform:uppercase;}
nav ul{
  list-style:none; display:flex; gap:26px; margin:0; padding:0;
}
nav a{
  color:var(--cream); text-decoration:none; font-size:0.92rem; font-weight:500;
  padding:6px 2px; border-bottom:2px solid transparent;
  transition:border-color .2s, color .2s;
}
nav a:hover{ border-color:var(--gold); color:var(--gold); }
.nav-toggle{
  display:none;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(231,178,63,0.4);
  color:var(--gold);
  width:42px; height:42px;
  border-radius:12px;
  font-size:1.3rem;
  cursor:pointer;
  align-items:center; justify-content:center;
  transition: var(--transition);
}
.nav-toggle:hover, .nav-toggle:active{
  background:rgba(231,178,63,0.2);
}

.hero{
  position:relative;
  background:linear-gradient(160deg, var(--purple-deep) 0%, var(--purple-mid) 60%, var(--purple-soft) 100%);
  color:var(--cream);
  overflow:hidden;
}
.hero-inner{
  max-width:1180px; margin:0 auto;
  padding:76px 24px 64px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:48px;
  align-items:center;
  position:relative; z-index:2;
}
.eyebrow{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:'Space Mono', monospace; font-size:0.7rem; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--gold); border:1px solid rgba(231,178,63,0.5); border-radius:99px;
  padding:6px 14px; margin-bottom:22px; max-width:100%; text-align:center;
}
.hero h1{
  font-size:clamp(2.4rem, 5vw, 3.6rem);
  line-height:1.05; margin:0 0 20px;
  color:#fff;
}
.hero h1 span{ color:var(--gold); }
.hero p.lede{
  font-size:1.08rem; line-height:1.6; color:rgba(255,255,255,0.85);
  max-width:46ch; margin:0 0 30px;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:99px; font-weight:600; font-size:0.95rem;
  text-decoration:none; border:2px solid transparent; cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-gold{ background:var(--gold); color:var(--purple-deep); box-shadow:0 8px 20px rgba(231,178,63,0.25); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-outline{ background:transparent; color:var(--cream); border-color:rgba(255,255,255,0.5); }
.btn-outline:hover { background:rgba(255,255,255,0.1); }

.hero-price-tags{
  display:flex; gap:14px; margin-top:34px; flex-wrap:wrap;
}
.price-chip{
  background:rgba(0,0,0,0.18); border:1px solid rgba(231,178,63,0.4);
  border-radius:16px; padding:12px 18px; min-width:150px;
  transition: var(--transition);
}
.price-chip:hover { transform: translateY(-5px); background:rgba(0,0,0,0.3); }
.price-chip .amt{ font-family:'Fredoka'; color:var(--gold); font-size:1.5rem; }
.price-chip .lbl{ font-size:0.78rem; color:rgba(255,255,255,0.75); }

.hero-photo{
  position:relative; z-index:2;
}
.hero-photo .frame{
  border-radius:var(--radius);
  overflow:hidden;
  border:4px solid var(--gold);
  box-shadow:0 30px 60px rgba(0,0,0,0.35);
  transform:rotate(2deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-photo:hover .frame { transform:rotate(0deg) scale(1.02); }
.hero-photo .frame img{ width:100%; height:340px; object-fit:cover; transition: transform 0.5s; }
.hero-photo:hover .frame img { transform: scale(1.05); }

.hero-photo .badge{
  position:absolute; bottom:-22px; left:-22px;
  background:var(--cream); color:var(--purple-deep);
  border-radius:50%; width:110px; height:110px;
  display:flex; align-items:center; justify-content:center;
  text-align:center; font-family:'Fredoka'; font-size:0.75rem; line-height:1.2;
  border:3px solid var(--gold); box-shadow:0 10px 20px rgba(0,0,0,0.25);
  transform:rotate(-8deg);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: rotate(-8deg) translateY(0px); }
  50% { transform: rotate(-8deg) translateY(-10px); }
  100% { transform: rotate(-8deg) translateY(0px); }
}

.hero::after{
  content:"";
  position:absolute; right:-120px; top:-120px;
  width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(231,178,63,0.25), transparent 70%);
}

section{ padding:76px 24px; }
.section-inner{ max-width:1180px; margin:0 auto; }
.section-head{ max-width:640px; margin-bottom:44px; }
.section-head .kicker{
  font-family:'Space Mono'; font-size:0.72rem; text-transform:uppercase; letter-spacing:0.12em;
  color:var(--crust); display:flex; align-items:center; gap:10px; margin-bottom:12px;
}
.section-head .kicker::before{ content:""; width:26px; height:3px; background:var(--crust); border-radius:2px; }
.section-head h2{ font-size:clamp(1.7rem,3.2vw,2.4rem); margin:0 0 12px; color:var(--purple-deep); }
.section-head p{ color:var(--ink-soft); line-height:1.6; font-size:1.02rem; }

.products{ background:var(--cream); }
.product-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:28px;
}
.product-card{
  background:#fff; border-radius:var(--radius);
  overflow:hidden; border:1px solid var(--line);
  box-shadow:0 14px 34px rgba(59,30,87,0.08);
  display:flex; flex-direction:column;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59,30,87,0.15);
}
.product-media{
  position:relative; height:260px; overflow: hidden;
}
.product-media img{ width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-price{
  position:absolute; top:16px; right:16px;
  background:var(--purple-deep); color:var(--gold);
  font-family:'Fredoka'; font-size:1.05rem;
  padding:8px 16px; border-radius:99px; border:2px solid var(--gold);
}
.product-body{ padding:26px 28px 30px; }
.product-body h3{ margin:0 0 8px; font-size:1.35rem; color:var(--purple-deep); }
.product-body p{ margin:0; color:var(--ink-soft); line-height:1.6; font-size:0.98rem; }
.product-strip{
  display:flex; gap:10px; margin-top:18px;
}
.product-strip img{
  width:64px; height:64px; object-fit:cover; border-radius:10px; border:2px solid var(--cream-dim);
  transition: transform 0.3s;
}
.product-strip img:hover { transform: scale(1.1); border-color: var(--gold); cursor: pointer; }

.branches{ background:var(--purple-deep); color:var(--cream); position:relative; }
.branches .section-head h2{ color:#fff; }
.branches .section-head p{ color:rgba(255,255,255,0.72); }
.branches .section-head .kicker{ color:var(--gold); }
.branches .section-head .kicker::before{ background:var(--gold); }

.city-group{ margin-bottom:44px; }
.city-group:last-child{ margin-bottom:0; }
.city-title{
  font-family:'Fredoka'; font-size:1.1rem; color:var(--gold);
  display:flex; align-items:center; gap:10px; margin-bottom:20px;
}
.city-title .count{
  font-family:'Space Mono'; font-size:0.7rem; background:rgba(231,178,63,0.15);
  border:1px solid rgba(231,178,63,0.4); padding:3px 10px; border-radius:99px; color:var(--gold);
}

.branch-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(270px,1fr)); gap:18px;
}
.branch-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(231,178,63,0.35);
  border-radius:16px;
  padding:20px 20px 22px;
  position:relative;
  transition:transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.18s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.branch-card:hover{ background:rgba(255,255,255,0.09); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.branch-card .pin{
  display:inline-flex; align-items:center; justify-content:center;
  width:30px;height:30px; border-radius:50%;
  background:var(--gold); color:var(--purple-deep); font-size:0.9rem; margin-bottom:12px;
  transition: transform 0.3s;
}
.branch-card:hover .pin { transform: scale(1.2); }
.branch-card h4{
  font-family:'Fredoka'; font-size:1.05rem; margin:0 0 8px; color:#fff;
}
.branch-card .addr{
  font-size:0.86rem; line-height:1.5; color:rgba(255,255,255,0.75);
  min-height:2.6em;
}
.branch-card .new-tag{
  position:absolute; top:16px; right:16px;
  font-family:'Space Mono'; font-size:0.62rem; letter-spacing:0.05em;
  background:var(--crust); color:#fff; padding:3px 9px; border-radius:99px;
  animation: pulseColor 2s infinite;
}

@keyframes pulseColor {
  0% { background: var(--crust); }
  50% { background: var(--gold-deep); }
  100% { background: var(--crust); }
}

.branch-photo{
  margin-top:14px; border-radius:10px; overflow:hidden; height:120px;
}
.branch-photo img{ width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.branch-card:hover .branch-photo img { transform: scale(1.1); }

.hours{ background:var(--cream-dim); }
.hours-wrap{
  display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;
}
.hours-table{
  background:#fff; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--line); box-shadow:0 14px 34px rgba(59,30,87,0.08);
}
.hours-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:15px 26px; border-bottom:1px solid var(--line);
  font-size:0.98rem; transition: background 0.2s;
}
.hours-row:hover { background: rgba(231,178,63,0.05); }
.hours-row:last-child{ border-bottom:none; }
.hours-row .day{ font-weight:600; color:var(--purple-deep); }
.hours-row .time{ font-family:'Space Mono'; font-size:0.85rem; color:var(--ink-soft); }
.hours-row.closed .time{ color:var(--crust); font-weight:700; }
.hours-row.today{ background:rgba(231,178,63,0.14); }
.hours-note{
  margin-top:18px; font-size:0.85rem; color:var(--ink-soft); font-family:'Space Mono'; line-height:1.6;
}

.order{ background:var(--cream); }
.order-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;
}
.order-step{
  background:#fff; border-radius:18px; padding:28px 24px;
  border:1px solid var(--line); box-shadow:0 10px 26px rgba(59,30,87,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.order-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(59,30,87,0.1);
}
.order-step .num{
  font-family:'Fredoka'; font-size:1.6rem; color:var(--gold-deep);
  -webkit-text-stroke:1px var(--purple-deep);
  margin-bottom:14px; display:block;
}
.order-step h3{ margin:0 0 10px; font-size:1.08rem; color:var(--purple-deep); }
.order-step p{ margin:0; color:var(--ink-soft); font-size:0.94rem; line-height:1.6; }

.order-note{
  margin-top:34px; background:var(--purple-deep); color:var(--cream);
  border-radius:18px; padding:22px 26px; display:flex; gap:16px; align-items:flex-start;
  border:1px solid var(--gold);
}
.order-note .icon{ font-size:1.3rem; }
.order-note p{ margin:0; font-size:0.92rem; line-height:1.6; color:rgba(255,255,255,0.88); }
.order-note strong{ color:var(--gold); }

.gallery{ background:var(--purple-deep); padding:0; }
.gallery-strip{
  display:flex; overflow-x:auto; gap:2px; scroll-snap-type:x mandatory; scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip img{
  height:250px; width:350px; object-fit:cover; flex:0 0 auto; scroll-snap-align:start;
  transition: opacity 0.4s, transform 0.4s;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.gallery-strip img:hover { opacity: 0.9; transform: scale(1.05) translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.4); z-index: 10; position:relative; }

footer{
  background:var(--purple-deep); color:rgba(255,255,255,0.7);
  border-top:3px solid var(--gold);
  padding:44px 24px 28px;
}
.footer-inner{
  max-width:1180px; margin:0 auto;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px;
}
.footer-brand{ display:flex; align-items:center; gap:12px; }
.footer-brand img{ height:38px; width:38px; border-radius:50%; }
.footer-brand span{ font-family:'Fredoka'; color:var(--gold); font-size:1rem; }
footer .fb-link{
  text-decoration:none; color:var(--cream); font-size:0.9rem;
  border:1px solid rgba(231,178,63,0.4); padding:9px 18px; border-radius:99px;
  transition: var(--transition);
}
footer .fb-link:hover { background: var(--gold); color: var(--purple-deep); }
footer .fine{ width:100%; font-size:0.78rem; margin-top:20px; color:rgba(255,255,255,0.45); font-family:'Space Mono'; }

::selection{ background:var(--gold); color:var(--purple-deep); }

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.lightbox.active .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--cream);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}
.lightbox-close:hover {
  color: var(--gold);
}

/* ==========================================================================
   Mobile & Tablet Responsive Layouts
   ========================================================================== */

@media (max-width: 960px) {
  .nav-wrap {
    padding: 10px 16px;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  nav {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
  }
  nav ul{
    position:absolute; top:100%; left:0; right:0;
    background:var(--purple-deep);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction:column; gap:0;
    max-height:0; overflow:hidden;
    border-bottom:3px solid var(--gold);
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
    transition:max-height .35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  nav ul.open{ max-height:320px; }
  nav a{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 24px; border-bottom:1px solid rgba(255,255,255,0.08);
    font-size:1rem;
  }
  nav a:hover, nav a:active{
    background:rgba(231,178,63,0.1);
  }

  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 28px;
    padding: 36px 16px 44px;
    text-align: center;
  }
  .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    margin: 0 auto 16px;
    line-height: 1.3;
    max-width: 100%;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 14px;
  }
  .hero p.lede {
    margin: 0 auto 20px;
    font-size: 0.95rem;
    max-width: 100%;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 10px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.95rem;
  }
  .hero-price-tags {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0;
  }
  .price-chip {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    text-align: center;
  }
  .price-chip .amt {
    font-size: 1.3rem;
  }
  .price-chip .lbl {
    font-size: 0.72rem;
  }
  .hero-photo {
    width: 100%;
    max-width: 340px;
    margin: 20px auto 0;
    position: relative;
  }
  .hero-photo .frame {
    transform: none !important;
    border-radius: 18px;
    border-width: 3px;
  }
  .hero-photo .frame img {
    height: 220px;
    width: 100%;
    object-fit: cover;
  }
  .hero-photo .badge {
    bottom: -10px;
    right: -5px;
    left: auto;
    transform: rotate(-6deg);
    width: 80px;
    height: 80px;
    font-size: 0.65rem;
    line-height: 1.15;
    border-width: 2px;
  }

  .hours-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .order-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  section { padding: 44px 16px; }
  .section-head { margin-bottom: 26px; }
  .section-head h2 { font-size: clamp(1.45rem, 5.5vw, 2rem); }
  
  .product-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-media { height: 210px; }
  .product-price { top: 12px; right: 12px; font-size: 0.95rem; padding: 6px 12px; }
  .product-body { padding: 20px 18px 24px; }
  .product-strip img { width: 56px; height: 56px; }

  .branch-grid { grid-template-columns: 1fr; gap: 14px; }
  .branch-card { padding: 18px 16px; }
  .branch-card .addr { min-height: auto; }
  .branch-photo { height: 140px; }

  .hours-row { padding: 12px 16px; font-size: 0.9rem; }
  .hours-row .time { font-size: 0.8rem; }
  .hours-note { font-size: 0.8rem; margin-top: 14px; }

  .order-step { padding: 20px 18px; }
  .order-step .num { font-size: 1.4rem; margin-bottom: 8px; }
  .order-note { padding: 16px 18px; flex-direction: row; align-items: flex-start; gap: 12px; }

  .gallery-strip img { height: 180px; width: 260px; }

  footer { padding: 36px 18px 90px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  footer .fb-link { width: 100%; text-align: center; display: inline-block; padding: 12px 20px; }
  footer .fine { text-align: center; font-size: 0.74rem; margin-top: 14px; }

  /* Mobile Bottom Action Bar */
  .mobile-bottom-bar {
    display: flex;
  }
}

@media (max-width: 480px) {
  .nav-wrap { padding: 8px 14px; }
  .brand-text .name { font-size: 1.05rem; }
  .brand-text .tag { font-size: 0.58rem; }
  .brand img { height: 38px; width: 38px; }
  
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  
  .hero-price-tags { flex-direction: row; flex-wrap: nowrap; gap: 8px; }
  .price-chip { min-width: 0; padding: 8px 10px; }
  .price-chip .amt { font-size: 1.2rem; }
  .price-chip .lbl { font-size: 0.7rem; }

  .product-body h3 { font-size: 1.2rem; }
  
  .lightbox-img { max-width: 95%; max-height: 80vh; }
  .lightbox-close { top: 12px; right: 16px; font-size: 32px; }
}

/* Mobile Bottom Bar Styling */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(59, 30, 87, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 2px solid var(--gold);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 24px rgba(0,0,0,0.3);
  justify-content: space-around;
  align-items: center;
}

.mobile-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--cream);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 12px;
  transition: var(--transition);
  flex: 1;
  max-width: 120px;
}

.mobile-bar-item:active, .mobile-bar-item:hover {
  background: rgba(231, 178, 63, 0.15);
  color: var(--gold);
}

.mobile-bar-item.highlight {
  background: var(--gold);
  color: var(--purple-deep);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(231, 178, 63, 0.3);
}

.mobile-bar-item.highlight:active {
  background: var(--gold-deep);
}

.mobile-bar-item .bar-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.mobile-bar-item .bar-label {
  font-size: 0.7rem;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.02em;
}
