:root {
    --sn-primary: #7e8826;
    --sn-primary-dark: #5f671d;
    --sn-primary-soft: #eef1df;

    --sn-bg: #f7f5ef;
    --sn-bg-light: #fbfaf7;
    --sn-card: #ffffff;

    --sn-text: #24303a;
    --sn-heading: #26303a;
    --sn-muted: #667085;

    --sn-border: #e7e2d6;
    --sn-border-light: #f0ebe1;

    --sn-gold: #c6a96c;
    --sn-danger: #dc3545;

    --sn-radius: 18px;
    --sn-shadow: 0 14px 40px rgba(31, 41, 51, 0.08);
    --sn-shadow-soft: 0 10px 28px rgba(31, 41, 51, 0.06);
}

/* =========================
   GLOBAL
========================= */

body,
.site-body {
    background: var(--sn-bg);
    color: var(--sn-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
}

.site-main {
    min-height: calc(100vh - 180px);
}

/* =========================
   HEADER / NAVBAR
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(231, 226, 214, 0.95);
    box-shadow: 0 10px 30px rgba(31, 41, 51, 0.04);
}

.site-navbar {
    min-height: 86px;
    padding: 10px 0;
}

.navbar-brand,
.site-logo {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar-brand img,
.site-logo img {
    height: 70px;
    width: auto;
    display: block;
}

.site-navbar-toggler {
    border: 1px solid var(--sn-border);
    border-radius: 12px;
    padding: 8px 10px;
}

.site-menu {
    gap: 6px;
}

.site-menu .nav-link,
.navbar .nav-link {
    position: relative;
    color: #2f3a3d;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.3px;
    padding: 10px 14px !important;
    margin-right: 0;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.site-menu .nav-link:hover,
.navbar .nav-link:hover {
    color: var(--sn-primary-dark);
    background: var(--sn-primary-soft);
}

.site-menu .nav-link.active,
.navbar .nav-link.active {
    color: var(--sn-primary-dark);
    background: var(--sn-primary-soft);
}

.site-menu .nav-link::after,
.navbar .nav-link::after {
    display: none;
}

.site-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-account-link {
    color: var(--sn-text);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.site-account-link:hover {
    color: var(--sn-primary-dark);
}

.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.site-btn-primary {
    background: var(--sn-primary);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(126, 136, 38, 0.24);
}

.site-btn-primary:hover {
    background: var(--sn-primary-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.site-btn-outline {
    border-color: var(--sn-border);
    color: var(--sn-text);
    background: #ffffff;
}

.site-btn-outline:hover {
    border-color: var(--sn-primary);
    color: var(--sn-primary-dark);
    background: var(--sn-primary-soft);
}

/* =========================
   BOOTSTRAP BUTTON OVERRIDES
========================= */

.btn {
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-success,
.btn-primary {
    background-color: var(--sn-primary) !important;
    border-color: var(--sn-primary) !important;
    color: #ffffff !important;
}

.btn-success:hover,
.btn-primary:hover {
    background-color: var(--sn-primary-dark) !important;
    border-color: var(--sn-primary-dark) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--sn-primary) !important;
    border-color: var(--sn-primary) !important;
}

.btn-outline-primary:hover {
    color: #ffffff !important;
    background-color: var(--sn-primary) !important;
    border-color: var(--sn-primary) !important;
}

.btn-outline-secondary {
    border-color: var(--sn-border);
    color: var(--sn-text);
}

.btn-outline-secondary:hover {
    background: var(--sn-primary-soft);
    color: var(--sn-primary-dark);
    border-color: var(--sn-primary);
}

/* =========================
   ALERTS
========================= */

.site-alert,
.alert {
    border: 0;
    border-radius: 14px;
    box-shadow: var(--sn-shadow-soft);
}

.alert-success {
    background: #f0f6df;
    color: var(--sn-primary-dark);
    border-left: 4px solid var(--sn-primary);
}

.alert-danger {
    background: #fff1f1;
    color: #b42318;
    border-left: 4px solid var(--sn-danger);
}

.alert-info {
    background: #eef7fb;
    color: #28556a;
    border-left: 4px solid #8fc4d8;
}

/* =========================
   CARDS / COMMON BLOCKS
========================= */

.card,
.booking-card {
    border: 1px solid var(--sn-border-light);
    border-radius: var(--sn-radius);
    background: var(--sn-card);
    box-shadow: var(--sn-shadow-soft);
    transition: all 0.25s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sn-shadow);
}

