
/* ============================================================
   VARIABLES GLOBALES
   Paleta de colores, tipografía, transiciones y radios
   ============================================================ */
:root {
  /* Colores de marca */
  --color-primary:        #2BBCB0;
  --color-primary-hover:  #27A99E;
  --color-primary-dark:   #1B675E;
  --color-primary-bg:     #EAF8F7;
  --color-primary-light:  rgba(43, 188, 176, 0.1);

  /* Texto */
  --color-text-heading:   #363333;
  --color-text-body:      #6B6767;
  --color-text-muted:     #969696;
  --color-text-light:     #807B7B;

  /* Neutros */
  --color-white:          #ffffff;
  --color-bg-page:        #FCFDFD;
  --color-bg-light:       #F4F3F3;
  --color-bg-lighter:     #F6F8F9;
  --color-border:         #D9D9D9;
  --color-border-light:   #e0e0e0;

  /* Semánticos */
  --color-error:          #E53E3E;
  --color-warning:        #ffc107;

  /* Tipografía */
  --font-primary:   'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  /* Transiciones */
  --transition-fast:   all 0.2s ease;
  --transition-base:   all 0.3s ease;
  --transition-slow:   all 0.5s ease-in-out;

  /* Radios de borde */
  --radius-xs:     3px;
  --radius-sm:     5px;
  --radius-md:     8px;
  --radius-lg:     12px;
  --radius-pill:   28px;
  --radius-full:   100px;
  --radius-circle: 50%;

  /* Sombras */
  --shadow-sm: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
  --shadow-md: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
/* ============================================================ */

html {
  height: 100%;
}
body {
  background: var(--color-bg-page);
  background-size:cover;
  background-repeat:no-repeat;
  text-align: center;
  font-family: var(--font-primary);
}
.disabled{
  display: none;
}
h1{
  font-weight:400;
  padding-top:0;
  margin-top:0;
  font-family: var(--font-primary);
}
.colunm-first {
  width: 50%;
  display: flex;
  justify-content: left;
}
#svg_form_time {
  height: 8px;
  max-width: 100%;
  margin: 10px auto 0px;
  display: block;
}
div#svg_wrap a {
  color: var(--color-text-muted);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
div#svg_wrap {
  color: white;
  text-transform: uppercase;
  padding-top: 30px;
  background: transparent;
  padding-bottom: 20px;
  z-index: 9;
}

/* Header progress bar (controlled by Vue) */
.header-progress {
  width: 100%;
  height: 5px;
  background-color: var(--color-border-light);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 0px;
  margin-top: 0px;
}

.header-progress-bar {
  height: 100%;
  background: var(--color-primary);
  transition: width 0.4s ease;
  width: 0%;
}
.content-other {
  display: none;
}
p{
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
}
#svg_form_time circle,
#svg_form_time rect {
  fill: white;
}
div#next {
  padding: 9.55px 19.73px 9.55px 19.73px;
  border-radius: 28px;
  background: var(--color-primary);
  display: block;
  text-align: center;
  cursor: pointer;
  color: white;
  font-family: 'Inter';
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 30px;
}

section {
  transition:transform 0.5s ease-in-out;
}

/* Step transition: pure CSS fade */
.fade-section {
  position: relative;
  opacity: 0;
  transition: opacity 2s ease;
}

.fade-section.step-visible {
  opacity: 1;
}

/* First section visible by default before Vue mounts */
.fade-section:first-child {
  opacity: 1;
}

#tattoo-app > div {
  will-change: opacity;
}

.content-sections {
  position: relative;
}

.col-md-6.content-sections {
  min-height: 96vh;
}
input.form-check-inline {
  margin-right: 0px !important;
}
/*OFF CANVAS MENU*/

.offcanvas-body {
  padding: 10%;
}

.offcanvas-body ul li {
  list-style-type: none;
  margin-bottom: 15px;
}

.offcanvas-body ul li a {
  display: block;
}

.offcanvas-body ul {
  padding: 0px;
}

.btn.btn-primary {
  border-radius: 3px;
  border: 1px solid #000;
  background: transparent;
  color: var(--color-text-heading);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 14px;
}

h3#offcanvasRightLabel {
  color: var(--color-text-heading);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.offcanvas-header {
  align-items: flex-end;
  justify-content: flex-end;
}

button.btn-close {
  opacity: 1;
}
div#offcanvasRight {
  background: #ffffffe6;
}
img.bg-super.img-fluid {
  position: absolute;
  right: 9%;
  top: 63%;
}
.switcher {
  margin-top: 10px;
}
/*MODALS GENERAL*/
.modal-header button {
  background: transparent;
  border: none;
}

.modal-header {
  border: none;
}

.modal-body {
  padding: 8%;
}

.modal-body h2 {
  color: var(--color-text-heading);
  font-family: var(--font-primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.modal-body {
  text-align: left;
}

.modal-body p {
  color: #676767;
  text-align: justify;
  font-family: 'Inter';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.modal-body img {
  margin-bottom: 15px;
}

.modal-footer {
  justify-content: center;
  border: none;
  padding-left: 8%;
  padding-right: 8%;
}

.modal-footer button.btn.btn-outline-secondary {
  color: black;
  border-radius: 3px;
  color: var(--color-text-heading);
  text-align: justify;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 0px;
}

/*HEADER BOOK*/
.content-header.d-flex.justify-content-between.p-3.fixed-top {
  padding-top: 20px !important;
}
.content-header {
  background: transparent;
  padding: 7px 25px !important;
  margin-bottom: 15px;
}
.banner-section {
  padding: 0px;
  position: relative;
  height: 100%;
  flex-direction: column;
}

h1 {
  position: absolute;
  z-index: 1;
  color: var(--color-text-body);
  bottom: 10%;
  max-width: 40%;
  text-align: left;
  left: 13%;
}
.btn-group > .btn-check:checked + .btn {
  border-radius: 36px;
  background: white;
  color: #221F1F;
}

label.btn.btn-outline-danger {
  border: none;
}

.btn-group {
  box-shadow: var(--shadow-sm);
  border-radius: 25px;
  background: rgba(114, 112, 112, 0.25);
  overflow: hidden;
  margin-right: 20px;
}

label.btn.btn-light {
  color: var(--color-text-muted);
}

/*SECTIONS AND BOTTOMS*/
.content-text h1 {
  position: initial;
  max-width: max-content;
}
.iti--inline-dropdown .iti__country-list {
  background: #151413;
  border-color: #22201f;
}

.iti__dropdown-content {
  background: black;
  border: 1px solid #000;
}

input.iti__search-input {
  background: #151414;
}

.iti--inline-dropdown .iti__dropdown-content {
  border-color: #454545;
}
.content-text h2 {
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.btn-group {
  margin-bottom: 10px;
}
.btn-group > .btn-check + .btn {
  background: transparent;
  border: none;
  border-radius: 36px !important;
  color: var(--color-text-muted);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
button.btn.btn-link.menu {
  padding: 0px;
}
.legalcontent{
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  letter-spacing: 0.04em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
section.start {
  text-align: left;
  color: white;
  padding: 0px;
  padding-bottom: 0px;
}

.col-md-6.content-sections {
  padding: 0px;
}

.content-text {
  padding: 30px;
}

.content-buttons label {
  color: #ffffff;
  border: 1px solid;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 10px 17px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.content-buttons label:hover {
  color: white;
}

section {
  /* padding-left: 30px; */
  /* padding-bottom: 130px; */
  text-align: left;
  color: var(--color-text-body);
}

h2{
  color: var(--color-text-body);
  font-family: var(--font-primary);
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
}

/*SERVICES CARDS*/
.card-service label {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-cards-services {
  display: flex;
  flex-wrap: wrap;
}

.card-service {
  width: 46%;
  margin: 2%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow: auto;
  background: black;
  transition:all 0.5s ease-in-out;
}

.card-service h3 {
  color: #FFF;
  width: 100%;
  text-align: center;
  display: block;
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1.6px;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
  transition:all 0.5s ease-in-out;
}

a.help {
  position: absolute;
  bottom: 5px;
  left: 5px;
}

.card-service .image-service {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  opacity: 0.5;
}

.card-service:hover  .image-service {
  filter: blur(1.3px);
}

.card-service:hover .help {
}

.card-service:hover h3 {
  background: white;
  border-bottom: 4px solid var(--color-primary);
  color: black;
  padding: 2px;
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  background-color: var(--color-primary);
  border: 0px solid #000;
}
/*RADIO BUTTONS*/
.title-form{
  margin-bottom: 20px;
}
.info {
  display: flex;
  border-radius: 1.935px;
  border: 1.451px solid #ffffff26;
  background: linear-gradient(139deg, #2E2C2D -1.41%, rgba(46, 44, 45, 0.00) 161.03%);
  box-shadow: 5.805px 5.805px 10.934px 0px rgba(0, 0, 0, 0.25);
  padding: 15px 20px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.info p {
  margin-bottom: 0px;
  margin-left: 10px;
}
.form-check.options {
  border-radius: 3px;
  background: rgba(61, 61, 61, 0.50);
  min-height: 73px;
  margin-bottom: 11px;
  padding-left: 0px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.form-check.options .description {
  display: block;
  width: 100%;
  color: var(--color-border);
  font-family: var(--font-secondary);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
label.form-check-label.options {
  color: #FFF;
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 121.875%;
  width: 100%;
  padding: 15px;
}
.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: #ffffff;
  --bs-form-check-bg-image: none !important;
  box-shadow: none;
}
div#dinamyc-options {
}
.iti.iti--allow-dropdown.iti--show-flags {
  display: block;
}

/* Keep the phone text clear of the country flag/arrow selector */
.iti #phone,
#phone.form-control {
  padding-left: 58px !important;
}

/*FORM*/

.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0px;
  color: #4b4b4b;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 121.875%;
}

label.form-label {
  color: #FFF;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
input::placeholder , textarea::placeholder {
  opacity: 1 !important;
  color: var(--color-text-muted) !important;
  font-family: var(--font-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 121.875%;
}
.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #fff;
}

input[type="range"] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 100%;
  height: 7px;
  background: var(--color-border);
  border-radius: 5px;
  background-repeat: no-repeat;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--color-bg-light);
  cursor: ew-resize;
  transition: background .3s ease-in-out;
  border: none;
  box-shadow: none;
}

input[type=range]::-webkit-slider-runnable-track  {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
.mb-6.send-form input.btn.btn-outline-light {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-border);
  padding: 10px 19px;
  border-radius: 3px;
  margin-bottom: 15px;
}

.mb-6.send-form {
  text-align: center;
  max-width: 251px;
  margin: 0 auto;
  margin-top: 50px;
}

p#legal {
  color: var(--color-text-muted);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.mb-3.age {
  text-align: center;
  margin-top: 40px;
}

.mb-3.age p {
  margin-top: 20px;
  color: var(--color-text-muted);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 121.875%;
}

.mb-3.age label {
  color: var(--color-text-body);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 121.875%;
  margin-bottom: 11px;
}
div#prev {
  cursor: pointer;
}

a.btn-custom-white {
  background: white;
  display: block;
  color: black;
  text-align: center;
  padding: 8px 10px;
  color: var(--color-text-heading);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.275px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
}
a.btn-custom-white:hover {
  background: transparent;
  border: 1px solid;
  color: var(--color-primary);
  transition: var(--transition-base);
}
div#tha h3 {
  color: #FFF;
  font-family: var(--font-primary);
  font-size: 33px;
  font-style: italic;
  font-weight: 600;
  line-height: 121.875%;
}

div#tha h4 {
  color: #FFF;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 121.875%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

div#tha .row {
  margin-top: 40px;
  margin-bottom: 40px;
  border: 1px solid;
  padding: 9% 2%;
  min-height: 194px;
  display: flex;
  align-items: center;
  border-radius: 6px;
}
.row.card-tk p {
  color: white;
}

div#content-range {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

a.btn-range {
  text-decoration: none;
  color: white;
  border-radius: 10px;
  background: #B2B1B1;
  width: 20px;
  height: 20px;
  cursor: pointer;
  line-height: 21px;
  text-align: center;
  display: block;
}
.text-form{
  margin-bottom: 30px;
}
/*THANKS CURRENT*/

div#thaC {
  height: 100%;
  padding-top: 30%;
}

div#thaC h3 {
  text-transform: uppercase;
  font-style: italic;
}

div#thaC span {
  color: #FFF;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-top: 32px;
  display: block;
  margin-bottom: 15px;
}

div#thaC p {
  color: var(--color-text-muted);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.6px;
}

