/* Reset small */
.ocw-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  font-family: Inter, system-ui, Arial, Helvetica, sans-serif;
  color: #222;
}

.ocw-left,
.ocw-right {
  background: #fff;
  border-radius: 8px;
  /* padding: 18px; */
}

.ocw-left {
  flex: 1 1 60%;
}

.ocw-right {
  flex: 0 0 36%;
  border-left: 4px solid transparent;
}

/* Calendar header */
.ocw-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fbf6ef;
  padding: 10px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.ocw-cal-header .ocw-month {
  font-weight: 700;
  color: #1b3a66;
}

.ocw-cal-header button {
  background: #f3ede4 !important;
  border: 0 !important;
  width: 25px;
  height: 25px;
  border-radius: 50% !important;
  cursor: pointer !important;
  color: #3557ff !important;
  font-size: 26px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 25px !important;
  padding: 7px;
}

.ocw-cal-header button i {
  color: #1f1a14 !important;
  font-size: 14px !important;
}

/* week names */
.ocw-weeknames {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  color: #8b96b2;
  padding: 6px 4px;
  font-size: 13px;
}

/* days grid */
.ocw-calendar {
  background: #fbf6ef;
}
.ocw-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  background: #fbf6ef;
  padding: 14px;
  border-radius: 8px;
}

.ocw-day {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  color: #2c3e50;
  font-weight: 600;
}

/* .ocw-day:hover {
  background-color: #ebe6e7;
} */

.ocw-day.disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.ocw-day.selected {
  background: #e5e7eb;
  color: #82181a;
}

/* note text */
.ocw-note {
  font-size: 11px;
  color: #000;
  margin-top: 12px;
}

/* right column */
.ocw-right h3 {
  margin-top: 0;
  color: #000;
}

.ocw-select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #e6e9f2;
  margin-bottom: 12px;
  font-weight: 600;
}

.ocw-types {
  margin-bottom: 14px;
}

.ocw-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  margin: 6px 6px 0 0;
  border-radius: 8px;
  /* background: #f3f8ff; */
  color: #000;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.ocw-tag input {
  transform: translateY(1px);
}

/* calculate button */
.ocw-calc-btn {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 18px;
  background: #000 !important;
  color: white !important;
  font-weight: 700 !important;
  border: none;
  border-radius: 8px !important;
  cursor: pointer;
}

.ocw-calc-btn:hover {
  transform: translateY(-3px);
}

/* results */
.ocw-results {
  margin-top: 0;
  /* background: #f7f9ff;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e5eeff; */
}

.ocw-results h4 {
  margin: 6px 0 8px 0;
  color: #123a80;
}

/* responsive */
@media (max-width: 920px) {
  .ocw-wrapper {
    flex-direction: column;
    padding: 0;
  }

  .ocw-right {
    order: 2;
  }

  .ocw-left {
    order: 1;
  }

  .ocw-right,
  .ocw-left {
    width: 100%;
  }
}

.results-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  margin-top: 0;
}

