/* =========================================================
   VOYLYNX — Additions stylesheet (phase 2 onward)
   New structural CSS for the menu, customer accounts, the
   multi-select quote flow, and the footer's social bar and
   multi-office layout. Loaded after style.css and
   dynamic-styles.php; does not modify either of those files.
   ========================================================= */

.quote-list-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--color-bg);
  border: 1px solid var(--color-steel-light);
  color: var(--color-navy);
  font-weight: 600;
  font-size: 0.85rem;
}
.quote-list-badge:hover { border-color: var(--color-navy); }

.customer-account-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  white-space: nowrap;
}
.customer-account-link a { color: var(--color-navy); text-decoration: underline; }

/* Select-for-quote toggle button on product cards */
.select-quote-form { margin: 0; }
.btn-select-quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid var(--color-steel-light);
  background: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.btn-select-quote:hover { border-color: var(--color-navy); }
.btn-select-quote.is-selected {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}

/* Customer login / register pages */
.auth-wrap {
  max-width: 440px;
  margin: 0 auto;
}
.auth-switch {
  text-align: center;
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--color-steel);
}
.auth-switch a { color: var(--color-navy); font-weight: 600; text-decoration: underline; }

/* My Account page */
.account-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-steel-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 30px;
}

/* Social media bar, sits just above the footer */
.social-bar {
  background: var(--color-navy-mid);
}
.social-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 24px;
}
.social-bar-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
}
.social-bar-icons {
  display: flex;
  gap: 12px;
}
.social-bar-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: background 180ms ease, transform 180ms ease;
}
.social-bar-icons a:hover {
  background: var(--color-amber);
  color: var(--color-navy);
  transform: translateY(-2px);
}

/* Multiple offices in the footer */
.footer-office {
  margin-bottom: 16px;
}
.footer-office:last-child {
  margin-bottom: 10px;
}
.footer-office strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.footer-office p {
  margin: 0 0 2px;
  font-size: 0.88rem;
}
.footer-contact-links {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 720px) {
  .customer-account-link { display: block; margin-top: 10px; }
  .quote-list-badge { display: block; margin-bottom: 10px; text-align: center; }
  .social-bar-inner { flex-direction: column; gap: 10px; }
}

/* Detailed product listing table (category pages) */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--color-steel-light);
  border-radius: var(--radius);
}
.product-listing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: var(--color-white);
}
.product-listing-table th,
.product-listing-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--color-steel-light);
  font-size: 0.9rem;
  vertical-align: middle;
}
.product-listing-table th {
  background: var(--color-bg);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-steel);
  font-weight: 600;
}
.product-listing-table tr:last-child td { border-bottom: none; }
.product-listing-table tr:hover td { background: #FAFBFC; }
.product-row-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--color-steel-light);
}
.product-row-name {
  font-weight: 600;
  color: var(--color-navy);
  font-family: var(--font-head);
}
.product-row-cat {
  font-size: 0.78rem;
  color: var(--color-steel);
  margin-top: 2px;
}
.btn-select-quote-sm {
  padding: 6px 12px;
  font-size: 0.78rem;
  white-space: nowrap;
}

/* Brand name + optional tagline, stacked next to the logo */
.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
