* {
  box-sizing: border-box;
}

.container-fluid {
  padding: 0;
}

body {
  background: #fdfbfa url("/images/website/bg.svg") repeat;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  color: #5f5f5f;
  line-height: 1.75;
}
body.fixed > .container-fluid {
  padding-top: 108px;
}

#mainContent {
  padding-bottom: 60px;
  min-height: 55vh;
}

h1, h2, h3, h4 {
  color: #3a4654;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  padding: 0 0 1.25rem 0;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
}

h2 {
  padding: 0 0 1rem 0;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.25;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #5f5f5f;
}

a {
  color: #cfb976;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
a:hover {
  color: #ff7ba0;
}

.pink {
  color: #ff7ba0;
}

.gold {
  color: #cfb976;
}

.text-black {
  font-weight: 500;
}

.mw-200 {
  max-width: 200px;
}

.material-symbols-outlined {
  font-weight: lighter;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff7ba0;
  margin-bottom: 0.75rem;
}

.section-py {
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.btn {
  line-height: 1;
  padding: 0.9rem 1.75rem !important;
  border-radius: 999px;
  background: #ff7ba0;
  color: #fff !important;
  border: 2px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease-in-out;
}
.btn:hover {
  background: #3a4654;
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(58, 70, 84, 0.06);
}
.btn.btn-reversed {
  background: #3a4654;
}
.btn.btn-reversed:hover {
  background: #ff7ba0;
}
.btn.btn-border {
  background: transparent;
  border-color: #cfb976;
  color: #5f5f5f !important;
}
.btn.btn-border:hover {
  border-color: #ff7ba0;
  background: transparent;
  color: #ff7ba0 !important;
}
.btn.btn-dark {
  background: #3a4654;
  border: 1px solid #36414e;
}
.btn.btn-dark:hover {
  background: #4f5f72;
}
.btn.btn-lg {
  padding: 1.1rem 2.25rem !important;
  font-size: 1.05rem;
}
.input-group-append .btn, .input-group-prepend .btn {
  padding: 0.5rem !important;
}
.btn .material-symbols-outlined {
  font-size: 1.35rem;
}

#mainMenu {
  padding: 18px 0;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 10px rgba(58, 70, 84, 0.06);
  transition: all 0.2s ease-in-out;
}
#mainMenu nav {
  justify-content: center;
}
#mainMenu #menu-cta {
  gap: 0.75rem;
}
#mainMenu #home {
  width: 160px;
  height: 52px;
  display: block;
  padding: 0;
}
#mainMenu #home:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/images/glamworx.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
#mainMenu #home.petworx:before {
  background-image: url("/images/petworx.svg");
}
#mainMenu a {
  color: #5f5f5f;
  padding: 0 5px;
  margin: 0 10px;
  font-weight: 600;
  position: relative;
}
#mainMenu a.nav-link {
  line-height: 52px;
}
#mainMenu a.nav-link:after {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: #ff7ba0;
  position: absolute;
  top: 100%;
  left: 50%;
  transition: all 0.2s ease-in-out;
}
#mainMenu a.nav-link:hover, #mainMenu a.nav-link.active {
  color: #3a4654;
}
#mainMenu a.nav-link:hover:after, #mainMenu a.nav-link.active:after {
  width: 100%;
  left: 0;
}
#mainMenu .nav-item {
  position: relative;
}
#mainMenu .nav-item.has-submenu > .nav-link:after {
  content: none;
}
#mainMenu .nav-item .list-group {
  display: none;
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  padding: 1.1rem 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(58, 70, 84, 0.1);
  border: 0;
  min-width: 320px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
#mainMenu .nav-item .list-group a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 0;
  color: #3a4654;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
}
#mainMenu .nav-item .list-group a .material-symbols-outlined {
  color: #cfb976;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}
#mainMenu .nav-item .list-group a:hover {
  color: #ff7ba0;
}
#mainMenu .nav-item .list-group a:hover .material-symbols-outlined {
  color: #ff7ba0;
}
#mainMenu .nav-item:hover .list-group {
  display: block;
  opacity: 1;
}
#mainMenu #login, #mainMenu #register {
  margin: 0;
}

body.fixed #mainMenu {
  position: fixed;
  top: 0;
  left: 0;
  margin: 16px clamp(0.75rem, 3vw, 30px) 0;
  width: calc(100vw - clamp(1.5rem, 6vw, 60px));
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(58, 70, 84, 0.1);
}

