/* =============================================
   KEIS CLUB — PORTAL CSS
   Append to bottom of child theme style.css
   
   Design tokens:
   Gold:       #b08a3e
   Deep black: #0a0a0a
   Dark card:  #111111
   Border:     #2a2a2a
   Text white: #ffffff
   Text muted: #888888
   Font serif: Marcellus
   Font body:  PT Serif
============================================= */


/* ── Gate (non-member redirect message) ────── */

.keis-gate {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    text-align: center;
    padding: 80px 20px;
}

.keis-gate-message {
    color: #888;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 1px;
}

.keis-gate-link {
    color: #b08a3e !important;
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-top: 12px;
    border-bottom: 1px solid #b08a3e;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}
.keis-gate-link:hover { opacity: 0.7; }


/* ── Portal wrapper ─────────────────────────── */

.ktj-portal-wrap {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 60px 24px 100px;
    color: #fff;
}

@media (min-width: 768px) {
    .ktj-portal-wrap {
        padding: 80px 60px 120px;
        max-width: 960px;
        margin: 0 auto;
    }
}


/* ── Typography ─────────────────────────────── */

.ktj-portal-eyebrow {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #b08a3e;
    margin-bottom: 20px;
}

.ktj-portal-title {
    font-family: 'Marcellus', serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    margin: 0 0 20px;
    line-height: 1.2;
}

.ktj-portal-intro {
    font-size: 16px;
    color: #888;
    line-height: 1.9;
    max-width: 620px;
    margin-bottom: 60px;
}

.ktj-portal-section-title {
    font-family: 'Marcellus', serif;
    font-size: 20px;
    color: #b08a3e;
    letter-spacing: 2px;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid #2a2a2a;
}


/* ── Form layout ────────────────────────────── */

.ktj-form-section {
    margin-bottom: 50px;
}

.ktj-form-section-label {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #b08a3e;
    margin-bottom: 12px;
}

.ktj-form-blurb {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 560px;
}

.ktj-form-divider {
    border: none;
    border-top: 1px solid #1e1e1e;
    margin: 50px 0;
}

.ktj-input-row {
    display: grid;
    gap: 16px;
}
.ktj-input-row--2 { grid-template-columns: 1fr 1fr; }
.ktj-input-row--3 { grid-template-columns: 1fr 1fr 1fr; }

@media (max-width: 600px) {
    .ktj-input-row--2,
    .ktj-input-row--3 { grid-template-columns: 1fr; }
}

.ktj-field {
    display: flex;
    flex-direction: column;
}

.ktj-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 8px;
}

.ktj-input {
    background: transparent;
    border: 1px solid #2a2a2a;
    border-bottom: 1px solid #444;
    color: #fff;
    font-family: 'PT Serif', serif;
    font-size: 15px;
    padding: 14px 16px;
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
}

.ktj-input:focus {
    border-color: #b08a3e;
}

.ktj-input::placeholder {
    color: #3a3a3a;
}

.ktj-textarea {
    resize: vertical;
    min-height: 120px;
}

.ktj-field-note {
    font-size: 11px;
    color: #444;
    margin-top: 6px;
    letter-spacing: 1px;
}

/* Date input gold calendar icon */
input[type="date"].ktj-input::-webkit-calendar-picker-indicator {
    filter: invert(0.6) sepia(1) saturate(2) hue-rotate(5deg);
    cursor: pointer;
}


/* ── Milestone rows ─────────────────────────── */

.ktj-milestone-row {
    display: grid;
    grid-template-columns: 1fr 180px 40px;
    gap: 12px;
    align-items: end;
    margin-bottom: 14px;
}

@media (max-width: 600px) {
    .ktj-milestone-row {
        grid-template-columns: 1fr;
    }
    .ktj-remove-milestone {
        justify-self: start;
    }
}

.ktj-remove-milestone {
    background: transparent;
    border: 1px solid #2a2a2a;
    color: #555;
    font-size: 18px;
    width: 40px;
    height: 40px; /* Removed hardcoded px, let it size to input */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
    align-self: end;
    margin-bottom: 0;
    padding: 0;
    line-height: 1;
    padding-bottom: 2px; /* Optical center of × */
}
.ktj-remove-milestone:hover {
    border-color: #b08a3e;
    color: #b08a3e;
}

