/* =========================================================
   FURRIOPET INDIA - BRANDING, TOP BAR & MULTI-LANGUAGE CSS
   Created by: mr.sankya (https://sanket-portfolio-211.pages.dev/)
   ========================================================= */

:root {
  --fp-primary: #198754;
  --fp-accent: #f59e0b;
  --fp-dark: #0f172a;
  --fp-light: #ffffff;
  --fp-gold: #fbbf24;
}

/* Top Announcement & Utility Bar */
#furriopet-top-bar {
  position: relative;
  z-index: 99999;
  width: 100%;
  background: linear-gradient(90deg, #0b1f14 0%, #134e2c 50%, #0b1f14 100%);
  color: #f1f5f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.furriopet-top-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Left Section: Delivery notice */
.fp-top-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.fp-delivery-chip {
  background: rgba(245, 158, 11, 0.2);
  color: #fde68a;
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.98); }
}

/* Center Section: Creator Credit (mr.sankya) */
.fp-top-center {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.fp-creator-label {
  color: #cbd5e1;
  font-size: 12px;
}

.fp-creator-link {
  color: #fbbf24 !important;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.fp-creator-link:hover {
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.8);
  transform: translateY(-1px);
}

.fp-badge-sparkle {
  color: #f59e0b;
  font-size: 11px;
}

/* Right Section: Language Selector & Portals */
.fp-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fp-lang-box {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 2px 8px;
}

.fp-lang-box select {
  background: transparent;
  color: #ffffff;
  border: none;
  font-size: 12px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  padding: 2px 0;
}

.fp-lang-box select option {
  background: #0f172a;
  color: #ffffff;
  padding: 6px;
}

.fp-portal-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.fp-portal-admin {
  background: #2563eb;
  color: #ffffff !important;
}

.fp-portal-admin:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.fp-portal-rider {
  background: #ea580c;
  color: #ffffff !important;
}

.fp-portal-rider:hover {
  background: #c2410c;
  transform: translateY(-1px);
}

/* Floating Creator Badge in bottom corner */
#furriopet-creator-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 99998;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(251, 191, 36, 0.35);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  padding: 7px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  color: #e2e8f0;
  transition: all 0.25s ease;
}

#furriopet-creator-float:hover {
  transform: translateY(-2px);
  border-color: rgba(251, 191, 36, 0.8);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.35);
}

#furriopet-creator-float a {
  color: #fbbf24 !important;
  font-weight: 700;
  text-decoration: none !important;
}

#furriopet-creator-float a:hover {
  text-decoration: underline !important;
}

/* Mobile responsive adjustments */
@media (max-width: 820px) {
  .furriopet-top-bar-inner {
    justify-content: center;
    text-align: center;
  }
  .fp-top-left {
    display: none;
  }
  #furriopet-creator-float {
    bottom: 12px;
    left: 12px;
    font-size: 11px;
    padding: 5px 11px;
  }
}
