
:root {
  --bg-light: #f3f1ee;
  --bg-card: #f5f3f0;
  --text-main: #49514c;
  --text-soft: #6f726f;
  --accent: #4a5c53;
  --accent-hover: #405048;
  --border: #d9d4ce;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #0f1714;
  color: var(--text-main);
  font-family: "Manrope", sans-serif;
}

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

button,
a {
  font: inherit;
}

.offers-section {
  position: relative;
  background: var(--white);
  padding: 70px 0 0;
}

.container {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.offers-edge {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

.offers-edge svg {
  display: block;
  width: 100%;
  height: 78px;
}

.offers-edge-top {
  top: 0;
  transform: translateY(-1px);
}

.offers-edge-bottom {
  bottom: 0;
  transform: translateY(99%);
}

.section-header {
  text-align: center;
  padding: 0 0 38px;
}

.section-title {
  margin: 0;
  color: var(--accent);
  font-family: "Neucha", cursive;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 400;
  line-height: 1;
}


.section-subtitle {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.55;
}

.offers-slider {
  position: relative;
}

.offers-viewport {
  overflow: hidden;
}

.offers-track {
  display: flex;
  gap: 16px;
  transition: transform .35s ease;
  will-change: transform;
}

.offer-slide {
  min-width: 0;
  flex: 0 0 auto;
}

.offer-card {
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25) inset;
}

.offer-media {
  position: relative;
  padding: 14px 14px 0;
}

.offer-media img {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.offer-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  min-width: 112px;
  padding: 8px 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px 22px 10px 22px;
  font-family: "Neucha", cursive;
  font-size: 24px;
  line-height: 1;
  transform: rotate(-4deg);
  box-shadow: 0 8px 16px rgba(0,0,0,.12);
}

.offer-body {
  padding: 12px 22px 24px;
  text-align: center;
}

.offer-body h2 {
  margin: 0 0 10px;
  color: #363f39;
  font-family: "Neucha", cursive;
  font-size: clamp(28px, 2vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.offer-body p {
  margin: 0;
  color: #626763;
  font-size: 15px;
  line-height: 1.6;
  min-height: 48px;
}

.offers-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 18px 0 54px;
  color: #58605a;
}

.offers-arrow {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: opacity .2s ease;
}

.offers-arrow:disabled {
  opacity: .35;
  cursor: default;
}

.offers-counter {
  font-size: 18px;
  color: #5e6460;
}

.testimonial-section {
  position: relative;
  min-height: 390px;
  padding: 115px 24px 70px;
  background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center 58%;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,18,15,.38), rgba(7,12,10,.52));
}

.testimonial-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 1;
  margin-bottom: 10px;
  opacity: .96;
}

.testimonial-inner blockquote {
  margin: 0;
  font-family: "Neucha", cursive;
  font-size: clamp(28px, 3vw, 52px);
  line-height: 1.28;
}

.testimonial-inner cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}

.testimonial-dots .is-active {
  background: rgba(255,255,255,.95);
}

@media (max-width: 1080px) {
  .container {
    width: min(920px, calc(100% - 40px));
  }
}

@media (max-width: 767px) {
  .offers-section {
    padding-top: 54px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .section-header {
    padding-bottom: 28px;
  }


  .section-subtitle {
    font-size: 15px;
  }

  .offers-track {
    gap: 12px;
  }

  .offer-media {
    padding: 10px 10px 0;
  }

  .offer-badge {
    top: 12px;
    left: 10px;
    min-width: 92px;
    padding: 7px 14px;
    font-size: 21px;
  }

  .offer-body {
    padding: 12px 16px 18px;
  }

  .offer-body h2 {
    font-size: 31px;
  }

  .offer-body p {
    min-height: auto;
    font-size: 14px;
  }

  .offers-nav {
    gap: 22px;
    padding: 14px 0 44px;
  }

  .offers-arrow {
    font-size: 30px;
  }

  .offers-counter {
    font-size: 16px;
  }

  .testimonial-section {
    min-height: 320px;
    padding: 92px 18px 56px;
  }
}


.offers-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

#Akcii .offers-edge-top {
  z-index: 0;
}

#Akcii .container,
#Akcii .section-header,
#Akcii .elementor-widget-heading {
  position: relative;
  z-index: 2;
}

#Akcii .elementor-element-akcii-divider {
  --ep-advanced-divider-rotate: 0deg;
  position: relative;
  z-index: 2;
}

#Akcii .elementor-element-akcii-divider .bdt-ep-advanced-divider {
  text-align: center;
  margin: 14px auto 18px;
  max-width: 300px;
  padding-top: 0;
  padding-bottom: 0;
}

#Akcii .elementor-element-akcii-divider img {
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(31%) sepia(10%) saturate(548%) hue-rotate(94deg) brightness(89%) contrast(88%);
}