div#thaC a {
  height: 55px;
  line-height: 43px;
  margin-top: 70px;
  color: var(--color-text-heading);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 17px;
  font-style: normal;
  line-height: 40px;
}
/*PHOREST*/

.total {
  padding: 10px 40px;
}

.total-row-text {
  display: flex;
  justify-content: space-between;
}
.card-staff {
  border-radius: 4.941px;
  background: #2B2929;
  box-shadow: 4.941px 4.941px 9.882px 0px rgba(0, 0, 0, 0.15);
}

.title {
  border-radius: 4.941px;
  background: #454444;
  box-shadow: 4.941px 4.941px 9.882px 0px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.title h2 {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: normal;
  line-height: normal;
  padding: 8px;
}

.content-details-staff {
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
}

.staff {
  display: flex;
  width: 33%;
  align-items: center;
}
.img-content-staff {
  max-width: 67px;
  margin-right: 20px;
}

.img-content-staff img {
  display: block;
  width: 100%;
  border-radius: 50%;
  margin: 0px;
  margin-right: 10px;
}

.date-appointment {
  width: 33%;
  display: flex;
  justify-content: center;
}

.content-price-change {
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.text-staff-content h5 {
  margin: 0px;
  font-size: 16px;
}

.text-staff-content p {
  margin-bottom: 0px;
  font-size: 14px;
}

.date-appointment h3 {font-weight: 300;font-size: 17px;}

.content-price-change .price {
  text-align: center;
  margin-right: 15px;
}

.price h5, .price p {
  margin: 0px;
  font-size: 18px;
}

.card-details {
  border-radius: 4.941px;
  background: #2B2929;
  box-shadow: 4.941px 4.941px 9.882px 0px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
  padding-bottom: 20px;
}

.card-details h5 {
  margin-left: 20px;
  margin-top: 30px;
}

.minicard {
  background: #ffffff08;
  box-shadow: 4.941px 4.941px 9.882px 0px rgba(0, 0, 0, 0.15);
  padding: 10px 20px;
  margin: 10px 20px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.margin-none {
  padding: 0px;
}
.text-appointment p {
  margin: 0px;
}
.date-content {display: flex;width: 79%;flex-wrap: wrap;}
.content-title {
  text-align: center;
  width: 15%;
  margin-right: 35px;
}

.content-title h3 {
  font-size: 39px;
  margin: 0px;
}

.content-title p {
  color: white;
  font-size: 23px;
  margin: 0px;
}

.section-date {
  display: flex;
  border-radius: 2.806px;
  background: rgba(96, 96, 96, 0.20);
  box-shadow: 8.417px 14.028px 15.852px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
  padding: 15px 25px;
  flex-wrap: wrap;
}

.content-dates label {
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 7.014px;
  background: rgba(96, 96, 96, 0.50);
  border: none;
  font-size: 18.042px;
  font-style: normal;
  font-weight: 400;
  line-height: 119.481%;
  letter-spacing: 0.631px;
  min-width: 85px;
  padding: 10px 16px;
}
.numbers {
  display: flex;
  margin-bottom: 25px;
  align-items: center;
  justify-content: flex-start;
}
img.front-bg {
  max-width: 37%;
  padding: 4%;
  padding-top: 5%;
}
.number {
  min-width: 50px;
}

body.bg-white h2 {
  color: var(--color-text-heading);
  text-align: justify;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 121.875%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding-top: 21%;
}

body.bg-white .content-header {
  background: transparent;
}

.btn-zone {
  text-align: center;
}

body.bg-white p {
  color: var(--color-text-muted);
  font-family: var(--font-secondary);
  font-size: 15px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.3px;
}
body.bg-white section#second-step {
  padding: 0px;
  padding-top: 72px;
  height: 100vh;
}
.btn-zone label {
  background: var(--color-primary);
  border-radius: 3px;
  width: 100%;
  max-width: 300px;
  color: white;
  text-transform: uppercase;
  color: #FFF;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.275px;
  text-transform: uppercase;
}
body.bg-white div#svg_wrap {
  background: transparent;
  color: gray;
}body.bg-white section#second-step {
   padding: 0px;
   padding-top: 72px;
   height: 100vh;
 }
iframe {
  display: block;       /* iframes are inline by default */
  background: #ffffff;
  border: none;         /* Reset default border */
  height: 100vh;        /* Viewport-relative units */
  width: 100vw;
}
body.bg-white div#steps {
  display: none;
}

body.bg-white div#generalConsultation{
  --bs-modal-bg: linear-gradient(180deg, rgba(34, 30, 31, 0.96) 0%, rgba(61, 61, 61, 0.96) 100%) !important;
}
.content-text.current {
  min-height: 93vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer a.btn.btn-primary {
  background: #000000c4;
  border: none;
  position: fixed;
  right: 19px;
  bottom: 30px;
}
.content-buttons .btn-check + .btn:hover {
  color: var(--color-primary);
  border: 1px solid;
}
body.bg-white .content-text {
  min-height: 85vh;
}
.btn-zone  .btn-check:checked + .btn {
  background: var(--color-primary);
}
body.bg-white div#svg_wrap {
  display: none;
}
div#tha {
  margin-top: -81px;
}
h3#stepsN {
  margin-top: 15px;
}

svg#svg_form_time rect {
}
textarea#otherText {
  border-radius: 7px;
  border: 1px solid var(--color-text-muted);
  background: rgba(217, 217, 217, 0.08);
  color: var(--color-text-muted);
  font-family: var(--font-secondary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.3px;
}
img.someting.img-fluid {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
  width: 80%;
  max-width: 441px;
}
button#SendElse {
  display: block;
  border-radius: 3px;
  width: 100%;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: normal;
  padding: 10px 10px;
}
p#contador {
  text-align: right;
  margin-top: 10px;
}
.content-options {
  display: flex;
}
.content-options .form-check {
  margin-right: 35px;
}

