/** Shopify CDN: Minification failed

Line 1695:4 Unexpected "<"

**/
/* ==========================================================================
   Smokey's Cart Delivery Styles - Namespaced with .sc- prefix
   ========================================================================== */

/* Delivery Window Selector
   ========================================================================== */

.sc-delivery-window-selector {
  margin: 20px 0;
  padding: 16px;
  border-radius: 6px;
  background: #660eae;
  color: #fff;
  text-align: center;
}

.sc-delivery-selector-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.125em;
  font-weight: 600;
  color: #fff;
}

.sc-no-slots-message {
  padding: 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  text-align: center;
  color: #fff;
  font-weight: 500;
}

/* Date Tabs */
.sc-date-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  overflow-x: auto;
}

.sc-date-tab {
  border: 1px solid #fff;
  border-radius: 20px;
  background: transparent;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.9em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sc-date-tab:not(.active):hover {
  background: rgba(255,255,255,0.2);
}

.sc-date-tab.active {
  background: #fff;
  color: #660eae;
  border-color: #fff;
}

.sc-date-tab[aria-pressed="true"] {
  background: #fff;
  color: #660eae;
  border-color: #fff;
}

/* Time Slots */
.sc-time-slots-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sc-day-slots {
  display: inline-flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
}

.sc-day-slots[hidden] {
  display: none;
}

.sc-time-slot-btn {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  color: #660eae;
  font-size: 0.9em;
  font-weight: 500;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sc-time-slot-btn:hover {
  background: rgba(255,255,255,0.8);
}

.sc-time-slot-btn.selected,
.sc-time-slot-btn[aria-pressed="true"] {
  background: #660eae;
  border-color: #fff;
  color: #fff;
}

/* Delivery Confirmation */
.sc-delivery-confirmation {
  margin-top: 8px;
  padding: 8px;
  border-radius: 4px;
  background: #fe5e02;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  font-size: 1.1rem;
}

/* ----------  express card layout  ---------- */
.express-card{
  --purple:#7113ff; --orange:#ff4f00;
  --pill-bg:#faf0ff; --pill-border:#c9a2ff;

  display:flex;
  flex-direction:column;
  gap:.65rem;
  padding:1.5rem 1.75rem;
  border:2px solid var(--pill-border);
  border-radius:18px;
  background:linear-gradient(135deg,#fff 0%,#fff7f4 100%);
  margin: 20px 0;
}

/* 1 ▸ header */
.express-header{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
  font-weight:700;
}
.express-title{color:var(--orange);font-size:1.3rem;}
.express-price{color:var(--orange);font-size:1.1rem;}

/* 2 ▸ top content row - now contains all elements */
.express-row-top{
  display:flex;
  align-items:center;
  justify-content: center;
  gap:0.8rem;
  white-space:nowrap;
}
.express-icon svg,
.express-icon{
  width:30px;height:30px;color:var(--orange);
  font-size: 1.5em;
  filter: drop-shadow(0 0 2px rgba(255,79,0,0.5));
  animation: electricPulse 2s ease-in-out infinite;
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1;
}

/* Electric spark particles */
.express-card:hover .express-icon::after {
  content: '✦';
  position: absolute;
  font-size: 0.4em;
  color: #ffcc00;
  animation: spark1 0.6s ease-out forwards;
}

@keyframes spark1 {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate(10px, -10px) scale(1.5);
  }
}

/* custom checkbox */
.express-checkbox{
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1;
}
.express-checkbox input{opacity:0;position:absolute;}
.fake-check{
  width:20px;height:20px;border-radius:4px;
  background:#fff;border:2px solid var(--purple);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.express-checkbox input:checked + .fake-check{
  background:var(--purple) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'><polyline points='1 5 5 9 13 1' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px 12px no-repeat;
}

/* sentence copy */
.express-copy{
  font-size:1.1rem;
  font-weight:500;
  color:#555;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ETA pill when inline with text */
.express-copy .eta-pill {
  display: inline-flex;
  font-size: 0.95em;
}

/* 3 ▸ bottom row - hidden now since everything is in top row */
.express-row-bottom{
  display:none;
}

/* ETA pill */
.eta-pill{
  display:inline-block;
  padding:.15rem .9rem;
  border-radius:12px;
  border:2px solid var(--pill-border);
  background:var(--pill-bg);
  font-weight:700;
  color:var(--purple);
  font-size:1.05rem;
  white-space:nowrap;
}

/* LIVE badge */
.live-badge{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  font-size:.8rem;
  font-weight:700;
  color:#fff;
  padding:.25rem .8rem;
  border-radius:999px;
  background:var(--purple);
  position:relative;
  box-shadow: 0 0 15px rgba(113,19,255,0.4);
  animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(113,19,255,0.4); }
  50% { box-shadow: 0 0 25px rgba(113,19,255,0.6), 0 0 35px rgba(113,19,255,0.3); }
}
.live-badge .dot{
  width:.45rem;height:.45rem;border-radius:50%;background:#fff;
  animation:pulse 1.2s infinite;
}

/* pulse keyframes - more noticeable */
@keyframes pulse{
  0%{
    transform:scale(0.5);
    opacity:0.4;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.8);
  }
  50%{
    transform:scale(1.2);
    opacity:1;
    box-shadow: 0 0 10px 2px rgba(255,255,255,0.8);
  }
  100%{
    transform:scale(0.5);
    opacity:0.4;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.8);
  }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Selected state */
.express-card.selected {
  background:linear-gradient(135deg,#fff7f4 0%,#ffebe5 100%);
  border-color: rgba(255,79,0,0.3);
}

/* ----------  small-screen fine-tuning  ---------- */
@media(max-width:480px){
  .express-card{
    padding:0.8rem 1rem;
    gap:0.4rem;
    align-items: center;
    text-align: center;
  }
  
  .express-header{
    gap: 0.5rem;
    justify-content: center;
  }
  
  /* Express Delivery title larger */
  .express-title {
    font-size: 1.1em;
  }
  
  /* Single row with all elements */
  .express-row-top{
    margin-left: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  /* Bigger lightning bolt */
  .express-icon {
    font-size: 1.5em;
    line-height: 1;
    display: flex;
    align-items: center;
  }
  
  /* Align checkbox properly */
  .express-checkbox {
    display: flex;
    align-items: center;
    margin: 0;
  }
  
  /* Get your order text bigger */
  .express-copy {
    font-size: 1.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    line-height: 1.2;
  }
  
  /* Hide the old bottom row */
  .express-row-bottom{
    display: none;
  }
  
  /* ETA pill inline with text */
  .express-copy .eta-pill {
    display: inline-flex;
    font-size: 0.85em;
    padding: 0.1rem 0.6rem;
  }
  
  /* LIVE badge smaller on mobile */
  .express-row-top .live-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
  
  /* Keep these the same size */
  .express-price,
  .eta-pill {
    font-size: 0.9em;
  }
}

/* Express Delivery - Legacy styles kept for reference
   ========================================================================== */

/* 1. Put the whole card on a flex row */
.express-delivery-container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  margin: 20px 0;
  border: 1px solid rgba(102,14,174,0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, #fafafa 0%, #f7f7f7 100%);
  transition: all 0.3s ease;
}

/* 2. Left-hand column (⚡ icon + checkbox) */
.express-delivery-container .express-delivery-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0;
  cursor: pointer;
}

/* Lightning icon styling */
.express-lightning-icon {
  font-size: 1.3em;
  filter: drop-shadow(0 0 2px rgba(254,94,2,0.5));
  animation: electricPulse 2s ease-in-out infinite;
}

/* Checkbox styling */
.express-delivery-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #660eae;
}

/* 3. The text column */
.express-delivery-container .express-delivery-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

/* 3a. stack title & price on one line */
.express-delivery-text strong {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ff4c00;
  margin-right: .25rem;
}

.express-delivery-price-extra {
  font-size: .95rem;
  font-weight: 600;
  color: #ff4c00;
}

/* 4. "Get your order in …" line */
.express-delivery-text small {
  font-size: .95rem;
  color: #555;
}

/* 5. Time pill (17 minutes) */
.time-pill {
  display: inline-block;
  margin-top: .25rem;
  padding: .25rem .8rem;
  border: 2px solid rgba(121,0,255,.25);
  border-radius: 12px;
  background: linear-gradient(135deg,rgba(121,0,255,.08),rgba(121,0,255,.02));
  font-size: 1.15rem;
  font-weight: 700;
  color: #7900ff;
}

/* 6. "LIVE" badge – always snaps to right edge */
.express-live-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .25rem .8rem;
  border-radius: 999px;
  background: #7900ff;
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
}

