:root {
  --primary: #b51663;
  --primary-dark: #7b174f;
  --secondary: #0c6f6a;
  --ink: #181722;
  --muted: #6d6979;
  --soft: #f7f5fa;
  --line: #e6e1eb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(36, 28, 54, .12);
  --shadow-soft: 0 10px 30px rgba(36, 28, 54, .09);
  --radius: 14px;
  --radius-lg: 18px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #fbf9fd 54%, #fff 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(230,225,235,.75);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  font-size: clamp(1.8rem, 3vw, 2.38rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.08em;
  color: #641348;
  white-space: nowrap;
}
.logo strong { color: #0f7b71; }
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.main-nav a {
  position: relative;
  padding: 29px 0 26px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 3px;
  border-radius: 99px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--primary); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #393542;
  font-weight: 800;
  font-size: .82rem;
}
.header-actions button {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-restaurants::before {
  background: url("../images/hero-restaurants.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18,14,20,.84) 0%, rgba(18,14,20,.63) 45%, rgba(18,14,20,.28) 100%),
    linear-gradient(180deg, rgba(18,14,20,.16), rgba(18,14,20,.26));
}
.hero-content { padding: 70px 0 76px; }
.eyebrow {
  margin: 0 0 12px;
  color: rgba(255,255,255,.76);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .77rem;
  font-weight: 800;
}
.hero h1 {
  margin: 0 0 12px;
  max-width: 760px;
  font-size: clamp(2.25rem, 6.4vw, 4rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.hero p:not(.eyebrow) {
  margin: 0;
  max-width: 640px;
  font-size: clamp(1.05rem, 2.4vw, 1.43rem);
  color: rgba(255,255,255,.92);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary, .btn-filter {
  color: var(--white);
  background: linear-gradient(135deg, #ca1d6a, #8b1457);
}
.btn-light {
  color: #272331;
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.35);
}

.section { padding: 48px 0 20px; }
.section-compact { padding-top: 22px; padding-bottom: 70px; }
.section-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.section-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -.045em;
}
.filters {
  display: grid;
  grid-template-columns: minmax(180px, 1.45fr) repeat(4, minmax(130px, 1fr)) minmax(130px, .86fr);
  gap: 10px;
  margin: 0 0 28px;
}
.filters input,
.filters select,
.filters button {
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 15px;
  color: var(--muted);
  box-shadow: 0 8px 20px rgba(36,28,54,.04);
}
.filters select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #585363 50%), linear-gradient(135deg, #585363 50%, transparent 50%);
  background-position: calc(100% - 18px) 19px, calc(100% - 13px) 19px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.filters button {
  color: var(--white);
  border-color: transparent;
  cursor: pointer;
  box-shadow: none;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.featured-card,
.panel {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.featured-card { overflow: hidden; }
.card-media {
  position: relative;
  height: 158px;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.featured-card:hover .card-media img { transform: scale(1.05); }
.badge {
  position: absolute;
  top: 12px;
  left: 14px;
  padding: 7px 13px;
  border-radius: 4px;
  color: var(--white);
  background: linear-gradient(135deg, #b51663, #70144d);
  font-size: .7rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .04em;
}
.badge.teal { background: linear-gradient(135deg, #277a74, #145a58); }
.card-body { padding: 16px 16px 14px; }
.card-title-row,
.restaurant-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
h3 { margin: 0; letter-spacing: -.035em; }
.card-title-row h3 { font-size: 1.25rem; text-transform: uppercase; }
.featured-card:nth-child(2) .card-title-row h3,
.featured-card:nth-child(3) .card-title-row h3 { text-transform: none; }
.rating {
  flex: 0 0 auto;
  color: #f3b822;
  font-weight: 900;
  letter-spacing: -.08em;
}
.rating strong {
  color: var(--ink);
  letter-spacing: normal;
  margin-left: 3px;
}
.meta,
.location {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .91rem;
  font-weight: 600;
}
.location { color: #3f3a48; font-weight: 500; }
.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  margin-right: 5px;
}
.pink { background: var(--primary); }
.cyan { background: #2f9aae; }
.green { background: #2ba75e; }
.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  align-items: center;
}
.mini-btn,
.icon-btn,
.load-more,
.chips span,
.chips a {
  min-height: 34px;
  border-radius: 6px;
  background: #f1eef5;
  color: #5a5365;
  font-size: .78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.mini-primary {
  min-width: 132px;
  color: var(--white);
  background: linear-gradient(135deg, #b51663, #8f1655);
}
.icon-btn { width: 34px; padding: 0; font-size: 1.15rem; margin-left: auto; }

.panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .86fr);
  gap: 26px;
  padding: 26px 24px;
}
.list-heading { margin-bottom: 14px; }
.restaurant-list {
  display: grid;
  gap: 12px;
}
.restaurant-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
}
.restaurant-row:last-child { border-bottom: 0; padding-bottom: 0; }
.restaurant-row img {
  width: 180px;
  height: 122px;
  object-fit: cover;
  border-radius: 7px;
}
.restaurant-info h3 { font-size: 1.32rem; }
.restaurant-info p {
  margin: 6px 0 0;
  color: #4d4856;
  font-size: .86rem;
  font-weight: 600;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
}
.chips span,
.chips a { min-height: 28px; padding: 0 11px; }
.chips .call-chip {
  color: var(--white);
  background: #247479;
}
.map-card {
  position: sticky;
  top: 92px;
  align-self: start;
}
.map-card img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.load-more {
  width: 100%;
  min-height: 48px;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}
.load-more span { margin-left: auto; font-size: 1.2rem; }

.site-footer {
  color: rgba(255,255,255,.9);
  background: #25242b;
  padding: 46px 0 38px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,.12), transparent 26%), linear-gradient(180deg, rgba(255,255,255,.03), transparent);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.site-footer h2 { margin: 0 0 16px; font-size: 1.45rem; letter-spacing: -.04em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a, .site-footer li { color: rgba(255,255,255,.8); font-size: .95rem; }
.site-footer a:hover { color: var(--white); }

@media (max-width: 1020px) {
  .header-actions { display: none; }
  .main-nav { gap: 18px; }
  .filters { grid-template-columns: repeat(3, 1fr); }
  .featured-grid { gap: 16px; }
  .panel { grid-template-columns: 1fr; }
  .map-card { position: static; }
  .map-card img { min-height: 360px; }
}

@media (max-width: 800px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 66px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 74px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .2s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav a { padding: 14px 12px; border-radius: 8px; }
  .main-nav a::after { display: none; }
  .main-nav a:hover, .main-nav a.is-active { background: #f6edf3; }
  .hero { min-height: 420px; }
  .featured-grid { grid-template-columns: 1fr; }
  .card-media { height: 210px; }
  .filters { grid-template-columns: 1fr 1fr; }
  .btn-filter { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .hero-content { padding: 58px 0 66px; }
  .hero-cta, .filters { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .section { padding-top: 36px; }
  .panel { padding: 18px 14px; }
  .restaurant-row { grid-template-columns: 1fr; gap: 12px; }
  .restaurant-row img { width: 100%; height: 190px; }
  .restaurant-topline { align-items: flex-start; }
  .map-card img { min-height: 300px; }
}

/* Premium dynamic single restaurant page */
.restaurant-single-main {
  background: linear-gradient(180deg, #fff 0%, #faf7fb 54%, #fff 100%);
}
.restaurant-detail-hero {
  min-height: 560px;
  display: grid;
  align-items: center;
  color: var(--white);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.restaurant-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 22%, rgba(255,255,255,.16), transparent 28%), linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.28));
  pointer-events: none;
}
.restaurant-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: center;
  padding: 84px 0;
}
.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255,255,255,.88);
  font-weight: 800;
  font-size: .9rem;
}
.single-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.single-badges span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.94);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.restaurant-detail-title h1 {
  max-width: 780px;
  margin: 0 0 16px;
  font-size: clamp(2.8rem, 7.5vw, 5.2rem);
  line-height: .94;
  letter-spacing: -.07em;
  text-shadow: 0 14px 38px rgba(0,0,0,.22);
}
.hero-address {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  color: rgba(255,255,255,.92);
  font-weight: 600;
}
.hero-rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.rating-stars {
  color: #f3b822;
  letter-spacing: -0.08em;
  text-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.restaurant-single-cta { margin-top: 30px; }
.restaurant-quick-card,
.panel-soft {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(230,225,235,.82);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.restaurant-quick-card {
  color: var(--ink);
  padding: 24px;
  backdrop-filter: blur(12px);
}
.quick-card-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 17px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.quick-card-top span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
}
.quick-card-top strong {
  color: var(--primary);
  font-size: 2.4rem;
  line-height: 1;
}
.restaurant-quick-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.restaurant-quick-card li,
.info-line {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  color: #4d4856;
  line-height: 1.45;
}
.restaurant-quick-card li > span,
.info-line > span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f5eef5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.restaurant-quick-card strong,
.info-line strong { color: var(--ink); }
.quick-card-button { width: 100%; margin-top: 22px; }
.restaurant-detail-section { padding-top: 54px; }
.restaurant-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 380px;
  gap: 30px;
  align-items: start;
}
.panel-soft { padding: 26px; }
.detail-heading { margin-bottom: 24px; }
.restaurant-cover-card {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.restaurant-cover-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.restaurant-description {
  color: #45404e;
  font-size: 1.06rem;
  line-height: 1.8;
}
.restaurant-description p:first-child { margin-top: 0; }
.restaurant-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.restaurant-highlight-grid div {
  min-height: 118px;
  padding: 18px;
  border-radius: 14px;
  background: #fbf8fc;
  border: 1px solid var(--line);
}
.restaurant-highlight-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.restaurant-highlight-grid span {
  color: #3f3a48;
  font-weight: 700;
}
.restaurant-side-stack {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 20px;
}
.restaurant-info-box h2 {
  margin: 0 0 20px;
  font-size: 1.55rem;
  letter-spacing: -.045em;
}
.restaurant-info-box .info-line {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.restaurant-info-box .info-line:first-of-type { border-top: 0; padding-top: 0; }
.restaurant-detail-chips { margin-top: 18px; }
.restaurant-map-box { padding: 14px; }
.restaurant-map-box img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 13px;
  border: 1px solid var(--line);
}
.restaurant-map-box .load-more { margin-top: 12px; }
.related-restaurants-section { padding-bottom: 74px; }

@media (max-width: 1020px) {
  .restaurant-detail-hero-grid,
  .restaurant-detail-layout {
    grid-template-columns: 1fr;
  }
  .restaurant-quick-card,
  .restaurant-side-stack {
    position: static;
  }
  .restaurant-quick-card { max-width: 620px; }
}

@media (max-width: 700px) {
  .restaurant-detail-hero { min-height: auto; }
  .restaurant-detail-hero-grid { padding: 58px 0 42px; gap: 26px; }
  .restaurant-quick-card,
  .panel-soft { padding: 18px; }
  .restaurant-cover-card img { height: 230px; }
  .restaurant-highlight-grid { grid-template-columns: 1fr; }
  .hero-rating-line { align-items: flex-start; }
}

/* Single restaurant hotfix: clean icons and image rendering */
.single-restaurant-premium .restaurant-detail-hero {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.single-restaurant-premium .restaurant-detail-hero-grid {
  align-items: stretch;
}
.single-restaurant-premium .restaurant-detail-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.b4y-svg-icon {
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  vertical-align: -0.15em;
}
.b4y-svg-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.back-link {
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.back-link .b4y-svg-icon { width: 18px; height: 18px; }
.hero-address {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-address .b4y-svg-icon { color: #e03a7b; }
.rating-stars {
  display: inline-flex;
  gap: 2px;
  color: #f3b822;
  letter-spacing: 0;
}
.rating-stars .b4y-svg-icon { width: 18px; height: 18px; }
.small-stars .b4y-svg-icon { width: 13px; height: 13px; }
.restaurant-single-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.restaurant-single-cta .b4y-svg-icon { width: 17px; height: 17px; }
.restaurant-quick-card {
  overflow: hidden;
  align-self: center;
}
.quick-card-image {
  margin: -24px -24px 20px;
  height: 190px;
  background: #171019;
  border-bottom: 1px solid rgba(230,225,235,.8);
}
.quick-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.quick-card-image img[src*="black-club"] {
  object-fit: contain;
  padding: 28px;
  background: #121016;
}
.restaurant-quick-card li > .b4y-svg-icon,
.info-line > .b4y-svg-icon {
  width: 34px;
  height: 34px;
  padding: 9px;
  border-radius: 10px;
  background: #f5eef5;
  color: var(--primary);
}
.restaurant-cover-card {
  background: #171019;
}
.restaurant-cover-card img {
  display: block;
  background: #171019;
}
.restaurant-cover-card img[src*="black-club"] {
  object-fit: contain;
  padding: 42px;
  background: #121016;
}
.restaurant-map-box img {
  display: block;
}
.related-restaurants-section .location {
  display: flex;
  align-items: center;
  gap: 6px;
}
.related-restaurants-section .location .b4y-svg-icon {
  color: var(--primary);
  width: 14px;
  height: 14px;
}
@media (max-width: 700px) {
  .quick-card-image { margin: -18px -18px 18px; height: 160px; }
  .restaurant-cover-card img[src*="black-club"] { padding: 28px; }
  .hero-address { align-items: flex-start; }
}

/* === Benin4you modular home page === */
.b4y-home{--b4y-pink:#c90462;--b4y-pink-dark:#98004e;--b4y-ink:#111827;--b4y-muted:#626b7a;--b4y-line:#ececf3;--b4y-soft:#f7f7fb;--b4y-radius:14px;--b4y-shadow:0 18px 45px rgba(15,23,42,.10);background:#fff;color:var(--b4y-ink)}
.b4y-home-container{width:min(100% - 40px,1210px);margin-inline:auto}.b4y-home svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.b4y-home-hero{position:relative;min-height:420px;background-size:cover;background-position:center;color:#fff;display:flex;align-items:center;isolation:isolate}.b4y-home-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,13,26,.86) 0%,rgba(8,13,26,.65) 48%,rgba(8,13,26,.32) 100%);z-index:-1}.b4y-home-hero:after{content:"";position:absolute;inset:auto 0 0;height:80px;background:linear-gradient(180deg,rgba(255,255,255,0),#fff);z-index:-1}.b4y-hero-copy{max-width:760px;padding:74px 0 78px}.b4y-pill{display:inline-flex;align-items:center;border:1px solid rgba(255,255,255,.55);border-radius:99px;padding:7px 14px;margin:0 0 18px;text-transform:uppercase;letter-spacing:.16em;font-weight:800;font-size:12px;color:rgba(255,255,255,.87)}.b4y-hero-copy h1{font-size:clamp(42px,5.4vw,74px);line-height:.98;letter-spacing:-.045em;margin:0 0 18px;font-weight:900}.b4y-hero-copy h1::after{content:""}.b4y-hero-copy p:not(.b4y-pill){font-size:17px;line-height:1.65;max-width:670px;color:rgba(255,255,255,.92);margin:0}.b4y-hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px}.b4y-btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:52px;border-radius:8px;padding:0 26px;font-weight:800;font-size:14px;box-shadow:0 14px 26px rgba(0,0,0,.12);transition:.18s ease}.b4y-btn:hover{transform:translateY(-2px)}.b4y-btn-primary{background:linear-gradient(135deg,var(--b4y-pink),var(--b4y-pink-dark));color:#fff}.b4y-btn-light{background:#fff;color:#172033;border:1px solid #e8e8ef}.b4y-search-panel{position:relative;margin-top:-36px;z-index:3}.b4y-search-card{display:grid;grid-template-columns:1.2fr 1fr 1fr 160px;gap:12px;background:#fff;padding:17px;border:1px solid var(--b4y-line);border-radius:12px;box-shadow:var(--b4y-shadow)}.b4y-search-card label{min-width:0;display:flex;align-items:center;gap:10px;border:1px solid var(--b4y-line);border-radius:8px;background:#fff;padding:0 14px;height:48px;color:#6b7280}.b4y-search-card input,.b4y-search-card select{width:100%;border:0;background:transparent;outline:0;color:#566070}.b4y-search-card button{border:0;border-radius:8px;background:linear-gradient(135deg,var(--b4y-pink),var(--b4y-pink-dark));color:#fff;font-weight:800;cursor:pointer}.b4y-section{padding:42px 0}.b4y-section-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:22px}.b4y-section-head h2,.b4y-centered-title{position:relative;margin:0;font-size:28px;letter-spacing:-.04em;font-weight:850}.b4y-section-head h2:after,.b4y-centered-title:after{content:"";position:absolute;left:0;bottom:-8px;width:38px;height:3px;border-radius:999px;background:var(--b4y-pink)}.b4y-centered-title{text-align:center;margin-bottom:30px}.b4y-centered-title:after{left:50%;transform:translateX(-50%)}.b4y-section-head a{display:inline-flex;align-items:center;gap:8px;color:#394355;font-weight:700;font-size:14px}.b4y-rubriques-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.b4y-rubrique-card{position:relative;min-height:150px;border-radius:12px;overflow:hidden;color:#fff;box-shadow:0 10px 22px rgba(15,23,42,.16);display:flex;flex-direction:column;justify-content:flex-end;padding:18px;isolation:isolate}.b4y-rubrique-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2;transition:transform .35s ease}.b4y-rubrique-card:hover img{transform:scale(1.06)}.b4y-card-gradient{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.78));z-index:-1}.b4y-card-icon{width:40px;height:40px;border-radius:999px;background:#fff;color:#242736;display:flex;align-items:center;justify-content:center;margin-bottom:12px}.b4y-card-title{font-weight:850;font-size:18px;line-height:1.05}.b4y-card-subtitle{font-size:13px;margin-top:4px;color:rgba(255,255,255,.9)}.b4y-why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.b4y-why-card{background:#fff;border:1px solid var(--b4y-line);border-radius:14px;padding:28px 24px;box-shadow:0 10px 30px rgba(15,23,42,.05)}.b4y-why-card span{width:54px;height:54px;border-radius:999px;background:linear-gradient(135deg,var(--b4y-pink),var(--b4y-pink-dark));color:#fff;display:flex;align-items:center;justify-content:center;margin-bottom:16px}.b4y-why-card h3{margin:0 0 8px;font-size:17px;line-height:1.25}.b4y-why-card p{margin:0;color:var(--b4y-muted);font-size:14px;line-height:1.6}.b4y-address-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.b4y-address-card{background:#fff;border:1px solid var(--b4y-line);border-radius:12px;overflow:hidden;box-shadow:0 12px 30px rgba(15,23,42,.08)}.b4y-address-media{height:150px;position:relative;display:block;overflow:hidden}.b4y-address-media img{width:100%;height:100%;object-fit:cover}.b4y-address-media span{position:absolute;left:12px;top:12px;z-index:2;background:linear-gradient(135deg,var(--b4y-pink),var(--b4y-pink-dark));color:#fff;border-radius:4px;padding:6px 9px;font-size:11px;text-transform:uppercase;font-weight:850}.b4y-address-body{padding:16px}.b4y-address-title{display:flex;gap:12px;align-items:center;justify-content:space-between}.b4y-address-title h3{font-size:18px;margin:0}.b4y-address-title strong{display:inline-flex;align-items:center;gap:4px;color:#1f2937}.b4y-address-title strong svg{width:14px;height:14px;color:#f6b217;fill:#f6b217;stroke:#f6b217}.b4y-address-body p{margin:7px 0;color:#5b6472;font-size:13px;display:flex;gap:6px;align-items:center}.b4y-card-actions{display:flex;align-items:center;gap:8px;margin-top:12px}.b4y-card-actions a{border-radius:6px;background:#f0eaf2;color:#263044;font-weight:800;font-size:12px;padding:9px 12px}.b4y-card-actions a:first-child{background:linear-gradient(135deg,var(--b4y-pink),var(--b4y-pink-dark));color:#fff}.b4y-card-actions .b4y-next{margin-left:auto;width:34px;height:34px;padding:0;display:flex;align-items:center;justify-content:center}.b4y-guides-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.b4y-guide-card{background:#fff;border:1px solid var(--b4y-line);border-radius:12px;overflow:hidden;box-shadow:0 10px 26px rgba(15,23,42,.06)}.b4y-guide-card img{width:100%;height:175px;object-fit:cover}.b4y-guide-card div{padding:18px}.b4y-guide-card h3{margin:0 0 8px;font-size:18px}.b4y-guide-card p{margin:0 0 14px;color:#5b6472;line-height:1.5}.b4y-guide-card a:last-child{display:inline-flex;align-items:center;gap:8px;color:var(--b4y-pink);font-weight:850}.b4y-partner-cta{padding:24px 0 62px}.b4y-partner-box{display:grid;grid-template-columns:78px 1fr auto;align-items:center;gap:26px;border-radius:14px;background:linear-gradient(135deg,#d50068,#85005c);color:#fff;padding:30px 48px;box-shadow:0 22px 45px rgba(174,0,92,.24)}.b4y-partner-box>span{width:70px;height:70px;border-radius:999px;background:#fff;color:var(--b4y-pink);display:flex;align-items:center;justify-content:center}.b4y-partner-box h2{margin:0 0 8px;font-size:28px}.b4y-partner-box p{margin:0;color:rgba(255,255,255,.9);line-height:1.5}.b4y-partner-box .b4y-btn{box-shadow:none;white-space:nowrap}.b4y-footer,.site-footer{margin-top:0}
@media (max-width: 1024px){.b4y-rubriques-grid,.b4y-address-grid,.b4y-why-grid{grid-template-columns:repeat(2,1fr)}.b4y-search-card{grid-template-columns:1fr 1fr}.b4y-search-card button{height:48px}.b4y-partner-box{grid-template-columns:1fr;text-align:center;justify-items:center}.b4y-guides-grid{grid-template-columns:1fr 1fr}}
@media (max-width: 680px){.b4y-home-container{width:min(100% - 28px,1210px)}.b4y-home-hero{min-height:520px}.b4y-hero-copy{padding:80px 0 110px}.b4y-hero-actions,.b4y-btn{width:100%}.b4y-search-panel{margin-top:-70px}.b4y-search-card,.b4y-rubriques-grid,.b4y-address-grid,.b4y-why-grid,.b4y-guides-grid{grid-template-columns:1fr}.b4y-section{padding:34px 0}.b4y-section-head{align-items:flex-start;flex-direction:column}.b4y-rubrique-card{min-height:170px}.b4y-partner-box{padding:28px 22px}.b4y-partner-box h2{font-size:24px}}

/* Benin4you directory CPT archives - v1.3 */
.b4y-directory-hero,.b4y-single-hero{position:relative;min-height:300px;background-size:cover;background-position:center;display:flex;align-items:center;color:#fff;overflow:hidden}.b4y-directory-hero:before,.b4y-single-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(12,16,26,.86),rgba(12,16,26,.54),rgba(12,16,26,.18))}.b4y-directory-hero .b4y-home-container,.b4y-single-hero .b4y-home-container{position:relative;z-index:1}.b4y-directory-hero h1,.b4y-single-hero h1{font-size:clamp(34px,5vw,64px);line-height:1.02;margin:12px 0 12px;color:#fff;max-width:820px}.b4y-directory-hero p,.b4y-single-hero p{max-width:680px;color:rgba(255,255,255,.9)}.b4y-directory-search{margin-top:-36px;position:relative;z-index:5}.b4y-directory-layout{display:grid;grid-template-columns:minmax(0,1fr) 380px;gap:32px;align-items:start}.b4y-directory-list{display:grid;gap:18px}.b4y-directory-row{display:grid;grid-template-columns:210px minmax(0,1fr);gap:18px;background:#fff;border:1px solid #ececf2;border-radius:18px;padding:14px;box-shadow:0 18px 45px rgba(18,21,30,.07)}.b4y-directory-thumb{position:relative;display:block;min-height:148px;border-radius:14px;overflow:hidden;background:#f4f4f7}.b4y-directory-thumb img{width:100%;height:100%;object-fit:cover;display:block}.b4y-directory-thumb span{position:absolute;top:10px;left:10px;z-index:2;background:#c80a61;color:#fff;text-transform:uppercase;font-weight:800;font-size:11px;border-radius:7px;padding:6px 9px}.b4y-directory-title{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}.b4y-directory-title h2{font-size:22px;margin:0 0 8px}.b4y-directory-title h2 a{color:#141827;text-decoration:none}.b4y-directory-title strong,.b4y-single-panel strong{display:inline-flex;gap:5px;align-items:center;color:#111827}.b4y-directory-title svg,.b4y-single-panel svg{width:17px;height:17px;fill:#f7b500;stroke:#f7b500}.b4y-directory-info p{margin:6px 0;color:#454b5f}.b4y-directory-info p svg{width:16px;height:16px;vertical-align:-3px;stroke:#c80a61}.b4y-directory-map{position:sticky;top:24px;background:#fff;border:1px solid #ececf2;border-radius:18px;padding:14px;box-shadow:0 18px 45px rgba(18,21,30,.07)}.b4y-directory-map img{width:100%;border-radius:14px;display:block}.b4y-directory-map a{display:flex;align-items:center;justify-content:space-between;margin-top:12px;background:#f7f4f8;color:#141827;text-decoration:none;border-radius:12px;padding:13px 15px;font-weight:700}.b4y-directory-map a:after{content:"›";font-size:22px}.b4y-single-hero-inner{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:32px;align-items:end}.b4y-single-panel{background:rgba(255,255,255,.94);color:#141827;border-radius:20px;padding:24px;box-shadow:0 18px 45px rgba(0,0,0,.2)}.b4y-single-panel p{color:#454b5f;margin:10px 0 0}.b4y-single-content{background:#fff;border:1px solid #ececf2;border-radius:18px;padding:28px;box-shadow:0 18px 45px rgba(18,21,30,.06)}.b4y-single-content h2{font-size:28px;margin:0 0 18px}.b4y-single-content h2:not(:first-child){margin-top:34px}.b4y-practical-list{list-style:none;margin:0;padding:0;display:grid;gap:12px}.b4y-practical-list li{display:grid;grid-template-columns:160px 1fr;gap:16px;border-top:1px solid #ececf2;padding-top:12px}.b4y-practical-list strong{color:#141827}.b4y-practical-list span{color:#454b5f}@media(max-width:900px){.b4y-directory-layout,.b4y-single-hero-inner{grid-template-columns:1fr}.b4y-directory-map{position:static}.b4y-directory-row{grid-template-columns:1fr}.b4y-directory-thumb{min-height:220px}.b4y-practical-list li{grid-template-columns:1fr}}@media(max-width:560px){.b4y-directory-hero,.b4y-single-hero{min-height:260px}.b4y-directory-row{padding:10px;border-radius:14px}.b4y-single-content{padding:20px}.b4y-card-actions{flex-wrap:wrap}}

/* Benin4you client revision v1.4.0: stronger home categories + premium directory page */
.b4y-rubriques-section{position:relative;margin-top:12px;padding:56px 0 62px;background:linear-gradient(180deg,#fff 0%,#fff7fb 55%,#fff 100%)}
.b4y-rubriques-section:before{content:"";position:absolute;left:50%;top:22px;width:min(980px,86vw);height:230px;transform:translateX(-50%);background:radial-gradient(circle,rgba(204,0,102,.14),rgba(255,255,255,0) 68%);pointer-events:none}.b4y-rubriques-section .b4y-home-container{position:relative}.b4y-rubriques-grid{gap:22px}.b4y-rubrique-card{min-height:190px;border-radius:18px;padding:22px;border:1px solid rgba(255,255,255,.42);box-shadow:0 22px 44px rgba(15,23,42,.21),0 3px 0 rgba(204,0,102,.55);transform:translateZ(0)}.b4y-rubrique-card:after{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(204,0,102,.28),rgba(0,0,0,0) 48%);z-index:-1;opacity:.9}.b4y-card-gradient{background:linear-gradient(180deg,rgba(0,0,0,.10) 0%,rgba(8,10,20,.42) 39%,rgba(0,0,0,.92) 100%)}.b4y-card-icon{width:52px;height:52px;margin-bottom:16px;color:#c90065;box-shadow:0 12px 28px rgba(0,0,0,.22)}.b4y-card-icon svg{width:22px;height:22px}.b4y-card-title{font-size:21px;text-shadow:0 2px 7px rgba(0,0,0,.5)}.b4y-card-subtitle{font-size:14px;font-weight:650;color:#fff;text-shadow:0 2px 7px rgba(0,0,0,.55)}.b4y-rubrique-card:hover{transform:translateY(-5px);box-shadow:0 30px 58px rgba(15,23,42,.28),0 4px 0 rgba(204,0,102,.75)}
.b4y-annuaire-page svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.b4y-annuaire-hero{position:relative;min-height:470px;background-size:cover;background-position:center;display:flex;align-items:center;color:#fff;overflow:hidden}.b4y-annuaire-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(10,14,25,.88) 0%,rgba(10,14,25,.62) 56%,rgba(10,14,25,.28) 100%)}.b4y-annuaire-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) 270px;gap:40px;align-items:center}.b4y-annuaire-hero h1{max-width:780px;font-size:clamp(38px,5vw,66px);line-height:1.02;letter-spacing:-.045em;margin:0 0 14px;color:#fff}.b4y-annuaire-hero p{max-width:620px;color:rgba(255,255,255,.92);font-size:17px;line-height:1.55}.b4y-annuaire-search{display:grid;grid-template-columns:1.2fr 1fr 150px;gap:12px;max-width:850px;margin-top:26px;background:#fff;border-radius:14px;padding:14px;box-shadow:0 22px 55px rgba(0,0,0,.22)}.b4y-annuaire-search label{height:48px;border:1px solid #e8e8ef;border-radius:9px;display:flex;align-items:center;gap:10px;padding:0 13px;color:#647084}.b4y-annuaire-search input,.b4y-annuaire-search select{border:0;background:transparent;width:100%;outline:0;color:#172033}.b4y-annuaire-search button,.b4y-filter-btn{border:0;border-radius:9px;background:linear-gradient(135deg,#d50068,#85005c);color:#fff;font-weight:850;text-align:center;display:flex;align-items:center;justify-content:center;text-decoration:none}.b4y-annuaire-stats{display:flex;flex-wrap:wrap;gap:18px;margin-top:24px}.b4y-annuaire-stats span{display:flex;flex-direction:column;gap:3px;background:rgba(255,255,255,.11);border:1px solid rgba(255,255,255,.18);border-radius:14px;padding:12px 16px;color:rgba(255,255,255,.82)}.b4y-annuaire-stats strong{font-size:19px;color:#fff}.b4y-annuaire-join{background:#fff;color:#172033;border-radius:18px;padding:28px;text-align:center;box-shadow:0 22px 60px rgba(0,0,0,.22)}.b4y-annuaire-join>span{width:66px;height:66px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#d50068,#85005c);color:#fff;margin-bottom:14px}.b4y-annuaire-join h2{font-size:20px;margin:0 0 8px}.b4y-annuaire-join p{color:#647084;font-size:14px}.b4y-annuaire-join a{display:block;margin-top:18px;border-radius:9px;background:#d50068;color:#fff;padding:13px 16px;font-weight:850;text-decoration:none}.b4y-annuaire-cats{background:#fff}.b4y-annuaire-cat-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}.b4y-annuaire-cat{display:grid;grid-template-columns:46px 1fr;align-items:center;gap:10px;background:#fff;border:1px solid #ececf2;border-radius:14px;padding:16px;text-decoration:none;color:#172033;box-shadow:0 12px 30px rgba(15,23,42,.055)}.b4y-annuaire-cat span{grid-row:span 2;width:46px;height:46px;border-radius:14px;background:#fff0f7;color:#c90065;display:flex;align-items:center;justify-content:center}.b4y-annuaire-cat strong{font-size:15px}.b4y-annuaire-cat em{font-size:12px;color:#647084;font-style:normal}.b4y-annuaire-layout{display:grid;grid-template-columns:minmax(0,1fr) 280px;gap:28px;align-items:start}.b4y-annuaire-main{background:#fbfbfd}.b4y-section-head select{height:38px;border:1px solid #e3e5ec;border-radius:8px;color:#495365;background:#fff}.b4y-annuaire-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.b4y-annuaire-card{background:#fff;border:1px solid #ececf2;border-radius:16px;overflow:hidden;box-shadow:0 16px 38px rgba(15,23,42,.075)}.b4y-annuaire-card-media{height:165px;display:block;position:relative;overflow:hidden;background:#f3f4f6}.b4y-annuaire-card-media img{width:100%;height:100%;object-fit:cover}.b4y-annuaire-card-media span{position:absolute;left:10px;top:10px;background:#d50068;color:#fff;border-radius:7px;padding:6px 9px;font-size:11px;font-weight:850;text-transform:uppercase}.b4y-annuaire-card>div{padding:16px}.b4y-annuaire-card h3{font-size:17px;margin:0 0 8px}.b4y-annuaire-card p{margin:7px 0;color:#5d6675;font-size:13px;display:flex;align-items:center;gap:5px}.b4y-rating svg,.b4y-annuaire-mini svg{fill:#f7b500;stroke:#f7b500}.b4y-annuaire-filter{position:sticky;top:22px;background:#fff;border:1px solid #ececf2;border-radius:18px;padding:22px;box-shadow:0 16px 38px rgba(15,23,42,.065)}.b4y-annuaire-filter h3{margin:0 0 18px}.b4y-annuaire-filter label{display:block;font-size:13px;font-weight:750;color:#303849;margin-bottom:14px}.b4y-annuaire-filter select{width:100%;height:42px;margin-top:6px;border:1px solid #e4e6ee;border-radius:9px;color:#647084;background:#fff;padding:0 10px}.b4y-toggle{display:flex!important;align-items:center;justify-content:space-between;gap:16px}.b4y-filter-btn{height:46px;margin-top:8px}.b4y-annuaire-more{text-align:center;margin-top:22px}.b4y-annuaire-more a{display:inline-flex;border:1px solid #d50068;color:#d50068;border-radius:999px;padding:10px 22px;font-weight:850;text-decoration:none}.b4y-annuaire-premium{background:#fff}.b4y-annuaire-mini-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.b4y-annuaire-mini{background:#fff;border:1px solid #ececf2;border-radius:15px;overflow:hidden;box-shadow:0 12px 30px rgba(15,23,42,.06)}.b4y-annuaire-mini>a{height:130px;display:block;overflow:hidden}.b4y-annuaire-mini img{width:100%;height:100%;object-fit:cover}.b4y-annuaire-mini div{padding:14px}.b4y-annuaire-mini strong{display:block;color:#172033;margin-bottom:6px}.b4y-annuaire-mini p{display:flex;align-items:center;gap:5px;margin:0;color:#647084;font-size:12px}.b4y-category-tree{background:linear-gradient(180deg,#fff,#fff7fb)}.b4y-category-tree-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.b4y-category-tree article{background:#fff;border:1px solid #ececf2;border-radius:16px;padding:20px;box-shadow:0 14px 34px rgba(15,23,42,.055)}.b4y-category-tree h3{margin:0 0 12px;font-size:18px}.b4y-category-tree ul{margin:0;padding-left:18px;color:#526073;line-height:1.75}.b4y-annuaire-cta{padding:44px 0 66px}.b4y-annuaire-cta .b4y-home-container{display:flex;align-items:center;justify-content:space-between;gap:28px;border-radius:18px;background:linear-gradient(135deg,#d50068,#85005c);color:#fff;padding:32px 46px;box-shadow:0 24px 55px rgba(174,0,92,.23)}.b4y-annuaire-cta h2{margin:0 0 8px;color:#fff;font-size:26px}.b4y-annuaire-cta p{margin:0;color:rgba(255,255,255,.9)}.b4y-annuaire-cta a{white-space:nowrap;background:#fff;color:#8f005d;border-radius:10px;padding:14px 22px;font-weight:850;text-decoration:none}
@media(max-width:1100px){.b4y-annuaire-cat-grid{grid-template-columns:repeat(3,1fr)}.b4y-annuaire-cards,.b4y-annuaire-mini-grid{grid-template-columns:repeat(2,1fr)}.b4y-annuaire-hero-grid,.b4y-annuaire-layout{grid-template-columns:1fr}.b4y-annuaire-filter{position:static}.b4y-category-tree-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:680px){.b4y-rubrique-card{min-height:190px}.b4y-annuaire-hero{min-height:auto;padding:58px 0}.b4y-annuaire-search{grid-template-columns:1fr}.b4y-annuaire-search button{height:48px}.b4y-annuaire-cat-grid,.b4y-annuaire-cards,.b4y-annuaire-mini-grid,.b4y-category-tree-grid{grid-template-columns:1fr}.b4y-annuaire-cta .b4y-home-container{display:block;padding:26px}.b4y-annuaire-cta a{display:block;text-align:center;margin-top:18px}.b4y-annuaire-stats{display:grid;grid-template-columns:1fr}.b4y-annuaire-join{display:none}}

/* v1.4.1 - Homepage Explorez le Benin: professional two-column entry cards */
.b4y-rubriques-section{padding:66px 0 76px;background:linear-gradient(180deg,#fff 0%,#fff8fc 52%,#fff 100%)}
.b4y-rubriques-section:before{top:28px;height:360px;width:min(1180px,92vw);background:radial-gradient(circle,rgba(204,0,102,.10),rgba(255,255,255,0) 70%)}
.b4y-rubriques-grid-v2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;align-items:stretch}
.b4y-rubriques-grid-v2 .b4y-rubrique-card-v2{min-height:260px;display:grid;grid-template-columns:38% 1fr;padding:0;border:1px solid rgba(226,232,240,.95);border-radius:22px;background:#fff;color:#101828;overflow:hidden;box-shadow:0 18px 45px rgba(15,23,42,.08);transform:none}
.b4y-rubriques-grid-v2 .b4y-rubrique-card-v2:after{display:none}
.b4y-rubriques-grid-v2 .b4y-rubrique-card-v2:hover{transform:translateY(-4px);box-shadow:0 26px 62px rgba(15,23,42,.14);border-color:rgba(204,0,102,.22)}
.b4y-rubrique-media{position:relative;display:block;min-height:100%;overflow:hidden;background:#101828}
.b4y-rubrique-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;transition:transform .45s ease,filter .45s ease}
.b4y-rubriques-grid-v2 .b4y-rubrique-card-v2:hover .b4y-rubrique-media img{transform:scale(1.06);filter:saturate(1.08)}
.b4y-rubrique-media span{position:absolute;inset:0;background:linear-gradient(180deg,rgba(9,15,29,.05),rgba(9,15,29,.50));z-index:1}
.b4y-rubrique-content{padding:26px 28px 24px;display:flex;flex-direction:column;min-width:0}
.b4y-rubrique-top{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:14px}
.b4y-rubriques-grid-v2 .b4y-card-icon{width:54px;height:54px;margin:0;border-radius:16px;background:linear-gradient(135deg,#d6006b,#8f005f);color:#fff;box-shadow:0 14px 26px rgba(204,0,102,.18)}
.b4y-rubriques-grid-v2 .b4y-card-icon svg{width:24px;height:24px}
.b4y-rubrique-count{display:inline-flex;align-items:center;justify-content:center;min-width:34px;height:28px;padding:0 10px;border-radius:999px;background:#fff0f7;color:#c90065;font-size:13px;font-weight:900}
.b4y-rubrique-content h3{margin:0 0 6px;font-size:24px;line-height:1.16;letter-spacing:-.035em;font-weight:900;color:#0f172a}
.b4y-rubrique-content h3 a{color:inherit;text-decoration:none}
.b4y-rubrique-content p{margin:0 0 16px;color:#475467;font-size:14px;line-height:1.45;font-weight:650}
.b4y-rubrique-children{list-style:none;margin:0 0 18px;padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px 18px}
.b4y-rubrique-children li{position:relative;padding-left:18px;color:#253044;font-size:13.5px;line-height:1.35;font-weight:700}
.b4y-rubrique-children li:before{content:"";position:absolute;left:0;top:.45em;width:6px;height:6px;border-radius:999px;background:#d00068;box-shadow:0 0 0 4px rgba(208,0,104,.09)}
.b4y-rubrique-link{margin-top:auto;display:inline-flex;align-items:center;gap:8px;align-self:flex-start;color:#c90065;font-weight:900;font-size:14px;text-decoration:none}
.b4y-rubrique-link svg{width:16px;height:16px;transition:transform .2s ease}
.b4y-rubrique-link:hover svg{transform:translateX(4px)}
@media(max-width:1100px){.b4y-rubriques-grid-v2 .b4y-rubrique-card-v2{grid-template-columns:34% 1fr}.b4y-rubrique-content{padding:22px}.b4y-rubrique-content h3{font-size:21px}.b4y-rubrique-children{grid-template-columns:1fr}}
@media(max-width:860px){.b4y-rubriques-grid-v2{grid-template-columns:1fr}.b4y-rubriques-grid-v2 .b4y-rubrique-card-v2{grid-template-columns:34% 1fr;min-height:230px}.b4y-rubrique-children{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.b4y-rubriques-section{padding:42px 0 52px}.b4y-rubriques-grid-v2{gap:18px}.b4y-rubriques-grid-v2 .b4y-rubrique-card-v2{display:block;min-height:0}.b4y-rubrique-media{height:160px}.b4y-rubrique-content{padding:22px 20px}.b4y-rubrique-content h3{font-size:22px}.b4y-rubrique-children{grid-template-columns:1fr}}