section.form-normal label {
  font-size: 13px;
  color: #B2B1B1;
  font-family: 'Inter';
}
.progress-container-load {
  width: 100%;
  height: 5px;
  background-color: var(--color-border-light);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 0px;
  margin-top: 20px;
}

.progress-bar-load {
  width: 0%;
  height: 100%;
  background-color: rgba(43, 188, 176, 1);
  animation: progress-bar-load 3s linear forwards;
}
.check-progress-icon{
  fill:#B2B1B1;
  animation: check-progress-icon 3s linear forwards;
}
.content-img-load {
  max-width: 300px;
  margin: 0 auto;
}
.content-load {
  transition: all 1s ease-in;
}
.content-img-load img {
  width: 100%;
  text-align: center;
}
.content-load div#next {
  display: block !important;
  margin-top: 0px;
  background: var(--color-border);
  animation: nextbtn 4s linear forwards;
}
section.form-normal {
  padding-top: 50px;
}
#next:hover {
  transition: 1s;
  background: var(--color-primary);
}

@keyframes nextbtn {
  75%{
    background: var(--color-border);
  }
  100%{
    background:var(--color-primary);
  }
}
@keyframes check-progress-icon {
  99%{
    fill:#B2B1B1;
  }
  100%{
    fill:var(--color-primary);
  }
}
@keyframes progress-bar-load {
  100%{
    width: 100%;
  }
}
div#lottie-container {
  max-width: 102px;
  margin: 0 auto;
  animation: fadeOut 4s forwards;
}

@keyframes fadeOut {
  0% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; display: none; }
}

section.form-normal {
  padding-top: 50px;
}

div#result h2 {
  color: var(--color-primary-hover);
  font-weight: 500;
}
.card-content-result {
  border-radius: 15px;
  padding-top: 0px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  gap: 19px;
  background: var(--color-bg-light);
  margin-bottom: 50px;
  border-radius: 5px;
  /* border: 1px solid #B2B1B1; */
  /* background: #FFF; */
  border-radius: 5px;
  border: 1px solid var(--Dark-Mode-Light, #F4F3F3);
  background: #FFF;
}

.text-content-card h3 {
  font-family: 'Inter';
  color: var(--color-text-body);
  font-size: 20px;
  margin-bottom: 0px;
  margin-top: 15px;
}

.card-content-result {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}

.card-content-result p {
  margin-top: 0px !important;
  margin-bottom: 0px;
  color: var(--dark-mode-dark-active, #403E3E);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 141.778%; /* 19.849px */
}

.text-content-card h3 strong {
  color: var(--color-primary-hover);
}

div#result>p {
  color: var(--color-text-light);
  font-size: 19px;
  margin-top: 0px !important;
  margin-bottom: 35px;
}

.content-load .testimonial-card {
  width: 100% !important;
  max-width: 100% !important;
  background: #EFF0EE;
}

.content-text-load {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
}
.step-option {
  display: flex;
  max-width: 580px;
  width: max-content;
  margin-bottom: 50px;
}

.content-next-step .content-text {
  height: auto !important;
  min-height: inherit;
  padding-left: 49px;
}

.step-option .icon {
  min-width: 133px;
}

.step-option p {
  margin: 0px !important;
}

.content-next-step .content-text a {
  width: fit-content;
  margin-top: 10px;
  box-shadow: 1px 4px 10px 0px #00000026;
  background: var(--color-primary);
  gap: 10px;
  border-radius: 30px;
  padding-top: 5px;
  padding-right: 36px;
  padding-bottom: 5px;
  padding-left: 36px;
  color:#fff;
  font-weight:500;
  transition: var(--transition-slow);
}
.content-text-load p {
  margin-bottom: 0px;
  font-family: 'Inter';
  font-weight: 500;
  letter-spacing: -.5px;
}

.content-img-load {
  text-align: center;
  padding-top: 50px;
}
.form-normal .content-general input {
  margin-bottom: 35px;
}
p.policy {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 300;
}
.content-options .form-check {
  margin-right: 35px;
}


@media(min-width:1000px){
  .content-general.results-view {
    padding-top: 20px;
  }
  div#testimonialCarousel {
    margin-bottom: 50px;
  }
  section.testimonial .button {
    margin-top: 60px !important;
  }
  img.logo-header {
    max-width: 220px;
    min-width: 200px;
  }
  .modal-dialog.modal-fullscreen {
    max-width: 390px;
    margin-left: auto;
  }
  .card-service {
    width: 30%;
    margin: 1%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: auto;
    cursor: pointer;
    background: black;
    transition: var(--transition-slow);
  }
  header {
    position: relative;
    width: 100%;
    z-index: 99;
  }
  div#svg_wrap {
    padding: 10px;
    margin: 0 auto;
    min-width: 720px;
    max-width: 720px;
  }
  svg#svg_form_time rect {
  }
  .content-text {
    padding: 0px;
    min-height: 82vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    max-width: 85%;
  }
  section.start {
    height: 80vh;
  }

  form#book {
    height: 95%;
  }
  .col-md-6.banner-section.d-none.d-sm-block img {
    width: 50%;
    left: 0px;
    top: -1px;
  }
  h3#stepsN {
    font-size: 18px !important;
    text-align: left;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  section.stepForm {
  }
  div#tha .row {
    padding: 5% 5%;
    margin-top: 20px;
    margin-bottom: 20px;
    min-height: auto;
  }

  div#tha h3 {
    font-size: 25px;
  }

  div#tha h4 {
    font-size: 17px;
  }

  div#tha {
    margin-top: -70px;
  }
  .card-service h3 {
    font-size: 14px;
    letter-spacing: 0.6px;
  }
  .content-cards-services {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    max-width: 80%;
    margin: 0 auto;
  }
  .offcanvas-body {
    padding: 4%;
  }
  .offcanvas-body ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .offcanvas-body ul li {
    width: 90%;
  }
  .mb-6.send-form {
    text-align: center;
    max-width: 511px;
    margin: 0 auto;
    margin-top: 50px;
  }
  div#offcanvasRight {
    --bs-offcanvas-width: 390px;
    background: #ffffffe6;
  }
  ul.menu-pp li {
    margin-bottom: 21px;
  }
  svg#svg_form_time rect {
    rx: 3;
    height: 17%;
  }
  #svg_form_time {
    max-width: 90%;
    margin: 0px auto 12px;
    display: block;
    height: auto;
  }
  h3#stepsN {
    margin-top: 5px;
  }
  .colunm-first {
    width: 50%;
    display: flex;
    justify-content: space-between;
  }
  section {
    /* padding-left: 7%; */
    /* padding-bottom: 130px; */
    text-align: left;
    color: var(--color-text-body);
  }
}
input#sendPrincipal:hover {
  color: var(--color-primary);
  background: transparent;
  border-color: var(--color-primary);
}

.content-banner-initial {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5%;
  align-items: center;
}


.content-banner-initial img {
  margin-top: 2%;
  margin-bottom: 2%;
}

.content-banner-initial strong {
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.form-check {
  border: 1px solid #B2B1B1;
  padding: 8px;
  border-radius: 25px;
  max-width: fit-content;
  min-width: 165px;
  margin-top: 29px;
  transition: var(--transition-base)-in;
  cursor: pointer;
}
.form-check input{
  transition: var(--transition-base)-in;
}
.form-check .form-check-input {
  margin-left: 10px;
  margin-right: 10px;
}
.form-check .form-check-input {
  margin-left: 10px;
  margin-right: 10px;
}

.form-check:hover {
  background: var(--color-primary-bg);
}

.form-check:hover input {
  background: var(--color-primary);
}

.slider-container {
  /* Ajusta el ancho */
  position: relative;
  margin: 20px 0;
}

/* Estilo del slider */
.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #2ecc71 0%, var(--color-border-light) 0%);
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #c4c4c4;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.custom-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #c4c4c4;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-lines {
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none; /* Para que no interfieran con el slider */
  display: flex;
  justify-content: space-between;
  z-index: 2; /* Debajo del slider */
}

.slider-lines div {
  width: 2px;
  height: 16px;
  background-color: var(--color-bg-light);
  transform: translateY(-50%);
}

/* Estilo de las etiquetas */
.slider-labels {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 25px;
  width: 100%;
}

.slider-labels span {
  font-size: 12px;
  color: #555;
}
.content-general {
  max-width: 710px;
  margin: 0 auto;
  width: 710px;
  padding-top: 50px;
}
section.start {
  height: 80vh;
}

section.start .row {
  height: 100%;
}
p.legalcontent {
  margin-top: 60px;
}
label.tattoo-option img {
  display: block;
}

.text-center.mt-2.option-title {
  display: inline;
}
section#second-step img {
  margin: 0 auto;
  display: block;
  min-width: 292px;
}

section#second-step h2 {
  color: var(--color-primary);
  margin-top: 70px;
  font-weight: 500;
  font-size: 34px;
  margin-bottom: 25px;
}

