@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #0099FF;
  --primary-dark: #0066CC;
  --primary-deeper: #004999;
  --primary-light: #E6F4FF;
  --accent: #FF5E00;
  --accent-light: #FFF0E6;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --bg: #F0F2F5;
  --bg-card: #FFFFFF;
  --text: #1A1A2E;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px rgba(0, 153, 255, 0.2);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ═══════════ HEADER ═══════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 38px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.lang-switcher {
  display: flex;
  gap: 3px;
  margin-left: 10px;
  border-left: 1px solid var(--border);
  padding-left: 10px;
}

.lang-btn {
  border: none;
  background: none;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.lang-btn.active {
  background: var(--primary);
  color: #fff;
}

.mobile-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 24px;
  color: var(--text);
}

/* ═══════════ FEATURED SLIDER ═══════════ */
.featured-section {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 24px;
  position: relative;
}

.featured-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.featured-slide {
  display: none;
  position: relative;
  background: linear-gradient(135deg, #0052D4, #4364F7, #6FB1FC);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
}

.featured-slide.active {
  display: flex;
  animation: fadeSlide 0.5s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: scale(1.02);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.featured-slide .featured-content {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  z-index: 1;
  max-width: 52%;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  margin-bottom: 16px;
  width: fit-content;
}

.featured-slide h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.featured-slide p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
}

.featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: var(--primary-dark);
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  width: fit-content;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.featured-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--primary-dark);
}

.featured-slide .featured-visual {
  position: absolute;
  right: 24px;
  top: 24px;
  bottom: 24px;
  width: 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  opacity: 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.featured-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.featured-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.featured-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* ═══════════ CATEGORY BAR ═══════════ */
.category-bar {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 24px;
}

.category-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.category-inner::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.cat-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.cat-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ═══════════ SECTIONS ═══════════ */
.section {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 24px;
}

.section-inner {}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 22px;
  font-weight: 800;
}

.see-all {
  font-size: 14px;
  font-weight: 600;
}

.contest-count {
  font-size: 14px;
  color: var(--text-muted);
}

/* ═══════════ LATEST (Horizontal Scroll) ═══════════ */
.latest-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.latest-scroll::-webkit-scrollbar {
  display: none;
}

.latest-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.latest-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.latest-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.latest-img .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.latest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-body {
  padding: 16px;
}

.latest-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-body .meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}

.latest-body .enter-link {
  display: block;
  text-align: center;
  padding: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}

.latest-body .enter-link:hover {
  box-shadow: var(--shadow-glow);
  color: #fff;
}