.booking-card {
    overflow: hidden;
}

.booking-block {
    position: relative;
    background: var(--sn-bg-light);
    border: 1px solid var(--sn-border);
    border-radius: 16px;
    padding: 18px;
}

.booking-block.border-danger {
    background: rgba(220, 53, 69, 0.04);
}

.conflict-msg {
    font-size: 0.95rem;
}

/* =========================
   PROGRESS
========================= */

.progress {
    height: 10px;
    background: #e9ecef;
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar {
    background: var(--sn-primary);
    border-radius: 999px;
}

/* =========================
   TIME SLOTS
========================= */

.time-slots .btn {
    background: #f0f1ea;
    color: var(--sn-text);
    border: 1px solid var(--sn-border);
    border-radius: 999px;
    padding: 9px 16px;
    font-weight: 600;
}

.time-slots .btn:hover {
    background: var(--sn-primary-soft);
    color: var(--sn-primary-dark);
    border-color: var(--sn-primary);
}

.time-slots .btn-primary {
    background: var(--sn-primary) !important;
    border-color: var(--sn-primary) !important;
    color: #ffffff !important;
}

.remove-block {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    padding: 0;
    font-weight: bold;
    line-height: 26px;
}

/* =========================
   GENERIC HERO SECTIONS
========================= */

.page-hero {
    height: 280px;
    background-image: url("/images/spa.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid var(--sn-border);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(31, 41, 51, 0.68),
            rgba(31, 41, 51, 0.34)
        );
}

.page-hero h1 {
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
    font-weight: 650;
}

.hero-section {
    min-height: 70vh;
    background: url('/images/spa.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(31, 41, 51, 0.72),
            rgba(31, 41, 51, 0.36)
        );
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 42px;
    font-weight: 650;
}

.hero .lead {
    font-size: 20px;
}

/* =========================
   CATEGORY / SERVICE CARDS
========================= */

.category-card {
    height: 220px;
    background: url('/images/spa.webp') center/cover no-repeat;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--sn-shadow-soft);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sn-shadow);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(31, 41, 51, 0.18),
            rgba(31, 41, 51, 0.68)
        );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #ffffff;
    font-weight: 650;
    font-size: 1.35rem;
    text-align: center;
    padding: 24px;
}

/* =========================
   THERAPISTS
========================= */

.therapist-card {
    transition: all 0.2s ease;
    border: 2px solid transparent;
    border-radius: 18px;
    background: #ffffff;
}

.therapist-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sn-shadow-soft);
}

.therapist-card.active {
    border: 2px solid var(--sn-primary);
    background: var(--sn-primary-soft);
}

/* =========================
   ADMIN / TABLE HELPERS
========================= */

.category-row {
    background: var(--sn-primary-soft);
    font-weight: 700;
}

.service-row {
    background: #ffffff;
}

.category-row:hover,
.service-row:hover {
    background: #f5f3eb;
}

.table {
    color: var(--sn-text);
}

.table thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #4b5563;
    background: #f7f7f2;
    border-color: var(--sn-border);
}

.table td {
    border-color: var(--sn-border);
}

/* =========================
   CLASSES / MANKŠTOS
========================= */

.class-slot-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border: 1px solid var(--sn-border);
    border-radius: 14px;
    margin-bottom: 10px;
    transition: 0.2s;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(31, 41, 51, 0.04);
}

.class-slot-row:hover {
    background: var(--sn-primary-soft);
    border-color: var(--sn-primary);
}

.slot-time {
    font-size: 18px;
    font-weight: 700;
    width: 70px;
    color: var(--sn-primary-dark);
}

.slot-info {
    flex: 1;
    color: var(--sn-muted);
}

.slot-action {
    width: 120px;
    text-align: right;
}

/* =========================
   HOME PAGE
========================= */

