/* ============================================
   PRODUCT DESCRIPTION STYLES
   Universal styles for all product pages
   ============================================ */

/* Main Wrapper */
.pd-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    font-family: inherit;
    text-align: left;
}

/* ============================================
   TYPOGRAPHY & TEXT
   ============================================ */

/* Headings */
.pd-title-main {
    font-weight: 700;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 48px;
    text-align: center;
}

.pd-subtitle {
    text-align: center;
    font-weight: 600;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 16px;
}

.pd-section-title {
    text-align: center;
    font-weight: 600;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 24px;
}

.pd-section-title-large-margin {
    text-align: center;
    font-weight: 600;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 48px;
}

.pd-caption {
    font-weight: 500;
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 24px;
}

/* Paragraphs */
.pd-text {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 1.05em;
    text-align: justify;
}

.pd-text-large-margin {
    margin-top: 0;
    margin-bottom: 64px;
    font-size: 1.05em;
    text-align: justify;
}

.pd-text-no-margin {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.05em;
    text-align: justify;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

.pd-header-section {
    text-align: center;
    margin-bottom: 64px;
}

.pd-content-section {
    max-width: 700px;
    margin: 0 auto;
}

.pd-content-section-margin {
    max-width: 700px;
    margin: 0 auto 64px auto;
}

.pd-grid-section {
    margin-bottom: 64px;
}

/* ============================================
   IMAGES
   ============================================ */

.pd-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 0 auto;
    margin-bottom: 0;
}

.pd-image-shadow {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 0 auto;
    margin-bottom: 0;
    box-shadow: 0 0 15px #8080801c;
}

/* ============================================
   LEARNING GRID
   ============================================ */

.pd-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
}

.pd-grid-col {
    flex: 1 1 350px;
}

.pd-grid-item {
    margin-bottom: 32px;
}

.pd-grid-item-title {
    display: block;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.pd-grid-item-desc {
    display: block;
}

/* ============================================
   WARNING / INFO BOX
   ============================================ */

.pd-warning-box {
    border: 2px solid #000;
    padding: 25px;
    margin-bottom: 48px;
    text-align: center;
    border-radius: 4px;
}

.pd-warning-title {
    font-weight: 700;
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.pd-warning-text {
    margin-top: 0;
    margin-bottom: 0;
}

/* ============================================
   LINKS
   ============================================ */

.pd-link {
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    background-image: linear-gradient(135deg, rgb(10, 10, 31) 0%, rgb(9, 7, 30) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pd-link:hover {
    background-image: linear-gradient(135deg, #1A1A3E 0%, #270076 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============================================
   CHECKLIST
   ============================================ */

.pd-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-checklist-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1.05em;
    line-height: 1.6;
}

.pd-checklist-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.2em;
    color: #000;
}

/* ============================================
   AVAILABILITY TABLE
   ============================================ */

.pd-table-container {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 24px 30px;
}

.pd-table-inner {
    max-width: 650px;
    margin: 0 auto;
}

.pd-table-group {
    margin-bottom: 24px;
}

.pd-table-group-last {
    margin-bottom: 0;
}

.pd-table-header {
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 8px;
    font-weight: 600;
}

.pd-table-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.pd-table-row-last {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

.pd-table-row-unavailable {
    color: #000;
}

/* Status indicators */
.pd-status-available {
    font-weight: 400;
    font-size: 0.85em;
    color: #000;
    position: relative;
    padding-left: 14px;
    display: flex;
    align-items: center;
}

.pd-status-available::before {
    content: "";
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #10b981; /* Green */
    border-radius: 50%;
}

.pd-status-partial {
    font-weight: 400;
    font-size: 0.85em;
    color: #000;
    position: relative;
    padding-left: 14px;
    display: flex;
    align-items: center;
}

.pd-status-partial::before {
    content: "";
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #f59e0b; /* Amber/Orange */
    border-radius: 50%;
}

.pd-status-unavailable {
    font-weight: 400;
    font-size: 0.85em;
    color: #9ca3af;
    position: relative;
    padding-left: 14px;
    display: flex;
    align-items: center;
}

.pd-status-unavailable::before {
    content: "";
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #d1d5db; /* Grey */
    border-radius: 50%;
}

/* ============================================
   PAGE-SPECIFIC STYLES
   Currently: None needed
   Add here if specific pages require custom styles
   ============================================ */