section#second-step p {
  font-size: 20px;
  font-weight: normal;
  font-family: var(--font-primary);
}
section {
  min-height: 65vh;
  display: flex;
  align-items: center;
}
section.start {
  display: block;
}
section.skin-type .carousel-item img {
  border: 1px solid var(--color-border);
  border-radius: 11px;
}


.slider-lines div:first-child, .slider-lines div:last-child {
  opacity: 0 !important;
  height: 0px;
}
label.tattoo-option .option-title {
  color: #B2B1B1;
  font-family: 'Inter';
  font-weight: 300;
}

label.tattoo-option img {
  border: 2px solid #B2B1B1;
  border-radius: 14px;
  width: 100%;
  margin-bottom: 20px;
  filter: saturate(0);
}

label.tattoo-option {
  display: block;
  margin-bottom: 15px;
}

section.location .row.g-3 {
  margin-bottom: 50px;
}

section.location h4 {
  margin-bottom: 30px !important;
  display: block;
}

label.tattoo-option:hover img {
  background: var(--color-primary-bg);
  border-color: var(--color-primary);
  filter: saturate(1);
}

section.amount label.tattoo-option img {
  background: var(--color-primary-dark);
  filter: saturate(0%);
  transition: all 1s ease-in-out;
}

section.amount label.tattoo-option:hover img {
  opacity: 1;
  border-color: var(--color-primary);
  filter: saturate(100%);
}

.progress-container {
  width: 100%;
  height: 5px;
  background-color: var(--color-border-light);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 0px;
  margin-top: 20px;
}
u {
  text-decoration: underline;
  text-decoration-color: #2cbcac;
}

.content-banner-initial h2 {color: var(--color-primary);font-weight: 500;}
.progress-bar {
  width: 0%;
  height: 100%;
  background-color: rgba(43, 188, 176, 1);
  transition: width 0.3s ease-in-out;
}

section.start h1 {
  font-weight: 300;
  font-size: 33px;
}

section.start h2 {
}

section.start .content-text h2 {
  font-size: 19px;
  font-weight: 300;
  color: var(--color-text-light);
  margin-bottom: 30px;
  font-family: 'Inter';
  line-height: 1.5em;
}

p.label-sw {
  font-size: 12px;
  margin-bottom: 30px;
}

p.complete {
  font-family: 'Inter';
  font-size: 15px;
  letter-spacing: 0px;
}

section.start .button {
  margin-top: 10px !important;
}
.testimonial-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  text-align: left;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: auto;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 23px;
  font-family: 'Inter';
  font-weight: 300;
}

.name {
  font-weight: bold;
}

.stars {
  color: var(--color-primary);
}

.carousel-control-prev, .carousel-control-next {
  filter: invert(50%);
}
.carousel-inner {
  padding: 4% 0%;
}
.carousel-control-prev, .carousel-control-next {
  width: 5%;
}

.carousel-inner {
  padding: 4% 0%;
}
.carousel-control-prev, .carousel-control-next {
  width: 5%;
}

.testimonial-card p {
  font-size: 14px;
  font-family: 'Inter';
  font-weight: 400;
}
.carousel-inner {
  padding: 4% 3%;
}
.carousel-control-prev, .carousel-control-next {
  width: 5%;
}

.testimonial-card p {
  font-size: 13px;
  font-family: 'Inter';
  font-weight: 400;
  color: var(--color-text-light);
}

.name {
  font-size: 16px;
  font-family: 'Inter';
  color: #555252;
  font-weight: 600;
}

.stars {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
}

small.text-muted {
  font-family: 'Inter';
  font-weight: 400;
  color: var(--color-text-light) !important;
}
section.skin-type p {
  font-size: 22px;
  margin-bottom: 0px;
  color: #6b6767 !important;
  line-height:1.8em;
}

section.skin-type p span {
  color: #807b7b;
  font-weight: 400;
}

section.skin-type .carousel-inner {
  padding: 0%;
  margin-top: 20px;
}

p.rotate-text span {
  display: block;
  text-align: left;
}

p.rotate-text {
  text-align: left;
}

p.rotate-text {
  display: block;
  margin-left: 0px;
}

p.rotate-text {
  text-align: left !important;
  color: #8e8989;
  font-size: 16px !important;
  margin-top: 0px !important;
}
section#second-step p {
  font-family: 'Inter';
  font-size: 19px;
  font-weight: 400;
}
p.rotate-text span {
  color: #8e8989 !important;
  font-size: 16px;
  margin-top: 7px;
}

div#result span {
  color: var(--color-primary);
}

div#result h2 {
  color: var(--color-primary-hover);
}

div#result p {
  font-size: 15px;
  margin-top: 20px;
}

div#result {
  max-width: 710px;
  margin: 0 auto;
}
.miniform label {
  margin-top: -5px;
}
a.btn-normal {
  background: var(--color-primary);
  color: white;
  border-radius: 50px;
  padding: 10px;
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: 'Inter';
  font-weight: 800;
  letter-spacing: 1px;
}
input#sendPrincipal {
  padding: 9.55px 19.73px 9.55px 19.73px;
  border-radius: 28px;
  background: var(--color-primary);
  display: block;
  text-align: center;
  cursor: pointer;
  color: white;
  font-family: 'Inter';
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 30px;
  display: block;
  width: 100%;
}
p.excelent {
  text-align: center;
  margin-top: 50px;
}
section.every-journey img.mb-3 {
  margin: 0 auto;
  display: block;
  margin-bottom: 40px !important;
}
h3.reviews {
  text-align: center;
  margin-bottom: 56px;
}
section.skin-type .content-general, .location .content-general, .scarring .content-general, .colors .content-general, .size .content-general{
  padding-top: 40px;
}
input.form-check-input {
  transition: var(--transition-base)-in;
}
section.scarring img {
  filter: saturate(0);
}
section.scarring img {
  filter: saturate(0);
  transition: var(--transition-slow);
}
div#result {
  padding-top: 50px;
}

div#result strong {font-weight: 600;}

div#result span {
  color: var(--color-text-body);
  font-weight: 600;
}

.content-next-step .content-text a:hover {
  background: var(--color-primary-hover);
}
label.tattoo-option.active img {
  border: 2px solid #379e96;
  background: var(--color-primary-bg) !important;
  filter: saturate(100%) !important;
}

div#dynamic p {
  font-size: 16px;
  line-height: 19.36px;
}


div#dynamic h2 {
  color: var(--color-primary);
}
.formPP label{
  margin-top: 15px;
}

p.date {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 50px;
}
label.tattoo-option input {
  margin-right: 6px;
}
.colors label.tattoo-option img {filter: saturate(1);}

div#dynamic > p:first-child {
  margin-bottom: 0px;
  margin-top: 40px;
}

.include h4 {font-weight: 300;color: var(--color-text-body);border-bottom: 2px solid var(--color-primary);width: fit-content;font-family: var(--font-secondary);font-weight: 400;font-size: 25px;margin-bottom: 20px;}

.include ul li {list-style-type: unset;font-family: 'inter';color: var(--color-text-body);margin-top: 10px;}

.payment {
  display: flex;
  justify-content: space-between;
}

div#dynamic p {
  color: var(--color-text-body);
  font-family: 'Inter' !important;
}

.payment p {
  font-family: 'inter';
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  line-height: 19.36px;
}

span.price-tatto {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 20px;
  line-height: 24.2px;
  color: var(--color-primary-hover);
}

.alert {
  border-radius: 10px;
  padding-top: 10px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-left: 40px;
  background: var(--color-bg-lighter);
  box-shadow: 4px 4px 6px 0px #0000001A;
}

.important {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.important p {
  margin-bottom: 0px;
  font-family: var(--font-primary) !important;
  font-weight: 600;
  font-size: 16px !important;
  color: var(--color-primary-hover) !important;
  margin-left: 11px;
}

.miniform {
  display: flex;
  align-items: flex-start;
  margin: 30px 0px;
}

.miniform input {
  margin-right: 17px;
}

a.btn {
  border-radius: 28px;
  padding-top: 9.55px;
  padding-right: 19.73px;
  padding-bottom: 9.55px;
  padding-left: 19.73px;
  display: block;
  background: var(--color-primary);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 16px;
  line-height: 19.36px;
  letter-spacing: 0px;
  color: #FFFFFF;
}

.btn-container {
  text-align: center;
}

.btn-container p {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 14px;
  line-height: 22.54px;
  text-align: center;
  color: #8E8989;
  margin-top: 21px;
}
a.btn:hover {
  background: antiquewhite;
  color: white;
}

.content-down {
  display: flex;
}

.content-down p {
  margin-bottom: 0px;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  line-height: 25.76px;
}

.content-down {
  margin-top: 10px;
  margin-bottom: 25px;
}

div#dynamic .card-content-result h3 {
  margin-top: 0px !important;
}
a.btn:hover {
  background: var(--color-primary-hover);
}
.card-contact {
  display: flex;
  margin-bottom: 80px;
  min-width: 500px;
}

.card-contact .img {
  min-width: 150px;
}

.content-view-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card-contact h2{
  color: #323030 !important;
  font-weight:500;
  letter-spacing:-0.5px
}


/* Estilos para el modal */
.modal-overlay {
  display: none; /* Oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Fondo oscuro semi-transparente */
  z-index: 9;
}