.express-live-badge::before {
  content: '';
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: #fff;
  animation: subtlePulse 2s ease-in-out infinite;
}

/* Selected state styling */
.express-delivery-container.selected {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
  border-color: rgba(255,76,0,0.3);
}

.express-delivery-container.selected .express-delivery-text strong,
.express-delivery-container.selected .express-delivery-price-extra {
  color: #ff4c00;
}

.sc-express-delivery-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
}

.sc-express-delivery-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #660eae;
  transition: all 0.2s ease;
}

.sc-express-delivery-checkbox:checked {
  transform: scale(1.1);
}

/* Loading state */
.sc-express-delivery-container.loading {
  opacity: 0.7;
  pointer-events: none;
}

.sc-express-delivery-container.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 2px solid rgba(102,14,174,0.2);
  border-top-color: #660eae;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.sc-express-delivery-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.sc-express-title-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.sc-express-title-line strong {
  color: #660eae;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.sc-express-price {
  color: #660eae;
  font-size: 15px;
  font-weight: 500;
}

.sc-express-delivery-container.sc-express-delivery-selected .sc-express-title-line strong,
.sc-express-delivery-container.sc-express-delivery-selected .sc-express-price {
  color: #fe5e02;
}

.sc-eta-headline {
  color: #555;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

/* Hide quantity controls for express delivery item */
[data-cart-item-handle="express-delivery"] .quantity__button,
[data-cart-item-handle="express-delivery"] .quantity__input {
  display: none !important;
}

/* Animations
   ========================================================================== */

/* Fade in animation for express delivery */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sc-express-delivery-container {
  animation: fadeInUp 0.4s ease-out;
}

/* Loading spinner animation */
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Notification animations */
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

/* Mobile Responsive
   ========================================================================== */

@media (max-width: 768px) {
  /* Adjust express delivery container for mobile */
  .express-delivery-container {
    gap: 1rem;
    padding: 1rem 1.25rem;
  }
  
  .express-delivery-text strong {
    font-size: 0.95rem;
  }
  
  .express-delivery-price-extra {
    font-size: 0.9rem;
  }
  
  .express-delivery-text small {
    font-size: 0.85rem;
  }
  
  .time-pill {
    font-size: 1rem;
    padding: .2rem .6rem;
  }
  
  .express-live-badge {
    font-size: 0.65rem;
    padding: .2rem .6rem;
  }
  
  .express-live-badge::before {
    width: .3rem;
    height: .3rem;
  }
  
  /* Legacy styles - kept for other components */
  .sc-express-delivery-container {
    margin: 16px 0;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  
  .sc-express-delivery-label {
    gap: 10px;
    align-items: flex-start;
  }
  
  .sc-express-delivery-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
  }
  
  .sc-express-delivery-text {
    gap: 6px;
  }
  
  .sc-express-title-line strong {
    font-size: 14px;
    line-height: 1.3;
  }
  
  .sc-express-price {
    font-size: 14px;
  }
  
  .sc-eta-headline {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .sc-eta-headline-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  
  .sc-eta-headline {
    flex: 1;
    min-width: 0;
  }
  
  .sc-eta-badge {
    margin-left: auto;
    margin-top: 0;
    font-size: 0.65rem;
    padding: 2px 8px;
  }
  
  .sc-eta-pulse {
    width: 5px;
    height: 5px;
  }
  
  .sc-eta-time {
    font-size: 0.95rem;
    padding: 1px 6px;
    margin: 0 2px;
  }
  
  /* Larger tap target for mobile */
  .sc-express-delivery-label {
    min-height: 48px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Icon adjustments */
  .sc-icon-fast {
    font-size: 1.3em;
    margin-right: 10px;
  }
}

/* Accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .sc-express-delivery-container {
    border-width: 3px;
  }
  
  .sc-time-slot-btn {
    border-width: 2px;
  }
  
  .sc-date-tab {
    text-decoration: underline;
  }
  
  .sc-date-tab.active {
    text-decoration: none;
    font-weight: bold;
  }
}
/* ========== EXPRESS DELIVERY ENHANCEMENTS ========== */

/* ---------- Subtle elevation and depth ---------- */
.sc-express-delivery-container {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.1);
}

.sc-express-delivery-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102,14,174,0.08), 0 2px 4px rgba(102,14,174,0.12);
}