.ktj-add-milestone-btn {
    background: transparent;
    border: none;
    color: #b08a3e;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    margin-top: 8px;
    transition: opacity 0.2s;
}
.ktj-add-milestone-btn:hover { opacity: 0.7; }


/* ── Submit row ─────────────────────────────── */

.ktj-form-submit-row {
    margin-top: 50px;
    text-align: center;
}

.ktj-portal-btn {
    background: transparent;
    border: 1px solid #b08a3e;
    color: #b08a3e;
    font-family: 'Marcellus', serif;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    padding: 18px 50px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    display: inline-block;
    text-decoration: none;
}
.ktj-portal-btn:hover {
    background: #b08a3e;
    color: #0a0a0a;
}
.ktj-portal-btn:disabled {
    opacity: 0.4;
    cursor: default;
}
.ktj-portal-btn--sm {
    padding: 14px 36px;
    font-size: 11px;
}

.ktj-form-message {
    display: none;
    margin-top: 20px;
    font-size: 13px;
    color: #b08a3e;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ── Returning member: welcome header ────────── */

.ktj-portal-welcome-header {
    padding-bottom: 50px;
    border-bottom: 1px solid #1e1e1e;
    margin-bottom: 60px;
}

.ktj-portal-welcome-name {
    font-family: 'Marcellus', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: 2px;
}

.ktj-portal-welcome-sub {
    color: #555;
    font-style: italic;
    font-size: 16px;
    margin: 0;
}


/* ── Milestone strip (portal home) ───────────── */

.ktj-milestone-strip {
    margin-bottom: 70px;
}

.ktj-milestone-strip-label {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 20px;
}

.ktj-milestone-strip-items {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ktj-milestone-chip {
    background: #111;
    border: 1px solid #2a2a2a;
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
}

.ktj-milestone-chip--soon {
    border-color: #b08a3e;
}

.ktj-milestone-chip-label {
    font-size: 11px;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ktj-milestone-chip-date {
    font-family: 'Marcellus', serif;
    font-size: 20px;
    color: #fff;
}

.ktj-milestone-chip-soon {
    font-size: 10px;
    color: #b08a3e;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ── Hotspot grid ───────────────────────────── */

.ktj-hotspot-section {
    margin-bottom: 80px;
}

.ktj-hotspot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #1e1e1e;
    border: 1px solid #1e1e1e;
}

@media (max-width: 700px) {
    .ktj-hotspot-grid { grid-template-columns: 1fr; }
}

.ktj-hotspot-card {
    background: #0a0a0a;
    padding: 40px 30px;
    transition: background 0.25s;
}
.ktj-hotspot-card:hover { background: #111; }

.ktj-hotspot-icon {
    color: #b08a3e;
    font-size: 22px;
    margin-bottom: 20px;
}

.ktj-hotspot-title {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: 1px;
}

.ktj-hotspot-body {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 24px;
}

.ktj-hotspot-link {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b08a3e !important;
    text-decoration: underline;
    text-decoration-color: #b08a3e;
    text-underline-offset: 4px;
    border-bottom: none;
    padding-bottom: 2px;
    transition: opacity 0.2s;
    display: inline-block;
}
.ktj-hotspot-link:hover { opacity: 0.7; }


/* ── Profile section ────────────────────────── */

.ktj-portal-profile-section {
    margin-bottom: 80px;
}

.ktj-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #1e1e1e;
    border: 1px solid #1e1e1e;
    margin-bottom: 50px;
}

@media (max-width: 600px) {
    .ktj-profile-grid { grid-template-columns: 1fr 1fr; }
}

.ktj-profile-block {
    background: #0a0a0a;
    padding: 28px 24px;
}

.ktj-profile-block--wide {
    grid-column: 1 / -1;
}

.ktj-profile-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 8px;
}

.ktj-profile-value {
    font-size: 15px;
    color: #fff;
}
.ktj-profile-value--italic {
    font-style: italic;
    color: #888;
}


/* ── Milestone editor (returning member) ─────── */

.ktj-milestone-editor {
    background: #111;
    border: 1px solid #2a2a2a;
    padding: 36px 30px;
}

.ktj-milestone-editor-title {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b08a3e;
    margin-bottom: 24px;
}


/* ── Admin panel overrides (dark theme) ─────── */
/* These only affect the KEIS CLUB admin page */
.toplevel_page_keis-club-members .ktj-admin-panel {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ── Label visibility fix ───────────────────── */
.ktj-label {
    color: #aaaaaa;
}

/* ── Helper note — gold highlight ───────────── */
.ktj-field-note {
    color: #b08a3e;
    font-size: 12px;
    letter-spacing: 1.5px;
}

/* ── Input background fix — dark on all states ── */
.ktj-input,
.ktj-input:focus,
.ktj-input:active,
.ktj-textarea,
.ktj-textarea:focus {
    color: #ffffff;
    background: #111111;
    caret-color: #b08a3e;
}

/* Browser autofill override */
.ktj-input:-webkit-autofill,
.ktj-input:-webkit-autofill:hover,
.ktj-input:-webkit-autofill:focus,
.ktj-textarea:-webkit-autofill {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0px 1000px #111111 inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Force dark on ALL input types */
input.ktj-input,
textarea.ktj-input,
select.ktj-input {
    background-color: #111111 !important;
    color: #ffffff !important;
}




/* =============================================
   TARGETED PAGE ID 769 — BLACK BG + GOLD BORDER
============================================= */

/* 1. Force black background ONLY on the content area of Page 769 */
html.page-id-769,
body.page-id-769,
.page-id-769 #page,
.page-id-769 #content,
.page-id-769 .site-content,
.page-id-769 #main,
.page-id-769 .content-area {
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
}

html.page-id-769 {
    height: 100%; /* Fixes any white gap at the very bottom */
}

/* 2. Style the Portal Wrap with the Golden Border */
.page-id-769 .ktj-portal-wrap {
    background: #0a0a0a !important;
    border: 1px solid #b08a3e;
    padding: 60px;
    margin: 40px auto;
    max-width: 960px;
    position: relative;
    z-index: 5;
}

/* 3. CUSTOM KTJ MENU FORCE-VISIBLE */
/* Target regular links, but IGNORE the special Keis Club button */
.page-id-769 .ktj-desktop-nav a:not(.keis-club-link) {
    color: #ffffff !important;
    transition: color 0.2s ease;
}

.page-id-769 .ktj-desktop-nav a:not(.keis-club-link):hover,
.page-id-769 .ktj-desktop-nav a.active:not(.keis-club-link) {
    color: #b08a3e !important;
}

/* Ensure the special Keis Club button is strictly preserved */
.page-id-769 .ktj-desktop-nav a.keis-club-link {
    color: #b08a3e !important;
    background: #111 !important;
}

/* Make sure the desktop nav container itself has a transparent or black background */
.page-id-769 .ktj-desktop-nav {
    background-color: transparent !important;
}

/* 4. PROTECT THE MAIN HEADER - Keep the top logo bar white */
.page-id-769 .ktj-header,
.page-id-769 #masthead,
.page-id-769 .site-header {
    background-color: #ffffff !important;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .page-id-769 .ktj-portal-wrap {
        padding: 30px 20px;
        margin: 10px;
        border-width: 1px;
    }
}


/* =====================================================
   Level 3 Authentication Card Styling
===================================================== */
#ktj-level-3-sorority .ktj-auth-card {
    background-color: #fff;
    max-width: 500px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

#ktj-level-3-sorority h2 {
    text-align: left;
    color: #000;
    margin-bottom: 10px;
}

#ktj-level-3-sorority .ktj-subtitle {
    text-align: left;
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.ktj-form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ktj-field-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.ktj-input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #000;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 15px;
    color: #000;
    background-color: #fafafa;
}

.ktj-help-text {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 12px;
}

.ktj-form-actions {
    margin-top: 10px;
}

.ktj-btn-primary {
    width: 100%;
    padding: 14px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ktj-btn-primary:hover {
    background-color: #333;
}

.ktj-auth-footer {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.ktj-auth-footer p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.ktj-auth-footer a {
    color: #000;
    text-decoration: underline;
}

.ktj-btn-secondary {
    background: none;
    border: 1px solid #ccc;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.ktj-btn-secondary:hover {
    background-color: #f5f5f5;
}

/* Style the new inline checkbox */
#ktj-level-3-sorority .ktj-checkbox-inline label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: normal;
    color: #444;
    cursor: pointer;
}

#ktj-level-3-sorority .ktj-checkbox-inline input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Scoped Overrides to prevent global dark theme styles from breaking Level 3's white card */
#ktj-level-3-sorority h2 {
    color: #000 !important;
    text-align: left !important;
}
#ktj-level-3-sorority .ktj-subtitle {
    color: #666 !important;
    text-align: left !important;
}
#ktj-level-3-sorority .ktj-field-group label {
    color: #333 !important;
    text-align: left !important;
}
#ktj-level-3-sorority input.ktj-input,
#ktj-level-3-sorority select.ktj-input {
    background-color: #fafafa !important;
    color: #000 !important;
    border: 1px solid #000 !important;
    border-radius: 4px !important;
    padding: 14px 15px !important;
    font-size: 15px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}