#toggleMenu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #3a4654 0%, #4b5a6c 55%, #323c48 100%);
  color: #fff;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255, 123, 160, 0.45), transparent 45%), radial-gradient(circle at 10% 90%, rgba(207, 185, 118, 0.35), transparent 40%);
  pointer-events: none;
}
.hero > .container {
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}
.hero h1, .hero h2 {
  color: #fff;
}
.hero .lead {
  color: rgba(255, 255, 255, 0.85);
}
.hero .badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  display: inline-block;
  margin: 0.3rem 0.25rem;
}
.hero .price-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(207, 185, 118, 0.5);
  border-radius: 20px;
  padding: 0.85rem 1.4rem;
  box-shadow: 0 2px 10px rgba(58, 70, 84, 0.06);
}
.hero .price-chip .price-chip-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #cfb976;
  color: #3a4654;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero .price-chip .price-chip-icon .material-symbols-outlined {
  font-size: 1.5rem;
}
.hero .price-chip strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.3;
}
.hero .price-chip small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.appFrame {
  width: 100%;
  padding: 1.25rem;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 25px 60px rgba(58, 70, 84, 0.14);
}
.appFrame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.feature-card {
  display: block;
  height: 100%;
  padding: 1.75rem;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(58, 70, 84, 0.06);
  color: #5f5f5f;
  transition: all 0.25s ease-in-out;
}
.feature-card:hover {
  box-shadow: 0 12px 30px rgba(58, 70, 84, 0.1);
  transform: translateY(-4px);
  color: #5f5f5f;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin: 0.9rem 0 0.4rem;
}
.feature-card p {
  margin: 0;
  font-size: 0.95rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.feature-icon.feature-yellow {
  background: #cfb976;
}
.feature-icon.feature-red {
  background: #ff7ba0;
}
.feature-icon.feature-green {
  background: #3a4654;
}
.feature-icon.feature-icon-sm {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8.4px;
}
.feature-icon.feature-icon-sm .material-symbols-outlined {
  font-size: 1.5rem;
}

.step-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 0.5rem;
}
.step-flow .step {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(58, 70, 84, 0.06);
  padding: 1.25rem 1.5rem;
  flex: 1 1 200px;
  max-width: 230px;
}
.step-flow .step strong {
  display: block;
  color: #3a4654;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.step-flow .step p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.step-flow .step-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #cfb976;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-flow .step-arrow {
  align-self: center;
  color: rgba(58, 70, 84, 0.25);
  font-size: 1.75rem;
}

@media (max-width: 991.98px) {
  .step-flow {
    flex-direction: column;
    align-items: stretch;
  }
  .step-flow .step {
    max-width: none;
  }
  .step-flow .step-arrow {
    transform: rotate(90deg);
  }
}
.legal-page {
  max-width: 760px;
  margin: 0 auto;
}
.legal-page h2 {
  margin-top: 0.5rem;
}
.legal-page .table-legal {
  border: 0;
}
.legal-page .table-legal th, .legal-page .table-legal td {
  border: 0;
  padding: 0.9rem 0.5rem;
  vertical-align: top;
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-page .table-legal tr {
  border-bottom: 1px solid #eceff1;
}
.legal-page .table-legal tr:last-child {
  border-bottom: 0;
}
.legal-page .table-legal th, .legal-page .table-legal td.font-weight-bold {
  color: #3a4654;
  font-weight: 700;
}

#content {
  padding: 2rem 0;
}
#content .feature-benefits {
  list-style: none;
  padding: 0;
}
#content .card {
  box-shadow: 0 2px 10px rgba(58, 70, 84, 0.06);
  border: 0;
  border-radius: 20px;
  background: #fff;
}
#content .card .card-header {
  background: #cfb976;
  color: #fff;
  border-radius: 20px 20px 0 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.15rem;
  border: 0;
}
#content .card .card-body {
  text-align: center;
  color: #5f5f5f;
  padding: 2.5rem 1.5rem;
}
#content .card .card-body .list-group, #content .card .card-body .list-group-item, #content .card .card-body .table td {
  background: transparent;
}
#content .card .card-body .mb-3, #content .card .card-body .form-check {
  text-align: left;
}
#content .card .card-body .city {
  display: none;
}
#content .price, #content .valuta {
  font-size: 2.25rem;
  font-weight: 700;
  color: #3a4654;
}
#content .colImage {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(58, 70, 84, 0.1);
}

.accordion-item {
  border: 0;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 10px rgba(58, 70, 84, 0.06);
}

.accordion-button {
  font-weight: 600;
  color: #3a4654;
}
.accordion-button:not(.collapsed) {
  background: rgba(255, 123, 160, 0.08);
  color: #3a4654;
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}