.home-hero {
    position: relative;
    min-height: 560px;
    background: url('/images/spa.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(31, 41, 51, 0.76) 0%,
            rgba(31, 41, 51, 0.52) 42%,
            rgba(31, 41, 51, 0.16) 100%
        );
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 80px 0;
    color: #ffffff;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--sn-primary-dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: clamp(38px, 4.5vw, 56px);
    line-height: 1.08;
    font-weight: 650;
    letter-spacing: -0.03em;
}

.home-hero p {
    max-width: 560px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.home-btn-primary {
    background: var(--sn-primary);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(126, 136, 38, 0.28);
}

.home-btn-primary:hover {
    background: var(--sn-primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.home-btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--sn-text);
}

.home-btn-light:hover {
    background: #ffffff;
    color: var(--sn-primary-dark);
    transform: translateY(-2px);
}

/* Home info bar */

.home-info-bar {
    position: relative;
    z-index: 3;
    background: var(--sn-primary);
    color: #ffffff;
}

.home-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.home-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.home-info-item:last-child {
    border-right: 0;
}

.home-info-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
}

.home-info-item span {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.home-info-item strong {
    display: block;
    font-size: 17px;
    color: #ffffff;
}

/* Home sections */

.home-section {
    padding: 76px 0;
}

.home-section-soft {
    background: var(--sn-bg-light);
    border-top: 1px solid var(--sn-border);
    border-bottom: 1px solid var(--sn-border);
}

.home-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.home-section-heading h2,
.home-gift-card h2,
.home-final-inner h2 {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.18;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--sn-heading);
}

.home-section-heading p,
.home-gift-card p {
    max-width: 560px;
    margin: 0;
    color: var(--sn-muted);
    font-size: 17px;
    line-height: 1.75;
}

.home-section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--sn-primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* Home service cards */

.home-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--sn-border-light);
    box-shadow: 0 14px 40px rgba(31, 41, 51, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

.home-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 4px;
    background: var(--sn-primary);
    border-radius: 0 0 999px 999px;
    opacity: 0;
    transition: all 0.25s ease;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 54px rgba(31, 41, 51, 0.12);
}

.home-service-card:hover::before {
    opacity: 1;
}

.home-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.home-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--sn-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sn-primary-dark);
    font-size: 24px;
}

.home-service-duration {
    padding: 7px 12px;
    border-radius: 999px;
    background: #f7f7f2;
    color: var(--sn-muted);
    font-size: 13px;
    font-weight: 700;
}

.home-service-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 650;
    color: var(--sn-heading);
}

.home-service-card p {
    margin-bottom: 24px;
    color: var(--sn-muted);
    line-height: 1.7;
}

.home-service-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--sn-border-light);
}

.home-service-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--sn-primary-dark);
}

.home-service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--sn-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.home-service-link:hover {
    background: var(--sn-primary-dark);
    color: #ffffff;
}

/* Home gift block */

.home-gift-section {
    padding: 20px 0 76px;
}

.home-gift-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 38px 48px;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5f2e8 100%
        );
    border: 1px solid var(--sn-border);
    box-shadow: var(--sn-shadow-soft);
}

.home-gift-card h2 {
    margin-bottom: 16px;
}

.home-gift-card p {
    max-width: 620px;
}

/* Home features */

.home-feature-card {
    height: 100%;
    padding: 30px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--sn-border-light);
    box-shadow: 0 12px 34px rgba(31, 41, 51, 0.05);
}

.home-feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: var(--sn-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.home-feature-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 650;
    color: var(--sn-heading);
}

.home-feature-card p {
    margin: 0;
    color: var(--sn-muted);
    line-height: 1.7;
}

/* Home final CTA */

.home-final-cta {
    padding: 76px 0 40px;
}

.home-final-inner {
    text-align: center;
    padding: 54px 28px;
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            var(--sn-primary-dark),
            var(--sn-primary)
        );
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(126, 136, 38, 0.28);
}

.home-final-inner h2 {
    margin-bottom: 10px;
    color: #ffffff;
}

.home-final-inner p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