.modal-content {
  background: #fff;
  padding: 20px;
  padding-top: 140px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}
.modal-content img {
  max-width: 1030px;
  margin: 0 auto;
}

.content-text-modal {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.content-text-modal a {
  color: var(--color-primary);
}

@media(max-width:767px){
  .content-view-contact {
  }
  .card-contact {
    max-width: 100%;
    min-width: auto;
  }
  .card-contact .img {
    max-width: 73px;
    min-width: auto;
    margin-right: 26px;
  }

  .card-contact h2{
    color: #323030 !important;
    font-weight:500;
    letter-spacing:-0.5px
  }
  .card-contact .img img {
    width: 100%;
  }
  div#result {
    padding-top: 50px;
  }

  div#result strong {font-weight: 600;}

  div#result span {
    color: var(--color-text-body);
    font-weight: 600;
    margin-right: 1px;
  }

  .text-content-card h3 {
    font-size: 15px;
  }

  .card-content-result {
    margin-bottom: 12px;
    padding: 10px;
    align-items: flex-start;
  }

  .text-content-card h3 {
    margin-top: 0px;
  }

  div#result .text-content-card p {
    margin-top: 4px !important;
    font-size: 13px;
    color: var(--color-text-body);
    margin-bottom: 0px !important;
  }

  .step-option {
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 300px;
    margin: 0 auto;
    padding-bottom: 40px;
  }

  .step-option img {
    margin-bottom: 17px;
  }

  .content-next-step .content-text {
    padding: 0px;
    max-width: 80%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .content-next-step .content-text h2 {
    margin-bottom: 4px;
  }
  section.load div#testimonialCarousel {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .content-next-step .content-text p {
    margin-bottom: 10px !important;
    font-size: 13px !important;
  }
  .form-normal .content-general input {
    margin-bottom: 20px;
  }
  .text-content-card h3 {
    font-size: 15px;
  }
  section.testimonial .content-general.eight-weeks {
    padding-top: 40px;
  }

  h3.reviews {
    font-size: 17px;
  }

  .testimonial-card p {
    margin-bottom: 0px;
  }

  h2.subtitle {
    margin-top: 30px;
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
    font-weight: 400;
  }
  section {
    min-height: 81vh;
    align-items: flex-start;
  }
  .content-banner-initial {
    padding-bottom: 0px;
  }

  .content-text {
    padding-top: 0px;
  }
  .content-banner-initial img {
    max-width: 59%;
    padding-top: 0px;
    order: 3;
  }

  .col-md-6.h-sm-auto.h-100.banner-section.d-sm-block {
    margin-top: 70px;
  }
  .h-100{
    height: auto !important;
  }
  img.logo-header {
    max-width: 220px;
    min-width: 100%;
  }
  div#prev {
    margin-top: 1px;
    width: 8px;
  }

  .logo {
    max-width: 140px;
    margin: 0 auto;
  }

  .logo img {
    max-width: 100%;
    width: 100%;
  }

  div#svg_wrap {
    height: 20px;
    max-width: 85%;
    margin: 0 auto;
    padding-top: 10px;
  }
  h1.d-sm-block {
    font-weight: 400 !important;
    font-size: 25px !important;
    margin-top: 50px;
  }

  .content-text h2 {
    font-size: 16px !important;
    margin-bottom: 30px;
  }
  .form-check {
    min-width: 135px;
  }
  .switcher {
    text-align: center;
  }

  p.label-sw {
    text-align: center;
    font-size: 13px;
  }

  p.legalcontent {
    font-size: 12px;
  }

  p.complete {
    font-size: 14px;
  }

  .content-general {
    padding: 5%;
    padding-top: 10%;
    max-width: 100%;
  }

  section#second-step img {
    max-width: 209px; !important;
    min-width: auto;
  }

  h2 {
    font-size: 24px;
  }

  section#second-step p {
    font-size: 15px;
  }

  section#second-step h2 {
    margin-top: 28px !important;
    font-size: 25px;
    margin-bottom: 10px;
  }

  .content-general {
    padding-top: 0px !important;
  }

  p {
    font-size: 15px;
  }

  label.tattoo-option img {
    margin-bottom: 3px;
  }

  .text-center.mt-2.option-title {
    font-size: 14px;
  }

  label.tattoo-option {
    margin-bottom: 0px;
  }

  p.excelent {
    text-align: center;
    margin-top: 0px;
  }

  section.skin-type p {
    font-size: 16px;
  }

  .mb-3.age {
    margin-top: 14px;
  }

  .slider-container {
    margin: 0px;
  }

  .mb-3.age label {
    font-size: 15px;
  }

  section.every-journey img {
    max-width: 100%;
  }

  div#result h2 {
    font-size: 25px;
  }
}

/* ============================================
   MULTI-TATTOO: Tattoo Tabs Component
   ============================================ */

[v-cloak] { display: none; }

.tattoo-tabs {
  margin-bottom: 20px;
}

.tattoo-tabs-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  align-items: center;
}

.tattoo-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 2px solid var(--color-border-light);
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
  background: #fff;
}

.tattoo-tab.active {
  border-color: var(--color-primary);
  background: rgb(44 188 176);
  color: white;
}

.tattoo-tab.completed .tab-icon svg path {
  fill: #ffffff;
}

.tab-icon {
  display: flex;
  align-items: center;
}
.tattoo-tab.active svg path {
  fill: #ffffff;
}

.tab-label {
  color: #333;
}
.tattoo-tab.active .tab-label {
  color: #fff;
}

.tab-delete {
  background: none;
  border: none;
  padding: 2px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.2s;
  padding-left: 17px;
}

.tab-delete:hover {
  opacity: 1;
}

.tattoo-tab-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px dashed var(--color-primary);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.tattoo-tab-add:hover {
  background: rgba(43, 188, 176, 0.1);
}

/* ============================================
   MULTI-TATTOO: Tattoo Counter (Step 3)
   ============================================ */

.title-teal {
  color: var(--color-primary);
  font-style: normal;
  font-weight: 600;
}

.tattoo-counter {
  background: #fff;
  border: 2px solid var(--color-border-light);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.tattoo-counter label {
  font-weight: 600;
  font-size: 16px;
}

.counter-control {
  display: flex;
  align-items: center;
  gap: 16px;
}
.no-border {
  border: none;
  margin-block-start: 0px !important;
}
.btn-counter {
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-border-light);
  border-radius: 8px;
  background: #fff;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-counter:hover:not(:disabled) {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-counter:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.counter-value {
  font-size: 20px;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

.tattoo-names {
  margin: 20px 0 0;
}

.tattoo-name-field {
  margin-bottom: 12px;
  text-align: left;
}

.tattoo-name-field label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  display: block;
  color: #333;
}

.tattoo-name-field .form-control {
  border: 2px solid var(--color-border-light);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 15px;
  transition: border-color 0.2s;
}

.tattoo-name-field .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(43, 188, 176, 0.15);
  outline: none;
}

.eight-weeks-note {
  background: rgba(43, 188, 176, 0.08);
  border-left: 3px solid var(--color-primary);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
}

.eight-weeks-note p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.eight-weeks-note small {
  color: #888;
}

.five-tattoo-notice {
  background: var(--color-bg-light);
  border-left: 0px solid #dc3545;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 16px 0;
}

.five-tattoo-notice p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.five-tattoo-notice strong {
  color: #555252;
  margin-bottom: 0px;
  display: inline-block;
}

/* ============================================
   MULTI-TATTOO: Progress Segments
   ============================================ */

.progress-segments {
  display: flex;
  gap: 4px;
  padding: 0 16px;
  margin-top: 8px;
}

.progress-segment {
  flex: 1;
  height: 4px;
  background: var(--color-border-light);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.progress-segment.active {
  background: var(--color-primary);
}

.step-counter {
  display: block;
  text-align: right;
  padding: 4px 16px 0;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ============================================
   MULTI-TATTOO: Results View
   ============================================ */

.results-view {
  padding-bottom: 40px;
}

.offer-timer {
  background: #5F5392;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px 8px 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  font-size: 14px;
  max-width: 252px;
}

.offer-timer strong {
  font-family: var(--font-secondary);
  font-size: 16px;
}

.tattoo-breakdown {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  border-radius: 5px;
  border: 1px solid #D6DEE3;
  background: #F8FAFC;
  margin: 20px 0;
}

.tattoo-breakdown-item {
  padding: 0px 10px;
  border-left: 4px solid #2dbcb0;
  margin-bottom: 17px;
  margin-top: 7px;
}

.tattoo-breakdown-item:last-child {
  border-bottom: none;
}

.tattoo-breakdown-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 500;
}

.tattoo-breakdown-item p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-body);
}

.add-tattoo-btn {
  text-align: center;
  padding: 12px;
  /* border: 1px dashed var(--color-primary); */
  border-radius: 27px;
  color: var(--color-primary);
  font-weight: 400;
  cursor: pointer;
  margin: 16px 0;
  transition: background 0.2s;
}

.add-tattoo-btn:hover {
  background: rgba(43, 188, 176, 0.05);
}