#featureMenu {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(58, 70, 84, 0.06);
  overflow: hidden;
}
#featureMenu .list-group-item {
  background: transparent;
  border: 0;
  padding: 0.85rem 1.1rem;
}
#featureMenu .list-group-item:hover:not(.active) {
  background: rgba(58, 70, 84, 0.04);
}
#featureMenu .list-group-item.active, #featureMenu .list-group-item.active:hover, #featureMenu .list-group-item.active:focus {
  background-color: #ff7ba0;
  color: #fff;
  border: 0;
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  background-color: #ff7ba0;
  border-color: #ff628e;
  color: #fff;
}

#widgetModal {
  background: transparent;
  backdrop-filter: blur(4px);
}
#widgetModal .modal-body, #widgetModal .modal-content {
  background: transparent;
  border: 0;
  padding: 0;
}
#widgetModal #appointmentFrame {
  width: 100%;
  border: 0;
  height: 660px;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(58, 70, 84, 0.14);
}

#fixedButtons {
  z-index: 15;
}

#fixedWidgetButton {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ff7ba0;
  box-shadow: 0 12px 30px rgba(58, 70, 84, 0.1);
}
#fixedWidgetButton:hover {
  background-color: #3a4654;
}
#fixedWidgetButton img {
  height: 22px;
  width: auto;
  margin: -3px 4px 0 -3px;
}

#cookieConsent {
  background: #fff;
  color: #5f5f5f;
  border-radius: 20px;
  padding: 0.75rem 2.5rem 0.75rem 1.25rem;
  font-size: 0.875rem;
  box-shadow: 0 12px 30px rgba(58, 70, 84, 0.1);
  position: relative;
}
#cookieConsent a {
  color: #cfb976;
}
#cookieConsent a:hover {
  color: #ff7ba0;
}
#cookieConsent #closeCookieConsent {
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
}
#cookieConsent #closeCookieConsent:hover {
  color: #ff7ba0;
}

footer {
  background: #3a4654;
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(2rem, 5vw, 3.5rem) 0 6rem;
}
footer a {
  color: rgba(255, 255, 255, 0.85);
}
footer a:hover {
  color: #ff7ba0;
}
footer h3, footer h4, footer h6 {
  color: #fff;
}
footer .footerImage {
  height: 46px;
  width: auto;
}

@media (min-width: 768px) {
  .hero {
    text-align: left;
  }
}
@media (min-width: 992px) {
  body.fixed > .container-fluid {
    padding-top: 116px;
  }
}
@media (max-width: 991.98px) {
  #mainContent {
    padding-top: 90px;
  }

  #mainMenu {
    position: fixed;
    top: 0;
    padding: 14px 0 !important;
  }
  #mainMenu #menu-cta {
    flex-wrap: wrap;
    margin-top: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(58, 70, 84, 0.1);
  }
  #mainMenu #menu-cta .btn {
    flex-grow: 1;
    margin: 5px 20px;
  }
  #mainMenu #toggleMenu {
    display: inline-flex;
    border: 0;
    background: transparent;
    color: #5f5f5f;
    margin: 0 20px 0 0;
    padding: 0;
  }
  #mainMenu #toggleMenu span {
    font-size: 2.25rem;
    font-weight: normal;
  }
  #mainMenu #wrapNav {
    overflow: hidden;
    max-height: 0;
    transition: all 0.2s ease-in-out;
  }
  #mainMenu #wrapNav nav {
    padding: 0;
  }
  #mainMenu a:not(.btn) {
    text-align: center;
    line-height: 2.75rem;
    margin: 0;
  }
  #mainMenu #home {
    margin: 0 0 0 20px;
    width: 100%;
  }
  #mainMenu #home:before {
    background-position: left center;
  }
  #mainMenu .nav-item .list-group {
    display: block;
    opacity: 1;
    position: relative;
    left: auto;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    top: 0;
    border-radius: 0;
    padding: 0.5rem;
    box-shadow: none;
    min-width: 0;
  }
  #mainMenu .nav-item .list-group a {
    line-height: 2rem;
  }
  #mainMenu .nav-item.has-submenu .list-group {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.3s ease-in-out;
  }
  #mainMenu .nav-item.has-submenu.open .list-group {
    max-height: 600px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  #mainMenu.open {
    padding-bottom: 1.5rem;
  }
  #mainMenu.open #wrapNav {
    max-height: 1000px !important;
  }

  nav {
    margin: 10px 0 0 0;
    padding: 0 0 1.5rem 0;
    justify-content: center;
    flex-direction: column;
  }

  #content p {
    line-height: 1.8;
  }

  footer {
    padding-bottom: 6rem;
  }

  #cookieConsent {
    position: relative;
    width: 100%;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .section-py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/*# sourceMappingURL=site.css.map */