#ktj-level-3-sorority input.ktj-input:focus,
#ktj-level-3-sorority select.ktj-input:focus {
    border-color: #000 !important;
}
#ktj-level-3-sorority .ktj-help-text {
    color: #888 !important;
}
#ktj-level-3-sorority .ktj-auth-footer p {
    color: #666 !important;
}
#ktj-level-3-sorority .ktj-auth-footer a {
    color: #000 !important;
}
#ktj-level-3-sorority .ktj-btn-secondary {
    color: #555 !important;
}
#ktj-level-3-sorority .ktj-checkbox-inline label {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 13px !important;
    font-weight: normal !important;
    color: #444 !important;
    cursor: pointer !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    margin-bottom: 0 !important;
}
#ktj-level-3-sorority .ktj-checkbox-inline input[type="checkbox"] {
    margin: 0 !important;
    width: 16px !important;
    height: 16px !important;
    cursor: pointer !important;
}

/* =============================================
   PORTAL — COLLECTION PRODUCT GRID
============================================= */

.ktj-portal-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .ktj-portal-collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .ktj-portal-collection-grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.ktj-portal-product-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ktj-portal-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(176, 138, 62, 0.12);
}

/* Image */
.ktj-portal-product-img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f4f4f4;
}

.ktj-portal-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ktj-portal-product-card:hover .ktj-portal-product-img {
    transform: scale(1.04);
}

