/* Globus contact layout repair — 2026-09-03.
   Scoped to the existing contact controls and the review button.
   This file does not change the page, header, images, forms, or site settings. */
.shop-contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin: 18px 0 0;
}
.shop-contact-action {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-content: center;
  column-gap: 9px;
  row-gap: 3px;
  flex: 1 1 200px;
  min-width: 0;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid #51432a;
  border-radius: 12px;
  background: #13110d;
  color: #f8f6f1;
  text-decoration: none;
  text-align: left;
  overflow-wrap: anywhere;
  transition: background-color .2s, border-color .2s;
}
.shop-contact-action:hover {
  border-color: #d6aa36;
  background: #211c12;
}
.shop-contact-action:focus-visible {
  outline: 3px solid #ffdf7b;
  outline-offset: 4px;
}
.shop-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  grid-row: 1 / 3;
  color: #ffdf7b;
}
.shop-contact-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.shop-contact-title {
  grid-column: 2;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}
.shop-contact-note {
  grid-column: 2;
  font-size: .875rem;
  line-height: 1.45;
  color: #c1bbb0;
}
.shop-contact-whatsapp {
  border-color: #2d5740;
  background: #0e1913;
}
.shop-contact-whatsapp .shop-contact-icon {
  color: #74e1a3;
}
.shop-contact-whatsapp:hover {
  border-color: #74e1a3;
  background: #14271c;
}
.contact-dock-panel {
  box-sizing: border-box;
  width: 320px;
  max-width: calc(100vw - 24px);
  max-height: 65vh;
  max-height: min(70dvh, calc(100dvh - 100px));
  overflow-y: auto;
  overscroll-behavior: contain;
}
.contact-dock-links {
  display: grid;
  gap: 8px;
}
.contact-dock-links .social-link {
  min-height: 44px;
  padding: 10px 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.contact-dock-links .contact-dock-call {
  display: grid;
  gap: 4px;
  text-align: center;
}
.contact-dock-call small {
  color: #c1bbb0;
  font-size: .875rem;
  line-height: 1.45;
  font-weight: 400;
}
.contact-dock-panel .social-links {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid #383023;
}
.contact-dock-links .social-whatsapp {
  border-color: #2d5740;
  background: #0e1913;
  color: #b5f0cc;
}
.contact-dock-links .social-whatsapp:hover {
  border-color: #74e1a3;
  background: #14271c;
}
#leave-review.btn-outline {
  color: #f8f6f1;
  font: inherit;
  font-weight: 800;
}
#leave-review.btn-outline:hover {
  color: #ffdf7b;
}
#leave-review.btn-outline:focus-visible {
  outline: 3px solid #ffdf7b;
  outline-offset: 4px;
}
@media (max-width: 620px) {
  .shop-contact-action {
    flex: 1 1 calc(50% - 10px);
    padding: 10px;
    column-gap: 7px;
  }
  .shop-contact-sms {
    flex-basis: 100%;
  }
}
@media (max-width: 380px) {
  .shop-contact-action {
    flex-basis: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .shop-contact-action {
    transition: none;
  }
}
