.studio-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* FEJLÉC ÉS STATUS BADGE */
.studio-header {
    margin-bottom: 24px;
}

.studio-title {
    font-family: var(--font-family-heading, 'Cormorant Garamond', serif);
    font-size: 38px;
    margin-bottom: 8px;
    color: var(--color-primary, #111);
}

.studio-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.status-badge--open {
    background-color: #e6f4ea;
    color: #137333;
}

.status-badge--closed {
    background-color: #fce8e6;
    color: #c5221f;
}

.status-hours {
    color: #666;
}

/* BORÍTÓKÉP */
.studio-hero-image-wrapper {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
}

.studio-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* KÉTHASÁBOS ELRENDEZÉS */
.studio-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

/* BAL OSZLOP TARTALOM */
.studio-about h2,
.offerings-section h2 {
    font-family: var(--font-family-heading, 'Cormorant Garamond', serif);
    font-size: 28px;
    margin-bottom: 12px;
}

.studio-about p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}

/* TAB FÜLEK ÉS GOMBOK */
.offerings-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    border-bottom: 2px solid #eee;
    padding-bottom: 12px;
}

.tab-btn {
    border: none;
    background: #f4f4f5;
    color: #555;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    background: #e4e4e7;
    color: #111;
}

.tab-btn.active {
    background: #111;
    color: #fff;
}

/* TAB TARTALMAK REJTÉSE/MEGJELENÍTÉSE */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* KÁRTYÁK ÉS KATEGÓRIÁK */
.sub-category-title {
    font-size: 18px;
    font-weight: 700;
    margin: 24px 0 6px 0;
    color: #222;
}

.category-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-card {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.service-card__header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 15px;
}

.service-price {
    color: var(--color-primary, #8b5cf6);
}

.service-desc {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
}

/* ADD-ON KÁRTYÁK */
.addon-title {
    font-size: 15px;
    font-weight: 700;
    margin: 20px 0 10px 0;
    color: var(--color-primary, #8b5cf6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.addon-card {
    border-left: 3px solid var(--color-primary, #8b5cf6);
    background: #faf8ff;
}

/* BOARDING GROOMING ADD-ON CARD */
.add-on-option-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.add-on-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.add-on-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #16a34a;
}

.add-on-label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.add-on-label strong {
    color: #15803d;
    font-size: 15px;
}

.add-on-label span {
    font-size: 13px;
    color: #4b5563;
}

.add-on-price {
    font-weight: 700;
    font-size: 13px;
    color: #15803d;
    white-space: nowrap;
}

/* JOBB OLDALSÁV */
.sidebar-card {
    position: sticky;
    top: 120px;
    background: #fff;
    border: 1px solid #eee;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.sidebar-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #111;
    color: #fff;
    padding: 14px 0;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    margin-bottom: 24px;
}

.info-block {
    margin-bottom: 16px;
}

.info-block h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 4px;
}

.info-block p {
    font-size: 14px;
    color: #222;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .studio-layout {
        grid-template-columns: 1fr;
    }
}