/* Body */
.ktj-portal-product-body {
    padding: 20px 18px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

/* Category label */
.ktj-portal-product-cat {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b08a3e;
    margin-bottom: 8px;
}

/* Product name */
.ktj-portal-product-name {
    font-family: 'Marcellus', serif;
    font-size: 16px;
    font-weight: 400;
    color: #111;
    margin: 0 0 10px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.ktj-portal-product-name a {
    color: #111 !important;
    text-decoration: none !important;
}

.ktj-portal-product-name a:hover {
    color: #b08a3e !important;
}

/* Price */
.ktj-portal-product-price {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 18px;
    margin-top: auto;
    padding-top: 10px;
}

.ktj-portal-product-price ins {
    text-decoration: none;
    font-weight: 700;
}

.ktj-portal-product-price del {
    font-size: 13px;
    opacity: 0.5;
    margin-right: 6px;
}

/* CTA Button */
.ktj-portal-product-btn {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border: 1px solid #111;
    background: transparent;
    color: #111 !important;
    font-family: 'Marcellus', serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-top: auto;
}

.ktj-portal-product-btn:hover {
    background: #111;
    color: #fff !important;
}

/* =============================================
   PRICE BUTTON — MATCHES PRODUCT PRICE STYLE
============================================= */

.ktj-portal-product-btn--price {
    display: block !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    text-align: left !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-family: 'Marcellus', serif !important;
    cursor: pointer;
    text-decoration: none !important;
    margin-top: 4px !important;
}

.ktj-portal-product-btn--price:hover {
    background: transparent !important;
    color: inherit !important;
}

.ktj-btn-starting {
    display: block !important;
    font-family: 'PT Serif', serif !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #b08a3e !important;
    margin-bottom: 4px !important;
    font-weight: 400 !important;
}

.ktj-btn-price {
    display: block !important;
    font-family: 'Marcellus', serif !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    color: #111 !important;
    letter-spacing: 0.5px !important;
    line-height: 1 !important;
    text-transform: none !important;
}

.ktj-btn-mo {
    display: inline !important;
    font-family: 'PT Serif', serif !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #888 !important;
    font-weight: 400 !important;
    margin-left: 3px !important;
}

/* Hover — gold accent on price */
.ktj-portal-product-btn--price:hover .ktj-btn-price {
    color: #b08a3e !important;
}

.ktj-portal-product-btn--price:hover .ktj-btn-starting {
    color: #111 !important;
}

/* =============================================
   MILESTONE CHIP — UPCOMING PULSE
============================================= */

.ktj-milestone-chip--soon {
    border-color: #b08a3e;
    position: relative;
}

.ktj-milestone-chip--soon .ktj-milestone-chip-date {
    color: #b08a3e;
}

/* =============================================
   PORTAL PRODUCT CARD — INSTALLMENT PRICING
============================================= */

.ktj-portal-product-installment {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 14px;
    padding: 12px 14px;
    background: #f9f8f6;
    border: 1px solid #eaeaea;
    border-radius: 3px;
}

.ktj-portal-installment-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b08a3e;
}

.ktj-portal-installment-amount {
    font-family: 'Marcellus', serif;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
}

.ktj-portal-installment-amount .woocommerce-Price-amount {
    font-family: 'Marcellus', serif;
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

.ktj-portal-installment-terms {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.5px;
}

/* =============================================
   EVENTS GRID & CARDS
============================================= */

.ktj-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 700px) {
    .ktj-events-grid {
        grid-template-columns: 1fr;
    }
}

.ktj-event-card {
    background: #111;
    border: 1px solid #2a2a2a;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.3s ease;
}

.ktj-event-card:hover {
    border-color: #b08a3e;
}

.ktj-event-card-date {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b08a3e;
}

.ktj-event-card-title {
    font-family: 'Marcellus', serif;
    font-size: 20px;
    color: #fff;
    line-height: 1.3;
}

.ktj-event-card-location {
    font-size: 12px;
    letter-spacing: 1px;
    color: #555;
    text-transform: uppercase;
}

.ktj-event-card-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    margin: 8px 0 16px;
    flex-grow: 1;
}

