/* 
 * Proderma Luxury Ecosystem - Departments Page Styles
 */

.pd-departments-page {
    background: transparent !important;
}

/* Force WordPress theme parent containers to be completely transparent on these pages */
body[class*="price-list"] .entry-content,
body[class*="price-list"] article,
body[class*="price-list"] .site-content,
body[class*="price-list"] .ast-plain-container,
body[class*="price-list"] .content-area,
body[class*="price-list"] .main-header-bar,
body[class*="departments"] .entry-content,
body[class*="departments"] article,
body[class*="departments"] .site-content,
body[class*="departments"] .ast-plain-container,
body[class*="departments"] .content-area {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.pd-dept-hero {
    background: var(--pd-sage-light);
    padding: 100px 0;
}

.pd-dept-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pd-dept-hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--pd-shadow-lg);
}

.pd-dept-nav-sticky {
    background: transparent !important;
    border-bottom: 1px solid rgba(175, 196, 162, 0.15) !important;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.pd-dept-nav-sticky.is-sticky {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(254, 249, 243, 0.85) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(175, 196, 162, 0.25) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.pd-dept-nav-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

.pd-dept-section {
    padding: 100px 0;
}

.pd-dept-section.pd-even {
    background: var(--pd-sage-light);
}

.pd-dept-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.pd-even .pd-dept-row {
    grid-template-columns: 1fr 1.2fr;
}

.pd-dept-title {
    font-family: var(--pd-serif);
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--pd-dark);
}

.pd-dept-desc {
    font-size: 16px;
    color: var(--pd-text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.pd-service-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.pd-s-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--pd-dark);
}

.pd-s-dots {
    flex: 1;
    border-bottom: 1px dotted var(--pd-border);
    margin: 0 10px;
}

.pd-s-price {
    font-size: 14px;
    color: var(--pd-sage);
    font-weight: 700;
}

@media (max-width: 991px) {
    .pd-dept-hero-grid, .pd-dept-row, .pd-even .pd-dept-row { grid-template-columns: 1fr; gap: 40px; }
    .pd-dept-nav-list { gap: 20px; flex-wrap: wrap; }
}

/* Single department templates transparency overrides */
.pd-dermatology-service-page,
.pd-single-page-wrapper {
    background: transparent !important;
}

body.single-pd_department .entry-content,
body.single-pd_department article,
body.single-pd_department .site-content,
body.single-pd_department .ast-plain-container,
body.single-pd_department .content-area,
body[class*="single-department"] .entry-content,
body[class*="single-department"] article,
body[class*="single-department"] .site-content,
body[class*="single-department"] .ast-plain-container,
body[class*="single-department"] .content-area {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