.sc-express-delivery-container.sc-express-delivery-selected {
  background: linear-gradient(135deg, #fefbfa 0%, #fff8f5 100%);
  border-color: rgba(254,94,2,0.3);
  box-shadow: inset 0 0 0 1px rgba(254,94,2,0.2), 0 4px 12px rgba(254,94,2,0.08);
}

/* ---------- LIVE ETA badge - Refined ---------- */
.sc-eta-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #660eae 0%, #8b3dc3 100%);
  border-radius: 16px;
  padding: 3px 10px 3px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  margin-left: auto;
  box-shadow: 0 2px 4px rgba(102,14,174,0.2);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Removed glow effect for cleaner look */

.sc-eta-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: subtlePulse 2s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes subtlePulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ---------- Enhanced ETA Time Display ---------- */
.sc-eta-time {
  font-size: 1.05rem;
  font-weight: 700;
  color: #660eae;
  background: linear-gradient(135deg, rgba(102,14,174,0.08), rgba(139,61,195,0.05));
  padding: 2px 8px;
  border-radius: 8px;
  display: inline-block;
  margin: 0 4px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border: 1px solid rgba(102,14,174,0.15);
}

/* ---------- Lightning icon animation ---------- */
.sc-express-delivery-label .sc-icon-fast {
  display: inline-block;
  margin-right: 8px;
  font-size: 1.2em;
  position: relative;
  filter: drop-shadow(0 0 2px rgba(254,94,2,0.5));
  animation: electricPulse 2s ease-in-out infinite;
  flex-shrink: 0;
  line-height: 1;
}

@keyframes electricPulse {
  0%, 100% { 
    filter: drop-shadow(0 0 2px rgba(254,94,2,0.5));
    transform: scale(1);
    color: currentColor;
  }
  50% { 
    filter: drop-shadow(0 0 8px rgba(254,94,2,0.9)) drop-shadow(0 0 12px rgba(255,255,255,0.6));
    transform: scale(1.1);
    color: #ffcc00;
  }
}

/* Electric arc effect on hover */
.sc-express-delivery-container:hover .sc-icon-fast {
  animation: lightningStrike 0.6s ease-out;
}

@keyframes lightningStrike {
  0% { 
    transform: translateX(0) scale(1);
    filter: drop-shadow(0 0 2px rgba(254,94,2,0.5));
  }
  20% {
    transform: translateX(-2px) scale(1.2);
    filter: drop-shadow(0 0 15px rgba(254,94,2,1)) drop-shadow(0 0 25px rgba(255,255,255,0.8));
  }
  40% {
    transform: translateX(2px) scale(1.1);
  }
  60% {
    transform: translateX(-1px) scale(1.15);
    filter: drop-shadow(0 0 20px rgba(254,94,2,1)) drop-shadow(0 0 30px rgba(255,255,255,1));
  }
  80% {
    transform: translateX(1px) scale(1.05);
  }
  100% {
    transform: translateX(0) scale(1);
    filter: drop-shadow(0 0 2px rgba(254,94,2,0.5));
  }
}

/* Speed lines effect when selected */
.sc-express-delivery-selected .sc-icon-fast::before,
.sc-express-delivery-selected .sc-icon-fast::after {
  content: '';
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(254,94,2,0.6), transparent);
  animation: speedLines 1.5s linear infinite;
}

