@import url("fonts-IpvLdJI.css");

/* =============================================
   Booksy widget overrides
   ============================================= */
#booksy-widget-root {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    pointer-events: none;
    width: 0;
    height: 0;
}

.booksy-widget-container {
    position: fixed !important;
    bottom: 24px;
    right: 24px;
    pointer-events: all;
    z-index: 9999;
}

/* Hide the default green PNG image link */
.booksy-widget-container .booksy-business-link {
    display: none !important;
}

/* Style the clickable button div */
.booksy-widget-container .booksy-widget-button {
    background: var(--c-dark) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 0.9rem 1.5rem !important;
    cursor: pointer !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
    width: auto !important;
    height: auto !important;
    box-shadow: 0 4px 20px rgba(45, 45, 44, 0.35) !important;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.booksy-widget-container .booksy-widget-button::before {
    content: '🐾';
    font-size: 1.1rem;
}

.booksy-widget-container .booksy-widget-button::after {
    content: 'Umów wizytę';
}

.booksy-widget-container .booksy-widget-button:hover {
    background: var(--c-link) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 28px rgba(46, 106, 150, 0.45) !important;
}

:root {
    --c-light-blue: #e1e5ef;
    --c-mid-blue: #afc6dc;
    --c-dark: #2d2d2c;
    --c-gray-dark: #414141;
    --c-gray-light: #dad4d3;
    --c-gray-mid: #a39ea0;
    
    --bg-main: var(--c-light-blue);
    --bg-card: rgba(255, 255, 255, 0.7);
    --text-primary: var(--c-dark);
    --text-secondary: var(--c-gray-dark);
    
    --radius-sm: 12px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    
    --shadow-soft: 0 10px 30px rgba(175, 198, 220, 0.4);
    --shadow-hover: 0 15px 40px rgba(175, 198, 220, 0.6);

    /* Accessible link color - contrast 5.1:1 on --c-light-blue */
    --c-link: #2e6a96;
    --c-link-hover: #1d4e72;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Bubbles Background */
.bubbles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(175, 198, 220, 0.2));
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: rise 15s infinite ease-in;
    backdrop-filter: blur(2px);
}

.bubble:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 8s; }
.bubble:nth-child(2) { width: 80px; height: 80px; left: 30%; animation-duration: 12s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 50px; height: 50px; left: 60%; animation-duration: 10s; animation-delay: 4s; }
.bubble:nth-child(4) { width: 120px; height: 120px; left: 80%; animation-duration: 16s; animation-delay: 1s; }
.bubble:nth-child(5) { width: 60px; height: 60px; left: 45%; animation-duration: 11s; animation-delay: 5s; }

@keyframes rise {
    0% { bottom: -100px; transform: translateX(0); opacity: 0; }
    50% { opacity: 1; }
    100% { bottom: 1080px; transform: translateX(-50px); opacity: 0; }
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 0.5rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Navigation */
.main-nav {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 80px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--c-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--c-link);
}

.btn-schedule {
    background: var(--c-dark);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-schedule:hover {
    background: var(--c-link);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* =============================================
   Hamburger button
   ============================================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.hamburger:hover {
    background: rgba(45, 45, 44, 0.06);
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--c-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   Offcanvas overlay
   ============================================= */
.offcanvas-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 200;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offcanvas-overlay.open {
    display: block;
    opacity: 1;
}

/* =============================================
   Offcanvas drawer
   ============================================= */
.offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 300;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(45, 45, 44, 0.15);
}

.offcanvas.open {
    transform: translateX(0);
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.offcanvas-logo {
    height: 72px;
}

.offcanvas-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--c-dark);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.offcanvas-close:hover {
    background: rgba(45, 45, 44, 0.08);
}

.offcanvas-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 0.25rem;
    flex: 1;
    overflow-y: auto;
}

.offcanvas-link {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
}

.offcanvas-link:hover {
    background: rgba(175, 198, 220, 0.25);
    color: var(--c-link);
}

.offcanvas-footer {
    padding: 1.5rem 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.offcanvas-booksy {
    display: block;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--c-dark);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--c-gray-dark);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--c-mid-blue);
    color: var(--c-dark);
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background: var(--c-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--c-dark);
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--c-dark);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--c-dark);
    color: #fff;
}

.hero-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.5);
    pointer-events: none;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Page Headers (Pricing, Contact) */
.page-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--c-dark);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--c-gray-dark);
}

/* Pricing Grid */
.pricelist-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--c-mid-blue);
    opacity: 0.2;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--c-mid-blue);
}

.price-card:hover::before {
    transform: scale(3);
}

.price-card-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.price-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price-card-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-dark);
    display: block;
}

.price-card-description {
    flex-grow: 1;
    position: relative;
}

.price-card-description ul {
    list-style: none;
}

.price-card-description li {
    padding: 0.5rem 0;
    color: var(--c-gray-dark);
    display: flex;
    align-items: center;
}

.price-card-description li::before {
    content: '🫧';
    margin-right: 10px;
    font-size: 0.8rem;
}

.price-card-action {
    margin-top: 2rem;
    text-align: center;
    position: relative;
}

