/* ==================================================
   GLOBAL CONTAINER
================================================== */
.spd-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Inter, Helvetica, Arial, system-ui;
    color: #111827;
}

/* ==================================================
   DETAIL PAGE
================================================== */
.spd-detail {
    max-width: 980px;
    margin: 60px auto;
}

.spd-detail h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.spd-content {
    font-size: 16px;
    line-height: 1.75;
}

.spd-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.spd-content table td,
.spd-content table th {
    padding: 10px 12px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

/* ==================================================
   CTA SECTION
================================================== */
.spd-cta {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.spd-button {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 32px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.spd-button:hover {
    background: #2563eb;
}

/* ==================================================
   A–Z FILTER (CORPORATE CHIP STYLE)
================================================== */
.spd-az-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 40px;
}

.spd-az-chip {
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.2s ease;
}

.spd-az-chip:hover {
    background: #111827;
    color: #ffffff;
}

.spd-az-chip.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    cursor: default;
}

/* ==================================================
   PRODUCT LIST
================================================== */
.spd-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spd-list li {
    padding: 14px 0;
    border-bottom: 1px solid #e5e7eb;
}

.spd-list li a {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
}

.spd-list li a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* ==================================================
   PAGINATION (ENTERPRISE STYLE)
================================================== */
.spd-pagination {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-numbers,
.spd-page-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-numbers:hover,
.spd-page-btn:hover {
    background: #111827;
    color: #ffffff;
}

.page-numbers.current,
.spd-page-btn.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    cursor: default;
}

.page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
}

/* ==================================================
   RESULT COUNT
================================================== */
.spd-count {
    margin-top: 20px;
    font-size: 15px;
    color: #6b7280;
}
/* ===============================
   CORPORATE PAGINATION
================================ */

.spd-pagination-wrap {
    margin: 50px 0 20px;
    display: flex;
    justify-content: center;
}

.spd-pagination {
    display: inline-flex;
    gap: 10px;
    padding: 12px 16px;
    background: #0f172a;
    border-radius: 18px;
}

.spd-page {
    min-width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.spd-page:hover {
    background: #2563eb;
    color: #ffffff;
}

.spd-page.current {
    background: #2563eb;
    color: #ffffff;
    cursor: default;
}
/* COPY PROTECTION – SPD DETAIL */
.spd-content {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
