:root {
  /* Ultra Premium Dark/Neon Theme */
  --bg-deep: #0a0c10;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.05);
  --brand-neon: #ff1e1e; /* Hyper vibrant red */
  --brand-glow: 0 0 20px rgba(255, 30, 30, 0.5);
  --text-main: #ffffff;
  --text-muted: #8b949e;
  --success: #00ff88;
  --success-glow: 0 0 15px rgba(0, 255, 136, 0.3);
  --star-color: #ffd700;
  --font-main: 'Inter', sans-serif;
  
  --radius-full: 9999px;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
  margin: 0; padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.4;
  padding-top: 140px;
  padding-bottom: 90px;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(255, 30, 30, 0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(255, 30, 30, 0.03), transparent 25%);
}

.hidden { display: none !important; }

.btn-primary {
  background: var(--brand-neon); color: #fff;
  padding: 12px 20px; border-radius: var(--radius-md); border: none;
  font-weight: 800; font-size: 1rem; width: 100%; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-primary:active { transform: scale(0.95); }

.btn-secondary {
  background: rgba(255,255,255,0.1); color: #fff;
  padding: 12px 20px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.2);
  font-weight: 600; font-size: 1rem; width: 100%; cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 15px rgba(255, 30, 30, 0.4); }
  50% { box-shadow: 0 0 30px rgba(255, 30, 30, 0.8); }
  100% { box-shadow: 0 0 15px rgba(255, 30, 30, 0.4); }
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-stagger > * { opacity: 0; animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }

/* ================= HEADER ================= */
.app-header {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(10, 12, 16, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  padding: 16px 20px;
  border-bottom: 1px solid var(--glass-border);
  animation: fadeInUp 0.5s ease-out;
}

.header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }

