/** Shopify CDN: Minification failed

Line 1045:0 Expected "}" to go with "{"

**/
/* =========================================================
   GLOBAL WRAPPER
========================================================= */
.rehaus-investment-calc {
  padding: 40px 50px 0px 50px;
  font-family: inherit;
  background-color: #361801;
  border-top: 0.5px solid rgba(255, 255, 255, 0.3);
}

/* =========================================================
   HEADER AREA
========================================================= */
.calc-top-label {
  display: flex;
  color: #fff;
  justify-content: start;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  opacity: 0.8;
}

.calc-top-icon {
  width: 16px;
}

.calc-main-heading {
  text-align: left;
  font-size: 38px;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
  margin: 20px 0 30px;
}

/* =========================================================
   INPUTS & QUESTIONS
========================================================= */
.calc-question {
  color: #fff;
  margin-bottom: 6px;
  font-size: 14px;
}

.calc-input {
  border-radius: 10px;
  background-color: transparent;
  width: 100%;
  padding: 14px;
  border: 1px solid #dcdcdc;
  margin-bottom: 5px;
  font-size: 16px;
}

/* =========================================================
   TYPE SELECTION CARDS
========================================================= */
.calc-type-grid {
  display: none; 
  gap: 20px;
  margin-bottom: 30px;
}

.calc-type-card {
  border: 1px solid #ddd;
  padding: 20px;
  cursor: pointer;
  flex: 1;
  position: relative;
  display: block;
}

.calc-type-card input[type="radio"] {
  position: absolute;
  top: 25px;
  left: 16px;
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.currency-input-button {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-evenly;
}

@media (max-width: 768px) { 
  .currency-input-button {
    flex-direction: column;
    gap: 0px;
  }
}

/* =========================
   FAST FURNITURE — BROWN
========================= */
.calc-type-card.fast-card input[type="radio"] {
  border: 1px solid #361801; 
}

.calc-type-card.fast-card input[type="radio"]:checked {
  background: #361801;      
  border-color: #361801;
}

/* =========================
   DESIGNER FURNITURE — WHITE
========================= */
.calc-type-card.designer-card input[type="radio"] {
  border: 1px solid #ffffff; 
}

.calc-type-card.designer-card input[type="radio"]:checked {
  background: #ffffff;    
  border-color: #ffffff;
}

.calc-type-card input[type="radio"]:checked {
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.calc-type-card.fast-card input[type="radio"]:checked {
  box-shadow: inset 0 0 0 3px rgb(255, 255, 255);
}

.calc-type-card.designer-card input[type="radio"]:checked {
  box-shadow: inset 0 0 0 3px #361801;
}

.radio-label {
  margin-left: 26px;
  font-weight: 500;
  font-size: 15px;
}

.fast-card {
  background: #fff;
  color: #321A05;
  border-radius: 10px;
}

.designer-card {
  background: #321A05;
  color: #fff;
  border-radius: 10px;
}

/* =========================================================
   LOGO GRID (TOP SELECTION)
========================================================= */
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 12px;
  justify-content: space-between;
}

.brand-logo {
  max-height: 33px;
  object-fit: contain;
}

/* =========================================================
   CALCULATE BUTTON
========================================================= */
.calc-btn {
  width: 100%;
  height: 48px;
  padding: 15px;
  background: #EEA546;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.calc-btn:hover {
  opacity: 0.9;
}

/* =========================================================
   RESULTS CONTAINER
========================================================= */
.calc-results {
  position: relative;
}

/* =========================================================
   RESULTS HEADER
========================================================= */
.calc-results-header {
  text-align: center;
  padding-top: 30px;
  color: #fff;
  margin: 0 auto;
  line-height: 100%;
  max-width: 800px;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 30px;
}

/* =========================================================
   FULL WIDTH RESULTS DIVIDER
========================================================= */
.calc-results-divider {
  position: absolute;
  left: 50%;
  top: 135px;
  width: 100vw;
  height: 1px;
  background: #dcdcdc;
  transform: translateX(-50%);
  z-index: 1;
}

/* =========================================================
   RESULTS GRID
========================================================= */
.calc-results-grid {
  display: flex;
  gap: 0px;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* =========================================================
   LEFT: REHAUS CARD
========================================================= */
.calc-rehaus-card {
  background: #361801;
  color: #fff;
  width: 300px;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,0.15);
}

.calc-rehaus-card h3 {
  font-size: 36px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 40px;
}

/* =========================================================
   REHAUS CARD INFO (TOP TEXT)
========================================================= */
.calc-card.calc-rehaus-card-info {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  display: none;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
}

.card-info1 {
  margin-bottom: 2rem;
}

.calc-card .calc-rehaus-card-info p {
  text-transform: uppercase;
  font-weight: 300;
}

/* FULL-WIDTH DIVIDERS INSIDE REHAUS COLUMN */
.calc-col p {
  position: relative;
  padding: 14px 0;
}

.calc-col p::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* =========================================================
   SHARED OUTLINE WRAPPER
========================================================= */
.rh-shared-box {
  margin-top: 5px;
}

/* =========================================================
   OWNERSHIP COST BLOCK
========================================================= */

p.ownership {
  display: none;
}

.rh-monthly {
  font-size: 18px;
  font-weight: 200;
  margin-left: 6px;
}

.rh-desc {
  color: #fff;
  text-align: center;
  font-size: 14px;
  opacity: 0.85;
  margin-top: 10px;
  margin-bottom: 30px;
  line-height: 1.4;
  max-width: 300px;
}

/* =========================================================
   SELLER RECEIVES DIVIDER
========================================================= */
.rh-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0 20px;
}

