/* ==========================================================================
   BODYLINE LANDING DESIGN SYSTEM (MINIMALIST PREMIUM STYLE)
   ========================================================================== */

/* Variables and Tokens */
:root {
    /* Color Palette */
    --bg-darker: #060708;
    --bg-dark: #0c0d0f;
    --bg-card: rgba(12, 13, 15, 0.45);
    --bg-card-highlight: rgba(197, 160, 89, 0.03);
    
    --accent: #C5A059;       /* Muted Champagne Gold / Brass */
    --accent-glow: rgba(197, 160, 89, 0.15);
    --accent-hover: #d4b373;
    
    --text-primary: #ffffff;
    --text-secondary: #9ea3b0;
    --text-muted: #535763;
    
    --border-color: rgba(255, 255, 255, 0.04);
    --border-color-hover: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(197, 160, 89, 0.25);

    /* Typography */
    --font-heading: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
}

/* Base Styles & Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Typography Defaults */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

p {
    color: var(--text-secondary);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.w-full { width: 100%; }
.mt-4 { margin-top: 24px; }
.my-4 { margin-top: 24px; margin-bottom: 24px; }
.py-4 { padding-top: 24px; padding-bottom: 24px; }
.py-5 { padding-top: 48px; padding-bottom: 48px; }
.px-4 { padding-left: 24px; padding-right: 24px; }
.px-5 { padding-left: 48px; padding-right: 48px; }
.mb-1 { margin-bottom: 8px; }
.font-sm { font-size: 0.875rem; }

/* Grid Systems */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.glass-panel:hover {
    border-color: var(--border-color-hover);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    padding: 14px 28px;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-primary);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 0.9rem;
}

.btn-xs {
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 4px;
}

.btn-icon {
    gap: 8px;
}

.btn-icon svg {
    width: 16px;
    height: 16px;
}

.btn-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-link:hover {
    color: var(--accent-hover);
    transform: translateX(4px);
}

/* Form Inputs */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 16px;
}

.col-6 {
    flex: 1;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 14px 16px;
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23626875' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-error {
    font-size: 0.75rem;
    color: #ff4d4d;
    margin-top: 4px;
    display: none;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(8, 9, 11, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 20px 0;
}

.site-header.scrolled {
    background: rgba(8, 9, 11, 0.95);
    padding: 12px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}

.accent-dot {
    color: var(--accent);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background-color: var(--bg-darker);
    border-left: 1px solid var(--border-color);
    z-index: 101;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

.drawer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-darker);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(8, 9, 11, 0.55) 0%, var(--bg-darker) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 60px;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 24px;
    border: 1px solid var(--border-accent);
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(229, 184, 0, 0.05);
}