/* Talk to a specialist CTA (results view) */
.specialist-cta {
  text-align: center;
  margin-top: 24px;
}

.specialist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 48px;
  border: 1px dashed var(--color-primary);
  border-radius: 999px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.specialist-btn:hover {
  background: var(--color-primary-bg);
}

.specialist-btn span {
  text-decoration: underline;
}

.specialist-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.specialist-cta p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 12px 0 0;
}

/* ============================================
   RESULTS VIEW — redesigned plan + pricing
   ============================================ */

.results-tagline {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  color: var(--dark-mode-dark-hover, #555252);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.total-investment-card h3 strong { color: var(--color-primary); }
.total-investment-card h3 span { color: var(--color-text-heading); font-weight: 700; }

/* Up to 2 years of sessions banner */
.sessions-included-banner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--color-primary-bg);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 14px 0;
}
.sessions-included-banner .icon img { width: 22px; height: 22px; }
.sessions-included-banner h4 {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-heading);
}
.sessions-included-banner p {
  margin: 0;
  font-size: 13px;
  color: var(--color-primary-dark);
  font-weight: 500;
}

/* Tattoo plan list */
.tattoo-plan-list {
  padding: 6px 18px;
  margin: 14px 0;
  border-radius: 5px;
  border: 1.108px solid rgba(0, 0, 0, 0.10);
  background: var(--Light-Mode-Surface-Light-Bg-Warm-2, #FAF9F6);
}
.tattoo-plan-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.tattoo-plan-item:last-child { border-bottom: none; }
.tattoo-plan-item h4 {
  margin: 0 0 3px;
  color: var(--dark-mode-dark-active, #403E3E);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.5px; /* 108.333% */
}
.tattoo-plan-item p {
  margin: 0;
  font-size: 14px;
  color: var(--Dark-Mode-Dark, #6B6767);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 112.5% */
}

/* Temporarily reserved notice */
.reserved-banner {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--color-primary-bg);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 14px 0;
  font-size: 13px;
  color: var(--color-primary-dark);
}
.reserved-banner svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-primary); }

/* Purple price-today box */
.price-today-box {
  display: flex;
  background: #5F5392;
  color: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  margin: 18px 0;
  gap: 16px;
}
.ptb-left {flex: 1;border-right: 1px solid rgba(255, 255, 255, 0.25);padding-right: 16px;text-align: center;max-width: 50%;}
.ptb-label { font-size: 13px; letter-spacing: 0.5px; opacity: 0.9; text-transform: uppercase; }
.ptb-prices {display: flex;align-items: baseline;gap: 10px;margin-top: 8px;text-align: center;justify-content: center;}
.ptb-old {text-decoration: line-through;opacity: 0.6;font-size: 20px;color: rgba(255, 255, 255, 0.70);font-family: Inter;font-size: 22.605px;font-style: normal;font-weight: 500;line-height: 52.744px; /* 233.333% */text-decoration-line: line-through;}
.ptb-arrow { opacity: 0.7; }
.ptb-new {color: #FFF;font-family: Inter;font-size: 30.14px;font-style: normal;font-weight: 600;line-height: 52.744px; /* 175% */}
.ptb-right {
  flex: 0 0 47%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ptb-save {
  background: #fff;
  color: #5F5392;
  font-weight: 700;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.ptb-expires { font-size: 11px; letter-spacing: 1px; opacity: 0.85; text-transform: uppercase; }
.ptb-timer { font-size: 28px; font-weight: 700; letter-spacing: 2px; font-family: var(--font-secondary); }

/* Choose how to pay */
.pay-divider {
  text-align: center;
  border-top: 1px solid var(--color-border);
  margin: 26px 0 18px;
}
.pay-divider span {
  position: relative;
  top: -10px;
  background: var(--color-white);
  padding: 0 14px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  text-transform: uppercase;
}
.pay-options { display: flex; gap: 12px; }
.pay-option {
  flex: 1;
  position: relative;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pay-option.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
  background: var(--Perfect-B-Green-Light, #EAF8F7);
}
.pay-radio {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 8px;
}
.pay-option.active .pay-radio {
  border-color: var(--color-primary);
  background: radial-gradient(var(--color-primary) 0 5px, #fff 6px);
}
.pay-option-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-text-heading);
}
.pay-amount {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.pay-amount strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-heading);
  font-family: var(--font-secondary);
}
.pay-old { text-decoration: line-through; color: var(--color-text-muted); font-size: 15px; }
.pay-note { margin: 8px 0 0; font-size: 12px; color: var(--color-text-muted); }
.pay-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--color-primary);
  padding: 3px 10px;
  border-radius: 12px;
  color: var(--Light-Mode-Surface-White, #FFF);
  font-family: Inter;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.5px; /* 150% */
}

.discounts-gone-note {
  text-align: center;
  color: #d9534f;
  font-size: 13px;
  margin: 14px 0 4px;
}

/* Benefit bullets */
.results-bullets {
  margin: 20px 0 4px;
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
}
.results-bullet {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--color-text-body);
}
.results-bullet svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--color-primary); }

@media (max-width: 575px) {
  .price-today-box { flex-direction: column; }
  .ptb-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-right: 0;
    padding-bottom: 14px;
    max-width: 100%;
  }
  .ptb-right { flex-basis: auto; }
  .pay-options {flex-direction: row;}
}

/* ============================================
   MULTI-TATTOO: Button styles
   ============================================ */

.btn-continue {
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  transition: opacity 0.2s;
}

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

.btn-continue.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ============================================
   FASE 4: Booking Calendar & Confirm
   ============================================ */

.booking-calendar,
.booking-confirm {
  padding-bottom: 40px;
}

.booking-header {
  margin-bottom: 24px;
}

.booking-header h2 {
  margin-bottom: 4px;
}

.booking-subtitle {
  color: var(--color-text-light);
  font-size: 16px;
  margin-bottom: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: opacity 0.2s;
}

.back-link:hover {
  opacity: 0.7;
}

.booking-info-card {
  display: flex;
  padding: 16px;
  margin-bottom: 24px;
  justify-content: center;
  border-radius: 5px;
  background: var(--color-bg-light);
}

.booking-info-card strong {
  display: block;
  color: #333;
  font-size: 15px;
  margin-bottom: 4px;
}

.booking-info-card p {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-light);
}

.booking-info-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Slot cards (next 3 available appointments) */
.slot-cards-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.slot-card {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 10px;
  border: 2px solid var(--color-border);
  background: #ffffff;
  margin-bottom: 14px;
  padding: 14px 16px;
}

.slot-card:first-child {
}

.slot-card:last-child {
}

.slot-card:not(:last-child) {
}

.slot-card:hover {
  background: rgba(43, 188, 176, 0.04);
}

.slot-card.selected {
  border-color: var(--color-primary);
  background: rgba(43, 188, 176, 0.06);
  z-index: 1;
}

.slot-card.selected + .slot-card {
  border-top: 2px solid var(--color-border-light);
}

.slot-card-radio {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slot-card.selected .slot-card-radio {
  border-color: var(--color-primary);
}

.slot-card.selected .slot-card-radio::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
}

.slot-card-label {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  margin: 0;
}

.slots-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  color: var(--color-text-light);
  font-size: 14px;
}

.no-slots {
  padding: 20px;
  background: #FFF5F5;
  border-radius: 8px;
  text-align: center;
}

.no-slots p {
  margin: 0;
  color: #888;
  font-size: 14px;
}

/* Booking footer */
.booking-footer {
  margin-top: 24px;
}
.checkout-summary h2 {
  text-align: left;
}
.booking-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--color-border-light);
  margin-bottom: 16px;
  flex-direction: column;
}

.total-label {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary-hover);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 141.778%;
}

.total-desc {
  color: #555252;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 141.778%;
}

.booking-clinic-info {
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.booking-clinic-info p {
  margin: 2px 0;
  font-size: 13px;
  color: var(--color-text-light);
}

.booking-clinic-info strong {
  color: #333;
}

.secure-note {
  color: var(--color-primary) !important;
  font-weight: 500;
  margin-top: 8px !important;
}

.booking-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: #FFF0F0;
  border-radius: 8px;
  border-left: 3px solid var(--color-error);
}

.booking-error p {
  margin: 0;
  color: var(--color-error);
  font-size: 14px;
}

/* Confirm Details */
.confirm-notice {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--color-bg-light);
  border-radius: 12px;
  margin-bottom: 24px;
  text-align: left;
}

.confirm-notice .notice-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.confirm-notice strong {
  display: block;
  margin-bottom: 4px;
  color: #555252;
  font-family: var(--font-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 129%;
  color: #555252;
}

.confirm-notice p {
  margin: 0;
  font-size: 13px;
  color: #78716C;
}

.confirm-details {
  background: var(--color-bg-lighter);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 0px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--color-text-light);
  font-size: 14px;
}

.detail-value {
  text-align: right;
}

.detail-value strong {
  display: block;
  color: #726E6E;
  font-size: 16px;
  font-family: 'Inter';
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 121.875%;
}

.detail-value span {
  font-size: 13px;
  color: var(--color-text-light);
}

