.elementor-kit-6{--e-global-color-primary:#F6F0E8;--e-global-color-secondary:#7A6652;--e-global-color-text:#2E2B26;--e-global-color-accent:#E5C101;--e-global-color-cdba9b3:#F6F0E8;--e-global-color-40dabb7:#2E2B26;--e-global-color-9a76b0a:#D9B15F;--e-global-color-2343778:#7A6652;--e-global-color-e34126c:#87947C;--e-global-color-22e0b2c:#FFFFFF;--e-global-typography-primary-font-family:"Lora";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Lora";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Lora";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-size:18px;--e-global-typography-accent-font-weight:600;--e-global-typography-accent-text-transform:uppercase;--e-global-typography-accent-line-height:1.2em;--e-global-typography-accent-letter-spacing:0.3px;--e-global-typography-e137fa8-font-family:"Lora";--e-global-typography-e137fa8-font-size:45px;--e-global-typography-e137fa8-line-height:1.4em;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6{--e-global-typography-accent-font-size:13px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ========================================
   ACTION CARDS
======================================== */

.cycle-action-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto 34px;
}

.cycle-action-card {
  box-sizing: border-box;
  background: #F6F0E8;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  text-align: left;
}


.cycle-action-card:not(:has(.cycle-confirmation)) {
  height: 150px;
}


.cycle-action-card:has(.cycle-confirmation) {
  height: auto;
  min-height: 0;
  grid-template-columns: 1fr;
  align-items: stretch;
  padding: 28px 32px;
}


.cycle-action-card {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .cycle-action-card:not(:has(.cycle-confirmation)):hover {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cycle-action-card {
    transition: none;
  }

  .cycle-action-card:not(:has(.cycle-confirmation)):hover {
    transform: none;
  }
}

.cycle-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  height: 100%;
}

.cycle-card-label {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  color: #2E2924;
  margin: 0;
}

.cycle-action-card h3 {
  font-family: 'Lora', serif;
  font-size: clamp(20px, 1.5vw, 22px);
  font-weight: 800;
  line-height: 1.15;
  color: #000000;
  margin: 0;
}

.cycle-action-form {
  margin: 0;
  align-self: center;
}

/* ========================================
   PRIMARY BUTTONS
======================================== */

.cycle-action-button,
.cycle-shuffle-button {
  background: #E5C101 !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 0px;
  padding: 16px 30px;
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  box-shadow: none !important;
}

.cycle-action-button {
  min-width: 220px;
  white-space: nowrap;
}

.cycle-shuffle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 42px;
}

.cycle-action-button:hover,
.cycle-action-button:focus,
.cycle-action-button:active,
.cycle-shuffle-button:hover,
.cycle-shuffle-button:focus,
.cycle-shuffle-button:active {
  background: #D4B100 !important;
  color: #FFFFFF !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ========================================
   TABLET
======================================== */

@media (min-width: 768px) and (max-width: 1024px) {
  .cycle-action-card {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 20px;
    padding: 30px 28px;
    height: auto !important;
    min-height: 170px;
  }

  .cycle-card-content {
    align-items: flex-start;
    text-align: left;
    gap: 12px;
    height: auto;
  }

  .cycle-card-label {
    font-size: 16px;
  }

  .cycle-action-card h3 {
    font-size: 23px;
    line-height: 1.15;
  }

  .cycle-action-form,
  .cycle-action-button,
  .cycle-shuffle-button {
    width: 100%;
    min-width: unset;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {
  .cycle-action-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 22px;
    padding: 28px 22px;
    height: auto !important;
    min-height: 170px;
  }

  .cycle-card-content {
    align-items: center;
    text-align: center;
    height: auto;
  }

  .cycle-card-label {
    text-align: center;
    font-size: 14px;
  }

  .cycle-action-card h3 {
    text-align: center;
    font-size: 24px;
  }

  .cycle-action-form,
  .cycle-action-button,
  .cycle-shuffle-button {
    width: 100%;
    min-width: unset;
  }
}

/* ========================================
   NEWSLETTER FORM
======================================== */

.cycle-newsletter {
  margin-top: 0;
}

.cycle-newsletter input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #D9C4B2;
  border-radius: 4px;
  color: #2E2924;
  font-family: 'Lora', serif;
  font-size: 16px;
  padding: 18px 20px;
  margin-bottom: 14px;
  outline: none;
  box-shadow: none;
}

.cycle-newsletter input[type="email"]:focus,
.cycle-newsletter input[type="email"]:active {
  border-color: #B66A4D;
  outline: none !important;
  box-shadow: 0 0 0 1px #B66A4D !important;
}

.cycle-newsletter input[type="email"]::placeholder {
  color: #7A6652;
  opacity: 0.8;
}

.cycle-newsletter button {
  width: 100%;
  background: #E5C101;
  border: none;
  border-radius: 0px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  padding: 18px 24px;
  cursor: pointer;
}

.cycle-newsletter button:hover,
.cycle-newsletter button:focus,
.cycle-newsletter button:active {
  background: #D4B100 !important;
  color: #FFFFFF !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Newsletter consent */
.cycle-newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #7A6652;
  text-align: left;
}

.cycle-newsletter-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px !important;
  height: 16px;
  padding: 0 !important;
  margin: 3px 0 0 !important;
  border-radius: 2px;
  accent-color: #E5C101;
  box-shadow: none !important;
}