.sc-express-delivery-selected .sc-icon-fast::before {
  width: 15px;
  top: 25%;
  left: -18px;
}

.sc-express-delivery-selected .sc-icon-fast::after {
  width: 12px;
  bottom: 25%;
  left: -15px;
  animation-delay: 0.3s;
}

@keyframes speedLines {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(25px);
  }
}

/* Electric spark particles */
.sc-express-delivery-container:hover .sc-icon-fast {
  position: relative;
}

.sc-express-delivery-container:hover .sc-icon-fast::after {
  content: '✦';
  position: absolute;
  font-size: 0.4em;
  color: #ffcc00;
  animation: spark1 0.6s ease-out forwards;
}

@keyframes spark1 {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate(10px, -10px) scale(1.5);
  }
}

/* ---------- Headline wrapper styling ---------- */
.sc-eta-headline-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  width: 100%;
}

/* ---------- sticky banner mobile ---------- */
@media (max-width:768px){
  .sc-express-sticky{
    position:fixed;bottom:0;left:0;right:0;z-index:1000;
    display:flex;justify-content:center;
    transform:translateY(100%);transition:transform .4s;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 8px;
    /* Prevent interference with scroll on collection pages */
    pointer-events: none;
  }
  .sc-express-sticky.show{
    transform:translateY(0);
    pointer-events: auto;
  }
  .sc-express-sticky button{
    background: linear-gradient(135deg, #660eae 0%, #8b3dc3 100%);
    color:#fff;
    border:none;
    border-radius:24px;
    padding:10px 20px;
    font-size:0.95rem;
    font-weight:600;
    box-shadow:0 2px 8px rgba(102,14,174,0.3);
    transition: all 0.3s ease;
  }
  .sc-express-sticky button:active {
    transform: scale(0.98);
  }
  
  /* Sonic style sticky banner */
  .sonic-style ~ .sc-express-sticky button,
  body:has(.sonic-style) .sc-express-sticky button {
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
    box-shadow: 0 2px 8px rgba(26,115,232,0.3);
  }
  
  /* Flash style sticky banner */
  .flash-style ~ .sc-express-sticky button,
  body:has(.flash-style) .sc-express-sticky button {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.4), 0 2px 8px rgba(252, 211, 77, 0.3);
    animation: flashGlow 2s ease-in-out infinite;
  }
  
  @keyframes flashGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(220, 38, 38, 0.4), 0 2px 8px rgba(252, 211, 77, 0.3); }
    50% { box-shadow: 0 0 25px rgba(220, 38, 38, 0.6), 0 2px 12px rgba(252, 211, 77, 0.5); }
  }
}