.result-card {
  border-radius: 20px;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.result-card img {
  max-width: 60px;
  height: auto;
  margin: 20px 0;
}

.result-card span,
.result-card:hover span {
  color: #000;
}

.result-card span.ocw-month {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.result-card span.ocw-day {
  font-size: 38px;
  font-weight: bold;
}

.category {
  font-size: 14px;
  opacity: 0.8;
}

.result-card .title {
  font-size: 16px;
  font-weight: bold;
  color: #000 !important;
}

.safety-link {
  font-size: 12px;
  margin-bottom: 15px;
  color: white;
  text-decoration: underline;
}

.buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

.btn.primary {
  background: white;
  color: black;
}

.btn.outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: white;
}

.result-card {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  background: #fbf6ef;
}

/* .card-1 {
  background-color: #d29a63;
}

.card-2 {
  background-color: #8c3b2e;
}

.card-3 {
  background-color: #4e7aa0;
}

.card-4 {
  background-color: #2e9b71;
} */

.ocw-left h3,
.ocw-right h3,
.ocw-types h4 {
  font-size: 17px;
  color: #000;
}

.ocw-right {
  /* padding: 0; */
  border-radius: 0;
  background-color: transparent;
}

/* .ocw-right-top,
.ocw-right-bottom {
  background: #fff;
  border-radius: 8px;
  padding: 18px;
} */

/* .ocw-left,
.ocw-right-top,
.ocw-right-bottom {
  margin: 0 0 20px;
  box-shadow: 0 8px 20px rgb(112 119 145 / 14%);
} */

/* .ocp-link {
  color: #155dfc;
  font-size: 14px;
} */

/* Cycle length */
.exact-stepper {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  height: 56px !important;
  padding: 0 14px !important;

  background: #fbf6ef !important; /* warm beige */
  border-radius: 14px !important;
  border: 1px solid #f1ebe3 !important; /* blended border */

  box-sizing: border-box !important;
}

/* Minus / Plus buttons */
.exact-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;

  border: none !important;
  background: #f3ede4 !important; /* slightly darker pill */
  color: #1f1a14 !important; /* dark brown/black */

  font-size: 22px !important;
  cursor: pointer !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Button press feedback (very subtle) */
.exact-btn:active {
  transform: scale(0.96) !important;
}

/* Center value */
.exact-input {
  width: 60px !important;
  border: none !important;
  background: transparent !important;

  text-align: center !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #1f1a14 !important; /* same dark text */

  pointer-events: none !important;
}

/* .ovulation-hero-block {
  background: radial-gradient(
    circle at top left,
    #6b3f22 0%,
    #3b1f0f 35%,
    #000000 70%
  );
} */

.ovulation-hero-block > .elementor-container {
  background: radial-gradient(
    circle at top left,
    #6b3f22 0%,
    #3b1f0f 35%,
    #000000 70%
  );
  max-width: 1270px;
}

.ovulation-hero-block h2 span {
  color: #d9a441;
  font-style: italic;
}

#ovulation-back {
  cursor: pointer;
}

.ovulation-back > .elementor-widget-container {
  display: inline-block;
}

#ovulation-faq .faq-content {
  padding: 0 0 16px !important;
  background-color: transparent !important;
}

.page-id-38027 .mobile-search-block {
  display: none !important;
}

/* Swiper slider */
/* Desktop: NO slider */
@media (min-width: 769px) {
  .ocw-swiper .swiper-wrapper {
    display: flex;
    gap: 20px;
  }

  .ocw-swiper .swiper-pagination {
    display: none;
  }
}

/* Mobile slider */
@media (min-width: 992px) {
  .result-card {
    width: 33.33%;
  }
}

@media (max-width: 768px) {
  .ocw-swiper {
    gap: 0;
    padding-bottom: 0;
  }

  .ocw-swiper .swiper-slide {
    width: 80%;
  }

  .ocw-swiper {
    position: relative;
    /* overflow: visible !important; */
  }

  .ocw-swiper .swiper-pagination {
    position: relative;
    margin-top: 14px;
    bottom: auto !important;
    left: 0;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    z-index: 10;
  }

  .ocw-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cfcfcf;
    opacity: 1;
    margin: 0 4px;
  }

  .ocw-swiper .swiper-pagination-bullet-active {
    background: #000;
  }
}

#ovulation-author p {
  margin: 0;
}

#content-section h2,
#content-section p,
#content-section ul li {
  font-family: Inter, system-ui, Arial, Helvetica, sans-serif;
}

#content-section h2 {
  margin: 0;
  font-size: 22px;
}

#content-section p,
#content-section ul li {
  font-size: 14px;
}

#ocw-results {
  display: none;
}

#ocw-results.active {
  display: block;
}

#ovulation-disclaimer ul {
  margin: 0;
  padding: 0 0 0 25px;
}

.ovulation-date,
.fertile-window {
  cursor: pointer;
}

.faq-content img {
  width: 100% !important;
  margin: 0 0 10px !important;
}

.faq-content h4 {
  margin: 10px 0;
  font-size: 16px;
}

.ovulation-calculation-block {
  overflow: hidden;
}