.address-selector { display: flex; flex-direction: column; }
.address-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; font-weight: 800; letter-spacing: 1px; margin-bottom: 2px;}
.address-current {
  display: flex; align-items: center; gap: 6px;
  font-size: 1rem; font-weight: 700; color: #fff;
  cursor: pointer;
}
.address-current i { color: var(--brand-neon); text-shadow: var(--brand-glow); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions i.ph-bell { font-size: 1.6rem; color: #fff; cursor: pointer; transition: color 0.3s; }
.header-actions i.ph-bell:hover { color: var(--brand-neon); text-shadow: var(--brand-glow); }

.profile-pic {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--brand-neon);
  box-shadow: var(--brand-glow);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.profile-pic:active { transform: scale(0.85); }

/* ================= SEARCH BAR ================= */
.search-bar {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 14px 20px;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}
.search-bar:focus-within {
  background: rgba(255, 30, 30, 0.05);
  border-color: rgba(255, 30, 30, 0.5);
  box-shadow: 0 0 15px rgba(255, 30, 30, 0.2), inset 0 2px 10px rgba(0,0,0,0.2);
}
.search-bar i { color: var(--brand-neon); font-size: 1.3rem; font-weight: bold; }
.search-bar input { flex: 1; border: none; background: transparent; color: #fff; font-size: 1rem; outline: none; }
.search-bar input::placeholder { color: #5c6370; }

/* ================= MASTER DASHBOARD (GLASS SPHERES) ================= */
.master-container {
  position: relative;
  width: 100%;
}

.master-categories {
  display: flex; gap: 24px; overflow-x: auto;
  padding: 30px 20px 30px 20px;
  scrollbar-width: none;
  max-width: 100vw;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
.master-categories::-webkit-scrollbar { display: none; }

.master-cat {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; flex-shrink: 0; min-width: 68px;
  /* CSS Transform transitions disabled here to allow JS Cover Flow animation */
}
/* JS handles hover/active scaling */

.master-icon-box {
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: all 0.3s;
}
.master-cat:hover .master-icon-box { transform: scale(1.1); }
.master-icon-box img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.master-cat span {
  font-size: 0.75rem; font-weight: 800; color: #fff; text-align: center;
  white-space: nowrap; letter-spacing: 0.2px; text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}


/* ================= PROMO CAROUSEL ================= */
/* JULIO PNEUS VIP BANNER */
.julio-banner {
  position: relative;
  margin: 0 20px 28px 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #18191c 0%, #0d0e12 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 24px;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.julio-banner:active { transform: scale(0.97); }
.julio-glow {
  position: absolute;
  top: -50%; right: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,30,30,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.julio-content { position: relative; z-index: 2; flex: 1; }
.julio-badge { color: #ff1e1e; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.julio-title { font-size: 1.8rem; font-weight: 900; color: #fff; margin-bottom: 6px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); line-height: 1; letter-spacing: -1px; }
.julio-subtitle { font-size: 0.85rem; color: #aaa; margin-bottom: 16px; font-weight: 500; }
.btn-julio { background: #fff; color: #000; padding: 10px 16px; border-radius: var(--radius-full); font-weight: 800; border: none; display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem;}
.julio-image-box {
  position: relative; z-index: 2; width: 120px; height: 120px; flex-shrink: 0;
  border-radius: 50%; border: 3px solid #ff1e1e; box-shadow: 0 0 20px rgba(255,30,30,0.4);
  overflow: hidden; background: #000;
}
.julio-image-box img { width: 100%; height: 100%; object-fit: cover; }



/* ================= FEED (LOJAS) ================= */
.stores-feed { padding: 0 20px; }
.feed-title { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 20px; display: flex; align-items: center; gap: 10px;}
.feed-title::before { content:''; display:block; width: 4px; height: 20px; background: var(--brand-neon); border-radius: 4px; box-shadow: var(--brand-glow);}

.feed-list { display: flex; flex-direction: column; gap: 20px; }

.store-row {
  display: flex; gap: 16px; align-items: center; cursor: pointer;
  background: var(--bg-card); border: 1px solid var(--glass-border);
  padding: 16px; border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}
.store-row:hover { background: var(--bg-card-hover); border-color: rgba(255,255,255,0.1); transform: translateX(5px); }
.store-row:active { transform: scale(0.97); }

.store-img-box { position: relative; width: 80px; height: 80px; flex-shrink: 0; }
.store-img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,0.1);
}
.store-badge {
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #ff1e1e, #ff4d4d); color: #fff;
  font-size: 0.65rem; font-weight: 800; padding: 4px 10px; border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(255, 30, 30, 0.4); text-transform: uppercase;
}

.store-details { flex: 1; display: flex; flex-direction: column; justify-content: center; }

/* BRUNO BATERIAS VIP BANNER */
.bruno-banner {
  position: relative;
  margin: 0 20px 20px 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #09121a 0%, #03080e 100%);
  border: 1px solid rgba(0, 195, 255, 0.2);
  overflow: hidden;
  padding: 24px;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bruno-banner:hover {
  box-shadow: 0 15px 50px rgba(0, 195, 255, 0.3);
}
.bruno-banner:active { transform: scale(0.97); }
.bruno-glow {
  position: absolute;
  top: -100%; left: -50%; width: 250%; height: 250%;
  background: conic-gradient(from 0deg, transparent, transparent, transparent, #00d2ff, #ffcc00, transparent);
  pointer-events: none;
  animation: rotate-glow-bruno 4s linear infinite;
  opacity: 0.35;
}
@keyframes rotate-glow-bruno {
  100% { transform: rotate(360deg); }
}
.bruno-content { position: relative; z-index: 2; flex: 1; }
.bruno-badge { color: #00d2ff; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.bruno-title { font-size: 1.6rem; font-weight: 900; color: #fff; margin-bottom: 6px; text-shadow: 0 0 15px rgba(0, 195, 255, 0.6); line-height: 1; letter-spacing: -1px; }
.bruno-subtitle { font-size: 0.85rem; color: #b0c4de; margin-bottom: 16px; font-weight: 500; }
.btn-bruno { background: #00d2ff; color: #000; padding: 10px 16px; border-radius: var(--radius-full); font-weight: 900; border: none; display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; box-shadow: 0 0 15px rgba(0,210,255,0.4); }
.bruno-image-box {
  position: relative; z-index: 2; width: 110px; height: 110px; flex-shrink: 0;
  border-radius: 16px; border: 2px solid #00d2ff; box-shadow: 0 0 25px rgba(0,195,255,0.5);
  overflow: hidden; background: #000;
}
.bruno-image-box img { width: 100%; height: 100%; object-fit: cover; }

.store-name { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.store-meta { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 500;}
.rating-pill { display: flex; align-items: center; gap: 4px; color: var(--star-color); font-weight: 800; background: rgba(255, 215, 0, 0.1); padding: 2px 6px; border-radius: 4px;}
.rating-pill i { font-size: 0.9rem; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
.dot { font-size: 0.5rem; color: #444; }

.store-meta-2 { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); font-weight: 600;}
.store-meta-2 .fee { color: var(--success); text-shadow: var(--success-glow); }

.btn-like {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-like:hover { background: rgba(255, 30, 30, 0.1); color: var(--brand-neon); border-color: rgba(255, 30, 30, 0.3); }
.btn-like:active { transform: scale(1.3); }

/* ================= BOTTOM NAV ================= */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; width: 100%; height: 75px;
  background: rgba(10, 12, 16, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  display: flex; justify-content: space-around; align-items: center; z-index: 100;
  padding-bottom: env(safe-area-inset-bottom);
}
.nav-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #555; text-decoration: none; font-size: 0.7rem; gap: 6px; flex: 1; font-weight: 700;
  transition: all 0.3s;
}
.nav-item i { font-size: 1.8rem; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.nav-item.active { color: var(--brand-neon); text-shadow: var(--brand-glow); }
.nav-item.active i { transform: translateY(-4px) scale(1.1); }
.nav-item:active i { transform: scale(0.8); }

/* ================= FLOATING CART (THE GLOWING BUTTON) ================= */
.floating-cart {
  position: fixed; bottom: 95px; left: 20px; right: 20px;
  background: linear-gradient(90deg, #00d2ff, #00ff88);
  border-radius: var(--radius-xl); padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: center; color: #000;
  z-index: 90; cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
  border: 1px solid rgba(0, 210, 255, 0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatBounce 2s infinite;
}
.floating-cart.hidden { transform: translateY(200px); opacity: 0; animation: none; }
.floating-cart:active { transform: scale(0.95); animation: none; }
.cart-left { display: flex; align-items: center; gap: 16px; }
.bag-icon-wrapper { position: relative; }
.bag-icon-wrapper i { font-size: 1.8rem; }
.cart-badge {
  position: absolute; top: -8px; right: -10px; background: #fff; color: var(--brand-neon);
  width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.cart-info { display: flex; flex-direction: column; }
.cart-total-value { font-size: 1.2rem; font-weight: 800; letter-spacing: 0.5px;}
.cart-total-label { font-size: 0.8rem; opacity: 0.9; font-weight: 600;}
.btn-view-cart { background: rgba(0,0,0,0.2); padding: 8px 16px; border-radius: var(--radius-full); color: #fff; border: 1px solid rgba(255,255,255,0.3); font-weight: 800; font-size: 0.95rem; cursor: pointer; }

/* ================= MODALS ================= */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000;
}
.modal-overlay.hidden { display: none !important; }
.modal-content {
  background: var(--surface); width: 90%; max-width: 400px;
  border-radius: 20px; padding: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative; border: 1px solid rgba(255,255,255,0.1); text-align: center; color: #fff;
}

/* ================= CART MODAL ================= */
.cart-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 150; display: flex; align-items: flex-end;
  opacity: 1; transition: opacity 0.4s;
}
.cart-overlay.hidden { opacity: 0; pointer-events: none; }
.cart-panel {
  width: 100%; max-height: 95vh; 
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  border-top: 1px solid rgba(0, 210, 255, 0.4);
  border-top-left-radius: 35px; border-top-right-radius: 35px;
  display: flex; flex-direction: column; transform: translateY(0); transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 -15px 50px rgba(0, 210, 255, 0.2), inset 0 10px 20px rgba(0, 210, 255, 0.05);
  position: relative; overflow: hidden;
}
.cart-panel::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,210,255,0.1) 0%, transparent 50%);
  animation: float 6s infinite ease-in-out; pointer-events: none;
}
.cart-overlay.hidden .cart-panel { transform: translateY(100%); }
.cart-header { 
  padding: 24px; display: flex; justify-content: space-between; align-items: center; 
  border-bottom: 1px solid rgba(0, 210, 255, 0.2); 
  position: relative; z-index: 2;
}
.cart-header h2 { font-weight: 900; font-size: 1.5rem; color: #fff; text-shadow: 0 0 15px rgba(0, 210, 255, 0.5); }
.btn-close { 
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); 
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.4rem; 
  display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; 
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.btn-close:hover { background: rgba(255, 30, 30, 0.1); color: #ff1e1e; border-color: rgba(255, 30, 30, 0.4); box-shadow: 0 0 15px rgba(255,30,30,0.3); transform: scale(1.1); }
.btn-close:active { transform: scale(0.9); }
.cart-content { padding: 24px; overflow-y: auto; flex: 1; position: relative; z-index: 2; }

.cart-item { 
  display: flex; gap: 16px; margin-bottom: 20px; align-items: center; 
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); 
  border-radius: 16px; padding: 16px;
  transition: all 0.3s;
}
.cart-item:hover { background: rgba(0, 210, 255, 0.05); border-color: rgba(0, 210, 255, 0.3); transform: translateX(5px); }
.cart-item-info { flex: 1; }
.cart-item-title { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: #fff;}
.cart-item-price { color: #00ff88; font-weight: 900; font-size: 1.2rem; text-shadow: 0 0 10px rgba(0,255,136,0.3); margin-top: 5px; }
.qty-controls { display: flex; align-items: center; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: var(--radius-full); overflow: hidden; padding: 4px; }
.qty-btn { background: transparent; border: none; color: #fff; width: 36px; height: 36px; font-size: 1.4rem; cursor: pointer; border-radius: 50%; transition: background 0.2s; }
.qty-btn:active { background: rgba(255,255,255,0.1); }
.qty-value { width: 36px; text-align: center; font-size: 1.1rem; font-weight: 800; color: #fff;}

.cart-footer { padding: 24px; background: rgba(0,0,0,0.4); border-top: 1px solid rgba(0, 210, 255, 0.2); position: relative; z-index: 2; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 1rem; color: #bbb; font-weight: 600;}
.summary-row.total { font-size: 1.6rem; font-weight: 900; color: #fff; margin-top: 16px; border-top: 1px dashed rgba(255,255,255,0.2); padding-top: 16px; text-shadow: 0 0 15px rgba(255,255,255,0.4); }
.free { color: var(--success); text-shadow: var(--success-glow); }
.btn-checkout {
  width: 100%; background: linear-gradient(90deg, #00ff88, #00d2ff); color: #000; border: none;
  padding: 18px; border-radius: var(--radius-full); font-size: 1.2rem; font-weight: 900;
  margin-top: 20px; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3); border: 1px solid rgba(255,255,255,0.2);
  animation: pulseGlow 2s infinite;
}
.btn-checkout:active { transform: scale(0.96); box-shadow: 0 5px 10px rgba(0, 255, 136, 0.4); animation: none; }

/* ================= CHECKOUT / PAYMENT MODAL UX ================= */
.checkout-panel {
  padding: 30px 20px;
  background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
  border: 1px solid rgba(0, 210, 255, 0.3);
  box-shadow: 0 0 50px rgba(0, 210, 255, 0.2), inset 0 0 20px rgba(0, 210, 255, 0.05);
  position: relative; overflow: hidden;
}
.checkout-panel::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,210,255,0.1) 0%, transparent 50%);
  animation: float 6s infinite ease-in-out; pointer-events: none;
}
.btn-cancel-link {
  background: transparent; border: none; color: #8b949e;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  text-decoration: underline; text-decoration-color: transparent;
  transition: all 0.3s; margin-top: 15px; width: 100%; text-align: center;
}
.btn-cancel-link:hover { color: #fff; text-decoration-color: #fff; }
.payment-methods-grid {
  display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px;
}
.btn-payment-method {
  display: flex; align-items: center; justify-content: flex-start; gap: 15px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 18px 20px; border-radius: 16px; color: #fff; font-weight: 800; font-size: 1.05rem;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative; overflow: hidden;
}
.btn-payment-method i { font-size: 1.6rem; z-index: 2; transition: transform 0.3s; }
.btn-payment-method span { z-index: 2; }
.btn-payment-method::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-payment-method:hover {
  background: rgba(0, 210, 255, 0.1); border-color: rgba(0, 210, 255, 0.4);
  transform: translateX(5px); box-shadow: 0 10px 25px rgba(0, 210, 255, 0.2);
}
.btn-payment-method:hover i { transform: scale(1.2) rotate(5deg); color: #00d2ff; }
.btn-payment-method:hover::after { transform: translateX(100%); }
.btn-payment-method.pix:hover i { color: #00ff88; }
.btn-payment-method.pix:hover { background: rgba(0, 255, 136, 0.1); border-color: rgba(0, 255, 136, 0.4); box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2); }


/* ================= STORE VIEW (PRODUCTS) ================= */
.store-header {
  position: fixed; top: 0; left: 0; width: 100%; background: rgba(10,12,16,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 100; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--glass-border);
}
.btn-back { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); font-size: 1.5rem; color: #fff; cursor: pointer; padding: 10px; border-radius: 50%; transition: all 0.2s; }
.btn-back:active { background: rgba(255,30,30,0.2); color: var(--brand-neon); transform: scale(0.9); }
.store-header h2 { font-size: 1.2rem; color: #fff; font-weight: 800; }
.store-header i.ph-magnifying-glass { font-size: 1.5rem; color: #fff; padding: 10px; }

.categories { display: flex; gap: 12px; overflow-x: auto; padding: 16px 20px; margin-top: 75px; scrollbar-width: none; border-bottom: 1px solid var(--glass-border); }
.categories::-webkit-scrollbar { display: none; }
.cat-item {
  white-space: nowrap; padding: 10px 24px; border-radius: var(--radius-full);
  background: var(--bg-card); border: 1px solid var(--glass-border);
  font-size: 0.95rem; font-weight: 700; color: var(--text-muted); cursor: pointer; transition: all 0.3s;
}
.cat-item.active { background: var(--brand-neon); color: #fff; border-color: var(--brand-neon); box-shadow: var(--brand-glow); }

.products-section { padding: 20px; }
.products-list { display: flex; flex-direction: column; gap: 24px; }
.product-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius-xl); padding: 16px;
  cursor: pointer; transition: all 0.3s;
}
.product-row:active { transform: scale(0.97); border-color: rgba(255,30,30,0.3); }
.product-info { flex: 1; padding-right: 16px; }
.product-title { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.product-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4;}
.product-price { font-size: 1.2rem; font-weight: 800; color: var(--brand-neon); text-shadow: var(--brand-glow); }

.product-img-box { position: relative; width: 100px; height: 100px; flex-shrink: 0; }
.product-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); }
.btn-add {
  position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; background: var(--brand-neon); border: 2px solid #1a1a1a; border-radius: 50%;
  color: #fff; font-size: 1.5rem; font-weight: bold; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--brand-glow); cursor: pointer; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-add:active { transform: translateX(-50%) scale(0.8); }

.view-section { display: block; animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.view-section.hidden { display: none; animation: none; }

/* ================= VEGAS CONSORTIUM (BAÚ PREMIUM) ================= */
@keyframes shimmerSweep {
  0% { transform: translateX(-150%) skewX(-15deg); }
  100% { transform: translateX(150%) skewX(-15deg); }
}
@keyframes goldPulse {
  0% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.3), inset 0 0 10px rgba(255, 215, 0, 0.2); }
  50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), inset 0 0 20px rgba(255, 215, 0, 0.4); }
  100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.3), inset 0 0 10px rgba(255, 215, 0, 0.2); }
}

.vegas-consortium {
  position: relative; overflow: hidden;
  margin: 10px 20px 30px 20px; padding: 20px;
  background: linear-gradient(135deg, #1f1a00 0%, #0a0800 100%);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
  animation: goldPulse 3s infinite;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.vegas-consortium:active { transform: scale(0.96); }

.vegas-content { flex: 1; z-index: 2; }
.vegas-title {
  font-size: 1.4rem; font-weight: 900; color: #ffd700; margin-bottom: 6px;
  text-shadow: 0 0 10px rgba(255,215,0,0.5); letter-spacing: -0.5px;
}
.vegas-subtitle { font-size: 0.95rem; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 10px; }
.vegas-prize {
  display: flex; align-items: center; gap: 8px; background: rgba(255,215,0,0.1);
  border-radius: var(--radius-sm); padding: 8px 12px; margin-bottom: 12px;
  border: 1px solid rgba(255,215,0,0.3);
}
.vegas-prize i { color: #ffd700; font-size: 1.2rem; }
.vegas-prize span { font-size: 0.8rem; color: #e0e0e0; font-weight: 700; }

.btn-vegas {
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  color: #1a1a1a; border: none; padding: 10px 20px; border-radius: var(--radius-full);
  font-weight: 900; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255,215,0,0.4); pointer-events: none;
}

.vegas-image {
  width: 110px; height: 110px; flex-shrink: 0; position: relative; z-index: 2;
  filter: drop-shadow(0 0 20px rgba(255,215,0,0.5));
  animation: float 4s ease-in-out infinite;
}
.vegas-image img { width: 100%; height: 100%; object-fit: contain; }

.shimmer {
  position: absolute; top: 0; left: 0; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmerSweep 3s infinite linear; z-index: 1; pointer-events: none;
}

/* ================= SOS EXTREME NEON PULSE ================= */
.sos-nav-item {
  position: relative;
}
.sos-nav-item i {
  color: #ff1e1e !important;
  font-size: 1.8rem !important;
  animation: sos-siren-spin 1s infinite;
  display: inline-block;
}
.sos-nav-item span {
  color: #ff1e1e !important;
  font-weight: 900 !important;
  text-shadow: 0 0 10px #ff1e1e, 0 0 20px #ff1e1e !important;
  animation: sos-text-flash 1s infinite;
}

@keyframes sos-siren-spin {
  0% { filter: drop-shadow(0 0 10px #ff1e1e); transform: scale(1) rotate(-15deg); }
  50% { filter: drop-shadow(0 0 25px #ff1e1e) drop-shadow(0 0 40px #ff1e1e); transform: scale(1.3) rotate(15deg); }
  100% { filter: drop-shadow(0 0 10px #ff1e1e); transform: scale(1) rotate(-15deg); }
}
@keyframes sos-text-flash {
  0%, 100% { opacity: 0.8; text-shadow: 0 0 5px #ff1e1e; }
  50% { opacity: 1; text-shadow: 0 0 15px #ff1e1e, 0 0 30px #ff1e1e, 0 0 40px #ff1e1e; }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity 0.3s;
}
.lightbox-modal.hidden { opacity: 0; pointer-events: none; }
.lightbox-modal img {
  max-width: 90%; max-height: 90%; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,1);
  transform: scale(1); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.lightbox-modal.hidden img { transform: scale(0.8); }

/* ================= SECURITY & LGPD TCC ================= */
.security-badges {
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.sec-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0, 255, 136, 0.05); border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 10px 16px; border-radius: var(--radius-md);
  font-size: 0.8rem; color: #00ff88; font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,255,136,0.1);
}
.sec-badge i { font-size: 1.2rem; }
.lgpd-badge { background: rgba(0, 210, 255, 0.05); border-color: rgba(0, 210, 255, 0.2); color: #00d2ff; }

.app-footer {
  text-align: center; padding: 40px 20px;
  border-top: 1px dashed rgba(255,255,255,0.1); margin-top: 30px;
}
.app-footer p { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 12px; }
.footer-links span { font-size: 0.8rem; font-weight: 800; color: #fff; cursor: pointer; transition: color 0.2s;}
.footer-links span:hover { color: var(--brand-neon); }

.lgpd-banner {
  position: fixed; bottom: 85px; left: 10px; right: 10px;
  background: rgba(10, 12, 16, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 210, 255, 0.4); border-radius: var(--radius-lg);
  padding: 20px; display: flex; gap: 16px; align-items: center;
  z-index: 999; box-shadow: 0 -10px 30px rgba(0,0,0,0.8);
  transform: translateY(0); transition: transform 0.5s ease-in-out, opacity 0.5s;
}
.lgpd-banner.hidden { transform: translateY(150%); opacity: 0; pointer-events: none;}
.lgpd-icon { font-size: 2.5rem; color: #00d2ff; text-shadow: 0 0 15px rgba(0,210,255,0.6); }
.lgpd-content h4 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; font-weight: 900;}
.lgpd-content p { font-size: 0.75rem; color: #bbb; line-height: 1.4; margin-bottom: 12px;}
.lgpd-link { color: #00d2ff; font-weight: 700; text-decoration: underline; cursor: pointer; }
.btn-lgpd { background: #00d2ff; color: #000; padding: 10px 16px; border: none; border-radius: var(--radius-full); font-weight: 900; font-size: 0.85rem; cursor: pointer; box-shadow: 0 4px 15px rgba(0,210,255,0.4);}

.legal-modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  z-index: 1000; display: flex; align-items: flex-end;
  opacity: 1; transition: opacity 0.4s;
}
.legal-modal.hidden { opacity: 0; pointer-events: none; }
.legal-panel {
  width: 100%; max-height: 80vh; background: #0a0c10;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px 30px 0 0;
  display: flex; flex-direction: column; transform: translateY(0); transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
}
.legal-modal.hidden .legal-panel { transform: translateY(100%); }
.legal-header { padding: 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--glass-border); }
.legal-header h2 { font-weight: 900; font-size: 1.2rem; color: #fff;}
.legal-body { padding: 24px; overflow-y: auto; flex: 1; font-size: 0.85rem; color: #bbb; line-height: 1.6; }
.legal-body h3 { color: #fff; margin-top: 16px; margin-bottom: 8px; font-size: 1rem;}

/* Futuristic Auth UI */
.auth-panel {
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid rgba(0, 210, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.15);
  max-height: 85vh;
}
.auth-tabs {
  display: flex;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.auth-tab {
  flex: 1; padding: 15px; background: transparent; border: none; color: #8b949e;
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s;
}
.auth-tab.active {
  color: #00d2ff;
  border-bottom: 3px solid #00d2ff;
  text-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
  background: linear-gradient(180deg, transparent, rgba(0, 210, 255, 0.1));
}
.auth-view {
  padding: 24px;
}
.auth-view h2 {
  font-weight: 900; margin-bottom: 5px;
  background: linear-gradient(90deg, #00d2ff, #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.auth-subtitle {
  color: #8b949e; font-size: 0.9rem; margin-bottom: 20px;
}
.input-group {
  position: relative; margin-bottom: 15px;
}
.input-group i {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  color: #8b949e; font-size: 1.2rem; transition: color 0.3s;
}
.input-group input {
  width: 100%; padding: 15px 15px 15px 45px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; border-radius: 10px; box-sizing: border-box;
  font-family: 'Inter', sans-serif; font-size: 1rem; transition: all 0.3s;
}
.input-group input:focus {
  outline: none; border-color: #00d2ff; background: rgba(0,210,255,0.05);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}
.auth-btn {
  background: linear-gradient(90deg, #0052d4, #4364f7, #6fb1fc);
  font-weight: 900; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px; border-radius: 12px; border: none; color: #fff; width: 100%; font-size: 1.1rem;
  cursor: pointer; transition: all 0.3s;
}
.auth-btn:hover { box-shadow: 0 0 25px rgba(111,177,252,0.6); transform: translateY(-2px); }

.auth-btn-register {
  background: linear-gradient(90deg, #00b894, #00cec9);
  font-weight: 900; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px; border-radius: 12px; border: none; color: #fff; width: 100%; font-size: 1.1rem;
  cursor: pointer; transition: all 0.3s;
}
.auth-btn-register:hover { box-shadow: 0 0 25px rgba(0,206,201,0.6); transform: translateY(-2px); }

.auth-scroll-area {
  max-height: 40vh; overflow-y: auto; padding-right: 10px; margin-bottom: 20px;
}
.auth-scroll-area::-webkit-scrollbar { width: 6px; }
.auth-scroll-area::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.auth-scroll-area::-webkit-scrollbar-thumb { background: #00d2ff; border-radius: 10px; }

/* ================= WALLET MODAL ================= */
.wallet-card {
  background: linear-gradient(135deg, rgba(255, 30, 30, 0.2), rgba(0, 0, 0, 0.8));
  border: 1px solid rgba(255, 30, 30, 0.4); border-radius: 20px; padding: 20px;
  text-align: left; box-shadow: 0 10px 30px rgba(255, 30, 30, 0.2);
  margin-bottom: 20px; position: relative; overflow: hidden;
}
.wallet-card::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,30,30,0.1) 0%, transparent 60%);
  animation: float 6s infinite ease-in-out;
}
.wallet-balance-title { font-size: 0.8rem; color: #bbb; text-transform: uppercase; letter-spacing: 1px; position: relative; z-index: 2; }
.wallet-balance { font-size: 2.2rem; font-weight: 900; color: #fff; text-shadow: 0 0 15px rgba(255, 30, 30, 0.6); margin: 5px 0; position: relative; z-index: 2; }
.wallet-chips { display: flex; gap: 10px; margin-top: 15px; position: relative; z-index: 2; }
.wallet-chip { background: rgba(255,255,255,0.1); padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; border: 1px solid rgba(255,255,255,0.05); }

.wallet-tabs { display: flex; background: rgba(255,255,255,0.05); border-radius: var(--radius-full); padding: 5px; margin-bottom: 20px; }
.wallet-tab { flex: 1; padding: 10px; background: transparent; border: none; color: var(--text-muted); border-radius: var(--radius-full); font-weight: 700; cursor: pointer; transition: all 0.3s; }
.wallet-tab.active { background: #222; color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }

.transaction-list { display: flex; flex-direction: column; gap: 12px; text-align: left; max-height: 45vh; overflow-y: auto; padding-right: 5px; margin-bottom: 15px;}
.transaction-list::-webkit-scrollbar { width: 4px; }
.transaction-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }
.transaction-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.03); padding: 12px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05);
}
.tx-left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.tx-left > div { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.tx-icon { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.tx-icon.in { background: rgba(0,255,136,0.1); color: #00ff88; }
.tx-icon.out { background: rgba(255,30,30,0.1); color: #ff1e1e; }
.tx-icon.cupon { background: rgba(255,215,0,0.1); color: #ffd700; }
.tx-title { font-size: 0.85rem; font-weight: bold; color: #fff; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.tx-date { font-size: 0.7rem; color: #8b949e; line-height: 1.2; }
.tx-right { text-align: right; flex-shrink: 0; margin-left: 10px; display: flex; flex-direction: column; justify-content: center; }
.tx-amount { font-size: 0.85rem; font-weight: 900; }
.tx-amount.in { color: #00ff88; }
.tx-amount.out { color: #fff; }
.tx-receipt-btn { font-size: 0.65rem; color: #00d2ff; cursor: pointer; margin-top: 3px; display: inline-block; font-weight: bold;}

/* ================= SCHEDULING MODAL (FISHING UX) ================= */
.sched-panel {
  padding: 30px 20px;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  border: 1px solid rgba(0, 255, 136, 0.3);
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.15), inset 0 0 20px rgba(0, 255, 136, 0.05);
  position: relative;
  overflow: hidden;
}
.sched-panel::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,255,136,0.1) 0%, transparent 50%);
  animation: float 6s infinite ease-in-out; pointer-events: none;
}
.sched-title {
  font-size: 1.6rem; font-weight: 900; color: #fff; margin-bottom: 5px;
  text-shadow: 0 0 15px rgba(255,255,255,0.3);
}
.sched-price {
  color: #00ff88; font-weight: 900; font-size: 1.6rem; margin-bottom: 25px;
  text-shadow: 0 0 20px rgba(0,255,136,0.6);
}
.date-scroll { display: flex; gap: 12px; overflow-x: auto; padding: 15px 5px; margin-bottom: 20px; }
.date-scroll::-webkit-scrollbar { height: 4px; }
.date-scroll::-webkit-scrollbar-thumb { background: rgba(0, 255, 136, 0.4); border-radius: 10px; }
.date-box {
  flex: 0 0 75px; height: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.date-box:hover { background: rgba(0, 255, 136, 0.05); border-color: rgba(0, 255, 136, 0.3); transform: translateY(-5px); }
.date-box .d-week { font-size: 0.85rem; color: #8b949e; text-transform: uppercase; font-weight: bold; transition: color 0.3s; }
.date-box .d-day { font-size: 1.6rem; font-weight: 900; color: #fff; margin-top: 5px; transition: color 0.3s; }
.date-box.active {
  background: rgba(0, 255, 136, 0.15); border-color: #00ff88;
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
  transform: scale(1.05) translateY(-5px);
}
.date-box.active .d-week { color: #00ff88; }
.date-box.active .d-day { color: #fff; text-shadow: 0 0 10px rgba(0,255,136,0.8); }

.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 25px; }
.time-box {
  padding: 14px 10px; text-align: center; font-weight: 800; color: #fff; font-size: 1rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.time-box:hover:not(.disabled) { background: rgba(0, 255, 136, 0.05); border-color: rgba(0, 255, 136, 0.3); transform: scale(1.05); }
.time-box.active { 
  background: linear-gradient(90deg, #00b09b, #96c93d); color: #fff; border: none; 
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.4); transform: scale(1.05); 
}
.time-box.disabled { opacity: 0.2; cursor: not-allowed; text-decoration: line-through; background: transparent; }

@keyframes superPulse {
  0% { box-shadow: 0 0 15px rgba(0, 255, 136, 0.4); transform: scale(1); }
  50% { box-shadow: 0 0 35px rgba(0, 255, 136, 0.8); transform: scale(1.02); }
  100% { box-shadow: 0 0 15px rgba(0, 255, 136, 0.4); transform: scale(1); }
}

.btn-sched-confirm {
  background: linear-gradient(90deg, #00ff88, #00d2ff);
  color: #000; padding: 18px 20px; border-radius: var(--radius-full); border: none;
  font-weight: 900; font-size: 1.1rem; width: 100%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  animation: superPulse 2s infinite; transition: all 0.3s;
}
.btn-sched-confirm:hover { background: linear-gradient(90deg, #00ff88, #00ffcc); }
.btn-sched-confirm:active { transform: scale(0.95); animation: none; }

/* ================= COUPON TICKETS ================= */
.wallet-ticket {
  display: flex;
  background: var(--bg-card);
  border: 1px dashed var(--glass-border);
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.wallet-ticket::before, .wallet-ticket::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px; height: 20px;
  background: var(--bg-deep);
  border-radius: 50%;
  transform: translateY(-50%);
}
.wallet-ticket::before { left: -10px; border-right: 1px dashed var(--glass-border); }
.wallet-ticket::after { right: -10px; border-left: 1px dashed var(--glass-border); }

.wallet-ticket-value {
  padding: 10px;
  background: rgba(255, 215, 0, 0.1);
  border-right: 2px dashed rgba(255, 215, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 85px;
  flex-shrink: 0;
}
.wallet-ticket.ouro .wallet-ticket-value {
  background: rgba(0, 210, 255, 0.1);
  border-right: 2px dashed rgba(0, 210, 255, 0.3);
}

.ticket-amount { font-size: 1.05rem; font-weight: 900; color: #ffd700; text-shadow: 0 0 10px rgba(255,215,0,0.4); white-space: nowrap; }
.wallet-ticket.ouro .ticket-amount { color: #00d2ff; text-shadow: 0 0 10px rgba(0,210,255,0.4); white-space: nowrap; }

.wallet-ticket-info {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  min-width: 0;
}
.wallet-ticket-title { font-size: 0.85rem; font-weight: bold; margin-bottom: 3px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wallet-ticket-status { font-size: 0.75rem; color: #00ff88; font-weight: bold; display: flex; align-items: center; gap: 5px; }

/* Used Ticket State */
.wallet-ticket.used { opacity: 0.5; filter: grayscale(100%); border-color: rgba(255,255,255,0.1); }
.wallet-ticket.used .wallet-ticket-status { color: #ff1e1e; }
.wallet-ticket.used .ticket-amount { color: #8b949e; text-shadow: none; }
