/* ════════ FIND US PAGE ════════ */

.findus-bg {
  background: var(--red);
  padding: 3rem 0 4.5rem;
}

.findus-sw {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ── Row 2: Contact + Map ───────────────────────────── */
.findus-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ── Cards ──────────────────────────────────────────── */
.fc-card {
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid rgba(0,0,0,.05);
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.fc-title {
  font-family: 'Cairo', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .6rem;
}

.fc-title--gap {
  margin-top: 1.5rem;
}

.fc-val {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.fc-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(0,0,0,.25);
  transition: .25s;
}

.fc-link:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.fc-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
}

.fc-ic svg {
  display: block;
}

/* ── Social Buttons ─────────────────────────────────── */
.fc-soc {
  display: flex;
  gap: .55rem;
  margin-top: .6rem;
}

.fc-soc .fs-btn {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
}

.fc-soc .fs-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.fc-soc .fs-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.fc-soc .fs-btn.insta:hover {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  border-color: transparent;
}

.fc-soc .fs-btn.tiktok:hover {
  background: #000;
  border-color: #000;
}

.fc-soc .fs-btn.fb:hover {
  background: #1877F2;
  border-color: #1877F2;
}

/* ── Working Hours ──────────────────────────────────── */
.findus-hours {
  width: 100%;
  max-width: 750px; /* adjust as desired */
  margin: 0 auto;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-size: .82rem;
  color: var(--text);
  font-weight: 500;
}

.hours-time {
  font-size: .82rem;
  color: var(--muted);
}

.hours-closed {
  color: var(--red);
  font-weight: 600;
}

/* ── Map ────────────────────────────────────────────── */
.findus-map {
  background: var(--white);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  overflow: hidden;
  display: flex;
}

.findus-map-frame {
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 12px;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {

  .findus-bg {
    padding: 2rem 0 3rem;
  }

  .findus-top {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .fc-card,
  .findus-map {
    width: 100%;
  }

  .findus-map-frame {
    min-height: 280px;
  }
}