:root {
    --gold: #d4af37;
    --dark: #1d1c1b;
    --light-bg: #f9f7f2;
    --text: #333;
    --white: #ffffff;
    --border: #e5e5e5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Montserrat', sans-serif; 
    line-height: 1.6; 
    color: var(--text); 
    background-color: var(--white); 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; }

/* --- NAGŁÓWEK (MOBILE FIRST) --- */
.main-header {
    background-color: var(--dark);
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    padding: 10px 0;
}

.header-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.header-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    line-height: 1;
}

.desktop-nav { display: none; } /* Ukryte na mobile */

.menu-toggle { display: flex; flex-direction: column; gap: 8px; cursor: pointer; padding: 10px; }
.menu-toggle span { display: block; width: 30px; height: 2px; background-color: var(--gold); }

.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(20, 19, 18, 0.98); display: flex; flex-direction: column;
    justify-content: center; align-items: center; transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 2050; backdrop-filter: blur(15px);
}

.mobile-nav.active { right: 0; }
.close-mobile-menu { position: absolute; top: 30px; right: 40px; font-size: 3rem; color: var(--gold); cursor: pointer; }
.mobile-nav a { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.8rem; text-decoration: none; text-transform: uppercase; letter-spacing: 3px; margin: 12px 0; cursor: pointer; }

/* --- SEKCJE OGÓLNE --- */
.page-content { flex: 1; }
.view { display: none; animation: fadeIn 0.8s ease; }
.view.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

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

.section-title { font-size: 2.2rem; margin-bottom: 2.5rem; color: var(--dark); text-align: center; position: relative; }
.section-title::after { 
    content: ''; 
    display: block; 
    width: 60px; 
    height: 4px; 
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 15px auto 0;
    border-radius: 2px;
}
#view-o-nas .section-title {
    color: var(--dark);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}
#view-o-nas .section-title::after {
    background: linear-gradient(90deg, transparent, var(--gold), #8b7355, var(--gold), transparent);
    width: 100px;
    height: 4px;
}

