/* ===== RAXGIFTS RING BAR ===== */
.ring-bar {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 20px auto;
  background: #1a1a1a;
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ring-bar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
}

/* Icon */
.ring-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #f5c518; border-radius: 12px;
  transition: transform 0.3s ease;
}
.ring-bar:hover .ring-icon { transform: scale(1.08) rotate(-5deg); }
.ring-icon svg { width: 26px; height: 26px; }

/* Center */
.ring-center { flex: 1; min-width: 0; }

/* Title Row with Badges */
.ring-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ring-title {
  color: #fff; font-size: 15px; font-weight: 600;
  letter-spacing: 0.3px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.ring-sameday-box {
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid rgba(245, 197, 24, 0.4);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 800;
  color: #f5c518;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: glow-pulse 2s ease-in-out infinite;
  white-space: nowrap;
}
.ring-usa-box {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 800;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(245,197,24,0.3), 0 0 0 1px rgba(245,197,24,0.2); }
  50% { box-shadow: 0 0 16px rgba(245,197,24,0.6), 0 0 0 2px rgba(245,197,24,0.4); }
}

.ring-track {
  width: 100%; height: 4px;
  background: rgba(255,255,255,0.12); border-radius: 2px;
  margin-top: 8px; overflow: hidden;
}
.ring-fill {
  height: 100%; width: 35%;
  background: #f5c518; border-radius: 2px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.7} }

/* Countdown */
.ring-countdown {
  color: #f5c518;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 0.3px;
}
.ring-countdown .rg-countdown {
  font-family: 'Courier New', monospace;
  background: rgba(245,197,24,0.15);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(245,197,24,0.3);
}

/* Button */
.ring-btn {
  flex-shrink: 0;
  background: #f5c518; color: #1a1a1a;
  border: 2px solid #f5c518;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all 0.25s ease;
  white-space: nowrap; letter-spacing: 0.8px;
  text-decoration: none; display: inline-flex;
  align-items: center; text-transform: uppercase;
}
.ring-btn:hover {
  background: #fff; border-color: #fff;
  color: #1a1a1a; transform: scale(1.06);
}
.ring-btn:active { transform: scale(0.98); }

/* Responsive */
@media (max-width: 480px) {
  .ring-bar {
    padding: 12px 14px; gap: 10px;
    border-radius: 24px; flex-wrap: wrap;
  }
  .ring-icon { width: 36px; height: 36px; }
  .ring-icon svg { width: 20px; height: 20px; }
  .ring-center { flex: 1 1 60%; min-width: 0; }
  .ring-title { font-size: 12px; }
  .ring-sameday-box, .ring-usa-box { font-size: 9px; padding: 2px 6px; }
  .ring-title-row { gap: 5px; }
  .ring-track { margin-top: 6px; height: 3px; }
  .ring-countdown { font-size: 11px; }
  .ring-btn {
    padding: 8px 16px; font-size: 12px;
    letter-spacing: 0.5px; margin-left: auto;
  }
}

@media (min-width: 768px) {
  .ring-bar { padding: 16px 28px; gap: 20px; }
  .ring-icon { width: 50px; height: 50px; }
  .ring-icon svg { width: 30px; height: 30px; }
  .ring-title { font-size: 16px; }
  .ring-sameday-box, .ring-usa-box { font-size: 11px; padding: 4px 12px; }
  .ring-btn { padding: 14px 32px; font-size: 15px; }
}