.btn-schedule-small {
    display: inline-block;
    width: 100%;
    background: var(--c-mid-blue);
    color: var(--c-dark);
    padding: 0.75rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-schedule-small:hover {
    background: var(--c-dark);
    color: #fff;
}

/* Contact Page */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--c-dark);
}

.info-card a {
    color: var(--c-link);
    text-decoration: none;
    font-weight: 700;
}

.info-card a:hover {
    text-decoration: underline;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(175, 198, 220, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gray-dark);
    border: 2px dashed rgba(65, 65, 65, 0.2);
}

/* Footer */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-content {
    flex: 1;
}

.main-footer {
    background: rgba(45, 45, 44, 0.05);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    color: var(--c-gray-dark);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 120px;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--c-dark);
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a, .footer-col p a {
    color: var(--c-gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-col p a:hover {
    color: var(--c-link-hover);
    text-decoration: underline;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.7;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    color: var(--c-gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.social-link:hover {
    color: var(--c-link-hover);
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-link:hover .social-icon {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
}

/* =============================================
   Slider (shared: homepage stars + gallery)
   ============================================= */
.gallery-slider,
.star-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(0,0,0,0.04);
    aspect-ratio: 4/3;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(4px);
    color: var(--c-dark);
    transition: background 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* =============================================
   Stars section (homepage)
   ============================================= */
.stars-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.stars-header {
    margin-bottom: 3rem;
}

.stars-header h2 {
    font-size: 2.2rem;
}

.stars-header p {
    color: var(--c-gray-dark);
    font-size: 1.1rem;
}

.stars-sliders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.star-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.star-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.star-name {
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem;
    color: var(--c-dark);
}

.stars-cta {
    margin-top: 1rem;
}

/* =============================================
   Gallery page
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.gallery-group {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-group:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.gallery-label {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
    color: var(--c-dark);
}

/* =============================================
   Lightbox
   ============================================= */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-sm);
    object-fit: contain;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 3rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
    line-height: 1;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.05em;
    pointer-events: none;
}

/* Lightbox img – nie blokuje kliknięcia w tło */
.lightbox img {
    cursor: default;
    max-width: min(90vw, 960px);
    max-height: 85vh;
    user-select: none;
}

/* empty state */
.empty-state {
    text-align: center;
    padding: 4rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--c-gray-mid);
}

/* Tablet (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .features-section {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .main-footer {
        padding: 3rem 1.25rem 2rem;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        margin: 2rem auto;
        padding: 0 1.25rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .features-section {
        grid-template-columns: 1fr;
        padding: 0 1.25rem;
    }

    .stars-sliders {
        grid-template-columns: 1fr;
    }

    .stars-section {
        padding: 0 1.25rem;
    }

    .container {
        padding: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .social-links {
        align-items: center;
    }
}

/* =============================================
   Pricing page (Booksy sourced)
   ============================================= */
.pricing-sync-info {
    text-align: right;
    font-size: 0.8rem;
    color: var(--c-gray-mid);
    margin-bottom: 2rem;
}

.pricing-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.pricing-category {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.pricing-category-title {
    font-size: 1.2rem;
    padding: 1.25rem 1.5rem;
    margin: 0;
    background: rgba(175, 198, 220, 0.18);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--c-dark);
}

.pricing-table {
    display: flex;
    flex-direction: column;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: rgba(175, 198, 220, 0.1);
}

.pricing-row-main {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    min-width: 0;
}

.pricing-service-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--c-dark);
}

.pricing-service-desc {
    font-size: 0.82rem;
    color: var(--c-gray-dark);
    line-height: 1.4;
}

.pricing-row-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.pricing-duration {
    font-size: 0.8rem;
    color: var(--c-gray-mid);
    background: rgba(0, 0, 0, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
}

.pricing-price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-link);
    min-width: 80px;
    text-align: right;
}

.pricing-cta {
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
}

.pricing-cta p {
    color: var(--c-gray-dark);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 1.25rem;
    }

    .pricing-row-meta {
        width: 100%;
        justify-content: space-between;
    }

    .pricing-price {
        text-align: right;
        flex: 1;
    }

    .pricing-category-title {
        padding: 1rem 1.25rem;
    }

    .pricing-row--variant {
        padding: 0.6rem 1rem 0.6rem 1.5rem;
    }
}

/* Nagłówek grupy wariantów */
.pricing-row--group {
    background: rgba(175, 198, 220, 0.08);
    border-left: 3px solid var(--c-mid-blue);
}

.pricing-row--group .pricing-service-name {
    font-size: 1rem;
}

/* Wiersz wariantu (wcięty) */
.pricing-row--variant {
    padding: 0.65rem 1.5rem 0.65rem 2.5rem;
    background: transparent;
}

.pricing-row--variant:hover {
    background: rgba(175, 198, 220, 0.07);
}

.pricing-row--variant:last-of-type {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-variant-label {
    font-size: 0.88rem;
    color: var(--c-gray-dark);
    font-style: italic;
}

/* Cena zakresowa (np. "80,00 zł+") dla nagłówka grupy */
.pricing-price--range {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--c-gray-dark);
    opacity: 0.8;
}
