/* ============================================
   Moe's Barber - Premium Lifestyle Brand
   Dark & Premium Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --bg-card: #222222;
    --bg-card-hover: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #777777;
    --gold: #C9A96E;
    --gold-light: #e0c992;
    --gold-dark: #a8893d;
    --navy: #1B3A6B;
    --red: #C41E3A;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --nav-height: 80px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    overflow-x: hidden;
    min-width: 100%;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 100%;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.loaded {
    opacity: 1;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    letter-spacing: 0.02em;
}

.section-line {
    width: 0;
    height: 2px;
    background: var(--gold);
    margin: 16px auto 48px;
    transition: width 0.8s ease 0.2s;
}

.section-line.visible {
    width: 60px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-top: -24px;
    margin-bottom: 48px;
}

.section {
    padding: 100px 0;
    overflow-x: hidden;
}

/* --- SVG Star Icon --- */
.star-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    display: inline-block;
    vertical-align: middle;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-logo img {
    height: 34px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: height var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    text-shadow: 0 0 12px rgba(201, 169, 110, 0.4);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-flag {
    width: 16px;
    height: 11px;
    border-radius: 1px;
    flex-shrink: 0;
    opacity: 0.45;
    filter: grayscale(0.6) brightness(1.2);
    transition: all var(--transition);
}

.lang-toggle:hover .lang-flag {
    opacity: 1;
    filter: grayscale(0) brightness(1);
}

.lang-divider {
    color: var(--text-muted);
}

.lang-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lang-active {
    color: var(--gold);
}

.lang-inactive {
    color: var(--text-muted);
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO - Cinematic Slideshow
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurns 7s ease-in-out forwards;
}

@keyframes kenBurns {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.12); }
}

/* Alternate Ken Burns directions */
.hero-slide:nth-child(2) img { animation-name: kenBurns2; }
.hero-slide:nth-child(3) img { animation-name: kenBurns3; }
.hero-slide:nth-child(4) img { animation-name: kenBurns4; }
.hero-slide:nth-child(5) img { animation-name: kenBurns5; }

@keyframes kenBurns2 {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.12) translate(-2%, 0); }
}

@keyframes kenBurns3 {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.12) translate(0, -2%); }
}

@keyframes kenBurns4 {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.12) translate(2%, -1%); }
}

@keyframes kenBurns5 {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1%, 1%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.75) 0%,
        rgba(13, 13, 13, 0.55) 40%,
        rgba(13, 13, 13, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-heading {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.hero-logo {
    max-width: 380px;
    margin: 0 auto 40px;
}

/* Tagline rotation */
.hero-taglines {
    position: relative;
    height: 40px;
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-tagline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-tagline.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.stats-strip-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 24px;
}

.stats-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stats-strip-number {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.stats-strip-item .star-icon {
    width: 18px;
    height: 18px;
}

.stats-strip-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.stats-strip-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

/* ============================================
   GALLERY SLIDESHOW
   ============================================ */
.gallery {
    background: var(--bg-primary);
}

.gallery-slideshow-wrapper {
    position: relative;
    max-width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 700px;
    display: flex;
    align-items: center;
}

.gallery-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.6) 0%, transparent 40%);
    pointer-events: none;
}

.gallery-slide-caption {
    position: absolute;
    bottom: 32px;
    left: 48px;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.03em;
    z-index: 1;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(13, 13, 13, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-primary);
}

.gallery-arrow:hover {
    background: rgba(201, 169, 110, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-arrow svg {
    width: 22px;
    height: 22px;
}

.gallery-arrow-left {
    left: 24px;
}

.gallery-arrow-right {
    right: 24px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-bottom: 16px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.gallery-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.gallery-follow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all var(--transition);
}

.gallery-follow svg {
    width: 20px;
    height: 20px;
}

.gallery-follow:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* ============================================
   REELS
   ============================================ */
.reels {
    background: var(--bg-secondary);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.reel-embed {
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: none;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    background: var(--bg-secondary);
}

.price-group {
    margin-bottom: 60px;
}

.price-group:last-of-type {
    margin-bottom: 40px;
}

.price-group-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.price-group-names {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    transition: all var(--transition);
}

.price-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.price-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 169, 110, 0.08) 100%);
}