/* ---------- Express extended delivery ---------- */
.sc-express-delivery-container.sc-express-extended {
  background: #fff9f0;
  border-color: #ff9500;
}

.sc-express-delivery-container.sc-express-extended .sc-eta-badge {
  background: #ff9500;
  color: white;
}

/* ---------- Flash Superhero Style ---------- */
.flash-style .sc-icon-fast {
  font-size: 1.6em;
  position: relative;
  display: inline-block;
  margin-right: 15px;
  filter: brightness(0) saturate(100%) invert(21%) sepia(89%) saturate(6049%) hue-rotate(358deg) brightness(97%) contrast(118%);
  animation: flashRunning 0.6s steps(4) infinite;
}

/* Create Flash costume effect with CSS filter */
.flash-style .sc-icon-fast::before {
  content: '⚡';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5em;
  color: #FCD34D;
  z-index: 2;
  animation: flashEmblem 2s ease-in-out infinite;
}

@keyframes flashEmblem {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes flashRunning {
  0% { 
    transform: translateX(0) rotateY(0deg);
  }
  25% { 
    transform: translateX(2px) rotateY(-5deg) translateY(-2px);
  }
  50% { 
    transform: translateX(4px) rotateY(0deg) translateY(0);
  }
  75% { 
    transform: translateX(6px) rotateY(5deg) translateY(-2px);
  }
  100% { 
    transform: translateX(8px) rotateY(0deg);
  }
}

/* Multiple speed blur effects for running */
.flash-style .sc-icon-fast::after {
  content: '🏃‍♂️';
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
  filter: blur(2px) brightness(0) saturate(100%) invert(21%) sepia(89%) saturate(6049%) hue-rotate(358deg) brightness(97%) contrast(118%);
  animation: speedBlur 0.6s steps(4) infinite;
  animation-delay: -0.1s;
}

@keyframes speedBlur {
  0% { 
    transform: translateX(-8px) scaleX(1.5);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% { 
    transform: translateX(0) scaleX(1);
    opacity: 0;
  }
}

/* Lightning bolt trail effect */
.flash-style .sc-express-delivery-label::after {
  content: '⚡⚡⚡';
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: #FCD34D;
  opacity: 0;
  animation: lightningTrailFlash 0.6s linear infinite;
  letter-spacing: -5px;
}

@keyframes lightningTrailFlash {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(0) scaleX(0);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-50%) translateX(-10px) scaleX(1.5);
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px) scaleX(0.5);
  }
}

/* Flash container styling */
.flash-style.sc-express-delivery-container {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 2px solid #DC2626;
  position: relative;
  overflow: visible;
}

/* Lightning border effect */
.flash-style.sc-express-delivery-container::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(45deg, #DC2626, #FCD34D, #DC2626, #FCD34D);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: flashBorder 2s linear infinite;
}