.home-final-inner .home-btn-primary {
    background: #ffffff;
    color: var(--sn-primary-dark);
    box-shadow: none;
}

.home-final-inner .home-btn-primary:hover {
    background: var(--sn-primary-soft);
    color: var(--sn-primary-dark);
}

/* =========================
   FOOTER
========================= */

.site-footer {
    margin-top: 60px;
    padding: 30px 0;
    background: #ffffff;
    border-top: 1px solid var(--sn-border);
}

.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--sn-muted);
    font-size: 14px;
}

.site-footer-inner strong {
    display: block;
    color: var(--sn-text);
    margin-bottom: 4px;
}

.site-footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.site-footer-links a {
    color: var(--sn-muted);
    text-decoration: none;
}

.site-footer-links a:hover {
    color: var(--sn-primary-dark);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .site-navbar {
        min-height: auto;
    }

    .navbar-brand img,
    .site-logo img {
        height: 56px;
    }

    .navbar-collapse {
        padding: 18px 0 10px;
    }

    .site-menu {
        gap: 4px;
    }

    .site-menu .nav-link,
    .navbar .nav-link {
        padding: 12px 14px !important;
        border-radius: 12px;
    }

    .site-actions {
        margin-top: 14px;
        align-items: stretch;
        flex-direction: column;
    }

    .site-account-link,
    .site-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-section {
        min-height: 58vh;
    }

    .hero h1 {
        font-size: 34px;
    }

    .home-hero {
        min-height: 500px;
    }

    .home-info-grid {
        grid-template-columns: 1fr;
    }

    .home-info-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .home-info-item:last-child {
        border-bottom: 0;
    }

    .home-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-gift-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .page-hero {
        height: 220px;
    }

    .category-card {
        height: 180px;
    }

    .slot-action {
        width: auto;
    }

    .class-slot-row {
        align-items: flex-start;
        gap: 10px;
        flex-direction: column;
    }

    .home-hero {
        min-height: 520px;
    }

    .home-hero-content {
        padding: 64px 0;
    }

    .home-hero h1 {
        font-size: 36px;
    }

    .home-hero-actions {
        flex-direction: column;
    }

    .home-btn {
        width: 100%;
    }

    .home-info-item {
        padding: 24px 20px;
    }

    .home-section {
        padding: 56px 0;
    }

    .home-section-heading h2,
    .home-gift-card h2,
    .home-final-inner h2 {
        font-size: 30px;
    }

    .home-section-kicker {
        font-size: 13px;
        letter-spacing: 0.13em;
    }

    .home-gift-card {
        padding: 30px;
    }

    .home-service-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-service-link {
        width: 100%;
    }
}

/* =========================
   HOME SERVICE IMAGE
========================= */

.home-service-image {
    margin: -28px -28px 24px;
    height: 190px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    background: var(--sn-primary-soft);
}

.home-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.home-service-card:hover .home-service-image img {
    transform: scale(1.04);
}

.home-gift-section-top {
    padding-top: 76px;
}

.home-service-card h3 {
    margin-bottom: 0;
}

.home-service-image {
    height: 210px;
}

.home-service-bottom {
    margin-top: 22px;
}

.home-service-card .home-service-price {
    font-size: 20px;
}

/* =========================
   SERVICES CATEGORY PAGE
========================= */

.services-page {
    padding: 72px 0 90px;
    background: var(--sn-bg);
}

.services-page-header {
    max-width: 720px;
    margin-bottom: 42px;
}

.services-page-header h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 650;
    letter-spacing: -0.03em;
    color: var(--sn-heading);
}

.services-page-header p {
    margin: 0;
    color: var(--sn-muted);
    font-size: 17px;
    line-height: 1.7;
}

.service-category-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid var(--sn-border-light);
    box-shadow: var(--sn-shadow-soft);
    text-decoration: none;
    color: var(--sn-text);
    transition: all 0.25s ease;
}

.service-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sn-shadow);
    color: var(--sn-text);
}

.service-category-image {
    height: 230px;
    overflow: hidden;
    background: var(--sn-primary-soft);
}

.service-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.service-category-card:hover .service-category-image img {
    transform: scale(1.04);
}

