.apt-header { text-align: left; }
.breadcrumbs { font-size: 0.9rem; color: #888; margin-bottom: 10px; }
.breadcrumbs a { color: var(--text-color); text-decoration: none; }
.apt-meta { display: flex; gap: 20px; color: #666; margin-top: 15px; font-size: 1.05rem; }
.apt-meta i { color: #BFA67A; margin-right: 5px; }
.mt-large { margin-top: 40px; margin-bottom: 20px; }

/* Układ Treści */
.apt-content-wrapper { display: grid; grid-template-columns: 1.8fr 1fr; gap: 60px; align-items: start; }

/* Lista udogodnień */
.apt-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.feature { display: flex; align-items: center; gap: 10px; color: #444; }
.feature i { color: #BFA67A; width: 20px; text-align: center; }

/* Zasady i Wyróżniki */
.house-rules { list-style: none; padding-left: 0; }
.house-rules li { padding: 8px 0; border-bottom: 1px solid #eee; color: #555; }
.highlight-box {
    background-color: #fff; border: 2px solid #F0EBE5;
    border-radius: 12px; padding: 25px; margin: 30px 0;
}
.highlight-box h4 { margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.highlight-box ul { list-style: none; }
.highlight-box li { margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }

/* --- SIDEBAR REZERWACJI --- */
.booking-sidebar { position: sticky; top: 120px; }
.booking-card { 
    background-color: #F0EBE5; padding: 30px; border-radius: 24px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}
.booking-header { 
    display: flex; align-items: baseline; justify-content: space-between; 
    margin-bottom: 25px; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 15px; 
}
.price-large { font-family: 'Playfair Display', serif; font-size: 2rem; color: #1a1a1a; font-weight: 600; }
.booking-note { font-size: 0.8rem; text-align: center; color: #888; margin-top: 15px; }
.input-field {
    width: 100%; padding: 12px; margin-bottom: 15px; border-radius: 8px;
    border: 1px solid #d1d1d1; font-family: inherit;
}
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; font-size: 0.9rem; }
.submit-btn { width: 100%; padding: 14px; background-color: #8C7B60; color: #fff; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; }
.submit-btn:hover { background-color: #75654C; }

/* --- GALERIA PRO (Dynamiczna) --- */
.gallery-pro-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px; margin-top: 20px;
}
.gallery-pro-item {
    position: relative; height: 250px; overflow: hidden;
    border-radius: 8px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.gallery-pro-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-pro-item:hover img { transform: scale(1.1); filter: brightness(0.7); }
.gallery-overlay-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    color: #fff; font-size: 2rem; opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.gallery-pro-item:hover .gallery-overlay-icon { opacity: 1; }

/* --- LIGHTBOX PRO (Pełny ekran) --- */
.pro-lightbox {
    display: none; position: fixed; z-index: 10000; left: 0; top: 0;
    width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.95);
    align-items: center; justify-content: center; flex-direction: column;
}
.pro-lightbox-content {
    max-width: 90%; max-height: 85vh; object-fit: contain;
    border-radius: 4px; box-shadow: 0 0 20px rgba(0,0,0,0.5); animation: zoomIn 0.3s;
}
@keyframes zoomIn { from {transform: scale(0.9); opacity: 0;} to {transform: scale(1); opacity: 1;} }
.pro-caption { margin-top: 15px; color: #ccc; font-size: 1.1rem; font-family: 'Playfair Display', serif; }
.close-pro {
    position: absolute; top: 20px; right: 30px; color: #f1f1f1;
    font-size: 40px; font-weight: bold; cursor: pointer; z-index: 10002;
}
.prev-slide, .next-slide {
    cursor: pointer; position: absolute; top: 50%; padding: 16px; margin-top: -50px;
    color: white; font-weight: bold; font-size: 30px; user-select: none; z-index: 10001;
}
.next-slide { right: 0; } .prev-slide { left: 0; }

/* --- FAQ --- */
.faq-container { border-top: 1px solid #eee; padding-top: 20px; }
.faq-item { border-bottom: 1px solid #eee; margin-bottom: 10px; }
.faq-item summary {
    font-weight: 700; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; padding: 10px 0;
}
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: #D3C5B1; }
.faq-item[open] summary::after { content: '-'; transform: rotate(180deg); }
.faq-item p { color: #555; padding-bottom: 15px; }

/* Responsywność Apartamentu */
@media (max-width: 900px) {
    .apt-content-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .booking-sidebar { position: static; }
}
@media (max-width: 768px) {
    .gallery-pro-grid { grid-template-columns: 1fr 1fr; }
    .gallery-pro-item { height: 150px; }
    .apt-features-grid { grid-template-columns: 1fr; }
}