/* =============================================
   EXPERIENCE WISHLIST CHECKBOXES
============================================= */

.ktj-checkbox-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 600px) {
    .ktj-checkbox-list {
        grid-template-columns: 1fr;
    }
}

.ktj-checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 14px 16px;
    background: #111;
    border: 1px solid #2a2a2a;
    transition: border-color 0.2s ease;
}

.ktj-checkbox-item:hover {
    border-color: #b08a3e;
}

.ktj-checkbox-item input[type="checkbox"] {
    accent-color: #b08a3e;
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.ktj-checkbox-item span {
    font-size: 13px;
    color: #aaa;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.ktj-checkbox-item:has(input:checked) {
    border-color: #b08a3e;
    background: #141414;
}

.ktj-checkbox-item:has(input:checked) span {
    color: #fff;
}

/* =============================================
   PRODUCT PRICE — ADD TO CART CLICK
============================================= */

.ktj-portal-price-atc {
    display: block !important;
    text-decoration: none !important;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.ktj-portal-price-atc::after {
    content: '+ Add to Cart';
    display: block;
    font-family: 'PT Serif', serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b08a3e;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.2s ease;
}

.ktj-portal-product-card:hover .ktj-portal-price-atc::after {
    opacity: 1;
    transform: translateY(0);
}

.ktj-portal-price-atc:hover {
    color: #b08a3e !important;
}

/* =============================================
   VIEW ENTIRE COLLECTION BUTTON
============================================= */

.ktj-view-collection-wrap {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 50px 0 20px;
    border-top: 1px solid #1a1a1a;
    margin-top: 20px;
}

.ktj-view-collection-btn {
    display: inline-block;
    padding: 18px 60px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff !important;
    font-family: 'Marcellus', serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.ktj-view-collection-btn:hover {
    background: #fff;
    color: #111 !important;
}

/* Premium styled dropdown select arrows */
.ktj-portal-wrap select.ktj-input,
.ktj-profile-edit-section select.ktj-input,
.ktj-onboarding-form select.ktj-input,
select.ktj-input {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-color: #111111 !important;
    color: #ffffff !important;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgMTIgOCI+PHBhdGggZD0iTTEgMWw1IDUgNS01IiBzdHJva2U9IiNiMDhhM2UiIHN0cm9rZS13aWR0aD0iMS41IiBmaWxsPSJub25lIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz48L3N2Zz4=") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 36px !important;
    cursor: pointer !important;
}

.ktj-portal-wrap select.ktj-input option,
select.ktj-input option {
    background-color: #111111 !important;
    color: #ffffff !important;
}

/* =====================================================
   COLLECTION PAGE ACCESS STYLING (LIGHT BACKGROUND)
===================================================== */
.ktj-collection-login-section {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid #eaeaea;
    text-align: center;
}

.ktj-collection-login-title {
    font-family: 'Marcellus', serif;
    font-size: clamp(16px, 3.5vw, 18px);
    letter-spacing: 3px;
    color: #111 !important;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ktj-collection-login-subtitle {
    font-family: 'PT Serif', serif;
    font-size: 14px;
    color: #666 !important;
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Force light input styles to override the dark portal defaults */
.ktj-collection-login-section input.ktj-input {
    background-color: #ffffff !important;
    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid #cccccc !important;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px;
}

.ktj-collection-login-section input.ktj-input:focus {
    border-color: #b08a3e !important;
}

.ktj-collection-login-section .ktj-portal-btn {
    padding: 12px 36px;
    font-size: 11px;
    letter-spacing: 4px;
    border: 1px solid #b08a3e;
    color: #b08a3e;
    background: transparent;
    transition: all 0.3s;
    font-family: 'Marcellus', serif;
    text-transform: uppercase;
    cursor: pointer;
}

.ktj-collection-login-section .ktj-portal-btn:hover {
    background: #b08a3e;
    color: #ffffff !important;
}

.ktj-collection-login-section .ktj-portal-btn--active {
    background: #b08a3e;
    color: #ffffff !important;
    text-decoration: none;
}
.ktj-collection-login-section .ktj-portal-btn--active:hover {
    opacity: 0.9;
    color: #ffffff !important;
}

.ktj-collection-login-section .ktj-form-message {
    margin-top: 15px;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Scoped placeholders for collection page underline input */
.ktj-collection-login-section input.ktj-input::placeholder {
    color: #999999 !important;
    text-transform: none !important;
    font-style: italic !important;
    font-size: 14px !important;
    letter-spacing: normal !important;
    opacity: 0.8 !important;
}
.ktj-collection-login-section input.ktj-input::-webkit-input-placeholder {
    color: #999999 !important;
    text-transform: none !important;
    font-style: italic !important;
    font-size: 14px !important;
    letter-spacing: normal !important;
    opacity: 0.8 !important;
}
.ktj-collection-login-section input.ktj-input::-moz-placeholder {
    color: #999999 !important;
    text-transform: none !important;
    font-style: italic !important;
    font-size: 14px !important;
    letter-spacing: normal !important;
    opacity: 0.8 !important;
}

/* High contrast button hover state */
.ktj-collection-login-section .ktj-portal-btn:hover {
    background: #b08a3e !important;
    color: #ffffff !important;
}