/* Method pills */
.nayims-method-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.nayims-method-pill {
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    background: #fff;
}

.nayims-method-pill:hover {
    border-color: var(--primary, #244697);
}

.nayims-method-pill.selected {
    border-color: var(--primary, #244697);
    background: #f0f4ff;
    color: var(--primary, #244697);
}

/* Per-position config block */
.nayims-position-config {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fafafa;
}

.nayims-position-config-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    color: #333;
}

/* Same method toggle */
.nayims-same-method-toggle {
    margin-bottom: 20px;
    padding: 12px 15px;
    background: #f5f5f5;
    border-radius: 6px;
}

/* Review blocks */
.review-position-block {
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 12px 15px;
    margin-bottom: 12px;
    background: #fafafa;
}

.review-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #eee;
}

/* =====================
   CUSTOMISE PAGE LAYOUT
   ===================== */
  

#nayims-customise-page {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nayims-customise-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .nayims-customise-container {
        grid-template-columns: 1fr;
    }
}

/* =====================
   WIZARD HEADER
   ===================== */

.nayims-wizard-header h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.nayims-steps-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.nayims-step {
    font-size: 13px;
    color: #999;
    padding: 4px 0;
}

.nayims-step.active {
    color: var(--primary, #244697);
    font-weight: 600;
}

.nayims-step.completed {
    color: #28a745;
}

.nayims-step-arrow {
    color: #ccc;
    font-size: 16px;
}

/* =====================
   WIZARD STEPS
   ===================== */

.nayims-wizard-step h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.nayims-wizard-step > p {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

/* =====================
   POSITION GRID
   ===================== */

.nayims-positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .nayims-positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nayims-position {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.nayims-position:hover {
    border-color: var(--primary, #244697);
}

.nayims-position.selected {
    border-color: var(--primary, #244697);
    background: #f0f4ff;
}

.nayims-position.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.nayims-position-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.nayims-position-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.nayims-position-methods {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
}

.method-tag {
    font-size: 11px;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 20px;
    color: #666;
}

/* =====================
   METHOD GRID
   ===================== */

.nayims-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

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

.nayims-method {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.nayims-method:hover {
    border-color: var(--primary, #244697);
}

.nayims-method.selected {
    border-color: var(--primary, #244697);
    background: #f0f4ff;
}

.nayims-method.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.nayims-method-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.nayims-method-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.nayims-method-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* =====================
   UPLOAD AREA
   ===================== */

.nayims-upload-area {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin-bottom: 25px;
    background: #fafafa;
}

.nayims-upload-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.nayims-upload-area p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #444;
}

.nayims-upload-formats {
    font-size: 13px !important;
    color: #999 !important;
    margin-bottom: 20px !important;
}

.nayims-upload-preview {
    text-align: center;
}

.nayims-upload-preview img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 5px;
}

.nayims-upload-filename {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.nayims-upload-alternatives {
    margin-bottom: 25px;
}

.nayims-upload-alternatives p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #444;
}

.nayims-radio-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    cursor: pointer;
    line-height: 1.4;
}

.nayims-radio-option input {
    margin-top: 2px;
    flex-shrink: 0;
}

.nayims-notes-field {
    margin-bottom: 25px;
}

.nayims-notes-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.nayims-notes-field textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
}

/* =====================
   REVIEW SUMMARY
   ===================== */

#nayims-review-summary {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

.review-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.review-row:last-child {
    border-bottom: none;
}

.review-label {
    color: #666;
    font-weight: 500;
}

.review-value {
    color: #333;
    font-weight: 600;
    text-align: right;
}

.review-logo-preview {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 4px;
}

/* =====================
   WIZARD FOOTER
   ===================== */

.nayims-wizard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.nayims-selected-count {
    font-size: 14px;
    color: #666;
}

/* =====================
   BUTTONS
   ===================== */

.nayims-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.nayims-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nayims-btn-primary {
    background: var(--primary, #244697);
    color: #fff;
}

.nayims-btn-primary:hover:not(:disabled) {
    background: var(--primary_hover, #0472BB);
    color: #fff;
}

.nayims-btn-secondary {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.nayims-btn-secondary:hover {
    background: #e8e8e8;
}

/* =====================
   ORDER SUMMARY PANEL
   ===================== */

.nayims-order-summary {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    position: sticky;
    top: 100px;
}

.nayims-order-summary h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.nayims-cart-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.nayims-cart-item:last-child {
    border-bottom: none;
}

.nayims-cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.nayims-cart-item-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 4px;
}

.nayims-cart-item-price {
    font-size: 13px;
    color: #444;
}

.nayims-price-breakdown {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.nayims-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 5px 0;
    color: #555;
}

/* =====================
   MODAL (already in file but keeping consistent)
   ===================== */

#nayims-logo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.nayims-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.nayims-modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    width: 90%;
    max-width: 480px;
    text-align: center;
    z-index: 1;
}

.nayims-modal-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.nayims-modal-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.nayims-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
/* Unavailable position */
.nayims-position.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f9f9f9;
}

.nayims-position-unavailable {
    font-size: 11px;
    color: #999;
    margin-top: 6px;
    font-style: italic;
}

/* Unavailable method */
.nayims-method.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f9f9f9;
}

.nayims-method-unavailable {
    font-size: 11px;
    color: #999;
    margin-top: 6px;
    font-style: italic;
}

/* Method disclaimer */
.nayims-disclaimer {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

/* Wizard disclaimer on step 3 */
.nayims-wizard-disclaimer {
    background: #f0f7ff;
    border: 1px solid #c8e0ff;
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
    font-size: 14px;
    color: #444;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.5;
}

.nayims-wizard-disclaimer span {
    font-size: 20px;
    flex-shrink: 0;
}

/* No positions message */
.nayims-no-positions {
    padding: 20px;
    color: #666;
    font-style: italic;
}

/* Method tag for unavailable */
.method-tag-none {
    background: #fee;
    color: #c00;
}

/* Saved logos grid */
.nayims-saved-logos-section {
    border: 1px solid #e8edf5;
    border-radius: 6px;
    padding: 12px;
    background: #f8faff;
    margin-bottom: 15px;
}

.nayims-saved-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.nayims-saved-logo-item {
    width: 80px;
    border: 2px solid #eee;
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    text-align: center;
    background: #fff;
    transition: all 0.2s;
}

.nayims-saved-logo-item:hover {
    border-color: var(--primary, #244697);
}

.nayims-saved-logo-item.selected {
    border-color: var(--primary, #244697);
    background: #f0f4ff;
}

.nayims-saved-logo-item img {
    width: 100%;
    height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
}

.nayims-saved-logo-icon {
    font-size: 28px;
    margin-bottom: 5px;
}

.nayims-saved-logo-name {
    font-size: 10px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* Login prompt in wizard */
.nayims-login-prompt {
    margin-top: 10px;
    padding: 12px 15px;
    background: #f0f4ff;
    border: 1px solid #c8d8f8;
    border-radius: 6px;
}

.nayims-login-prompt-btn {
    display: inline-block;
    color: #244697;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.nayims-login-prompt-btn:hover {
    text-decoration: underline;
}