/* ================================================================
   Euro Playground Carousel – Frontend Styles  v2.1
   Pixel-identical to original design.
   CSS custom properties allow colour overrides via inline style.
   RTL (Arabic) support via [dir="rtl"] scoped to .euro-playground-section.
================================================================ */

/* ── Section wrapper ──────────────────────────────────────────── */
.euro-playground-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff 0%, #f0f4f8 100%);
  font-family: inherit;
}
.euro-playground-section * {
  box-sizing: border-box;
}

/* ── Header ───────────────────────────────────────────────────── */
.euro-header {
  text-align: center;
  margin-bottom: 40px;
}
.euro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--epw-primary, #33538E);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.euro-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.euro-title span {
  color: var(--epw-accent, #C83528);
}
.euro-subtitle {
  font-size: 15px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Grid / Carousel ──────────────────────────────────────────── */
.euro-carousel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 10px 0 20px;
}

/* ── Card ─────────────────────────────────────────────────────── */
.euro-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.euro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

/* ── Card image ───────────────────────────────────────────────── */
.euro-card-img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: #f5f5f5;
}
.euro-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform .4s ease;
}
.euro-card:hover .euro-card-img img {
  transform: scale(1.05);
}

/* ── Image overlay badges (LTR defaults) ─────────────────────── */
.euro-country {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  z-index: 2;
}
.euro-cert {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--epw-green, #62A787);
  color: #fff;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  z-index: 2;
}

/* ── Card body ────────────────────────────────────────────────── */
.euro-card-body {
  padding: 16px;
}
.euro-category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--epw-primary, #33538E);
  font-weight: 600;
  margin-bottom: 5px;
}
.euro-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.euro-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}
.euro-feature {
  font-size: 10px;
  padding: 3px 8px;
  background: #f5f5f5;
  border-radius: 4px;
  color: #555;
}

/* ── Card footer ──────────────────────────────────────────────── */
.euro-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.euro-age span  { font-size: 10px; color: #888; }
.euro-age strong { display: block; color: #333; font-size: 12px; }
.euro-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  background: var(--epw-accent, #C83528);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .3s ease;
  white-space: nowrap;
}
.euro-btn:hover { background: #a82d22; color: #fff; }

/* ── View All ─────────────────────────────────────────────────── */
.euro-view-all {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.euro-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--epw-primary, #33538E);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .3s ease;
}
.euro-view-all-btn:hover { background: #2a4575; color: #fff; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.euro-cta {
  margin-top: 40px;
  background: var(--epw-primary, #33538E);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.euro-cta-text h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
}
.euro-cta-text p {
  color: rgba(255,255,255,.8);
  font-size: 13px;
  margin: 0;
}
.euro-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #fff;
  color: var(--epw-primary, #33538E);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
  white-space: nowrap;
}
.euro-cta-btn:hover {
  background: var(--epw-green, #62A787);
  color: #fff;
}

/* ── Empty state ──────────────────────────────────────────────── */
.euro-empty {
  text-align: center;
  padding: 40px 20px;
  color: #888;
  font-size: 14px;
  background: #f9f9f9;
  border-radius: 12px;
  margin: 20px 0;
}

/* ── Responsive: Tablet — 3 columns ──────────────────────────── */
@media (max-width: 1024px) {
  .euro-carousel {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Responsive: Mobile — horizontal scroll ──────────────────── */
@media (max-width: 767px) {
  .euro-playground-section { padding: 40px 16px; }
  .euro-title               { font-size: 24px; }

  .euro-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 10px;
  }
  .euro-carousel::-webkit-scrollbar { display: none; }

  .euro-card {
    flex: 0 0 75%;
    scroll-snap-align: start;
  }

  .euro-cta { flex-direction: column; text-align: center; }
  .euro-cta-btn { width: 100%; justify-content: center; }
}

/* ==