/* === Toggle Chevron Left Glow (SVG) === */
#iosToggleBtn {
  position: fixed;
  top: 28%;
  right: 0;
  transform: translateY(-50%);
  width: 64px; height: 64px;
  border-radius: 50% 0 0 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  z-index: 12000;
}
.chevron-svg {
  width: 40px; height: 40px;
}
.chevron-svg polyline {
  stroke: #007AFF;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  opacity: 0.3;
}
.chevron-svg polyline:nth-child(1){ animation: glowChevron 1.2s infinite; }
.chevron-svg polyline:nth-child(2){ animation: glowChevron 1.2s infinite .3s; }

@keyframes glowChevron {
  0%,100% { opacity:0.3; filter:drop-shadow(0 0 4px rgba(0,122,255,.4)); }
  50% { opacity:1; filter:drop-shadow(0 0 12px rgba(0,122,255,1)); }
}

/* Bounce animasi saat berubah arah */
@keyframes bounce {
  0% { transform: translateX(0); }
  30% { transform: translateX(-6px); }
  60% { transform: translateX(3px); }
  100% { transform: translateX(0); }
}

/* === Slider Panel Glass iOS === */
#iosSlider {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: -4px 0 16px rgba(0,0,0,.2);
  transition: right .35s cubic-bezier(.25,.8,.25,1);
  z-index: 11000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
#iosSlider.active { right: 0; }

/* Profile Card */
.iosProfile { text-align:center; padding:20px; border-bottom:1px solid #e5e5ea; }
.iosProfile img { width:90px; height:90px; border-radius:50%; box-shadow:0 4px 12px rgba(0,0,0,.25); }
.iosProfile h3 { margin:12px 0 0; font-weight:600; color:#1c1c1e; }

/* Contact Buttons Glow */
.iosContact { display:flex; justify-content:center; gap:15px; padding:15px; }
.iosContact a {
  flex:1; padding:12px;
  border-radius:12px;
  text-align:center;
  background:#fff;
  color:#007AFF;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 0 10px rgba(0,122,255,.4);
  transition: all .3s ease;
  font-size: 12px;
}
.iosContact a i { margin-right:6px; }
.iosContact a:hover { box-shadow:0 0 14px rgba(0,122,255,.7); transform:scale(1.05); }

/* Menu Buttons Glow */
.iosMenu { padding:20px; }
.iosMenu a {
  display:flex; align-items:center; gap:10px;
  padding:12px;
  border-radius:10px;
  background:#fff;
  color:#1c1c1e;
  text-decoration:none;
  font-weight:500;
  box-shadow:0 0 8px rgba(0,122,255,.3);
  margin-bottom:10px;
  transition: all .25s ease;
  font-size: 15px;
}
.iosMenu a i { font-size:15px; }
.iosMenu a:hover { background:#f5f5f7; color:#007AFF; box-shadow:0 0 12px rgba(0,122,255,.6); }

/* Dropdown Produk Scrollable */
.dropdown { position:relative; }
.dropdown-menu {
  display:none; flex-direction:column;
  background:#fff;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
  margin-top:5px;
  max-height:200px;
  overflow-y:auto;
}
.dropdown:hover .dropdown-menu { display:flex; }
.dropdown-menu a { padding:10px 14px; font-size:14px; }