/* --- HOME (MOBILE FIRST) --- */
.home-hero { position: relative; height: 70vh; min-height:450px; display: flex; align-items: center; justify-content: center; background: #000; overflow: hidden; }
.home-hero-bg { position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.home-hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 15px; width: 100%; }
.home-hero-content h1 { font-size: 2.2rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; line-height: 1.2; }
.home-hero-content p { font-size: 1.2rem; font-style: italic; color: var(--gold); margin-bottom: 5px; }

/* Status otwarcia */
#open-status-container { margin-bottom: 20px; }
.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.status-badge.open { background: #2f855a; color: #fff; border: 2px solid #48bb78; }
.status-badge.closed { background: #9b2c2c; color: #fff; border: 2px solid #e53e3e; }
.status-badge.closing-soon { background: #c05621; color: #fff; border: 2px solid #ed8936; }

.hours-card { background: rgba(0, 0, 0, 0.6); padding: 15px; border: 1px solid rgba(212, 175, 55, 0.3); backdrop-filter: blur(10px); width: 100%; max-width: 100%; margin: 0 auto; }
.hours-row { display: flex; justify-content: space-between; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 10px 0; font-size: 0.9rem; }

.news-wrapper { position: relative; margin-top: 30px; }
.news-grid { display: flex; overflow: hidden; }
.news-card { min-width: 100%; transition: transform 0.5s ease; background: #fff; border: 1px solid var(--border); display: flex; flex-direction: column; height: 100%; }
.news-img-box { width: 100%; overflow: hidden; }
.news-img { width: 100%; height: auto; display: block; }
.news-body { padding: 20px; flex: 1; }
.news-date { color: var(--gold); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.news-controls { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
.control-btn { background: var(--dark); color: var(--gold); border: 1px solid var(--gold); width: 50px; height: 50px; cursor: pointer; font-size: 1.2rem; }

/* --- NEWS DETAIL --- */
.news-detail__back-link {
    background: none;
    border: none;
    color: var(--gold);
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 0;
    text-align: left;
}
.news-detail__layout { display: flex; flex-direction: column; gap: 25px; }
.news-detail__text { width: 100%; }
.news-detail__title { text-align: left; }
.news-detail__title::after { margin-left: 0; }
.news-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -10px 0 20px;
}
.news-detail__tag {
    background: #f5f5f5;
    border: 1px solid var(--border);
    color: #555;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.news-detail__media {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.news-detail__image { width: 100%; height: auto; display: block; border-radius: 8px; }
.news-detail__content { line-height: 1.7; }
.news-detail__footer { margin-top: 30px; }

/* --- O NAS (MOBILE FIRST) --- */
.about-hero-black { 
    background: linear-gradient(135deg, #1d1c1b 0%, #2d2d2d 100%);
    color: #fff; 
    display: flex; 
    flex-direction: column; 
    align-items: stretch;
    position: relative;
    overflow: hidden;
}
.about-hero-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.about-hero-img { 
    aspect-ratio: 4 / 3; 
    overflow: hidden; 
    width: 100%;
    position: relative;
}
.about-hero-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(29, 28, 27, 0.8), transparent);
}
.about-hero-img img { 
    width: 100%; 
    height: 100%; 
    display: block; 
    object-fit: cover;
    transition: transform 0.5s ease;
}
.about-hero-content { 
    padding: 40px 20px; 
    text-align: center;
    position: relative;
    z-index: 1;
}
.about-hero-content h2 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}
.about-hero-content h1 { 
    font-size: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--gold);
}

.about-spec-box { 
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(249, 247, 242, 0.8) 50%, #ffffff 100%);
    border: 3px solid var(--gold);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    margin: 30px auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: visible;
}
.about-spec-box::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, var(--white) 100%);
    padding: 5px 20px;
    font-size: 1.8rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    z-index: 2;
}

.grid-3 { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 35px; 
    margin-bottom: 70px; 
    text-align: center;
}
.dish-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
    border-top: 4px solid transparent;
    position: relative;
}
.dish-card:nth-child(1) {
    border-top-color: #d4af37;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.03) 0%, var(--white) 100%);
}
.dish-card:nth-child(2) {
    border-top-color: #8b7355;
    background: linear-gradient(to bottom, rgba(139, 115, 85, 0.03) 0%, var(--white) 100%);
}
.dish-card:nth-child(3) {
    border-top-color: #c9a961;
    background: linear-gradient(to bottom, rgba(201, 169, 97, 0.03) 0%, var(--white) 100%);
}
.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.dish-card img { 
    width: 100%; 
    aspect-ratio: 4 / 3; 
    height: auto; 
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.dish-card:hover img {
    transform: scale(1.05);
}
.dish-card h3 {
    margin-top: 15px;
    font-size: 1.3rem;
    color: var(--dark);
    padding: 0 15px;
    position: relative;
}
.dish-card:nth-child(1) h3::before {
    content: '';
    margin-right: 8px;
}
.dish-card:nth-child(2) h3::before {
    content: '';
    margin-right: 8px;
}
.dish-card:nth-child(3) h3::before {
    content: '';
    margin-right: 8px;
}

.relax-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 50px; 
    margin-bottom: 80px; 
    text-align: center;
}
.relax-item {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-left: 5px solid transparent;
    position: relative;
}
.relax-item:nth-child(1) {
    border-left-color: #4a90e2;
    background: linear-gradient(to right, rgba(74, 144, 226, 0.05) 0%, var(--white) 100%);
}
.relax-item:nth-child(2) {
    border-left-color: #50c878;
    background: linear-gradient(to right, rgba(80, 200, 120, 0.05) 0%, var(--white) 100%);
}
.relax-item:hover {
    transform: translateY(-5px);
}
.relax-item img { 
    width: 100%; 
    aspect-ratio: 4 / 3; 
    height: auto; 
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}
.relax-item:nth-child(1) img {
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.25);
}
.relax-item:nth-child(2) img {
    box-shadow: 0 8px 20px rgba(80, 200, 120, 0.25);
}
.relax-item:hover img {
    transform: scale(1.03);
}
.relax-item:nth-child(1):hover img {
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.35);
}
.relax-item:nth-child(2):hover img {
    box-shadow: 0 12px 30px rgba(80, 200, 120, 0.35);
}
.relax-item h3 { 
    font-size: 1.6rem; 
    margin-bottom: 12px;
    color: var(--dark);
    position: relative;
}
.relax-item:nth-child(1) h3::before {
    content: '🌊';
    margin-right: 8px;
}
.relax-item:nth-child(2) h3::before {
    content: '🎠';
    margin-right: 8px;
}
.relax-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.attraction-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 25px;
    border-top: 4px solid transparent;
}
.attraction-item:nth-child(1) {
    border-top-color: #7b68ee;
    background: linear-gradient(to bottom, rgba(123, 104, 238, 0.04) 0%, var(--white) 100%);
}
.attraction-item:nth-child(2) {
    border-top-color: #00bcd4;
    background: linear-gradient(to bottom, rgba(0, 188, 212, 0.04) 0%, var(--white) 100%);
}
.attraction-item:nth-child(3) {
    border-top-color: #ff9800;
    background: linear-gradient(to bottom, rgba(255, 152, 0, 0.04) 0%, var(--white) 100%);
}
.attraction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.attraction-item img { 
    width: 100%; 
    height: 220px; 
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    display: block;
}
.attraction-item:hover img {
    transform: scale(1.05);
}
.attraction-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    padding: 0 20px;
    color: var(--dark);
    position: relative;
}
.attraction-item:nth-child(1) h3::before {
    content: '💧';
    margin-right: 8px;
}
.attraction-item:nth-child(2) h3::before {
    content: '🏊';
    margin-right: 8px;
}
.attraction-item:nth-child(3) h3::before {
    content: '🏰';
    margin-right: 8px;
}
.attraction-item p {
    padding: 0 20px;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Sekcja z hamakami */
.about-hamak-section {
    text-align: center;
    margin-bottom: 80px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(249, 247, 242, 0.5) 50%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
}
.about-hamak-section::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    opacity: 0.3;
}
.about-hamak-section::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}
.about-hamak-section img {
    max-width: 850px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 4px solid var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-hamak-section:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}