.price-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-primary);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.duration {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.services-cta {
    text-align: center;
    margin-top: 20px;
}

/* ============================================
   TEAM
   ============================================ */
.team {
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 40px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all var(--transition);
}

.team-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.team-card:hover .team-avatar img {
    transform: scale(1.08);
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 600;
}

.team-role {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-quote {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 12px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    background: var(--bg-secondary);
}

.reviews-badge {
    text-align: center;
    margin-bottom: 48px;
}

.reviews-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.reviews-stars .star-icon {
    width: 24px;
    height: 24px;
}

.reviews-score {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.reviews-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Carousel wrapper with arrows */
.reviews-carousel-wrapper {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-secondary);
}

.carousel-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

.reviews-carousel {
    position: relative;
    flex: 1;
    min-height: 200px;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

/* Decorative quotation mark */
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
}

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.review-author {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.review-source {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.review-stars .star-icon {
    width: 16px;
    height: 16px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.contact-item h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--gold);
}

.contact-item p,
.contact-item a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--gold-light);
}

.contact-socials {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    border: 1px solid var(--border);
}

.contact-map iframe {
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    flex-shrink: 0;
}

.footer-logo-img {
    height: auto;
    width: 120px;
}

.footer-center {
    text-align: center;
}

.footer-center > p {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-bottom: 2px;
}

.footer-privacy a {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-privacy a:hover {
    color: var(--gold);
}

.footer-watermark {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.4;
    transition: opacity var(--transition);
}

.footer-watermark:hover {
    opacity: 1;
}

.footer-watermark a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-watermark a:hover {
    color: var(--gold);
}

.footer-right {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.footer-right a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all var(--transition);
}

.footer-right a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-right svg {
    width: 15px;
    height: 15px;
}

@media (max-width: 600px) {
    .footer-row {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-right {
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS (scroll reveal)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid children */
.price-card.reveal:nth-child(1) { transition-delay: 0s; }
.price-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.price-card.reveal:nth-child(3) { transition-delay: 0.3s; }

.team-card.reveal:nth-child(1) { transition-delay: 0s; }
.team-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.team-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.team-card.reveal:nth-child(4) { transition-delay: 0.3s; }

.reel-card.reveal:nth-child(1) { transition-delay: 0s; }
.reel-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.reel-card.reveal:nth-child(3) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-size: 1.25rem;
        letter-spacing: 0.08em;
    }

    .nav-actions {
        gap: 12px;
    }

    .nav-actions .btn-nav {
        display: none;
    }

    .nav-menu.active ~ .nav-actions .btn-nav {
        display: inline-flex;
        position: fixed;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        padding: 14px 40px;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .gallery-slideshow-wrapper {
        height: 50vh;
        min-height: 300px;
    }

    .gallery-slide-caption {
        left: 24px;
        bottom: 24px;
    }

    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }

    .reels-grid .reel-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }

    .price-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }

    .carousel-arrow {
        display: none;
    }

    .reviews-carousel-wrapper {
        padding: 0;
    }

    .stats-strip-inner {
        gap: 24px;
    }

    .section-line {
        margin-bottom: 36px;
    }

    .section-subtitle {
        margin-bottom: 36px;
    }

    .back-to-top {
        bottom: 80px;
    }
}

@media (max-width: 600px) {
    :root {
        --nav-height: 64px;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 100svh;
        min-height: 500px;
    }

    .hero-logo {
        max-width: 220px;
        margin-bottom: 28px;
    }

    .hero-taglines {
        height: 32px;
        margin-bottom: 28px;
    }

    .nav-logo img {
        height: 36px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-ctas .btn-lg {
        padding: 14px 32px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .scroll-indicator {
        bottom: 16px;
    }

    .scroll-arrow {
        width: 18px;
        height: 18px;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .gallery-arrow-left { left: 12px; }
    .gallery-arrow-right { right: 12px; }

    .gallery-slide-caption {
        left: 16px;
        bottom: 16px;
    }

    .stats-strip {
        padding: 20px 0;
    }

    .stats-strip-inner {
        flex-direction: column;
        gap: 10px;
    }

    .stats-strip-divider {
        width: 40px;
        height: 1px;
    }

    .stats-strip-number {
        font-size: 1.15rem;
    }

    .stats-strip-label {
        font-size: 0.78rem;
    }

    .reels-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .reels-grid .reel-card:last-child {
        max-width: 100%;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .section-line {
        margin-bottom: 28px;
    }

    .section-subtitle {
        margin-top: -16px;
        margin-bottom: 28px;
        font-size: 0.95rem;
    }

    .price-group {
        margin-bottom: 40px;
    }

    .price-group-title {
        font-size: 1.3rem;
    }

    .price-card {
        padding: 28px 20px;
    }

    .price {
        font-size: 1.9rem;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .team-card {
        padding: 20px 10px;
    }

    .team-avatar {
        width: 64px;
        height: 64px;
        margin-bottom: 14px;
    }

    .team-card h4 {
        font-size: 0.95rem;
    }

    .team-role {
        font-size: 0.75rem;
    }

    .team-quote {
        font-size: 0.78rem;
        margin-top: 8px;
    }

    .reviews-badge {
        margin-bottom: 32px;
    }

    .review-card {
        padding: 24px 16px;
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .review-card::before {
        font-size: 4rem;
        top: 8px;
        left: 12px;
    }

    .contact-item {
        margin-bottom: 22px;
    }

    .contact-map {
        height: 250px;
    }

    .footer {
        padding: 32px 0 20px;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 74px;
        right: 16px;
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
    }

}

/* Mobile menu overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
    overflow: hidden;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-text {
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding-right: 60px;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   REEL CARDS (replaces broken embeds)
   ============================================ */
.reel-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.reel-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reel-card:hover img {
    transform: scale(1.05);
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.reel-card:hover .reel-overlay {
    opacity: 1;
}

.reel-play {
    width: 56px;
    height: 56px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

/* ============================================
   TEAM - Redesigned with Initials
   ============================================ */
.team-initial {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0.85;
    transition: all var(--transition);
}

.team-card:hover .team-initial {
    opacity: 1;
    background: rgba(201, 169, 110, 0.1);
    transform: scale(1.05);
}

.team-divider {
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 16px auto;
    opacity: 0.3;
}

/* ============================================
   HERO GRAIN OVERLAY
   ============================================ */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(201, 169, 110, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   DARK MAP
   ============================================ */
.contact-map iframe {
    filter: invert(90%) hue-rotate(180deg) saturate(0.3) brightness(0.9);
}

/* ============================================
   SELECTION STYLING
   ============================================ */

/* ============================================
   CUSTOM CHAT WIDGET — Messenger Style
   ============================================ */

/* --- Teaser bubble --- */
.moes-chat-teaser {
    position: fixed;
    bottom: 90px;
    right: 24px;
    background: #1a1a1a;
    color: #f0f0f0;
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 10px 32px 10px 14px;
    border-radius: 20px 20px 4px 20px;
    border: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    max-width: 240px;
    animation: teaserPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}
.moes-chat-teaser.hidden { display: none; }
@keyframes teaserPop {
    from { opacity: 0; transform: translateY(10px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.moes-chat-teaser::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #1a1a1a;
    transform: rotate(45deg);
}
.moes-chat-teaser-close {
    position: absolute;
    top: 4px;
    right: 8px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 2px;
    line-height: 1;
}
.moes-chat-teaser-close:hover { color: #fff; }

/* --- Toggle button (FAB) --- */
.moes-chat-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
    transition: all 0.3s ease;
}
.moes-chat-toggle:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201, 169, 110, 0.5); }
.moes-chat-toggle svg { width: 24px; height: 24px; color: var(--bg-primary); }
.moes-chat-toggle.hidden { display: none; }

/* --- Chat window --- */
.moes-chat-window {
    position: fixed; bottom: 24px; right: 24px;
    width: 375px; height: 520px;
    background: #0a0a0a;
    border: none;
    border-radius: 12px;
    display: none; flex-direction: column;
    overflow: hidden; z-index: 1001;
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255,255,255,0.06);
    animation: chatSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.moes-chat-window.open { display: flex; }
@keyframes chatSlideUp {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Header (Messenger style) --- */
.moes-chat-header {
    display: flex; align-items: center;
    padding: 14px 16px;
    background: #111111;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 12px;
}
.moes-chat-logo { display: none; }
.moes-chat-header-avatar {
    position: relative;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #2a2a2a;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.moes-chat-header-avatar svg { width: 22px; height: 22px; color: #999; }
.moes-chat-header-avatar::after {
    content: '';
    position: absolute; bottom: 1px; right: 1px;
    width: 10px; height: 10px;
    background: #31a24c;
    border-radius: 50%;
    border: 2px solid #111111;
}
.moes-chat-header-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.moes-chat-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #f0f0f0;
    font-weight: 700;
    line-height: 1.2;
}
.moes-chat-status {
    font-size: 0.7rem;
    color: #31a24c;
    display: flex; align-items: center; gap: 0;
}
.moes-chat-status::before { display: none; }
.moes-chat-close {
    background: none; border: none;
    cursor: pointer; color: #666;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.2s;
}
.moes-chat-close:hover { color: #f0f0f0; background: rgba(255,255,255,0.08); }
.moes-chat-close svg { width: 20px; height: 20px; }

/* --- Chat body --- */
.moes-chat-body {
    flex: 1; overflow-y: auto;
    padding: 16px 12px;
    display: flex; flex-direction: column; gap: 6px;
    background: #0a0a0a;
    scrollbar-width: none;
}
.moes-chat-body::-webkit-scrollbar { display: none; }

/* --- Messages --- */
.moes-msg {
    display: flex; align-items: flex-end; gap: 8px;
    max-width: 80%;
    animation: msgFadeIn 0.25s ease;
}
@keyframes msgFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.moes-msg-bot { align-self: flex-start; }
.moes-msg-user { align-self: flex-end; flex-direction: row-reverse; }

/* --- Avatar in messages --- */
.moes-msg-avatar-wrap {
    flex-shrink: 0; align-self: flex-end;
}
.moes-msg-avatar-circle {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #2a2a2a;
    color: #999;
    display: flex; align-items: center; justify-content: center;
}
.moes-msg-avatar-circle svg { width: 15px; height: 15px; }

/* --- Message content --- */
.moes-msg-content {
    display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.moes-msg-name {
    font-size: 0.68rem;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding-left: 12px;
    margin-bottom: 1px;
}

/* --- Message bubbles (Messenger style) --- */
.moes-msg-bubble {
    padding: 8px 12px;
    font-size: 0.9rem;
    line-height: 1.45;
    word-wrap: break-word;
}
.moes-msg-bot .moes-msg-bubble {
    background: #1a1a1a;
    color: #e8e8e8;
    border-radius: 18px 18px 18px 4px;
    border: none;
}
.moes-msg-user .moes-msg-bubble {
    background: var(--gold);
    color: #0a0a0a;
    border-radius: 18px 18px 4px 18px;
    font-weight: 500;
}

/* --- Typing indicator --- */
.moes-typing {
    display: flex; align-items: flex-end; gap: 8px;
    align-self: flex-start; max-width: 80%;
}
.moes-typing-dots {
    display: flex; gap: 4px;
    padding: 10px 16px;
    background: #1a1a1a;
    border: none;
    border-radius: 18px 18px 18px 4px;
}
.moes-typing-dots span {
    width: 6px; height: 6px;
    background: #555;
    border-radius: 50%;
    animation: typingBounce 1.2s infinite;
}
.moes-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.moes-typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }

/* --- Input area --- */
.moes-chat-input-area {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px;
    background: #111111;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.moes-chat-input {
    flex: 1;
    padding: 10px 16px;
    background: #1a1a1a;
    border: none;
    border-radius: 20px;
    color: #f0f0f0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: background 0.2s;
}
.moes-chat-input::placeholder { color: #666; }
.moes-chat-input:focus { background: #222; }
.moes-chat-send {
    width: 36px; height: 36px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
.moes-chat-send:hover { background: var(--gold-light); transform: scale(1.08); }
.moes-chat-send svg { width: 15px; height: 15px; color: #0a0a0a; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .moes-chat-window { width: calc(100vw - 24px); max-width: 375px; height: 60vh; max-height: 480px; bottom: 16px; right: 12px; }
    .moes-chat-toggle { bottom: 16px; right: 16px; width: 50px; height: 50px; }
    .moes-chat-toggle svg { width: 22px; height: 22px; }
    .moes-chat-teaser { bottom: 76px; right: 16px; max-width: 240px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
    .moes-chat-window { width: calc(100vw - 16px); max-width: none; height: 55vh; max-height: 420px; bottom: 8px; right: 8px; }
    .moes-chat-toggle { bottom: 12px; right: 12px; width: 48px; height: 48px; }
    .moes-chat-teaser { bottom: 70px; right: 12px; max-width: 220px; font-size: 0.8rem; }
}


/* ============================================
   COOKIE CONSENT BANNER (Clinic Copenhagen pattern)
   ============================================ */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 9998;
    background: var(--bg-secondary, #111);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.cookie-banner-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
}

.cookie-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary, #fff);
}

.cookie-text {
    font-size: 0.88rem;
    color: var(--text-secondary, #a0a0a0);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cookie-btn {
    padding: 0.85rem 1.4rem;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    width: 100%;
}

.cookie-accept {
    background: var(--gold);
    color: var(--bg-primary, #0a0a0a);
    border: none;
    font-size: 0.95rem;
}

.cookie-accept:hover {
    filter: brightness(1.1);
}

.cookie-settings-btn {
    background: transparent;
    color: var(--text-muted, #5a5a5a);
    border: none;
    font-size: 0.78rem;
    font-weight: 400;
    text-decoration: underline;
    padding: 0.5rem;
}

.cookie-settings-btn:hover {
    color: var(--text-secondary, #a0a0a0);
}

.cookie-settings {
    display: none;
    text-align: left;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.cookie-settings.visible {
    display: block;
}

.cookie-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.cookie-setting-label {
    font-size: 0.85rem;
    color: var(--text-primary, #fff);
}

.cookie-setting-desc {
    font-size: 0.75rem;
    color: var(--text-muted, #5a5a5a);
}

.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    flex-shrink: 0;
}

.cookie-toggle.active {
    background: var(--gold);
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.cookie-toggle.active::after {
    transform: translateX(20px);
}

.cookie-toggle.locked {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-save-btn {
    margin-top: 1rem;
    padding: 0.7rem 1.4rem;
    background: var(--gold);
    color: var(--bg-primary, #0a0a0a);
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background var(--transition);
}

.cookie-save-btn:hover {
    filter: brightness(1.1);
}

/* ============================================
   AI DISCLOSURE LABEL (EU AI Act)
   ============================================ */
.moes-chat-ai-label {
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 0.03em;
    line-height: 1;
}

/* ============================================
   FOOTER PRIVACY LINK
   ============================================ */
.footer-privacy {
    font-size: 0.8rem;
    margin-top: 4px;
}

.footer-privacy a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-privacy a:hover {
    color: var(--gold);
}

::selection {
    background: rgba(201, 169, 110, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(201, 169, 110, 0.3);
    color: var(--text-primary);
}