/* ═══════════ CONTESTS GRID ═══════════ */
.contests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.contest-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.contest-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.card-image {
  height: 170px;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.badge-auto {
  background: linear-gradient(135deg, #EF4444, #DC2626);
}

.badge-reise {
  background: linear-gradient(135deg, #10B981, #059669);
}

.badge-geld {
  background: linear-gradient(135deg, #F59E0B, #D97706);
}

.badge-technik {
  background: linear-gradient(135deg, #6366F1, #4F46E5);
}

.badge-lifestyle {
  background: linear-gradient(135deg, #EC4899, #DB2777);
}

.badge-sonstige {
  background: linear-gradient(135deg, #64748B, #475569);
}

.card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-prize {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-deadline {
  font-size: 12px;
  color: var(--text-muted);
}

.card-participants {
  font-size: 12px;
  color: var(--success);
  font-weight: 600;
}

.card-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
  border: none;
  width: 100%;
  margin-top: auto;
}

.card-btn:hover {
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.card-btn.ended {
  background: var(--text-muted);
  pointer-events: none;
}

.no-contests {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
  grid-column: 1/-1;
}

.no-contests-icon {
  font-size: 56px;
  margin-bottom: 12px;
}

/* ═══════════ INFO BANNER ═══════════ */
.info-banner {
  background: linear-gradient(135deg, #0052D4, #4364F7);
  margin-top: 48px;
  padding: 48px 24px;
}

.info-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.info-step {
  text-align: center;
  color: #fff;
}

.info-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.info-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-step p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
}

/* ═══════════ ABOUT ═══════════ */
.about-block h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-block>p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.about-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: #0F172A;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px 24px;
  margin-top: 64px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-brand .logo-text {
  font-weight: 800;
  font-size: 22px;
  color: #fff;
}

.footer-brand .logo-text span {
  color: var(--primary);
}

.footer-brand>p {
  margin-top: 8px;
  font-size: 14px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-cols {
  display: flex;
  gap: 48px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  padding: 3px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════════ CONTEST DETAIL ═══════════ */
.contest-detail {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 24px;
}

.contest-hero-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.contest-detail h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contest-prize {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.contest-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contest-info-bar {
  display: flex;
  gap: 24px;
  padding: 16px 20px;
  background: var(--primary-light);
  border-radius: var(--radius);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* ═══════════ FORM ═══════════ */
.form-section {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  transition: var(--transition);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 10px;
}

.alert.show {
  display: flex;
}

.alert-success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.alert-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.alert-info {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid #BAE6FD;
}

/* ═══════════ CONFIRM ═══════════ */
.confirm-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.confirm-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 100%;
}

.confirm-icon {
  font-size: 72px;
  margin-bottom: 24px;
}

.confirm-card h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.confirm-card p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.confirm-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  transition: var(--transition);
}

.confirm-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ═══════════ LOADING ═══════════ */
.loading {
  text-align: center;
  padding: 40px;
  grid-column: 1/-1;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
  .header-inner {
    padding: 8px 16px;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border);
    z-index: 99;
  }

  .nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .lang-switcher {
    border: none;
    padding: 0;
    margin: 8px 0 0;
  }

  .featured-section {
    padding: 0;
    margin: 0;
  }

  .featured-inner {
    border-radius: 0;
  }

  .featured-slide {
    flex-direction: row;
    min-height: 280px;
    position: relative;
    border-radius: 0;
  }

  .featured-slide .featured-content {
    max-width: 100%;
    padding: 24px;
    z-index: 1;
    position: relative;
  }

  .featured-slide h2 {
    font-size: 22px;
  }

  .featured-slide p {
    font-size: 14px;
  }

  .featured-slide .featured-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.25;
    z-index: 0;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
  }

  .featured-slide .featured-visual img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    border-radius: 0 !important;
    object-fit: cover;
  }

  .info-banner {
    padding: 24px 16px;
    margin-top: 24px;
  }

  .info-banner-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .info-icon {
    font-size: 32px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .info-step h3 {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .info-step p {
    font-size: 12px;
    line-height: 1.4;
  }

  .about-extra {
    grid-template-columns: 1fr;
  }

  .contests-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-cols {
    flex-direction: column;
    gap: 24px;
  }

  .contest-hero-img {
    height: 200px;
  }

  .contest-detail h1 {
    font-size: 24px;
  }

  .form-section {
    padding: 20px;
  }

  .contest-info-bar {
    flex-direction: column;
    gap: 12px;
  }

  .section {
    padding: 0 16px;
  }

  .category-bar {
    padding: 0 16px;
  }
}

/* ═══════════ INTERNAL PROMO SLOTS ═══════════ */
.kl-promo-slot {
  margin: 24px 0;
}

.kl-promo-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  background-size: 200% 200%;
}

.kl-promo-inner:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
  transform: translateY(-4px) scale(1.01);
  animation: kl-gradient-shift 4s ease infinite;
}

.kl-promo-colis {
  border-color: var(--accent);
}

.kl-promo-colis:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(255, 94, 0, 0.3);
}

.kl-promo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: kl-badge-pulse 2s infinite;
}

.kl-promo-img {
  flex: 0 0 140px;
  min-height: 120px;
  overflow: hidden;
  position: relative;
}

.kl-promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kl-promo-inner:hover .kl-promo-img img {
  transform: scale(1.08);
}

.kl-promo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.kl-promo-body {
  flex: 1;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.kl-promo-body h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.kl-promo-body p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.kl-promo-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}

.kl-promo-old {
  font-size: 12px;
  color: var(--danger);
  text-decoration: line-through;
}

.kl-promo-now {
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
}

.kl-promo-cta {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.2s ease;
}

.kl-promo-colis .kl-promo-cta {
  color: var(--accent);
}

.kl-promo-inner:hover .kl-promo-cta {
  transform: translateX(4px);
}

@media (max-width: 480px) {
  .kl-promo-inner {
    flex-direction: column;
  }

  .kl-promo-img {
    flex: none;
    height: 140px;
  }
}

/* ═══════════ HOMEPAGE GRID PROMO BANNER ═══════════ */
.kl-homepage-promo {
  grid-column: 1 / -1;
  /* Spans all columns in the grid, cutting the list! */
  flex-direction: row !important;
  align-items: stretch;
  min-height: 180px;
  background-size: 200% 200%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.kl-homepage-promo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35) !important;
  animation: kl-gradient-shift 4s ease infinite;
}

.kl-homepage-promo .card-image {
  flex: 0 0 240px;
  height: auto !important;
  min-height: 100%;
  overflow: hidden;
}

.kl-homepage-promo .card-image img {
  transition: transform 0.5s ease;
}

.kl-homepage-promo:hover .card-image img {
  transform: scale(1.06);
}

.kl-homepage-promo .card-body {
  padding: 24px;
  justify-content: center;
}

.kl-homepage-promo .card-title {
  font-size: 20px !important;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.kl-homepage-promo:hover .card-title {
  transform: translateX(2px);
}

.kl-homepage-promo .card-prize {
  font-size: 15px !important;
  margin-bottom: 16px;
}

.kl-homepage-promo .card-btn {
  width: auto !important;
  align-self: flex-start;
  padding: 10px 24px !important;
  transition: all 0.2s ease !important;
}

.kl-homepage-promo:hover .card-btn {
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .kl-homepage-promo {
    flex-direction: column !important;
  }

  .kl-homepage-promo .card-image {
    flex: none;
    height: 160px !important;
    min-height: auto !important;
  }

  .kl-homepage-promo .card-btn {
    width: 100% !important;
    align-self: stretch;
  }
}

/* ═══════════ PROMO ANIMATIONS KEYFRAMES ═══════════ */
@keyframes kl-gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes kl-badge-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}