/* ══════════════════════════════════════════════════════
   DLB — Link Buttons  |  link-buttons.css
   All visual styling lives here. Zero CSS in PHP.
   ══════════════════════════════════════════════════════ */

/* ── Outer wrapper ───────────────────────────────────── */
.dlb-wrap {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ── Base card / button ──────────────────────────────── */
.dlb-btn {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 14px 18px;
  background: rgba(230, 228, 224, 0.72);
  border-radius: 16px;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
  gap: 12px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.dlb-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  text-decoration: none;
}

/* Invisible spacer on the right — mirrors the icon width
   so the label stays perfectly centred */
.dlb-btn::after {
  content: "";
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: block;
}

/* ── Icon wrapper ────────────────────────────────────── */
.dlb-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dlb-icon img,
.dlb-icon svg {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: block;
}

/* ── Label ───────────────────────────────────────────── */
.dlb-label {
  flex: 1;
  font-size: 15.5px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.1px;
  line-height: 1.2;
  text-align: center;
}

/* ── Google Review card ──────────────────────────────── */
.dlb-google-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  background: rgba(230, 228, 224, 0.82);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
}

.dlb-google-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dlb-google-logo-wrap {
  width: 46px;
  height: 46px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.dlb-google-logo-wrap svg {
  width: 28px;
  height: 28px;
}

.dlb-google-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dlb-google-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.dlb-google-address {
  font-size: 11.5px;
  font-weight: 400;
  color: #666;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}

.dlb-google-review-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.dlb-google-review-btn:hover {
  background: #f5f5f5;
  text-decoration: none;
}