/* SalonSync overrides. Loaded after template styles. */

/* Accent button */
.btn-base-color {
    background-color: var(--base-color);
    color: #ffffff;
    border-color: var(--base-color);
}
.btn-base-color:hover,
.btn-base-color:focus {
    background-color: #e94f28;
    border-color: #e94f28;
    color: #ffffff;
}

/* Pricing cards */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-6px);
}
.pricing-featured {
    position: relative;
}

/* Pricing list check marks */
.pricing-card ul li {
    position: relative;
    padding-left: 26px;
}
.pricing-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--base-color);
    border-bottom: 2px solid var(--base-color);
    transform: rotate(-45deg);
}
.pricing-card.bg-dark-gray ul li::before {
    border-color: #ffffff;
}

/* Registration form */
.register-form-wrap {
    max-width: 520px;
}

/* Brand logo */
.navbar-brand img {
    max-height: 34px;
    width: auto;
}
.footer-logo-img {
    height: 30px;
    width: auto;
}

/* Footer watermark — fluid size, fits one line */
.footer-watermark {
    font-size: clamp(2rem, 9.5vw, 13rem);
    line-height: 1.05;
    white-space: nowrap;
}

/* Integration pills */
.integration-pill {
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.integration-pill:hover {
    border-color: var(--base-color) !important;
    transform: translateY(-2px);
}
.integration-pill img {
    height: 20px;
    width: auto;
    flex-shrink: 0;
}
.integration-pill span {
    white-space: nowrap;
}

/* FAQ accordion — coral accent */
.accordion-button:not(.collapsed) {
    color: var(--base-color);
    background-color: transparent;
    box-shadow: none;
}
.accordion-button:focus {
    border-color: rgba(255, 96, 54, 0.25);
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    filter: none;
}

/* Comparison table */
.comparison-table th,
.comparison-table td {
    vertical-align: middle;
    text-align: center;
}
.comparison-table thead th {
    font-weight: 500;
}
.comparison-table .col-highlight {
    background-color: var(--bg-seashell, #fff6f3);
}
/* Bootstrap table cells override background-color; force the dark Pro column */
.comparison-table td.bg-dark-gray,
.comparison-table th.bg-dark-gray {
    background-color: var(--dark-gray, #151515) !important;
}

/* Language switcher (dropdown) */
.lang-switcher {
    position: relative;
    margin-right: 15px;
}
.lang-switcher__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 40px;
    padding: 0 14px;
    background-color: #ffffff;
    border: 1px solid var(--extra-medium-gray, #e4e4e4);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    color: var(--dark-gray, #151515);
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
}
.lang-switcher__btn:hover {
    border-color: var(--base-color);
    color: var(--base-color);
}
.lang-switcher__btn .feather {
    font-size: 15px;
    line-height: 0;
}
.lang-switcher__caret {
    font-size: 13px !important;
    transition: transform 0.3s ease;
}
.lang-switcher.open .lang-switcher__caret {
    transform: rotate(180deg);
}
.lang-switcher__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 168px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid var(--extra-medium-gray, #e4e4e4);
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
}
.lang-switcher.open .lang-switcher__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-switcher__menu li {
    margin: 0;
}
.lang-switcher__menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray, #151515);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.lang-switcher__menu a:hover {
    background-color: var(--bg-seashell, #fff6f3);
    color: var(--base-color);
}
.lang-switcher__menu a.is-active {
    color: var(--base-color);
}
.lang-switcher__menu a.is-active::after {
    content: "\2713";
    font-size: 13px;
}
.lang-switcher-floating {
    position: fixed;
    right: 16px;
    bottom: 16px;
    margin: 0;
    z-index: 9999;
}

/* Template demo widget */
.theme-demos,
.demo-button-wrapper {
    display: none !important;
}

/* Language switcher — mobile (header bar, vertically aligned with hamburger) */
.lang-switcher-mobile{float:none !important;align-self:center !important;display:flex !important;align-items:center;height:40px;position:relative}
.lang-switcher-mobile .lang-switcher{display:flex;align-items:center}
.lang-switcher-mobile .lang-switcher__btn{padding:4px 6px}
.lang-switcher-mobile .lang-switcher__menu{position:absolute;top:100%;right:0;left:auto}