.about-hamak-section p {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.about-hamak-section p::before {
    content: '✨ ';
    color: var(--gold);
}
.about-hamak-section p::after {
    content: ' ✨';
    color: var(--gold);
}

/* --- MENU (MOBILE FIRST) --- */
.menu-wrapper { background: var(--white); border: 1px solid var(--border); padding: 40px 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin: 0 auto; overflow: hidden; }
.menu-category-title { font-size: 1.8rem; border-bottom: 1px solid var(--gold); padding-bottom: 8px; margin: 30px 0 20px; text-align: left; color: var(--dark); }

.menu-footer { background: #000; color: #fff; padding: 30px 20px; margin: 40px -20px -40px -20px; }
.menu-footer-note { font-weight: 900; font-size: 1rem; text-transform: uppercase; text-decoration: underline; margin-bottom: 10px; }
.menu-footer-socials { display: flex; gap: 15px; justify-content: center; }
.logo-col img, .google-col img { height: 80px; width: auto; }

.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 5px 15px; margin-bottom: 20px; align-items: baseline; }
.menu-item-name { font-weight: 700; font-size: 1rem; color: var(--dark); }
.menu-item-desc { font-size: 0.85rem; color: #777; font-style: italic; grid-column: 1 / -1; }
.menu-item-price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; text-align: right; }

/* --- KONTAKT & FAQ (MOBILE FIRST) --- */
.contact-split-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.faq-intro { font-size: 1rem; color: #666; margin-bottom: 20px; text-align: center; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item summary { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }

.contact-card-premium { background: var(--dark); color: var(--white); padding: 30px 20px; border: 1px solid var(--gold); text-align: center; }
.contact-link-main { color: var(--white); text-decoration: none; font-size: 1.2rem; display: block; margin-bottom: 10px; font-weight: 700; overflow-wrap: anywhere; }
.map-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.map-btn { width: 100%; border: 1px solid var(--gold); color: var(--gold); padding: 12px; text-decoration: none; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; }
.map-box { height: 250px; margin-top: 20px; overflow: hidden; }
.map-box iframe { width: 100%; height: 100%; border: 0; }

/* --- POLITYKA PRYWATNOŚCI --- */
.privacy-content {
    padding: 0 4px;
}
.privacy-content p,
.privacy-content ul,
.privacy-content li,
.privacy-content h2,
.privacy-content h3 {
    margin-bottom: 10px;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #111;
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: none;
    z-index: 9999;
    max-width: 900px;
    margin: 0 auto;
}
.cookie-banner p { margin: 0 0 12px; font-size: 0.9rem; line-height: 1.4; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.cookie-status {
    font-size: 0.8rem;
    color: #bbb;
    margin: 0 0 10px;
}
.cookie-btn {
    border: 1px solid var(--gold);
    padding: 8px 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    cursor: pointer;
    border-radius: 999px;
}
.cookie-btn.is-selected {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
.cookie-btn.primary { background: var(--gold); color: #111; }
.cookie-btn.secondary { background: transparent; color: var(--gold); }
.cookie-settings-btn {
    position: fixed;
    left: 20px;
    bottom: 80px;
    background: #111;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    cursor: pointer;
    display: none;
    z-index: 9998;
}

/* --- STOPKA (MOBILE FIRST) --- */
.main-footer {
    background-color: var(--dark);
    color: #aaa;
    padding: 10px 40px 100px; /* Zwiększony padding na dole dla paska mobile */
    border-top: 4px solid var(--gold);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
}

.footer-socials-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.footer-social-icon {
    height: 32px;
    width: auto;
    filter: brightness(0.8);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-icon:hover {
    filter: brightness(1);
    transform: translateY(-3px);
}

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    text-align: left;
    border-top: 1px solid #333;
    padding-top: 15px;
    width: 100%;
}

.footer-col h4, 
.footer-nav-col h4, 
.footer-contact-col-new h4, 
.footer-map-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a, 
.footer-contact-link {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    line-height: 1.5;
    transition: color 0.3s;
}

.footer-nav-list a:hover, 
.footer-contact-link:hover {
    color: var(--gold);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-map-col {
    display: none; /* Ukryte na małym mobile */
}

.footer-bottom {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #333;
    font-size: 0.7rem;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========== KREATOR ZAMÓWIEŃ (MOBILE FIRST) ========== */
.order-layout { display: flex; flex-direction: column; gap: 20px; margin-bottom: 100px; }
.menu-grid { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

.menu-card { display: grid; grid-template-areas: "name price btn" "desc desc desc"; grid-template-columns: 1fr auto auto; padding: 15px 0; border-bottom: 1px solid var(--border); gap: 5px 10px; align-items: center; }
.menu-card-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); line-height: 1.2; }
.menu-card-desc { grid-area: desc; font-size: 0.8rem; color: #777; font-style: italic; }
.menu-card-price { font-family: 'Playfair Display'; font-weight: 700; font-size: 1rem; text-align: right; }
.add-to-list-btn { background: var(--gold); color: white; border: none; padding: 6px 12px; border-radius: 4px; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; }

.category-header { font-size: 1.4rem; color: var(--dark); border-left: 5px solid var(--gold); padding: 8px 12px; margin: 30px 0 15px 0; background: var(--light-bg); }

.sticky-order-panel {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 4600;
    background: var(--dark); color: white; padding: 20px;
    border-radius: 20px 20px 0 0; border-top: 2px solid var(--gold);
    max-height: 85vh; transform: translateY(100%); transition: transform 0.4s ease;
}
.sticky-order-panel.is-expanded { transform: translateY(0); }
.close-order-panel { display: none; text-align: center; padding-bottom: 15px; color: var(--gold); font-weight: 700; cursor: pointer; font-size: 0.9rem; }
.sticky-order-panel.is-expanded .close-order-panel { display: block; }

.mobile-order-summary {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--dark); color: white; padding: 12px 20px;
    z-index: 4500; justify-content: space-between; align-items: center;
    border-top: 2px solid var(--gold); box-shadow: 0 -5px 20px rgba(0,0,0,0.4); cursor: pointer;
}

.mobile-quick-actions {
    display: flex; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    z-index: 4000; gap: 15px; background: rgba(29, 28, 27, 0.95);
    padding: 10px 20px; border-radius: 50px; border: 1px solid var(--gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5); backdrop-filter: blur(8px);
}
.quick-action-btn { display: flex; align-items: center; gap: 8px; color: var(--white); text-decoration: none; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }

/* ========== KREATOR ZAMÓWIEŃ - STYLE MODUŁOWE ========== */
.order-intro-box { text-align: center; max-width: 800px; margin: 0 auto 40px; padding: 0 10px; }
.order-main-title { font-size: 1.8rem; color: var(--dark); margin-bottom: 15px; }
.order-main-desc { font-size: 0.9rem; color: #555; line-height: 1.5; margin-bottom: 20px; }
.order-alert-box { background: #fff5f5; border: 1px solid #feb2b2; color: #c53030; padding: 12px 20px; border-radius: 8px; font-size: 0.85rem; line-height: 1.4; text-align: center; }
.order-alert-box strong { color: #9b2c2c; text-transform: uppercase; }

.order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #333; }
.items-count-badge { background: var(--gold); color: white; padding: 2px 8px; border-radius: 10px; font-size: 0.8rem; font-weight: 700; }

.order-items-scroll { flex: 1; overflow-y: auto; margin-bottom: 20px; min-height: 100px; }
.empty-list-message { text-align: center; color: #777; padding: 40px 0; font-style: italic; }

.order-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 0; border-bottom: 1px solid #333; }
.order-item-main { flex: 1; display: flex; flex-direction: column; }
.order-item-name { font-size: 0.9rem; font-weight: 600; }
.order-item-extras { font-size: 0.75rem; color: #999; }
.order-item-qty-row { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.order-item-price { font-size: 0.85rem; color: var(--gold); font-weight: 700; min-width: 70px; text-align: right; }

.qty-btns-compact { display: flex; align-items: center; gap: 10px; background: #2a2a2a; padding: 4px 10px; border-radius: 15px; }
.qty-btn-sm { background: none; border: none; color: var(--gold); font-size: 1.1rem; cursor: pointer; font-weight: 700; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }
.qty-display-sm { font-size: 0.85rem; font-weight: 700; min-width: 15px; text-align: center; }

.btn-remove-icon { background: none; border: none; color: #ff6b6b; cursor: pointer; padding: 5px; display: flex; align-items: center; opacity: 0.7; transition: 0.3s; }
.btn-remove-icon:hover { opacity: 1; }

.order-footer { border-top: 2px solid var(--gold); padding-top: 20px; }
.total-row { display: flex; justify-content: space-between; font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-bottom: 15px; }
.order-disclaimer { font-size: 0.7rem; color: #999; margin-bottom: 15px; font-style: italic; }
.btn-finalize { width: 100%; background: var(--gold); color: var(--dark); border: none; padding: 15px; font-size: 0.9rem; text-transform: uppercase; font-weight: 700; cursor: pointer; border-radius: 8px; margin-bottom: 10px; }
.btn-clear { width: 100%; background: #444; color: white; border: none; padding: 12px; font-size: 0.8rem; text-transform: uppercase; font-weight: 700; cursor: pointer; border-radius: 8px; }

/* MODALE I FINALNA LISTA */
.modal-backdrop { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 5000; justify-content: center; align-items: center; backdrop-filter: blur(8px); }
.modal-box { background: white; width: 95%; max-width: 500px; border-radius: 15px; padding: 30px; position: relative; max-height: 90vh; overflow-y: auto; color: var(--dark); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.modal-title { font-size: 1.8rem; margin-bottom: 10px; color: var(--dark); }
.modal-subtitle { color: #555; margin-bottom: 25px; display: block; font-size: 0.95rem; }

.option-label { display: flex; align-items: center; gap: 15px; padding: 15px; border: 2px solid var(--border); border-radius: 10px; margin-bottom: 12px; cursor: pointer; }
.option-label input { width: 20px; height: 22px; accent-color: var(--gold); }

.modal-btn { width: 100%; background: var(--dark); color: white; border: none; padding: 15px; font-weight: 700; text-transform: uppercase; cursor: pointer; border-radius: 8px; margin-top: 10px; }
.modal-btn.confirm { background: var(--gold); }
.modal-btn.cancel { background: transparent; color: #777; border: 2px solid #ddd; }

.glasses-selector { display: flex; align-items: center; gap: 20px; padding: 15px; background: var(--light-bg); border-radius: 10px; justify-content: center; }
.glasses-btn { background: var(--gold); border: none; color: white; width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; }
.glasses-display { font-size: 1.2rem; font-weight: 700; }

.final-list-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); z-index: 5500; padding: 40px 25px; overflow-y: auto; color: var(--dark); }
.final-list-header { text-align: center; margin-bottom: 30px; border-bottom: 2px solid var(--gold); padding-bottom: 15px; }
.final-list-section { margin-bottom: 30px; }
.final-list-section h4 { text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; color: #666; margin-bottom: 15px; border-left: 3px solid var(--gold); padding-left: 10px; }
.final-list-items { list-style: none; }
.final-list-item { font-size: 1.1rem; padding: 8px 0; border-bottom: 1px dashed #eee; display: flex; gap: 10px; }
.final-list-item::before { content: "•"; color: var(--gold); font-weight: bold; }
.final-list-footer { text-align: center; margin-top: 40px; font-size: 0.8rem; color: #888; }

/* CTA Box na stronie menu */
.order-cta-box {
    background: var(--light-bg);
    border: 2px dashed var(--gold);
    padding: 30px;
    border-radius: 12px;
    margin: 0 auto 15px;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
@media (min-width: 768px) {
    .order-cta-box {
        flex-direction: row;
        text-align: left;
    }
}
.order-cta-content h4 { font-family: 'Montserrat', sans-serif; margin-bottom: 5px; color: var(--dark); }
.order-cta-content p { font-size: 0.85rem; color: #666; margin: 0; }
.order-cta-btn {
    background: var(--dark);
    color: var(--gold);
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    white-space: normal;
    text-align: center;
    transition: 0.3s;
    border: 1px solid var(--gold);
    width: 100%;
    max-width: 280px;
}
.order-cta-btn:hover {
    background: var(--gold);
    color: var(--white);
}

/* --- DESKTOP ENHANCEMENTS (min-width: 992px) --- */
@media (min-width: 992px) {
    .header-content { padding: 0 40px; }
    .header-logo { height: 100px; }
    .brand-title { font-size: 2.4rem; }
    .brand-box { gap: 20px; }
    
    .menu-toggle { display: none; }
    .desktop-nav { display: flex; align-items: center; }
    .nav-list { list-style: none; display: flex; gap: 40px; }
    .nav-list a {
        color: var(--white); text-decoration: none; text-transform: uppercase;
        font-weight: 700; letter-spacing: 2px; font-size: 0.85rem;
        transition: 0.3s; position: relative; padding: 5px 0;
    }
    .nav-list a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
    .nav-list a:hover { color: var(--gold); }
    .nav-list a:hover::after { width: 100%; }

    .container-limited { padding: 80px 20px; }
    .section-title { font-size: 3.5rem; margin-bottom: 3.5rem; }
    .section-title::after { width: 80px; margin-top: 20px; }

    .home-hero { height: 80vh; }
    .home-hero-content h1 { font-size: 5rem; line-height: 1.1; }
    .home-hero-content p { font-size: 1.6rem; }
    .hours-card { padding: 20px 30px; max-width: 760px; }
    .hours-row { font-size: 1rem; gap: 40px; }

    .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; overflow: visible; }
    .news-card { min-width: auto; cursor: pointer; transition: 0.4s; }
    .news-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
    .news-controls { display: none; }

    .news-detail__layout { flex-direction: row; align-items: center; gap: 40px; }
    .news-detail__text, .news-detail__media { width: 50%; }
    .news-detail__media { order: 2; }
    .news-detail__text { order: 1; }

    .about-hero-black { flex-direction: row; align-items: center; }
    .about-hero-img { flex: 1; aspect-ratio: 4 / 3; }
    .about-hero-content { flex: 1; padding: 60px 80px; text-align: left; }
    .about-hero-content h2 { font-size: 1.4rem; }
    .about-hero-content h1 { font-size: 2.8rem; line-height: 1.2; }
    .about-spec-box { 
        padding: 45px 50px; 
        max-width: 900px; 
        font-size: 1.25rem; 
        margin-bottom: 90px;
        line-height: 1.9;
    }

    .grid-3 { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 40px; 
        margin-bottom: 100px;
    }
    .dish-card {
        padding-bottom: 25px;
    }
    .dish-card h3 {
        font-size: 1.4rem;
    }
    
    .relax-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 60px; 
        margin-bottom: 120px;
    }
    .relax-item {
        padding: 35px;
    }
    .relax-item:nth-child(1) img { 
        box-shadow: 15px 15px 0 rgba(74, 144, 226, 0.3);
    }
    .relax-item:nth-child(2) img { 
        box-shadow: 15px 15px 0 rgba(80, 200, 120, 0.3);
    }
    .relax-item h3 { 
        font-size: 1.9rem;
        margin-bottom: 15px;
    }
    .relax-item p {
        font-size: 1.05rem;
    }
    
    .attraction-item {
        padding-bottom: 30px;
    }
    .attraction-item img {
        height: 250px;
    }
    .attraction-item h3 {
        font-size: 1.5rem;
        padding: 0 25px;
    }
    .attraction-item p {
        padding: 0 25px;
        font-size: 1rem;
    }
    
    .about-hamak-section {
        margin-bottom: 120px;
        padding: 60px 40px;
    }
    .about-hamak-section img {
        margin-bottom: 30px;
        border-width: 6px;
    }
    .about-hamak-section p {
        font-size: 1.3rem;
    }

    .menu-wrapper { padding: 80px 60px; max-width: 900px; }
    .menu-category-title { font-size: 2.2rem; margin: 50px 0 25px; }
    .menu-item { font-size: 1.1rem; margin-bottom: 25px; }
    .menu-item-name { font-size: 1.1rem; }
    .menu-item-price { font-size: 1.1rem; }
    .menu-footer { padding: 30px 60px; margin: 60px -60px -80px -60px; }
    .logo-col img, .google-col img { height: 100px; }

    .contact-split-grid { grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .faq-intro { text-align: left; font-size: 1.1rem; }
    .faq-item summary { font-size: 1.25rem; }
    .contact-card-premium { padding: 60px; text-align: left; }
    .contact-link-main { font-size: 1.5rem; }
    .map-buttons { flex-direction: row; }
    .map-box { height: 350px; }

    /* Footer Desktop */
    .footer-content {
        display: grid;
        grid-template-columns: 1.2fr 2fr 1.5fr;
        gap: 60px;
        text-align: left;
    }

    .footer-brand-col {
        text-align: left;
    }

    .footer-logo {
        margin: 0 0 20px 0;
        max-width: 150px;
    }

    .footer-socials-group {
        justify-content: flex-start;
    }

    .footer-links-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        border-top: none;
        padding-top: 0;
    }

    .footer-map-col {
        display: block;
    }

    .footer-map-box {
        height: 180px;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 8px;
        overflow: hidden;
        margin-top: 10px;
    }

    .footer-map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(0.5) contrast(1.1);
        transition: 0.5s;
    }

    .footer-map-box:hover iframe {
        filter: none;
    }

    .order-layout { grid-template-columns: 1fr 380px; display: grid; }
    .menu-grid { padding: 50px; }
    .menu-card-name { font-size: 1.1rem; }
    .menu-card-price { font-size: 1.1rem; }
    .category-header { font-size: 1.8rem; padding: 10px 15px; }
    
    .sticky-order-panel {
        position: sticky; top: 130px; bottom: auto; transform: none;
        border-radius: 15px; border: 2px solid var(--gold); max-height: 70vh;
    }
    .mobile-order-summary, .mobile-quick-actions { display: none; }
}
