.v-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.v-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.v-divider.bottom svg {
  transform: rotate(180deg);
}

.v-divider polygon {
  fill: #fafafa; /* change if needed */
}

/* Wrapper spacing */
.fluentform {
  max-width: 900px;
  margin: 0 auto;
}

/* Labels */
.fluentform .ff-el-form-label,
.fluentform .ff-el-input--label label {
  font-size: 22px;
  font-weight: 600;
  color: #2d2f34;
  margin-bottom: 12px;
}

/* Hide radio buttons */
.fluentform input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Option spacing */
.fluentform .ff-el-form-check {
  margin-bottom: 10px;
}

/* Option cards */
.fluentform .ff-el-form-check label,
.fluentform .ff-el-form-check-input + label,
.fluentform .ff-el-form-check-label {
  display: block;
  position: relative;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 14px 40px 14px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #2d2f34;
  box-sizing: border-box;
}

/* Hover */
.fluentform .ff-el-form-check label:hover,
.fluentform .ff-el-form-check-input + label:hover,
.fluentform .ff-el-form-check-label:hover {
  border-color: #2d2f34;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* Selected state */
.fluentform .ff-el-form-check input[type="radio"]:checked + label,
.fluentform .ff-el-form-check input[type="radio"]:checked + .ff-el-form-check-label,
.fluentform .ff-el-form-check label:has(input[type="radio"]:checked),
.fluentform .ff-el-form-check .ff-el-form-check-label:has(input[type="radio"]:checked),
.fluentform input[type="radio"]:checked ~ label,
.fluentform input[type="radio"]:checked ~ .ff-el-form-check-label {
  background: #2d2f34 !important;
  color: #ffffff !important;
  border-color: #2d2f34 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Tick icon on selected option */
.fluentform .ff-el-form-check input[type="radio"]:checked + label::after,
.fluentform .ff-el-form-check input[type="radio"]:checked + .ff-el-form-check-label::after,
.fluentform .ff-el-form-check label:has(input[type="radio"]:checked)::after,
.fluentform .ff-el-form-check .ff-el-form-check-label:has(input[type="radio"]:checked)::after,
.fluentform input[type="radio"]:checked ~ label::after,
.fluentform input[type="radio"]:checked ~ .ff-el-form-check-label::after {
  content: "✓";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* Result box */
.washroom-result {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px;
  margin-top: 24px;
  box-sizing: border-box;
}

/* Result title */
.washroom-result h3 {
  font-size: 26px;
  color: #2d2f34;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* Result text */
.washroom-result p {
  color: #4a4d52;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Button */
.washroom-result .result-button {
  display: inline-block;
  margin-top: 16px;
  background: #2d2f34;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.washroom-result .result-button:hover {
  background: #1f2124;
  color: #ffffff;
}

/* Hide submit button */
.fluentform .ff_submit_btn_wrapper,
.fluentform button[type="submit"],
.fluentform input[type="submit"] {
  display: none !important;
}

.optional-extras-row {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.flip-card {
  width: 260px;
  height: 260px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flip-card-front {
  background: #c9ae67;
  transform: rotateY(0deg);
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flip-card-back {
  background: #c9ae67;
  color: #000;
  transform: rotateY(180deg);
  box-sizing: border-box;
  padding: 38px 34px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.flip-card-back h3 {
  font-size: 18px;
  line-height: 1.15;
  margin: 0 0 8px;
}

.flip-card-back p {
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}

.optional-extras-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  justify-items: center !important;
}

@media (max-width: 1024px) {
  .optional-extras-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .optional-extras-row {
    grid-template-columns: 1fr !important;
  }
}
.nomadic-flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.nomadic-flip-card {
  display: block;
  height: 420px;
  text-decoration: none !important;
  perspective: 1200px;
}

.nomadic-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.nomadic-flip-card:hover .nomadic-flip-inner {
  transform: rotateY(180deg);
}

.nomadic-flip-front,
.nomadic-flip-back {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;
  overflow: hidden;
}

.nomadic-flip-front {
  background-size: cover;
  background-position: center;
  transform: rotateY(0deg);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nomadic-flip-back {
  background: #2e3033;
  transform: rotateY(180deg);
  z-index: 1;
  padding: 35px 28px;
  box-sizing: border-box;
  text-align: center;
}

.nomadic-back-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nomadic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.nomadic-flip-title {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  padding: 20px;
}

.nomadic-back-content h3 {
  display: none;
}

.nomadic-back-content p {
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 24px;
}

.nomadic-button {
  display: inline-block;
  background: #dcc06b;
  color: #000;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: center;
}

@media (max-width: 1024px) {
  .nomadic-flip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .nomadic-flip-grid {
    grid-template-columns: 1fr;
  }

  .nomadic-flip-card {
    height: 340px;
  }

  .nomadic-flip-title {
    font-size: 28px;
  }
}
.nomadic-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.nomadic-info-card {
  height: 260px;
  perspective: 1000px;
}

.nomadic-info-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.nomadic-info-card:hover .nomadic-info-inner {
  transform: rotateY(180deg);
}

.nomadic-info-front,
.nomadic-info-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 4px;
}

.nomadic-info-front {
  background: #c79f5d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.nomadic-info-front h3 {
  font-size: 24px;
  line-height: 1.3;
  margin: 0;
  color: #000;
}

.nomadic-info-back {
  background: #2e3033;
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
}

.nomadic-info-back p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .nomadic-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .nomadic-info-grid {
    grid-template-columns: 1fr;
  }

  .nomadic-info-card {
    height: 220px;
  }
}

.woocommerce-cart h2:has(+ .products),
.woocommerce-cart .products {
  display: none !important;
}