.hero-title {
    font-size: 4rem;
    line-height: 0.95;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

.hero-stats-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
    max-width: 100%;
    margin-top: 48px;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.stat-tile {
    position: relative;
    background: rgba(8, 9, 11, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 24px;
    min-height: 160px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.35), transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-tile:hover {
    background: rgba(19, 21, 26, 0.5);
    border-color: rgba(197, 160, 89, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(197, 160, 89, 0.04);
    transform: translateY(-4px);
}

.stat-tile:hover::before {
    transform: scaleX(1);
}

.tile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
    margin-bottom: 16px;
}

.stat-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-tile:hover .stat-icon-wrapper {
    background: rgba(197, 160, 89, 0.12);
    border-color: rgba(197, 160, 89, 0.35);
    transform: scale(1.05);
}

.stat-svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.tile-badge-online {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #00b050;
    background: rgba(0, 176, 80, 0.07);
    border: 1px solid rgba(0, 176, 80, 0.18);
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.08em;
}

.pulse-dot {
    width: 5px;
    height: 5px;
    background-color: #00b050;
    border-radius: 50%;
    display: inline-block;
    animation: pulseGreen 1.8s infinite ease-in-out;
}

@keyframes pulseGreen {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 6px rgba(0, 176, 80, 0.7); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.stat-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* Cycling directions typography */
.cycling-text-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-label-title {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.cycling-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffd88a;
    letter-spacing: 0.06em;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    margin-top: 2px;
}

.cycling-text.fade-out {
    opacity: 0;
    transform: translateY(-4px);
}

.cycling-text.fade-in {
    opacity: 0;
    transform: translateY(4px);
}

/* Capacity dots design */
.capacity-dots {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}

.cap-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.cap-dot.active {
    background: var(--accent);
    box-shadow: 0 0 5px rgba(197, 160, 89, 0.3);
    border-color: rgba(197, 160, 89, 0.15);
}

.cap-dot.pulsing {
    background: var(--accent);
    animation: dotPulse 1.6s infinite ease-in-out;
}

@keyframes dotPulse {
    0% { transform: scale(1); opacity: 0.4; box-shadow: 0 0 0 rgba(197, 160, 89, 0); }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 6px rgba(197, 160, 89, 0.65); }
    100% { transform: scale(1); opacity: 0.4; box-shadow: 0 0 0 rgba(197, 160, 89, 0); }
}

/* ECG Graph Simulation */
.ecg-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 32px;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.6;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    transition: opacity 0.3s ease;
}

.stat-tile:hover .ecg-container {
    opacity: 0.95;
}

.ecg-line {
    width: 100%;
    height: 100%;
}

.ecg-line path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: ecgScroll 3.5s linear infinite;
}

@keyframes ecgScroll {
    to {
        stroke-dashoffset: 0;
    }
}

.heart-svg-pulse {
    fill: rgba(197, 160, 89, 0.06);
    animation: statHeartBeat 1.4s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes statHeartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.2); }
    28% { transform: scale(1); }
    42% { transform: scale(1.2); }
    70% { transform: scale(1); }
}

@media (max-width: 992px) {
    .hero-stats-panel {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .hero-stats-panel {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 36px;
    }
    .stat-tile {
        min-height: 140px;
        padding: 20px;
    }
}

/* Sections Common Header */
.section-header {
    margin-bottom: 60px;
}

.section-header.align-center {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.05rem;
    max-width: 550px;
}

@media (max-width: 768px) {
    .section-header.split { flex-direction: column; align-items: flex-start; }
    .section-title { font-size: 2rem; }
}

/* Promotions Section */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.promo-card {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.promo-card.highlight {
    border-color: var(--border-accent);
    background: var(--bg-card-highlight);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
}

.promo-card.highlight::before {
    background: var(--accent);
}

.promo-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: var(--border-color);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.promo-badge.accent {
    background-color: var(--accent);
    color: var(--text-primary);
}

.promo-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.promo-description {
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .promo-grid { grid-template-columns: 1fr; }
    .promo-card { padding: 32px; }
}

/* Schedule Section */
.filter-controls {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--accent);
    color: var(--text-primary);
    background: rgba(229, 184, 0, 0.05);
}

.day-selector-wrapper {
    margin-top: 32px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    overflow-x: auto;
}

.day-selector {
    display: flex;
    justify-content: space-between;
    min-width: 600px;
}

.day-tab {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 24px;
    cursor: pointer;
    position: relative;
    opacity: 0.5;
    transition: var(--transition);
}

.day-tab span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.day-tab small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.day-tab:hover {
    opacity: 0.8;
}

.day-tab.active {
    opacity: 1;
}

.day-tab.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

.schedule-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .schedule-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .schedule-grid { grid-template-columns: 1fr; }
}

.schedule-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-height: 220px;
}

.schedule-card.booked {
    border-color: var(--border-accent);
    background: var(--bg-card-highlight);
}

.sched-time {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}

