/* Top Info Bar - Desktop Only */
.gstore-top-bar {
  width: 100%;
  padding: 0.75rem 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  background: #192638;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'TBC Contractica', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.gstore-top-bar-container {
  max-width: min(1440px, 95%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* LEFT: Phone & Email */
.gstore-top-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.gstore-info-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #e8eef5;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gstore-info-box:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: translateY(-1px);
}

.gstore-info-box svg {
  flex-shrink: 0;
  color: #7c9cff;
}

/* CENTER: Warning Message */
.gstore-top-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gstore-warning-text {
  margin: 0;
  color: #e8eef5;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

/* RIGHT: Navigation */
.gstore-top-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.gstore-top-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.gstore-top-link {
  color: #c8d4e3;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.gstore-top-link:hover {
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .gstore-top-bar-container {
    gap: 1.5rem;
  }

  .gstore-top-nav {
    gap: 1rem;
  }

  .gstore-top-link {
    font-size: 0.8125rem;
  }

  .gstore-warning-text {
    font-size: 0.8125rem;
  }
}

@media (max-width: 992px) {
  .gstore-top-center {
    display: none;
  }
}

/* Hide on mobile (mobile header shows instead) */
@media (max-width: 768px) {
  .gstore-top-bar {
    display: none;
  }
}

/* Dark mode styles - Inverted (light bar on dark page) */
html[data-theme="dark"] .gstore-top-bar {
  background: #e8eef5;
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

html[data-theme="dark"] .gstore-info-box {
  background: rgba(25, 38, 56, 0.1);
  border-color: rgba(25, 38, 56, 0.15);
  color: #192638;
}

html[data-theme="dark"] .gstore-info-box:hover {
  background: rgba(25, 38, 56, 0.15);
  color: #000000;
}

html[data-theme="dark"] .gstore-info-box svg {
  color: #3713ec;
}

html[data-theme="dark"] .gstore-warning-text {
  color: #192638;
}

html[data-theme="dark"] .gstore-top-link {
  color: #4a5568;
}

html[data-theme="dark"] .gstore-top-link:hover {
  color: #192638;
}