@keyframes flashBorder {
  to { transform: rotate(360deg); }
}

/* Flash style text colors */
.flash-style .sc-express-delivery-text strong {
  color: #DC2626;
  text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.flash-style .sc-eta-time {
  color: #DC2626;
  background: rgba(252, 211, 77, 0.2);
  border: 1px solid #FCD34D;
  font-weight: 800;
  animation: flashPulse 1s ease-in-out infinite;
}

@keyframes flashPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  50% { box-shadow: 0 0 0 4px rgba(220, 38, 38, 0); }
}

/* Lightning trail when selected */
.flash-style.sc-express-delivery-selected .sc-icon-fast::after {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #DC2626 30%, #FCD34D 60%, #DC2626);
  transform: translateY(-50%);
  animation: lightningTrail 0.3s linear infinite;
}

@keyframes lightningTrail {
  from { 
    opacity: 0;
    transform: translateY(-50%) translateX(-10px) scaleX(0);
  }
  to { 
    opacity: 1;
    transform: translateY(-50%) translateX(20px) scaleX(1);
  }
}

/* Flash running effect on hover - super speed */
.flash-style .sc-express-delivery-container:hover .sc-icon-fast {
  animation: flashSuperSpeed 0.15s linear infinite;
}

/* Ground motion lines */
.flash-style .sc-express-delivery-label {
  position: relative;
  overflow: visible;
}

.flash-style .sc-express-delivery-label::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 10px;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #DC2626,
    #DC2626 5px,
    transparent 5px,
    transparent 10px
  );
  animation: groundRush 0.3s linear infinite;
}

@keyframes groundRush {
  0% { transform: translateX(0); }
  100% { transform: translateX(-10px); }
}

@keyframes flashSuperSpeed {
  0% { 
    transform: translateX(0) scaleX(1);
  }
  25% { 
    transform: translateX(3px) scaleX(0.9);
  }
  50% {
    transform: translateX(5px) scaleX(1.1);
  }
  75% {
    transform: translateX(3px) scaleX(0.95);
  }
  100% {
    transform: translateX(0) scaleX(1);
  }
}

/* Flash style selected state */
.flash-style.sc-express-delivery-selected {
  background: linear-gradient(135deg, #FEE2E2 0%, #FED7AA 100%) !important;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.2), inset 0 0 20px rgba(252, 211, 77, 0.1) !important;
}

/* Flash style ETA badge */
.flash-style .sc-eta-badge {
  background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.5), 0 2px 4px rgba(0,0,0,0.2);
  position: relative;
  overflow: visible;
}

.flash-style .sc-eta-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(45deg, #FCD34D, transparent, #FCD34D);
  border-radius: 16px;
  opacity: 0;
  animation: flashSweep 2s linear infinite;
}

@keyframes flashSweep {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.8; }
}

.flash-style .sc-eta-pulse {
  background: #FCD34D;
  box-shadow: 0 0 10px #FCD34D;
  animation: flashPulseDot 0.5s ease-in-out infinite;
}

@keyframes flashPulseDot {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 10px #FCD34D;
  }
  50% { 
    transform: scale(1.5);
    box-shadow: 0 0 20px #FCD34D, 0 0 30px rgba(252, 211, 77, 0.5);
  }
}

/* ---------- Sonic Style ---------- */
.sonic-style .sc-icon-fast {
  animation: sonicRun 0.5s ease-in-out infinite !important;
  filter: none !important;
  transform-origin: center;
  font-size: 1.3em;
  margin-right: 10px;
  display: inline-block;
  position: relative;
}

@keyframes sonicRun {
  0%, 100% { 
    transform: translateX(0) rotate(0deg) scale(1);
  }
  25% { 
    transform: translateX(-3px) rotate(-15deg) scale(0.95);
  }
  50% { 
    transform: translateX(0) rotate(0deg) scale(1.1);
  }
  75% { 
    transform: translateX(3px) rotate(15deg) scale(0.95);
  }
}

/* Sonic dash effect with multiple speed lines */
.sonic-style .sc-express-delivery-selected .sc-icon-fast::before,
.sonic-style .sc-express-delivery-selected .sc-icon-fast::after {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, #1a73e8 0%, transparent 100%);
  animation: sonicDash 0.4s linear infinite;
}