.rh-section-divider span {
  font-size: 13px;
  font-weight: 700;
  padding: 0 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}

.rh-section-divider::before,
.rh-section-divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid rgba(255,255,255,0.35);
}

/* =========================================================
   SELLER RECEIVES BLOCK
========================================================= */
.rh-seller-box {
  margin: 0px auto 10px;
  text-align: center;
  max-width: 360px;
}

.rh-seller-label {
  margin-top: -4px;
  font-size: 16px;
  font-weight: 200;
}

.rh-seller-desc {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.85;
  max-width: 150px;
  line-height: 1.4;
}

/* =========================================================
   RIGHT-SIDE COMPARISON COLUMNS
========================================================= */
.calc-compare-columns {
  flex: auto;
  gap: 170px;
  display: none;
  justify-content: space-around;
}

.calc-col-title {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 19px;
}

.calc-col.new-designer {
  display: none; 
}

.calc-col p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

/* =========================================================
   FAST / DESIGNER LOGOS (COMPARISON)
========================================================= */
.ff-logo-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 20px;
}

.ff-logo {
  max-height: 26px;
  object-fit: contain;
  opacity: 1;
  transition: 0.2s ease-in-out;
}

.ff-logo:hover {
  opacity: 1;
}

.ff-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 15px 0 25px;
}

/* =========================================================
   RECOMMENDED PRODUCTS
========================================================= */
.recommended-wrapper {
  margin-top: 0;
  padding-top: 0;
}

.recommended-header {
  text-align: center;
  margin-bottom: 50px;
}

.rec-h1 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 22px;
}

.rec-h2 {
  font-size: 22px;
  font-weight: 400;
}

.recommended-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.rec-card-link {
  scroll-snap-align: start;
}

.recommended-grid::-webkit-scrollbar {
  display: none;
}

.recommended-grid {
  scrollbar-width: none;
}