.confirm-checkbox {
  margin-bottom: 0px;
  padding: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text-light);
  font-family: var(--font-secondary);
  font-size: 12px;
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.booking-countdown {
  text-align: center;
  margin-top: 12px;
}

.booking-countdown p {
  font-size: 14px;
  color: var(--color-error);
}

.booking-countdown strong {
  font-family: var(--font-secondary);
  font-size: 16px;
}

/* ============================================
   FASE 5: Checkout / Payment
   ============================================ */

.stripe-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.stripe-loading-content {
  text-align: center;
}

.stripe-loading-content p {
  margin-top: 20px;
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

.stripe-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--color-border-light);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  margin: 0 auto;
  animation: stripe-spin 0.8s linear infinite;
}

@keyframes stripe-spin {
  to { transform: rotate(360deg); }
}

.test-discount-box {
  background: #fff3cd;
  border: 2px dashed var(--color-warning);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 16px 0;
}

.test-discount-box .checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #856404;
  font-size: 14px;
  margin: 0;
}

.test-discount-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-warning);
}

.checkout-summary {
  padding-bottom: 40px;
}

/* Card containers */
.checkout-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 24px;
  margin-bottom: 16px;
}

.checkout-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.checkout-card-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1.3;
}

.checkout-card-header p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 2px 0 0;
}

.checkout-icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Checkout table */
.checkout-table {
  margin: 0;
}

.checkout-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 12px 0;
  font-size: 14px;
  color: #555;
  align-items: center;
  border-bottom: 1px solid #E8ECF0;
}

.checkout-qty {
  text-align: center;
}

.checkout-header-row {
  font-weight: 600;
  color: #333;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 0 0 10px;
}

.checkout-item-row:last-of-type {
  border-bottom: none;
}

.checkout-item-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checkout-item-name strong {
  font-size: 14px;
  color: #333;
}

.checkout-item-name small {
  font-size: 12px;
  color: var(--color-text-light);
}

.checkout-total-row {
  border-top: 1px solid #E8ECF0;
  border-bottom: none;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  padding: 14px 0 0;
  margin-top: 2px;
}

.checkout-total-price {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
}

/* Customer info fields */
.checkout-field {
  margin-bottom: 20px;
}

.checkout-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.field-icon {
  width: 16px;
  height: 16px;
  color: var(--color-text-light);
  flex-shrink: 0;
}

.checkout-field .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #D1D5DB;
  border-radius: 0;
  padding: 10px 0 10px 22px;
  font-size: 16px;
  color: #222;
  outline: none;
  box-shadow: none;
}

.checkout-field .form-control[readonly] {
  opacity: 1;
  color: #333;
}

/* Stripe Payment Element */
.checkout-payment {
  margin-bottom: 24px;
}

.checkout-payment h4 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
  color: #333;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-light);
}

#stripe-payment-element {
  min-height: 200px;
}

.stripe-error {
  color: var(--color-error);
  font-size: 14px;
  margin-top: 8px;
  padding: 8px 12px;
  background: #FFF0F0;
  border-radius: 6px;
}

.checkout-secure {
  text-align: center;
  margin-top: 16px;
}

.checkout-secure p {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 500;
}

/* ============================================
   PROCESSING PHASE
   ============================================ */

.processing-view {
  text-align: center;
  padding-top: 60px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.processing-view .content-img-load {
  max-width: 220px;
  margin: 0 auto 40px;
}

#payment-lottie {
  width: 100%;
  height: auto;
}

.processing-content {
  width: 100%;
  max-width: 420px;
  padding: 0 20px;
}

.processing-content h2 {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.processing-content > p {
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.processing-steps {
  text-align: left;
  width: 100%;
}

.processing-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  margin-bottom: 10px;
  background: #F0F1F2;
  border: 2px solid transparent;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
}

.processing-step.active {
  background: var(--color-primary-bg);
  border-color: var(--color-primary);
  color: #333;
}

.processing-step.done {
  background: var(--color-primary-bg);
  border-color: transparent;
  color: #333;
}

.processing-step .step-icon {
  font-size: 20px;
  min-width: 28px;
  text-align: center;
  color: #B2B1B1;
}

.processing-step.active .step-icon {
  color: var(--color-primary);
}

.processing-step.done .step-icon {
  color: var(--color-primary);
}

.processing-step .step-status {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: #B2B1B1;
}

.processing-step.active .step-status {
  color: var(--color-primary);
}

.processing-step.done .step-status {
  color: var(--color-primary);
}

/* Spinner animation for active step */
.icon-spinner {
  animation: spin 1s linear infinite;
  transform-origin: center;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   CONFIRMATION PHASE
   ============================================ */

.confirmation-view {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.confirmation-logo {
  margin-bottom: 20px;
}

.confirmation-logo .logo-confirm {
  max-width: 160px;
  filter: invert(1) brightness(0.4);
}
section.amount label.tattoo-option img {
  background: var(--color-primary-dark);
  filter: saturate(0%);
  transition: all 1s ease-in-out;
}
.confirmation-check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.confirmation-view h2 {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 4px;
}

.confirm-subtitle {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  margin-bottom: 4px;
}

.confirmation-view > p {
  color: var(--color-text-light);
  font-size: 15px;
}

/* Appointment card */
.appointment-card {
  background: var(--color-bg-lighter);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
  text-align: left;
  border: 1px solid #e8e8e8;
}

.appointment-card h4 {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-light);
}

.appt-detail {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.appt-label {
  color: var(--color-text-light);
  font-weight: 500;
}

.appt-detail span:last-child {
  color: #333;
  text-align: right;
}

/* Policy sections */
.policy-section {
  text-align: left;
  background: var(--color-bg-lighter);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
}

.policy-section h5 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.policy-section ul {
  margin: 0;
  padding-left: 20px;
}

.policy-section li {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 4px;
  list-style-type: disc;
}

.reminder-note {
  color: var(--color-primary) !important;
  font-size: 14px;
  font-weight: 500;
  margin: 20px 0;
}

.email-note {
  color: #B2B1B1 !important;
  font-size: 13px;
  margin-top: 16px;
}
.switcher.movil{
  display: none;
}
/* ============================================
   RESPONSIVE: Booking, Payment, Processing, Confirmation
   ============================================ */

@media(max-width: 767px) {
  .content-banner-initial h2{
    order: 1;
    text-align: center;
  }
  .content-banner-initial strong{
    order: 2;
  }
  section.fade-section.start .content-text {
    display: flex;
    flex-direction: column;
  }

  section.start .content-text h2 {
    order: 3;
  }

  section.start h1 {
    order: 2;
    margin-top: 20px;
  }

  p.complete {
    order: 4;
  }
  section.start {
    height: auto;
  }
  p.label-sw{
    margin-bottom: 0px;
  }
  .switcher.pc{
    order: 1;
  }
  .tattoo-tabs{
    position: sticky;
    top: 0;              /* o top: 60px si hay header fijo */
    z-index: 9999;
    background: #fff;    /* para que no se vea transparente */
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  /* tu carrusel horizontal */
  .tattoo-tabs-scroll{
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 0 12px;
  }

  /* opcional: ocultar scrollbar */
  .tattoo-tabs-scroll::-webkit-scrollbar{ height: 6px; }
  .tattoo-tabs-scroll::-webkit-scrollbar-thumb{ border-radius: 999px; }
  section.fade-section.start .col-md-6.h-sm-auto.h-100.banner-section.d-sm-block {
    margin-top: 0px;
  }
  .booking-info-card {
    flex-direction: column;
    gap: 8px;
  }

  .slot-card {
    padding: 14px 16px;
  }

  .slot-card-label {
    font-size: 14px;
  }

  .booking-total {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .confirm-details {
    padding: 16px;
  }

  .detail-row {
    gap: 4px;
  }

  .detail-value {
    text-align: right;
  }

  .checkout-row {
    grid-template-columns: 2fr 0.5fr 1fr;
    padding: 10px 12px;
    font-size: 13px;
  }

  .processing-view {
    padding-top: 30px;
  }

  .processing-view .content-img-load {
    max-width: 180px;
  }

  .processing-content h2 {
    font-size: 28px;
  }

  .processing-steps {
    max-width: 100%;
    padding: 0;
  }

  .appointment-card {
    padding: 16px;
  }

  .appt-detail {
    flex-direction: column;
    gap: 2px;
  }

  div#svg_wrap {
    top: 50px;
  }
}

/* Skin type image — all 6 preloaded, active one fades in */
.skin-type-image {
  position: relative;
}

.skin-type-slide {
  opacity: 0;
  transition: opacity 0.35s ease;
  display: block;
}

.skin-type-slide:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.skin-type-slide.active {
  opacity: 1;
}

/* ============================================
   FIXED BOTTOM FOOTER & STEP BULLETS
   ============================================ */

/* Hide progress bar */
#svg_wrap {
  display: none !important;
}

/* Extra bottom padding so content doesn't hide behind the fixed footer */
.content-general {
  padding-bottom: 100px;
}

/* Fixed bottom footer */
.fixed-bottom-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  padding: 12px 20px 24px;
  border: none;
}

.fixed-bottom-footer .btn-continue {
  margin-top: 0;
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Step bullets */
.step-bullets-container {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.step-bullets {
  display: flex;
  gap: 10px;
  align-items: center;
}

.step-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border-light);
  display: inline-block;
  transition: var(--transition-base);
}

.step-bullet.completed {
  background: var(--color-primary);
}

.step-bullet.active {
  background: var(--color-primary);
  width: 12px;
  height: 12px;
}

/* Smooth remount when switching tattoo tabs (key forces fresh DOM) */
label.tattoo-option,
.content-options .form-check {
  animation: tattooOptionAppear 1.5s ease;
}

@keyframes tattooOptionAppear {
  from { opacity: 0; }
  to   { opacity: 1; }
}

a.call img {
  margin-right: 8px;
}
.call{
  color: var(--color-text-body);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 129%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* ===== SKELETON LOADING ===== */
@keyframes skeleton-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: 6px;
}

/* --- Slot cards skeleton (BookingCalendar) --- */
.skeleton-slot-card {
  height: 56px;
  margin-bottom: 12px;
  border-radius: 12px;
}

/* --- Stripe checkout skeleton --- */
.checkout-skeleton { padding: 4px 0; }
.skeleton-stripe-title  { height: 24px; width: 55%; margin-bottom: 10px; }
.skeleton-stripe-subtitle { height: 14px; width: 72%; margin-bottom: 24px; }
.skeleton-stripe-section { margin-bottom: 20px; }
.skeleton-stripe-label  { height: 13px; width: 38%; margin-bottom: 7px; }
.skeleton-stripe-input  { height: 44px; border-radius: 8px; margin-bottom: 14px; }
.skeleton-stripe-card-area { height: 120px; border-radius: 8px; margin-bottom: 8px; }
.skeleton-stripe-button { height: 52px; border-radius: 100px; margin-top: 8px; }

/* --- Results skeleton (Step 12) --- */
.skeleton-results-title    { height: 26px; width: 68%; margin: 0 auto 12px; }
.skeleton-results-subtitle { height: 14px; width: 48%; margin: 0 auto 28px; }
.skeleton-result-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f4f4f4;
}
.skeleton-result-icon  { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.skeleton-result-lines { flex: 1; }
.skeleton-result-line1 { height: 16px; width: 55%; margin-bottom: 8px; }
.skeleton-result-line2 { height: 13px; width: 82%; }
.skeleton-results-btn  { height: 52px; border-radius: 100px; margin-top: 28px; }
/* ===== END SKELETON ===== */
.booking-total {
  border-radius: 5px;
  background:var(--color-primary-bg);
  border: none;
}

/* ===== TATTOO REMOVE CONFIRMATION MODAL ===== */
.tattoo-remove-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tattoo-remove-modal {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px 36px;
  width: 100%;
  max-width: 380px;
  position: relative;
  animation: slideUpModal 0.25s ease;
}

@keyframes slideUpModal {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.tattoo-remove-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
}

.tattoo-remove-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  justify-content: center;
}

.tattoo-remove-question {
  font-size: 18px;
  font-weight: 400;
  color: #555555;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.3;
}

.tattoo-remove-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.tattoo-remove-btn-confirm {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
  max-width: 130px;
}

.tattoo-remove-btn-confirm:hover {
  background: var(--color-primary-hover);
}

.tattoo-remove-btn-cancel {
  background: transparent;
  color: #555555;
  border: 2px solid #ddd;
  border-radius: 100px;
  padding: 6px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
  max-width: 122px;
}

.tattoo-remove-btn-cancel:hover {
  border-color: #aaa;
}
/* --- Save & continue modal variant (buttons stacked full-width) --- */
.save-confirm-modal .tattoo-remove-question {
  margin-bottom: 24px;
}

.save-confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.save-confirm-btn-full {
  max-width: 100% !important;
  width: 100%;
}
/* ===== END TATTOO REMOVE MODAL ===== */

div#prev img {
  max-width: 100%;
}

