/* Header SSR Styles */
.header-preview {
  width: 100%;
  background: var(--header-bg, #ffffff);
  color: var(--header-text, #1f2937);
  position: relative;
  z-index: 1000;
  overflow: visible;
}

.header-main-bar {
  background: var(--header-nav-bg, #1f2937);
  position: relative;
  z-index: 1000;
  overflow: visible;
}

/* News Bar - Scrolling Announcement */
.header-news-bar {
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.news-bar-track {
  display: inline-block;
  animation: scroll-news linear infinite;
}

@keyframes scroll-news {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

.news-bar-track span {
  display: inline-block;
  padding: 0 24px;
}

/* Banner Image */
.header-banner {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
}

.header-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-banner-link {
  display: block;
  text-decoration: none;
}

.header-banner-link:hover .header-banner {
  opacity: 0.9;
}

/* Responsive header banner */
@media (max-width: 768px) {
  .header-banner {
    max-height: 80px;
  }
  
  .header-banner img {
    object-position: center;
  }
}

@media (max-width: 480px) {
  .header-banner {
    max-height: 60px;
  }
}

.banner-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  color: #6b7280;
  font-size: 13px;
}

.header-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  gap: 24px;
  height: var(--header-height, 70px);
  min-height: var(--header-height, 70px);
  overflow: visible;
}

.header-container.centered {
  justify-content: center;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.header-logo-link:hover {
  opacity: 0.9;
}

.header-logo.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.header-container:has(.logo-center) {
  position: relative;
}

.header-container:has(.logo-center) .header-actions {
  margin-left: auto;
}

.header-container:has(.logo-center) .mobile-menu-toggle {
  margin-right: auto;
}

.header-logo.centered {
  justify-content: center;
}

.header-logo-img {
  height: auto;
  object-fit: contain;
}

.header-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--header-text, #1f2937);
}

.header-3 .header-logo-text,
.header-7 .header-logo-text {
  color: white;
}

/* Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: visible;
}

.header-nav.mega-nav {
  flex: 1;
  justify-content: center;
  gap: 8px;
}

.header-nav-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 12px 24px;
  border-top: 1px solid #e5e7eb;
}

.header-nav-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--header-font-size, 14px);
  font-weight: var(--header-font-weight, 500);
  color: var(--header-menu-text, #1f2937);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  background: none;
  border: none;
}

.header-3 .header-nav-item,
.header-7 .header-nav-item {
  color: var(--header-menu-text, #ffffff);
}

.header-nav-item:hover {
  color: var(--header-hover, #0891b2);
}

.header-3 .header-nav-item:hover,
.header-7 .header-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--header-hover, #0891b2);
}

.header-nav-item.highlighted {
  background: var(--header-highlight-bg, #0891b2);
  color: var(--header-highlight-text, #ffffff);
}

.header-nav-item.highlighted:hover {
  background: var(--header-highlight-bg, #0891b2);
  filter: brightness(1.1);
  color: var(--header-highlight-text, #ffffff);
}

.header-nav-item.mega-trigger {
  position: relative;
}

/* Mega Menu Dropdown - hidden by default, shown on hover/click */
.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: auto;
  max-width: calc(100vw - 48px);
  background: var(--mega-menu-bg, #ffffff);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  padding: var(--mega-menu-padding, 24px);
}

/* Single row mode - horizontal scroll when needed */
.mega-menu-dropdown.single-row {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.mega-menu-dropdown.single-row::-webkit-scrollbar {
  height: 6px;
}

.mega-menu-dropdown.single-row::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.mega-menu-dropdown.single-row::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

/* Multi-row mode */
.mega-menu-dropdown.multi-row {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Extra spacing when rows contain large items like images/products */
.mega-menu-row + .mega-menu-row {
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

/* Add invisible bridge to prevent menu from closing */
.mega-menu-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

/* CSS hover fallback - JS enhances this */
.mega-trigger:hover > .mega-menu-dropdown,
.mega-trigger:focus-within > .mega-menu-dropdown {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Ensure menu stays open when hovering on it */
.mega-trigger {
  position: relative;
  overflow: visible;
}

/* Bridge element for better hover experience */
.mega-trigger::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  height: 20px;
}


/* Mega Menu Row */
.mega-menu-row {
  display: flex;
  gap: var(--mega-menu-gap, 24px);
  align-items: stretch;
}

.mega-menu-row.scrollable {
  flex-wrap: nowrap;
}

/* Mega Menu Columns - fixed widths based on type */
.mega-column {
  flex-shrink: 0;
  flex-grow: 0;
  box-sizing: border-box;
}

.mega-column.links-column {
  width: 180px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mega-column.image-column {
  width: 280px;
  min-width: 280px;
  display: flex;
}

.mega-column.product-column {
  width: 200px;
  min-width: 200px;
  display: flex;
}

/* Equal height cards for image and product columns */
.mega-column.image-column .mega-image-card,
.mega-column.product-column .mega-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
}

/* Link Groups */
.link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.group-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--mega-menu-text, #1f2937);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 4px 0;
}

.group-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.group-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.group-links li a:hover {
  color: var(--header-hover, #0891b2);
}

.link-icon {
  font-size: 14px;
}

.column-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  margin-top: 8px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mega-menu-text, #1f2937);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.column-button:hover {
  background: #e5e7eb;
  border-color: #d1d5db;
}

/* Mega Image Card */
.mega-image-card {
  display: block;
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}

.mega-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.mega-image-card:hover img {
  transform: scale(1.05);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: white;
}

.image-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.image-subtitle {
  font-size: 13px;
  margin: 0 0 8px 0;
  opacity: 0.9;
}

.image-button {
  display: inline-block;
  padding: 6px 12px;
  background: var(--header-hover, #0891b2);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: white;
  align-self: flex-start;
}

/* Mega Product Card */
.mega-column.product-column {
  display: flex;
}

.mega-product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mega-product-card:hover {
  border-color: var(--header-hover, #0891b2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mega-product-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.product-image-placeholder {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.product-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-info .product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--mega-menu-text, #1f2937);
  margin: 0;
}

.product-info .product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--header-hover, #0891b2);
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Expandable Search */
.header-search-expandable {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-expandable .search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: searchExpand 0.2s ease-out;
  min-width: 200px;
}

@keyframes searchExpand {
  from {
    opacity: 0;
    transform: scale(0.9);
    min-width: 40px;
  }
  to {
    opacity: 1;
    transform: scale(1);
    min-width: 200px;
  }
}

.header-search-expandable .search-input-wrapper svg {
  color: var(--header-hover, #0891b2);
  flex-shrink: 0;
}

.header-search-expandable .search-input-wrapper input {
  flex: 1;
  border: none;
  background: none;
  font-size: 14px;
  color: var(--header-text, #1f2937);
  outline: none;
  min-width: 0;
  width: 150px;
}

.header-search-expandable .search-input-wrapper input::placeholder {
  color: #9ca3af;
}

/* Dark theme for header-3/header-7 */
.header-3 .header-search-expandable .search-input-wrapper,
.header-7 .header-search-expandable .search-input-wrapper {
  background: rgba(255, 255, 255, 0.95);
}

.header-search-expandable.expanded .header-action-btn {
  display: none;
}

.header-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--header-menu-text, #1f2937);
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
  text-decoration: none;
}

.header-action-btn svg {
  width: 24px;
  height: 24px;
}

.header-3 .header-action-btn,
.header-7 .header-action-btn {
  color: var(--header-menu-text, #ffffff);
}

.header-action-btn:hover {
  color: var(--header-hover, #0891b2);
  background: #f3f4f6;
}

.header-3 .header-action-btn:hover,
.header-7 .header-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--header-hover, #0891b2);
}

.header-action-btn.cart {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  background: var(--header-highlight-bg, #ef4444);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 9px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
  z-index: 10;
}

/* Header 2 - Centered */
.header-preview.header-2 {
  text-align: center;
}

.header-preview.header-2 .header-logo-text {
  font-size: 24px;
}

/* Mobile Menu Toggle - hidden on desktop */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--header-text, #1f2937);
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.header-3 .mobile-menu-toggle,
.header-7 .mobile-menu-toggle {
  color: white;
}

.mobile-menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.header-3 .mobile-menu-toggle:hover,
.header-7 .mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Menu Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  max-width: 85%;
  background: #ffffff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  flex-direction: column;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-header .header-logo {
  flex: 1;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.mobile-menu-close:hover {
  background: #f3f4f6;
  color: #1f2937;
}

/* Mobile Search */
.mobile-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 20px;
  padding: 12px 16px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.mobile-search svg {
  color: #9ca3af;
  flex-shrink: 0;
}

.mobile-search input {
  flex: 1;
  border: none;
  background: none;
  font-size: 15px;
  color: #1f2937;
  outline: none;
}

.mobile-search input::placeholder {
  color: #9ca3af;
}

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s;
}

.mobile-nav-item:hover {
  background: #f9fafb;
}

.mobile-nav-item.highlighted {
  color: var(--header-hover, #0891b2);
  font-weight: 600;
}

/* Mobile Nav Toggle (for mega menu items) */
.mobile-nav-toggle {
  text-align: left;
}

.mobile-nav-toggle svg {
  transition: transform 0.2s ease;
}

.mobile-nav-toggle.open svg {
  transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-nav-group {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-submenu {
  display: none;
  background: #f9fafb;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav-submenu.open {
  display: block;
  max-height: 60vh;
  overflow-y: auto;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
}

.mobile-submenu-group {
  padding: 8px 20px;
}

.mobile-submenu-title {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 0 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-submenu-link {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-submenu-link:hover {
  color: var(--header-hover, #0891b2);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  padding: 16px 20px;
  border-top: 1px solid #e5e7eb;
}

.mobile-footer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f3f4f6;
  border-radius: 8px;
  color: #1f2937;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.mobile-footer-link:hover {
  background: #e5e7eb;
}

/* Responsive mega menu */
@media (max-width: 1100px) {
  .mega-menu-dropdown {
    max-width: calc(100vw - 32px);
    left: 50%;
    transform: translateX(-50%);
  }

  /* Ensure single row menus scroll on mobile */
  .mega-menu-dropdown.single-row {
    max-width: calc(100vw - 32px);
  }
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
    order: -1;
  }

  .mobile-menu-overlay {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  .desktop-only {
    display: none !important;
  }

  .header-container {
    padding: 12px 16px;
    gap: 12px;
  }

  .header-container.centered {
    justify-content: space-between;
  }

  .header-container.centered .header-logo {
    flex: 1;
    justify-content: center;
  }

  .header-nav-bar {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-action-btn {
    padding: 6px;
  }
}

@media (max-width: 600px) {
  .header-container {
    padding: 10px 12px;
    gap: 8px;
  }

  .header-logo-text {
    font-size: 16px;
  }

  .header-logo-img {
    max-width: 100px;
    max-height: 32px;
    width: auto !important;
    height: auto !important;
  }

  .header-news-bar {
    font-size: 11px;
    padding: 6px 0;
  }

  .header-banner {
    max-height: 50px;
  }

  .cart-badge {
    min-width: 14px;
    height: 14px;
    font-size: 9px;
  }

  .header-top-bar-new {
    flex-direction: column;
    gap: 6px;
    padding: 4px 8px;
    font-size: 11px;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
  }

  /* Hide social icons on mobile */
  .topbar-right {
    display: none !important;
  }
}

/* Hide logo when search is expanded on mobile */
@media (max-width: 900px) {
  .header-search-expandable.expanded ~ .header-logo,
  .header-container:has(.header-search-expandable.expanded) .header-logo {
    display: none !important;
  }
  
  /* Make search expand to fill space */
  .header-search-expandable.expanded {
    flex: 1;
  }
  
  .header-search-expandable.expanded .search-input-wrapper {
    width: 100%;
  }
}

/* Transparent Header */
.header-preview.transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

.header-preview.transparent .header-container {
  background: transparent;
}

.header-preview.transparent .header-row-1,
.header-preview.transparent .header-row-2 {
  background: transparent !important;
}

.header-preview.transparent .header-top-bar-new {
  background: var(--topbar-bg, #1f2937);
}

.header-preview.transparent .header-main-bar {
  background: transparent;
}

/* Two-Row Layout */
.header-preview.two-row .header-row-1 {
  background: var(--header-bg, #ffffff);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-preview.two-row .header-row-2-wrapper {
  background: var(--header-nav-bg, #1f2937);
  position: relative;
  z-index: 1000;
  overflow: visible;
}

.header-preview.two-row .header-row-2 {
  display: flex;
  padding: 0 48px;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.header-preview.two-row .header-row-2 .header-nav {
  display: flex;
  width: 100%;
  padding: 12px 0;
  overflow: visible;
}

.header-preview.two-row .header-row-2 .header-nav .header-nav-item {
  color: var(--header-menu-text, #ffffff);
}

.header-preview.two-row .header-row-2 .header-nav .header-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--header-hover, #0891b2);
}

/* Two-Row Layout + Alignment */
.header-preview.two-row .header-row-2 .header-nav.align-left {
  justify-content: flex-start;
  margin: 0;
}

.header-preview.two-row .header-row-2 .header-nav.align-center {
  justify-content: center;
  margin: 0;
}

.header-preview.two-row .header-row-2 .header-nav.align-right {
  justify-content: flex-end;
  margin: 0;
}

/* Transparent with Two-Row */
.header-preview.transparent.two-row .header-row-2-wrapper {
  background: transparent !important;
}

/* Menu Alignment - Standard Layout */
.header-nav.align-left {
  margin-right: auto;
  margin-left: 24px;
}

.header-nav.align-center {
  flex: 1;
  justify-content: center;
}

.header-nav.align-right {
  margin-left: auto;
  margin-right: 0;
}

.header-nav-bar.align-left {
  justify-content: flex-start;
}

.header-nav-bar.align-center {
  justify-content: center;
}

.header-nav-bar.align-right {
  justify-content: flex-end;
}

/* New Top Bar (with contact info and social) */
.header-top-bar-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--topbar-bg, #1f2937);
  color: var(--topbar-text, #ffffff);
  padding: 6px 48px;
  font-size: 12px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.15s;
}

.topbar-link:hover {
  opacity: 1;
}

.topbar-text {
  opacity: 0.9;
}

.topbar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: inherit;
  opacity: 0.8;
  transition: opacity 0.15s, transform 0.15s;
}

.topbar-social:hover {
  opacity: 1;
  transform: scale(1.1);
}