.rec-card {
  border-top: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 14px;
  background: #fff;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.rec-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

.rec-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.25;
  min-height: calc(1.25em * 2);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rec-vendor {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 10px;
}

.rec-price {
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
}

/* =========================================================
   FULL WIDTH SEPARATORS
========================================================= */
.full-width-separator {
  width: 100vw;
  height: 1px;
  background:rgba(229, 229, 229, 0.25);
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-top: 20px;
}

.full-width-separator-left {
  width: 100vw;
  height: 1px;
  background:rgba(229, 229, 229, 0.25);
  position: relative;
  margin: 20px 0;
}


.recommended-fullwidth {
  width: 100vw;
  background-color: #fff;
  margin-left: 50%;
  transform: translateX(-50%);
  padding-top: 22px;
}


/* =========================================================
   SMOOTH REVEAL ANIMATIONS
========================================================= */
.calc-results,
.recommended-wrapper {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.calc-results.is-visible,
.recommended-wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.currency-input {
  position: relative;
  width: 100%;
  color:  #dcdcdc;
}

.currency-symbol {
  position: absolute;
  color: #dcdcdc;
  left: 12px;
  top: 45%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.6;
}

.currency-input input {
  padding-left: 28px;
  color:  #dcdcdc;
}

/* =========================================
   REHAUS OWNERSHIP CARD REFINEMENTS
========================================= */

.rh-ownership-box {
  text-align: center;
  padding: 0px 22px;
}

.rh-monthly {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.85;
}

.rh-alt-line-top{
  text-align: left;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.4;
  margin-top: -10px;
  margin-bottom: 20px;
  color: #000;
  opacity: 0.5;
}

.rh-alt-line-bottom{
  text-align: center;
  font-size: 14px;
  line-height: 1.37;
  margin-top: 10px;
  opacity: 0.9;
}

.rh-alt-line strong {
  font-weight: 600;
}

.rh-guarantee {
  display: inline-block;
  text-decoration: underline;
  opacity: 0.9;
}

/* ================================
   REHAUS OWNERSHIP CARD (FINAL)
================================ */

.calc-rehaus-card,
.calc-fast-card {
  display: flex;
  width: 100%;
  height: fit-content;
 
  margin: 0 auto;
  padding: 28px;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.calc-card.calc-rehaus-card {
  color: #361801;
  background-color: #fff;
}

.calc-card.calc-fast-card {
  color: #fff;
}

.rh-ownership-box {
  text-align: center;
}

.rh-title {
  font-size: 25px;
  letter-spacing: 0.6px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.rh-big-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: -20px;
  font-size: 42px;
  font-weight: 700;
  justify-content: center;
  text-align: center;
}

.rh-big-number-2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 42px;
  font-weight: 700;
  justify-content: center;
  text-align: center;
}

.rh-monthly {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.9;
}

.rh-alt-line {
  font-size: 15px;
  line-height: 1.4;
  opacity: 0.9;
  max-width: 280px;
  margin: 0 auto;
}

.rh-alt-line strong {
  font-weight: 600;
}

/* ----------------------------------
   Comparison column divider lines
---------------------------------- */

.calc-compare-columns .calc-col p {
  padding: 14px 0;
  margin: 0;
}

.calc-compare-columns .calc-col p:last-of-type {
  border-bottom: none;
}



/* ----------------------------------
   NEW CALCU STYLE
---------------------------------- */

.calc-results-top-cards {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.calc-results-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.rh-desc {
  text-align: center;
}



/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .calc-results-grid {
    flex-direction: column;
  }

  .calc-rehaus-card {
    max-width: 100%;
  }

  .rh-seller-desc {
    max-width: 220px;
  }

  .recommended-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .calc-type-grid {
    flex-direction: column;
  }

  .calc-top-label {
  justify-content: center;
}

.calc-main-heading {
    text-align: center;
    line-height: 120%;
}

.calc-input {
  width: 100%;
}
.calc-question {
    font-size: 13px;
}

.logo-grid {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 16px;
  -webkit-overflow-scrolling: touch;
}

.logo-grid::-webkit-scrollbar {
  display: none;
}

  .calc-compare-columns .calc-col p {
  text-align: center;
}

  .calc-type-card .logo-grid::-webkit-scrollbar {
    display: none;
  }

  .calc-type-card .logo-grid {
    scrollbar-width: none;
  }

  .calc-type-card .brand-logo {
    flex: 0 0 auto;
    max-height: 28px;
    width: auto;
  }

    .calc-results-top-cards {
      width: 100%;
      flex-direction: column;
      gap: 0px;
    }
  
    .calc-results-col {
      width: 100%;
      margin: 0 auto;
      margin-top: 30px !important;
    }
  
    .rh-big-number {
      font-size: 32px;
    }
  
    .rh-big-number-2 {
      font-size: 32px;
    }
    .rh-monthly {
      font-size: 13px;
      line-height: 120%;
    }
  
    .fast-note {
      font-size: 13px;
    }
}

@media (max-width: 600px) {
  .recommended-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   MOBILE COMPARISON – SINGLE COLUMN MODE
===================================================== */
@media (max-width: 768px) {
  .calc-compare-columns {
    display: block;
    margin-top: 32px;
  }

  /* Hide all columns */
  .calc-compare-columns .calc-col {
    display: none;
    width: 100%;
  }

  /* Show active column */
  .calc-compare-columns .calc-col.is-active {
    display: block;
  }

  /* Full-width rows */
  .calc-col p {
    width: 100%;
    padding: 14px 0;
  }

  /* Titles centered */
  .calc-col-title {
    text-align: center;
    margin-bottom: 16px;
  }

  /* Logos centered and wrapped nicely */
  .ff-logo-row {
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
}

/* =====================================================
   MOBILE COMPARISON TOGGLE
===================================================== */
.mobile-compare-toggle {
  display: none;
}

.mobile-compare-heading {
  display: none;
} 

.rec-arrow {
  cursor: pointer;
}

.rec-swipe-hint {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px 20px 20px;
}

@media (max-width: 768px) {
  .newf {
    display: none;
  }

  .mobile-compare-toggle button {
    padding: 10px 16px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
  }

  .mobile-compare-toggle button.is-active {
    background: #EEA546;
    color: #321A05;
    border-color: #EEA546;
  }

  .calc-card.calc-rehaus-card-info {
  align-items: center;
  }

/* ===============================
   MOBILE COMPARISON SWITCH 
================================ */
@media (max-width: 768px) {
  .calc-compare-columns {
    position: relative;
  }

  .calc-col {
    display: none;
    will-change: opacity, transform;
    animation: compareFadeSmooth 0.9s cubic-bezier(0.4, 0, 0.2, 1);

  }

  .calc-col.is-active {
    display: block;
  }

  @keyframes compareFadeSmooth {
    from {
      opacity: 0;
      transform: translateX(6px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

/* ================================
   MOBILE RECOMMENDED SCROLLER
================================ */
@media (max-width: 600px) {

  .recommended-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .recommended-grid::-webkit-scrollbar {
    display: none;
  }

  .rec-card {
    border-left: 1px solid #e5e5e5;
}

  .rec-card-link {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  /* Swipe hint text */
  .rec-swipe-hint {
    margin-top: 0px;
    padding: 10px;
    font-size: 13px;
    opacity: 0.7;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
  }

  .rec-arrow {
    font-size: 20px;
  }
}

.rec-image-wrap {
  position: relative;
}

.wishlist-plus {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
}