/* ===== SEO LANDING SECTIONS ===== */
.seo-section {
  padding: 24px 32px;
}

/* Testimonials */
.section-subtitle-center {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #323030;
  text-align: center;
  margin-bottom: 16px;
}
.testimonials-carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials-carousel::-webkit-scrollbar { display: none; }
.testimonials-track {
  display: flex;
  gap: 12px;
  padding-bottom: 8px;
}
.testimonial-img {
  width: 236px;
  height: 206px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

/* SEO content blocks — base */
.seo-content-block {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}
.seo-content-block p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #807B7B;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* h2 titles — Poppins SemiBold 24px #323030 */
.seo-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #323030;
  margin-bottom: 16px;
  line-height: 1.156;
}

/* h3 subtitles — Poppins Medium 18px #403E3E */
.seo-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #403E3E;
  margin-bottom: 12px;
  line-height: 1.156;
}

/* Labels ("You'll get", "Main factors", "Choose one") — Poppins Medium 18px */
.seo-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px !important;
  color: #403E3E;
  margin-bottom: 8px !important;
  line-height: 1.156;
}
.seo-label-dark {
  color: #323030 !important;
}

/* Lists — Poppins Regular 14px #807B7B */
.seo-list {
  padding-left: 21px;
  margin-bottom: 16px;
  list-style: disc;
}
.seo-list li {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #807B7B;
  margin-bottom: 0;
  line-height: 1.5;
}
.seo-list-ordered {
  padding-left: 21px;
  margin-bottom: 16px;
}
.seo-list-ordered li {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #807B7B;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Factors — numbered list style */
.seo-factors {
  margin-bottom: 16px;
}
.seo-factor {
  margin-bottom: 14px;
}
.seo-factor strong {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #403E3E;
  display: block;
  margin-bottom: 2px;
}
.seo-factor p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #807B7B;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Before/after — dark bg #323030 */
.seo-dark-block {
  background: #323030;
  padding: 32px;
  border-radius: 0;
  margin: 0 -32px;
  width: calc(100% + 64px);
}
.seo-dark-block .seo-title {
  color: #FAF9F6;
}
.seo-dark-block p {
  color: #B2B1B1;
}
.before-after-carousel {
  margin-top: 16px;
}
.before-after-carousel img {
  width: 314px;
  height: 313px;
  object-fit: cover;
  border-radius: 12px;
}

/* Dots indicator */
.seo-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}
.seo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D9D9D9;
}
.seo-dot.active {
  width: 12px;
  height: 12px;
  background: #2BBCB0;
  margin-top: -2px;
}

/* Related topics carousel */
.related-topics-carousel {
  display: flex;
  gap: 13px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.related-topics-carousel::-webkit-scrollbar { display: none; }
.related-topic-card {
  min-width: 344px;
  height: 164px;
  background: var(--color-white);
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  padding: 13px 17px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.related-topic-card .topic-text {
  flex: 1;
}
.related-topic-card .topic-thumb {
  width: 101px;
  height: 136px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.related-topic-card strong {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #323030;
  display: block;
  margin-bottom: 4px;
  line-height: 1.3;
}
.related-topic-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #807B7B;
  margin-bottom: 8px;
  line-height: 1.4;
}
.topic-link {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #323030;
  text-decoration: none;
  background: #F4F3F3;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
}

/* FAQ Section — bg #323030 */
.seo-faq-section {
  background: #323030;
  border-radius: 12px;
  margin: 0;
  padding: 32px 26px !important;
}
.seo-faq-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #FAF9F6;
  margin-bottom: 20px;
  letter-spacing: -0.72px;
}
.seo-faq-title span {
  color: #2BBCB0;
}
.seo-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-faq-item {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
}
.seo-faq-item summary {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #FAF9F6;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.seo-faq-item summary::-webkit-details-marker { display: none; }
.seo-faq-item summary::after {
  content: '+';
  font-size: 18px;
  color: #FAF9F6;
  flex-shrink: 0;
  margin-left: 8px;
}
.seo-faq-item[open] summary::after {
  content: '−';
}
.seo-faq-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(250,249,246,0.7);
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* CTA Section */
.seo-cta-section {
  text-align: left;
  padding: 32px !important;
}
.seo-cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #323030;
  margin-bottom: 12px;
  line-height: 1.6;
}
.seo-cta-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #807B7B;
  margin-bottom: 12px;
}
.seo-cta-section .seo-list {
  list-style: disc;
  padding-left: 21px;
}

/* Footer credits */
.seo-footer {
  text-align: center;
  padding-top: 0 !important;
  border-top: 1px solid #D9D9D9;
}
.seo-footer-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #807B7B;
  margin-bottom: 2px;
}
.seo-footer-heart {
  color: #E53E3E;
}
/* ===== END SEO LANDING SECTIONS ===== */

/* Contact form inline validation */
.field-error {
  display: block;
  color: #E53E3E;
  font-size: 13px;
  margin: 4px 0 8px;
}

.form-control.input-error {
  border-color: #E53E3E;
}

.booking-confirm .confirm-checkbox span {
    padding-top: 6px;
}

/* Custom checkbox: teal fill + white checkmark (native accent-color renders a black check) */
.booking-confirm .confirm-checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  position: relative;
}

.booking-confirm .confirm-checkbox input[type="checkbox"]:checked {
  background-color: var(--color-primary);
}

.booking-confirm .confirm-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}