.sonic-style .sc-express-delivery-selected .sc-icon-fast::before {
  width: 20px;
  height: 3px;
  left: -25px;
  top: 40%;
  border-radius: 2px;
}

.sonic-style .sc-express-delivery-selected .sc-icon-fast::after {
  width: 15px;
  height: 2px;
  left: -22px;
  top: 60%;
  border-radius: 1px;
  animation-delay: 0.2s;
  opacity: 0.7;
}

@keyframes sonicDash {
  0% {
    opacity: 0;
    transform: translateX(-5px) scaleX(0.5);
  }
  50% {
    opacity: 1;
    transform: translateX(5px) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translateX(20px) scaleX(0.3);
  }
}

/* Sonic style container enhancements */
.sonic-style.sc-express-delivery-container {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  border-color: rgba(26,115,232,0.2);
}

.sonic-style.sc-express-delivery-container:hover {
  box-shadow: 0 4px 12px rgba(26,115,232,0.15), 0 2px 4px rgba(26,115,232,0.1);
  transform: translateY(-2px);
}

.sonic-style.sc-express-delivery-selected {
  background: linear-gradient(135deg, #e3f2fd 0%, #d7e9ff 100%) !important;
  border-color: rgba(26,115,232,0.3) !important;
  box-shadow: inset 0 0 0 1px rgba(26,115,232,0.2), 0 4px 12px rgba(26,115,232,0.08) !important;
}

/* Blue theme for text in sonic style */
.sonic-style .sc-express-delivery-text strong {
  color: #1a73e8;
}

.sonic-style .sc-eta-time {
  color: #1a73e8;
  background: linear-gradient(135deg, rgba(26,115,232,0.08), rgba(66,133,244,0.05));
  border-color: rgba(26,115,232,0.15);
}

/* Sonic ring collection effect on hover */
.sonic-style .sc-express-delivery-container:hover .sc-icon-fast {
  animation: sonicBoost 0.3s ease-out !important;
}

@keyframes sonicBoost {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.3) rotate(360deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

/* Driver away state styling */
.eta-pill.driver-away {
  background-color: #FF6B35;
  color: white;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.express-card.driver-away .express-header {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.express-card.driver-away .express-icon {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Smooth fade-in animation for LIVE badge */
.live-badge {
  animation: fadeIn 0.5s ease-in-out;
}

/* Express Unavailable Glassmorphism Overlay - Optimized */
.express-unavailable-overlay {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeIn 0.4s ease-out;
  will-change: opacity;
}

.glass-container {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.15)
  );
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: translateZ(0); /* Force GPU acceleration */
}

.countdown-content {
  color: #1a1a1a;
}

.sleep-animation {
  position: relative;
  display: inline-block;
  height: 50px;
  margin-bottom: 8px;
}

.bed-icon {
  font-size: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  position: relative;
  z-index: 1;
}

.zzz-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 50px;
}

.zzz {
  position: absolute;
  left: 50%;
  top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #660eae;
  opacity: 0;
  animation: floatUp 4s ease-out infinite;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  will-change: transform, opacity;
  transform: translateZ(0); /* GPU acceleration */
}

.zzz-1 {
  animation-delay: 0s;
  font-size: 12px;
}

.zzz-2 {
  animation-delay: 1.3s;
  font-size: 16px;
}

.zzz-3 {
  animation-delay: 2.6s;
  font-size: 20px;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px) scale(0.5);
  }
  20% {
    opacity: 1;
    transform: translateX(-45%) translateY(0px) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateX(-40%) translateY(-20px) scale(1);
  }
  80% {
    opacity: 0.5;
    transform: translateX(-35%) translateY(-35px) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translateX(-30%) translateY(-50px) scale(1.2);
  }
}

.countdown-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.countdown-content p {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.85);
  margin: 0 0 12px 0;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  margin-bottom: 10px;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 45px;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.time-value {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.time-label {
  font-size: 8px;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 2px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.time-separator {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 2px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.availability-text {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.85);
  margin: 0;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.availability-text #available-time {
  font-weight: 600;
  color: #660eae;
}

/* Ensure express card has relative positioning */
.express-card {
  position: relative;
}

/* Mobile adjustments */
@media screen and (max-width: 749px) {
  .countdown-timer {
    gap: 2px;
  }
  
  .time-unit {
    padding: 6px 10px;
    min-width: 45px;
  }
  
  .time-value {
    font-size: 18px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
EOF < /dev/null