/* =========================================================
   KLUB - "Više od vina u kutiji" — INSIDE container.
   2-column layout: image LEFT, content RIGHT (50/50).
   ========================================================= */

.klub-box {
  background: #f5f3ee;
  padding: 100px 0;
}

.klub-box__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  background: #fff;
}

/* Media side */
.klub-box__media-col {
  position: relative;
  height: 100%;
  display: flex;
}
.klub-box__media-col > * {
  height: 100%;
  object-fit: cover;
}

.klub-box__media {
  position: relative;
  width: 100%;
  aspect-ratio: 835 / 836;
  overflow: hidden;
  background: #eae3d4;
}

/* Bottom gradient overlay on the bottle image (Figma 1:1) */
.klub-box__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(25, 29, 35, 0) 0%,
    rgba(25, 29, 35, 0.35) 65%,
    rgba(25, 29, 35, 0.75) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.klub-box__media--placeholder {
  background: linear-gradient(135deg, #e8e2d4 0%, #d8cfb8 100%);
}

.klub-box__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Content side */
.klub-box__content-col {
  display: flex;
  align-items: center;
}
.klub-box__item-desc {
  max-width: 457px;
}
.klub-box__content {
  width: 100%;
  max-width: 100%;
  /* max-width: 697.61px; */
  padding: 66px;
}

/* Head */
.klub-box__head {
  margin-bottom: 24px;
}

.klub-box__subtitle {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 11.2px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #191d23;
  margin: 0 0 30px 0;
}

.klub-box__title {
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  font-size: clamp(24px, 1.6vw, 30.8px);
  line-height: 35.2px;
  text-transform: uppercase;
  color: #191d23;
  margin: 0 0 30px 0;
  letter-spacing: 0;
}

.klub-box__desc {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.38);
  margin: 0;
}

/* List */
.klub-box__list {
  list-style: none;
  margin: 30px 0 28px 0;
  padding: 0;
}

.klub-box__item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 27px 10px;
  border-bottom: 1px solid rgba(42, 35, 26, 0.1);
}

.klub-box__item-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.klub-box__item-icon img,
.klub-box__item-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.klub-box__item-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  min-width: 0;
}

.klub-box__item-title {
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  color: #191d23;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

.klub-box__item-desc {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: rgba(25, 29, 35, 0.62);
  margin: 0;
}
.klub-box__btn--secondary svg {
  min-width: 24px;
}
/* CTA buttons */
.klub-box__cta {
  display: flex;
  gap: 14px;
  width: 100%;
  margin-top: 8px;
}

.klub-box__btn {
  flex: 1 1 0;
  min-width: 0;
  height: 55px;
  padding: 18px 42px;
  border-radius: 2.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 18.2px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.klub-box__btn--primary {
  background: #bd9831;
  color: #fff;
  border: 1px solid #bd9831;
}

.klub-box__btn--primary:hover {
  background: #fff;
  color: #191d23;
}

.klub-box__btn--secondary {
  background: transparent;
  color: #bd9831;
  border: 1px solid #bd9831;
}

.klub-box__btn--secondary:hover {
  background: #bd9831;
  color: #fff;
}

.klub-box__btn--secondary:hover svg path {
  fill: #fff;
}
.wpcf7-radio {
  margin-top: 20px;
}
.wpcf7-spinner {
  display: none !important;
}
@media (max-width: 1560px) {
  .klub-box__cta {
    flex-direction: column;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .klub-box {
    padding: 70px 0;
  }
  .klub-box__inner {
    display: flex;
    flex-direction: column;
  }
  .klub-box__media {
    aspect-ratio: 4 / 3;
    max-width: 600px;
    margin: 0 auto;
  }

  .klub-box__content-col {
    width: 100%;
  }
  .klub-form-section__shell .klub-form__wa-btn {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .klub-box__content {
    max-width: 100%;
    padding: 20px !important;
  }
}

@media (max-width: 575px) {
  .klub-box {
    padding: 50px 0;
  }
  .klub-box__item {
    padding: 20px 0;
    gap: 18px;
  }
  .klub-box__item-icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }
  .klub-box__item-title {
    font-size: 17px;
    line-height: 1.4;
  }
  .klub-box__cta {
    flex-direction: column;
  }
}