.sched-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.sched-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.sched-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sched-level {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* Trainers Section */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.trainer-card {
    display: flex;
    overflow: hidden;
    padding: 0;
}

.trainer-image-container {
    flex: 2;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.trainer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.trainer-card:hover .trainer-img {
    transform: scale(1.05);
}

.trainer-info {
    flex: 3;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trainer-name {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.trainer-spec {
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.trainer-bio {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.trainer-stats {
    display: flex;
    gap: 24px;
}

.t-stat {
    display: flex;
    flex-direction: column;
}

.t-stat strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-primary);
}

.t-stat span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .trainers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .trainer-card { flex-direction: column; }
    .trainer-image-container { min-height: 220px; }
}

/* Tariffs Section */
.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tariff-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 100%;
}

.tariff-card.highlight {
    border-color: var(--border-accent);
    background: var(--bg-card-highlight);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    background-color: var(--accent);
    color: var(--text-primary);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tariff-header {
    margin-bottom: 32px;
}

.tariff-name {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.tariff-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.price-val {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    margin-left: 4px;
    color: var(--text-secondary);
}

.tariff-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tariff-features {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tariff-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tariff-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.cross-icon {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .tariffs-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
}

/* Booking Section Form */
.booking-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    padding: 60px;
}

.booking-main-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    margin-top: 12px;
}

.booking-desc {
    font-size: 1rem;
    margin-bottom: 40px;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.b-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(229, 184, 0, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
}

.booking-form-block {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .booking-container { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
    .booking-form-block { padding: 24px; }
}

/* Site Footer */
.site-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 60px;
}

.footer-desc {
    margin-top: 16px;
    margin-bottom: 32px;
    max-width: 350px;
    font-size: 0.9rem;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

.footer-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-hours {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-hours li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
}

.footer-hours li strong {
    color: var(--text-primary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copy-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
}

/* Modals System */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    z-index: 2;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.75rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-view.hidden {
    display: none;
}

.modal-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Personal Cabinet Styles */
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.profile-phone {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.status-card {
    padding: 20px;
    border-color: var(--border-accent);
    background: var(--bg-card-highlight);
    margin-bottom: 24px;
}

.status-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.status-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.status-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
}

.status-badge.active {
    background-color: var(--accent);
    color: var(--text-primary);
}

.status-name {
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
}

.detail-label {
    color: var(--text-secondary);
}

/* Custom QR simulation */
.qr-entry-section {
    text-align: center;
    margin-bottom: 28px;
}

.qr-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.qr-code-placeholder {
    display: inline-block;
    background: #ffffff;
    padding: 12px;
    border-radius: 6px;
}

.qr-sim {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.qr-row {
    display: flex;
    gap: 3px;
}

.qr-row span {
    width: 6px;
    height: 6px;
    background-color: transparent;
}

.qr-row span.dark {
    background-color: #000000;
}

.my-bookings-section {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.section-sub-title {
    font-size: 1rem;
    margin-bottom: 16px;
}

.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.bk-info {
    display: flex;
    flex-direction: column;
}

.bk-title {
    font-size: 0.9rem;
    font-weight: bold;
}

.bk-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Credit Card simulation graphic */
.payment-modal-content {
    max-width: 500px;
}

.credit-card-graphic {
    position: relative;
    width: 100%;
    height: 190px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1f1f2e 0%, #0d0d12 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #e4ac5f 0%, #d89143 100%);
    border-radius: 4px;
}

.card-logo {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.card-number-display {
    font-family: monospace;
    font-size: 1.35rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin: 20px 0 10px 0;
}

.card-holder-display {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.card-expiry-display {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pay-amount-badge {
    font-size: 2.25rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 24px;
}

/* Spinner Loader */
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(229, 184, 0, 0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Checkmark Animation */
.success-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.success-svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4bb543;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb543;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.success-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4bb543;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}
@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}
@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 40px rgba(75, 181, 67, 0.1); }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(22, 26, 33, 0.95);
    border: 1px solid var(--border-accent);
    padding: 12px 24px;
    border-radius: 30px;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-message {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Scroll Animation classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Micro animations for landing load */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content h1.animate-slide-up {
    animation-delay: 0.1s;
}
.hero-content p.animate-slide-up {
    animation-delay: 0.2s;
}
.hero-content .hero-ctas.animate-slide-up {
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Canvas Background Particles */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Live Heart Rate pulse */
.pulse-stat {
    position: relative;
}

.heart-rate-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.heart-pulse-icon {
    display: inline-block;
    animation: heartBeat 1.2s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.25); }
    28% { transform: scale(1); }
    42% { transform: scale(1.25); }
    70% { transform: scale(1); }
}

.bpm-text {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* 3D Perspective for Tilt Cards */
.trainer-card, .credit-card-graphic {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.trainer-card .trainer-image-container, 
.trainer-card .trainer-info,
.credit-card-graphic * {
    transform: translateZ(25px);
}

/* FAQ Accordion Section */
.faq-accordion-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-trigger:hover {
    color: var(--accent);
}

.faq-icon-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
    line-height: 1;
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: rgba(255, 255, 255, 0.01);
}

.faq-panel p {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Font Presets */
body.preset-jost {
    --font-heading: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
}
body.preset-serif {
    --font-heading: 'Prata', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}
body.preset-onest {
    --font-heading: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
}
body.preset-outfit {
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Style Switcher Widget CSS */
.style-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.style-switcher-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.style-switcher-toggle:hover {
    border-color: var(--accent);
    color: var(--accent-hover);
    transform: rotate(45deg);
}

.style-switcher-toggle svg {
    width: 20px;
    height: 20px;
}

.style-switcher-panel {
    width: 260px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    transform-origin: bottom right;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.style-switcher.open .style-switcher-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.style-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.style-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.style-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.style-btn:hover {
    border-color: var(--border-color-hover);
    background: rgba(255, 255, 255, 0.03);
}

.style-btn.active {
    border-color: var(--accent);
    background: var(--bg-card-highlight);
}

.style-btn-name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.style-btn-fonts {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* LK Tab Switcher Styles */
.lk-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.lk-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.lk-tab-btn:hover {
    color: var(--text-primary);
}

.lk-tab-btn.active {
    color: var(--accent);
}

.lk-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
}

.lk-tab-content {
    display: none;
}

.lk-tab-content.active {
    display: block;
}

/* Gender selector design */
.gender-selector {
    display: flex;
    gap: 12px;
}

.gender-option {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.gender-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.gender-option span {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.gender-option input:checked + span {
    border-color: var(--accent);
    color: var(--text-primary);
    background-color: var(--bg-card-highlight);
}

/* Calorie Dashboard Styles */
.calorie-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.calorie-progress-circle-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 28px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--border-radius);
}

.calorie-circular-progress {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: conic-gradient(var(--accent) 0deg, var(--border-color) 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
}

.cal-circle-inner {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#cal-left-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
}

.cal-circle-inner small {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.cal-stats-small {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.cal-stat-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cal-stat-line strong {
    color: var(--text-primary);
}

.accent-text-cal {
    color: var(--accent);
}

/* BJU Progress Bars */
.bju-progress-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.bju-bar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bju-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.bju-label span:nth-child(2) {
    font-weight: 600;
    color: var(--text-primary);
}

.bju-track {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.bju-fill {
    height: 100%;
    border-radius: 3px;
    width: 0%;
    transition: width 0.5s ease;
}

.p-fill { background-color: var(--accent); }
.f-fill { background-color: #ffd52e; }
.c-fill { background-color: #a3a8b4; }

/* Log Switcher */
.log-switcher {
    display: flex;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 3px;
    border-radius: 6px;
}

.log-switch-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.log-switch-btn.active {
    background-color: var(--accent);
    color: var(--text-primary);
}

.form-input-sm {
    padding: 10px 12px;
    font-size: 0.85rem;
}

.form-input-xs {
    padding: 8px 10px;
    font-size: 0.8rem;
    text-align: center;
}

.bju-inputs {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.col-7 { flex: 7; }
.col-5 { flex: 5; }
.col-4 { flex: 4; }

.log-form.hidden {
    display: none;
}

/* Daily log items */
.daily-logs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px;
    margin-top: 8px;
}

.daily-log-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background-color: rgba(255, 255, 255, 0.01);
    border-radius: 4px;
    border-left: 3px solid var(--accent);
    font-size: 0.85rem;
}

.daily-log-item.exercise-log {
    border-left-color: #ffd52e;
}

.log-item-details {
    display: flex;
    flex-direction: column;
}

.log-item-name {
    font-weight: 500;
}

.log-item-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.log-item-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.log-item-cals {
    font-weight: 600;
}

.delete-log-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.delete-log-btn:hover {
    color: #ff4d4d;
}

/* ==========================================================================
   BODYLINE SMART DASHBOARD STYLES
   ========================================================================== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1100px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.dashboard-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    height: 100%;
}

.widget-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.widget-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Widget 1: BMI Calculator Specifics */
.bmi-calc-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group-range {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.range-title {
    color: var(--text-secondary);
    font-weight: 500;
}

.range-val {
    color: var(--accent);
    font-weight: 700;
    font-family: var(--font-heading);
}

.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    transition: background 0.3s;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-glow);
    transition: transform 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.bmi-gauge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 16px 0;
}

.bmi-gauge {
    position: relative;
    width: 180px;
    height: 90px;
    border-radius: 90px 90px 0 0;
    background: conic-gradient(from 270deg, #3e86fb 0% 18.5%, #00b050 18.5% 25%, #ffc000 25% 30%, #ff0000 30% 50%, #3e86fb 50% 100%); /* mapped to 180deg */
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.bmi-gauge-bg {
    position: absolute;
    width: 140px;
    height: 70px;
    background: #14171d; /* Matches dark card background */
    border-radius: 70px 70px 0 0;
    bottom: 0;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: none;
}

.bmi-gauge-needle {
    position: absolute;
    width: 3px;
    height: 85px;
    background: var(--accent);
    bottom: 0;
    left: calc(50% - 1.5px);
    transform-origin: bottom center;
    transform: rotate(-90deg); /* Range -90deg to +90deg */
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 3;
    border-radius: 3px 3px 0 0;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.bmi-gauge-center {
    position: absolute;
    width: 14px;
    height: 7px;
    background: var(--accent);
    border-radius: 7px 7px 0 0;
    bottom: 0;
    z-index: 4;
}

.bmi-result-box {
    margin-top: 12px;
    text-align: center;
}

.bmi-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
}

.bmi-status {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-top: 2px;
}

.bmi-recommendation {
    display: flex;
    gap: 10px;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: auto;
    font-size: 0.825rem;
    line-height: 1.4;
}

.rec-icon {
    font-size: 1.1rem;
    color: var(--accent);
    line-height: 1;
}

.rec-text {
    color: var(--text-secondary);
}

/* Widget 2: Calorie Dashboard Specifics */
.widget-calorie-main {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 20px;
    gap: 16px;
}

.widget-circular-box {
    flex-shrink: 0;
}

.widget-circular-progress {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: conic-gradient(var(--accent) 0deg, rgba(255, 255, 255, 0.05) 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
}

.widget-circle-inner {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #14171d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.widget-circle-inner span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}

.widget-circle-inner small {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.widget-calorie-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.widget-stat-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    padding-bottom: 4px;
}

.widget-stat-line strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.widget-bju-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.w-bju-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.w-bju-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.w-bju-label span:nth-child(2) {
    font-weight: 600;
    color: var(--text-primary);
}

.w-bju-track {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    overflow: hidden;
}

.w-bju-fill {
    height: 100%;
    border-radius: 2px;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.w-p-fill { background-color: var(--accent); }
.w-f-fill { background-color: #ffd52e; }
.w-c-fill { background-color: #a3a8b4; }

.quick-food-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.food-gallery-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.food-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.food-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.food-btn:hover {
    background: rgba(197, 160, 89, 0.05);
    border-color: rgba(197, 160, 89, 0.2);
    transform: translateY(-2px);
}

.food-btn:active {
    transform: translateY(0);
}

.food-svg {
    width: 20px;
    height: 20px;
    margin-bottom: 6px;
    color: var(--accent);
    opacity: 0.8;
    transition: var(--transition);
}

.food-btn:hover .food-svg {
    opacity: 1;
    transform: scale(1.1);
}

.food-emoji {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.food-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

.food-cals-badge {
    font-size: 0.6rem;
    color: var(--accent);
    margin-top: 2px;
    font-weight: 500;
}

/* Widget 3: Water Tracker Specifics */
.water-container-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.water-glass-wrapper {
    position: relative;
    width: 100px;
    height: 140px;
}

.water-glass {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top: none;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: flex-end;
    box-shadow: inset 0 -10px 20px rgba(255, 255, 255, 0.03);
}

/* Decorative glass reflection */
.water-glass::after {
    content: '';
    position: absolute;
    top: 5%;
    left: 8%;
    width: 6px;
    height: 90%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 3px;
    pointer-events: none;
    z-index: 10;
}

.water-liquid {
    width: 100%;
    height: 0%; /* updated via JS */
    background: linear-gradient(180deg, rgba(62, 161, 219, 0.7) 0%, rgba(30, 114, 189, 0.85) 100%);
    position: relative;
    transition: height 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.water-wave {
    position: absolute;
    top: -12px;
    width: 220px;
    height: 220px;
    background: rgba(62, 161, 219, 0.7);
    border-radius: 43%;
    left: -60px;
    animation: water-wave-anim 6s linear infinite;
    pointer-events: none;
    z-index: 5;
}

.water-wave:nth-child(2) {
    top: -16px;
    background: rgba(30, 114, 189, 0.5);
    border-radius: 40%;
    animation: water-wave-anim 9s linear infinite reverse;
    opacity: 0.8;
}

@keyframes water-wave-anim {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.water-progress-info {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.water-total-val {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.water-target-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.water-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: auto;
}

.btn-icon-water {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.icon-water {
    width: 16px;
    height: 16px;
}

/* Custom food icons */
.food-svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
    margin-bottom: 6px;
    transition: var(--transition);
}

.food-btn:hover .food-svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

/* Tariffs tab switcher styling */
.tariffs-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 10px;
}

.tariff-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 30px;
    width: 320px;
}

.tariff-toggle-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.tariff-toggle-btn:hover {
    color: var(--text-primary);
}

.tariff-toggle-btn.active {
    background-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Smooth hide/show transition */
.tariffs-grid {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

.tariffs-grid.hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(15px);
}

/* ==========================================================================
   INTERACTIVE WORKOUTS TAB STYLES
   ========================================================================== */
.workout-tab-header {
    margin-bottom: 20px;
}

.workout-days-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.wk-day-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 8px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.wk-day-btn span {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-muted);
}

.wk-day-btn:hover {
    border-color: var(--border-color-hover);
    color: var(--text-primary);
}

.wk-day-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

.wk-day-btn.active span {
    color: var(--accent);
}

.workout-info-card {
    padding: 16px 20px;
    margin-bottom: 24px;
    border-left: 3px solid var(--accent);
    background: rgba(197, 160, 89, 0.02);
}

.workout-day-meta {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workout-day-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 4px;
    color: var(--text-primary);
}

/* Rest Timer HUD Style */
.rest-timer-hud {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 24px;
    background: rgba(12, 13, 15, 0.6);
    border: 1px solid var(--border-accent);
    border-radius: 12px;
    animation: slideDownTimer 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownTimer {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.timer-circle-box {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.timer-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.timer-bg {
    stroke: rgba(255, 255, 255, 0.05);
}

.timer-progress {
    stroke-linecap: round;
    transition: stroke-dasharray 0.3s linear;
}

.timer-time {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
}

.timer-info {
    flex: 1;
}

.timer-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.timer-status {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 2px;
}

/* Exercises list styles */
.exercise-block-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.block-header {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block-status-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 2px 6px;
    border-radius: 4px;
}

.block-status-badge.completed {
    color: #00b050;
    border-color: rgba(0, 176, 80, 0.2);
    background: rgba(0, 176, 80, 0.05);
}

.exercise-detail-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.exercise-detail-item:last-child {
    margin-bottom: 0;
}

.exercise-detail-item:hover {
    border-color: var(--border-color-hover);
    background: rgba(255, 255, 255, 0.02);
}

.exercise-detail-item.completed {
    border-color: rgba(0, 176, 80, 0.25);
    background: rgba(0, 176, 80, 0.02);
}

.ex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.ex-title-box {
    flex: 1;
}

.ex-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.ex-muscles {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.ex-sets-reps {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(197, 160, 89, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
    text-align: right;
    white-space: nowrap;
}

/* Interactive Set Checkboxes */
.ex-sets-tracker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    border-top: 1px dashed var(--border-color);
    padding-top: 12px;
}

.set-check-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.set-check-btn:hover {
    border-color: var(--border-color-hover);
    color: var(--text-primary);
}

.set-check-btn.checked {
    background: rgba(0, 176, 80, 0.1);
    border-color: #00b050;
    color: #00b050;
}

.set-check-btn.checked svg {
    color: #00b050;
    stroke-width: 3;
}

/* Foldout Info Blocks */
.ex-toggle-actions {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.ex-info-toggle-btn {
    background: transparent;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    padding: 0;
}

.ex-info-toggle-btn:hover {
    color: var(--accent);
}

.ex-info-toggle-btn svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.ex-info-toggle-btn.active {
    color: var(--accent);
}

.ex-info-toggle-btn.active svg {
    transform: rotate(180deg);
}

.ex-tech-desc, .ex-prog-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 6px;
}

.ex-tech-desc-inner {
    padding: 12px;
    border: 1px solid var(--border-color);
    margin-top: 8px;
    line-height: 1.5;
}

.ex-prog-desc-inner {
    padding: 12px;
    border: 1px solid var(--border-color);
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.prog-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.prog-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffd88a;
    text-transform: uppercase;
}

.prog-text {
    line-height: 1.4;
}

.reg-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #9ea3b0;
    text-transform: uppercase;
}

.reg-text {
    line-height: 1.4;
}

/* ==========================================================================
   MOBILE & IPHONE PREMIUM RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 992px) {
    .main-nav {
        display: none !important;
    }
    .menu-toggle {
        display: flex !important;
    }
    .header-actions .btn-cta {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem !important;
        line-height: 1.1 !important;
        letter-spacing: -0.02em !important;
    }
    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 24px !important;
    }
    .hero-ctas {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }
    .hero-ctas .btn {
        width: 100% !important;
        padding: 14px 24px !important;
    }
    
    /* Layout card padding adjustments */
    .promo-card, .dashboard-card, .schedule-card, .trainer-card, .tariff-card {
        padding: 24px !important;
        border-radius: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px !important;
    }
    .logo-text {
        font-size: 1.25rem !important;
    }
    #open-lk-btn {
        padding: 10px 14px !important;
        font-size: 0.75rem !important;
    }
    #open-lk-btn svg {
        width: 14px !important;
        height: 14px !important;
    }
    .food-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .food-btn {
        padding: 8px 6px !important;
    }
    .food-btn .food-name {
        font-size: 0.75rem !important;
    }
    .food-btn .food-cals-badge {
        font-size: 0.65rem !important;
    }
}