.service-category-body {
    padding: 26px;
}

.service-category-body span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--sn-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-category-body h3 {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 650;
    color: var(--sn-heading);
}

.service-category-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--sn-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .services-page {
        padding: 50px 0 70px;
    }

    .service-category-image {
        height: 190px;
    }
}
/* =========================
   ACCOUNT / MY PAGE
========================= */

.account-page {
    padding: 48px 0 80px;
    background:
        radial-gradient(circle at top left, rgba(126, 136, 38, 0.07), transparent 32%),
        var(--sn-bg);
}

/* Header */

.account-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 30px;
}

.account-header h1 {
    margin: 0 0 8px;
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.1;
    font-weight: 650;
    letter-spacing: -0.03em;
    color: var(--sn-heading);
}

.account-header p {
    max-width: 560px;
    margin: 0;
    color: var(--sn-muted);
    font-size: 16px;
    line-height: 1.65;
}

.account-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

/* Layout */

.account-layout-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
    gap: 28px;
    align-items: start;
}

.account-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Cards */

.account-card {
    width: 100%;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--sn-border-light);
    box-shadow: var(--sn-shadow-soft);
}

.account-card:hover {
    transform: none;
}

.account-next-card {
    position: relative;
    overflow: hidden;
    min-height: unset !important;
    height: auto !important;
    align-self: start;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6f3e8 100%
        );
    border: 1px solid var(--sn-border);
}

.account-next-card::after {
    content: "";
    position: absolute;
    right: -82px;
    top: -82px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: rgba(126, 136, 38, 0.11);
    pointer-events: none;
}

.account-coupons-card {
    align-self: start;
}

/* Titles */

.account-card-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--sn-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.account-card h2,
.account-next-card h2 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 650;
    color: var(--sn-heading);
}

.account-next-card h2 {
    max-width: 92%;
}

.account-next-card h2 span {
    color: var(--sn-muted);
    font-size: 16px;
    font-weight: 600;
}

.account-next-card p {
    max-width: 92%;
    margin: 0;
    color: var(--sn-muted);
    line-height: 1.65;
}

.account-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.account-card-title h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 650;
    color: var(--sn-heading);
}

/* Next booking */

.account-next-date {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--sn-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(126, 136, 38, 0.2);
}

.account-next-actions {
    margin-top: 20px;
}

.account-small-link {
    color: var(--sn-primary-dark);
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
}

.account-small-link:hover {
    color: var(--sn-primary);
}

/* Sections */

.account-section-mini {
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid var(--sn-border-light);
}

.account-section-mini:first-of-type {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}

.account-section-last {
    padding-bottom: 0;
}

.account-section-mini h3 {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 750;
    color: var(--sn-heading);
}

/* Lists */

.account-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-list-compact {
    gap: 8px;
}

.account-list-item,
.account-booking-item {
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--sn-bg-light);
    border: 1px solid var(--sn-border-light);
}

.account-list-compact .account-list-item {
    padding: 12px 14px;
}

.account-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.account-list-item strong,
.account-booking-item strong {
    color: var(--sn-heading);
    font-weight: 750;
}

.account-muted {
    margin-top: 3px;
    color: var(--sn-muted);
    font-size: 13px;
    line-height: 1.45;
}

.account-code {
    margin-top: 4px;
    color: var(--sn-heading);
    font-size: 13px;
    font-weight: 800;
}

.account-empty {
    padding: 15px 16px;
    border-radius: 16px;
    background: var(--sn-bg-light);
    color: var(--sn-muted);
    border: 1px dashed var(--sn-border);
}

/* Badges */

.account-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.account-badge-success {
    background: #edf7e7;
    color: #3f6f1d;
}

.account-badge-muted {
    background: #f1f1f1;
    color: #6b7280;
}

.account-badge-danger {
    background: #fff0f0;
    color: #b42318;
}

.account-badge-warning {
    background: #fff7df;
    color: #8a6200;
}

/* Booking rows */

.account-booking-item {
    padding: 16px;
}

.account-booking-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.account-booking-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

/* Buttons */

.account-outline-btn,
.account-danger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.account-outline-btn {
    color: var(--sn-primary-dark);
    border-color: var(--sn-primary);
    background: #ffffff;
}