.cycle-newsletter-consent span {
  display: block;
}

.cycle-newsletter-consent a {
  color: #B66A4D;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cycle-newsletter-consent a:hover {
  opacity: 0.8;
}

.newsletter-success {
  font-family: 'Lora', serif;
  font-size: 24px;
  color: #B66A4D;
  text-align: center;
}

/* ========================================
   THANK-YOU STATE
======================================== */

.cycle-confirmation {
  width: 100%;
}

.cycle-confirmation h3 {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  color: #2E2924;
  margin: 0 0 18px;
}

.cycle-confirmation p {
  max-width: 560px;
  margin: 0 0 8px;
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.5;
  color: #2E2924;
}

.cycle-confirmation .cycle-confirmation-small {
  margin-bottom: 8px;
}

/* ========================================
   BRANDED PARTNER BLOCK
======================================== */

.cycle-partner-block {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(122, 102, 82, 0.24);
  text-align: center;
}

.cycle-partner-intro {
  max-width: none !important;
  margin: 0 0 12px !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px !important;
  font-weight: 500;
  line-height: 1.4 !important;
  color: #7A6652 !important;
}

.cycle-partner-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  text-decoration: none;
}

.cycle-partner-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 130px;
  max-height: 38px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.cycle-partner-logo-link:hover .cycle-partner-logo,
.cycle-partner-logo-link:focus .cycle-partner-logo {
  opacity: 0.78;
}

.cycle-partner-link {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #7A6652;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cycle-partner-link:hover,
.cycle-partner-link:focus {
  color: #2E2924;
}

.cycle-partner-logo-link:focus-visible,
.cycle-partner-link:focus-visible {
  outline: 2px solid #E5C101;
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .cycle-partner-block {
    margin-top: 20px;
    padding-top: 20px;
  }

  .cycle-partner-logo {
    max-width: 115px;
    max-height: 34px;
  }
}

/* ========================================
   HONEYPOT
======================================== */

.cycle-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* ========================================
   OWN-ACTION POPUP FORM
======================================== */

.cycle-own-action-form {
  max-width: 100%;
}

.cycle-own-action-form > label {
  display: block;
  margin-bottom: 10px;
  color: #F6F0E8;
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 500;
}

.cycle-own-action-form textarea,
.cycle-own-action-form input[type="email"],
.cycle-own-action-form select {
  width: 100%;
  box-sizing: border-box;
  background: #FDFBF8;
  border: 1px solid #CDB8A6;
  border-radius: 4px;
  padding: 18px 20px;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #2E2924;
}

.cycle-own-action-form textarea {
  min-height: 120px;
  resize: vertical;
}

.cycle-own-action-form textarea::placeholder,
.cycle-own-action-form input[type="email"]::placeholder {
  color: #8D8277;
}

.cycle-own-action-form textarea:focus,
.cycle-own-action-form input[type="email"]:focus,
.cycle-own-action-form select:focus {
  outline: none;
  border-color: #B66A4D;
  box-shadow: 0 0 0 2px rgba(182, 106, 77, 0.15);
}

.cycle-own-action-form button {
  display: inline-block;
  background: #E5C101;
  color: #FFFFFF;
  border: 1px solid #E5C101;
  border-radius: 4px;
  padding: 16px 34px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cycle-own-action-form button:hover,
.cycle-own-action-form button:focus,
.cycle-own-action-form button:active {
  background: #D4B100;
  border-color: #D4B100;
  color: #FFFFFF;
  outline: none;
  box-shadow: none;
}

/* Newsletter opt-in inside own-action form */
.cycle-own-action-form .cycle-newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.cycle-own-action-form .cycle-newsletter-consent span {
  color: #F6F0E8;
}

.cycle-own-action-form .cycle-newsletter-consent a {
  color: #F6F0E8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========================================
   OWN-ACTION SUCCESS STATE
======================================== */

.cycle-own-action-success h3 {
  font-family: 'Lora', serif;
  color: #F6F0E8;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
}

.cycle-own-action-success p {
  max-width: 720px;
  margin: 0 auto 18px;
  color: #F6F0E8;
  font-size: 21px;
  line-height: 1.55;
}

.cycle-own-action-success .cycle-confirmation-small {
  max-width: 560px;
  margin: 0 auto 24px;
  color: #F6F0E8;
  font-size: 17px;
}

.cycle-own-action-success .cycle-newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  color: #F6F0E8;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.cycle-own-action-success .cycle-newsletter-consent span {
  color: #F6F0E8;
}

.cycle-own-action-success .cycle-newsletter-consent input[type="checkbox"] {
  accent-color: #E5C101;
  margin-top: 3px;
}

.cycle-own-action-success .cycle-newsletter input[type="email"] {
  margin-bottom: 20px;
}/* End custom CSS */