/* ===============================
   BUSINESS PROFILE PAGE
   =============================== */




.bp-page {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111;
}

/* HERO */
.bp-hero {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  padding: 50px;
  margin-bottom: 70px;
}

.bp-hero-inner {
  display: grid;
  grid-template-columns: 320px 1fr; /* STÂNGA / DREAPTA */
  gap: 48px;
  align-items: center;
}

.bp-logo{
  width: 300px;          /* sau cât vrei */
  height: 300px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.bp-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;   /* NU se deformează */
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.bp-logo-placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #e9ecef, #f8f9fa);
  color: #777;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
  border-radius: 22px;
  text-transform: uppercase;
}


.bp-hero-content h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.bp-tagline {
  font-size: 18px;
  color: #555;
  margin-bottom: 18px;
  max-width: 600px;
}

/* BADGES */
.bp-badges {
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 10px;
}

.badge-verified {
  background: #e6f4ea;
  color: #137333;
}

.badge-featured {
  background: gold;
  color: #111;
}

/* ACTIONS */
.bp-actions a {
  margin-right: 12px;
}

/* SECTIONS */
.bp-section {
  margin-bottom: 70px;
}

.bp-section h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.bp-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 800px;
}

.bp-alt {
  background: #f4f6f8;
  padding: 40px;
  border-radius: 20px;
}

/* LIST */
.bp-list {
  list-style: none;
  padding: 0;
}

.bp-list li {
  font-size: 16px;
  margin-bottom: 12px;
}

/* INFO GRID */
.bp-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.bp-info-grid div {
  background: #f1f3f5;
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 14px;
}

.bp-info-grid span {
  display: block;
  margin-top: 4px;
  color: #555;
}

/* DESCRIPTION */
.bp-description p {
  font-size: 17px;
}

/* CTA */
.bp-cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 30px;
  border-radius: 24px;
}

.bp-cta h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.bp-cta p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 28px;
}

/* BUTTONS (reuse) */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
}

.btn-primary {
  background: #111;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

/* ===============================
   BP HERO – MOBILE FIX
   =============================== */
@media (max-width: 900px) {

  .bp-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bp-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px auto; /* CHEIA */
  }

  .bp-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .bp-actions a {
    display: inline-block;
    margin: 10px 6px;
  }
}