.account-outline-btn:hover {
    color: #ffffff;
    background: var(--sn-primary);
}

.account-danger-btn {
    color: #b42318;
    border-color: #ffc7c2;
    background: #ffffff;
}

.account-danger-btn:hover {
    color: #ffffff;
    background: #dc3545;
    border-color: #dc3545;
}

/* Responsive */

@media (max-width: 1199px) {
    .account-layout-grid {
        grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.05fr);
        gap: 22px;
    }

    .account-column {
        gap: 22px;
    }
}

@media (max-width: 991px) {
    .account-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-header-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .account-layout-grid {
        grid-template-columns: 1fr;
    }

    .account-next-card h2,
    .account-next-card p {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .account-page {
        padding: 42px 0 64px;
    }

    .account-card,
    .account-next-card {
        padding: 20px;
        border-radius: 22px;
    }

    .account-header-actions .site-btn,
    .account-outline-btn,
    .account-danger-btn {
        width: 100%;
    }

    .account-list-item,
    .account-booking-main {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-booking-actions {
        justify-content: stretch;
    }

    .account-booking-actions a {
        width: 100%;
    }
}
/* =========================
   GDPR / COOKIE CONSENT
========================= */

.sn-cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
}

.sn-cookie-box {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #ffffff;
    border: 1px solid var(--sn-border);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(31, 41, 51, 0.18);
}

.sn-cookie-content h5 {
    margin: 0 0 8px;
    color: var(--sn-heading);
    font-weight: 800;
}

.sn-cookie-content p {
    margin: 0;
    max-width: 760px;
    color: var(--sn-muted);
    line-height: 1.55;
    font-size: 14px;
}

.sn-cookie-links {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.sn-cookie-links a {
    color: var(--sn-primary-dark);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.sn-cookie-links a:hover {
    color: var(--sn-primary);
}

.sn-cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.sn-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sn-cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.sn-cookie-modal-card {
    position: relative;
    width: min(720px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--sn-border);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
}

.sn-cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--sn-border-light);
}

.sn-cookie-modal-header h4 {
    margin: 0;
    font-weight: 850;
    color: var(--sn-heading);
}

.sn-cookie-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: var(--sn-primary-soft);
    color: var(--sn-primary-dark);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.sn-cookie-modal-body {
    padding: 8px 24px;
}

.sn-cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 20px 0;
    border-bottom: 1px solid var(--sn-border-light);
}

.sn-cookie-option:last-child {
    border-bottom: 0;
}

.sn-cookie-option strong {
    display: block;
    margin-bottom: 6px;
    color: var(--sn-heading);
    font-size: 16px;
}

.sn-cookie-option p {
    margin: 0;
    color: var(--sn-muted);
    font-size: 14px;
    line-height: 1.55;
}

.sn-cookie-switch {
    position: relative;
    width: 56px;
    height: 32px;
    flex: 0 0 56px;
}

.sn-cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sn-cookie-switch span {
    position: absolute;
    inset: 0;
    cursor: pointer;
    border-radius: 999px;
    background: #d1d5db;
    transition: 0.2s;
}

.sn-cookie-switch span::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: #ffffff;
    transition: 0.2s;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
}

.sn-cookie-switch input:checked + span {
    background: var(--sn-primary);
}

.sn-cookie-switch input:checked + span::before {
    transform: translateX(24px);
}

.sn-cookie-switch input:disabled + span {
    cursor: not-allowed;
    opacity: 0.85;
}

.sn-cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 24px 24px;
    border-top: 1px solid var(--sn-border-light);
}

@media (max-width: 768px) {
    .sn-cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .sn-cookie-box {
        align-items: stretch;
        flex-direction: column;
        padding: 18px;
        border-radius: 20px;
    }

    .sn-cookie-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .sn-cookie-actions .btn {
        width: 100%;
    }

    .sn-cookie-option {
        align-items: flex-start;
    }

    .sn-cookie-modal-footer {
        flex-direction: column;
    }

    .sn-cookie-modal-footer .btn {
        width: 100%;
    }
}
