/* =============================================================================
   Apex Custom Order v2 — Styles
   
   Specificity strategy:
     - Root selector is always `.aco-wrap.aco-wrap` (doubled class = specificity
       0,2,0) which beats any single-class theme rule (0,1,0) without !important
     - Element resets are scoped inside `.aco-wrap.aco-wrap` to neutralise
       Elementor, WPBakery, and aggressive theme resets on buttons/inputs/labels
     - All CSS custom properties defined on `.aco-wrap.aco-wrap` so they cannot
       be overridden by :root-level theme variables
   ============================================================================= */

/* ── Scoped element resets ───────────────────────────────────────────────────
   These cancel out the most common Elementor / theme overrides on raw elements
   before our component styles apply.
   --------------------------------------------------------------------------- */
.aco-wrap.aco-wrap *,
.aco-wrap.aco-wrap *::before,
.aco-wrap.aco-wrap *::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

/* Typography reset — themes often set global font/line-height/color on * or body */
.aco-wrap.aco-wrap {
    font-family: "Poppins", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #1a1f2e;
    -webkit-text-size-adjust: 100%;
}

/* Button reset — Elementor + most themes inject border, background, padding, shadow */
.aco-wrap.aco-wrap button,
.aco-wrap.aco-wrap input[type="button"],
.aco-wrap.aco-wrap input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: none;
    text-shadow: none;
    outline: none;
    display: inline-block;
    width: auto;
    transition: none;
}

/* Input / textarea reset */
.aco-wrap.aco-wrap input[type="text"],
.aco-wrap.aco-wrap input[type="number"],
.aco-wrap.aco-wrap textarea,
.aco-wrap.aco-wrap select {
    appearance: none;
    -webkit-appearance: none;
    background: #ffffff;
    border: 1px solid #d8dde5;
    border-radius: 0;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    box-shadow: none;
    outline: none;
    width: auto;
    max-width: none;
    min-height: 0;
    height: auto;
}

/* Label reset */
.aco-wrap.aco-wrap label {
    display: inline;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
    cursor: auto;
    max-width: none;
}

/* Anchor reset — themes inject color, underline, hover effects */
.aco-wrap.aco-wrap a {
    color: inherit;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    transition: none;
}

/* Table reset */
.aco-wrap.aco-wrap table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.aco-wrap.aco-wrap td,
.aco-wrap.aco-wrap th {
    padding: 0;
    margin: 0;
    border: none;
    vertical-align: middle;
    text-align: left;
    background: none;
}

/* List reset */
.aco-wrap.aco-wrap ul,
.aco-wrap.aco-wrap ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Image reset */
.aco-wrap.aco-wrap img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

/* ── CSS custom properties — doubled class keeps these local ─────────────────
   Any theme that sets the same variable name on :root cannot override these
   because .aco-wrap.aco-wrap has higher specificity than :root
   --------------------------------------------------------------------------- */
.aco-wrap.aco-wrap {
    --aco-orange:       rgba(246, 139, 31, 1);
    --aco-orange-light: #fff4e6;
    --aco-orange-dark:  #d97a1c;
    --aco-blue:         #002559;
    --aco-green:        #1fa94d;
    --aco-green-light:  #e8f7ee;
    --aco-gray-900:     #1a1f2e;
    --aco-gray-700:     #4a5163;
    --aco-gray-500:     rgba(114, 108, 108, 1);
    --aco-gray-300:     #d8dde5;
    --aco-gray-200:     #e8ebf0;
    --aco-gray-100:     #f4f6f9;
    --aco-white:        #ffffff;
    --aco-red:          #dc3545;
}

/* ── Page container — 1340px centered ───────────────────────────────────────── */
.aco-wrap.aco-wrap .aco-page-container {
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* ── Layout ──────────────────────────────────────────────────────────────────── */
.aco-wrap.aco-wrap .aco-main-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
}

@media (max-width: 980px) {
    .aco-wrap.aco-wrap .aco-main-layout {
        grid-template-columns: 1fr;
    }
}

/* ── Form card ───────────────────────────────────────────────────────────────── */
.aco-wrap.aco-wrap .aco-form-card {
    background: var(--aco-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

/* ── Step indicator ──────────────────────────────────────────────────────────── */
.aco-wrap.aco-wrap .aco-step-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    padding: 0 8px;
}

.aco-wrap.aco-wrap .aco-step-bubble {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--aco-gray-200);
    color: var(--aco-gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.3s ease;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-step-bubble.active {
    background: var(--aco-orange);
    color: #ffffff;
    box-shadow: 0 0 0 4px var(--aco-orange-light);
}

.aco-wrap.aco-wrap .aco-step-bubble.completed {
    background: var(--aco-orange);
    color: #ffffff;
}

.aco-wrap.aco-wrap .aco-step-bubble.completed .aco-step-number {
    display: none;
}

.aco-wrap.aco-wrap .aco-step-bubble.completed::after {
    content: "✓";
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.aco-wrap.aco-wrap .aco-step-line {
    flex: 1;
    height: 2px;
    background: var(--aco-gray-200);
    margin: 0 8px;
    transition: background 0.3s ease;
    border: none;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-step-line.completed {
    background: var(--aco-orange);
}

/* ── Step content ────────────────────────────────────────────────────────────── */
.aco-wrap.aco-wrap .aco-step-content {
    flex: 1;
    display: none;
    animation: acoFadeIn 0.3s ease;
    border: 1px solid rgba(176, 176, 176, 1);
    border-radius: 10px;
    overflow: hidden;
}

.aco-wrap.aco-wrap .aco-step-content.active {
    display: block;
}

@keyframes acoFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Step header ─────────────────────────────────────────────────────────────── */
.aco-wrap.aco-wrap .aco-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(176, 176, 176, 1);
    flex-wrap: wrap;
    background: none;
    margin: 0;
}

.aco-wrap.aco-wrap .aco-step-badge {
    width: 28px;
    height: 28px;
    background: var(--aco-orange);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
}

.aco-wrap.aco-wrap .aco-step-title-block {
    flex: 1;
    margin: 0;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-step-title {
    color: var(--aco-blue);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 2px 0;
    padding: 0;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: normal;
}

.aco-wrap.aco-wrap .aco-step-subtitle {
    color: var(--aco-gray-700);
    font-size: 13px;
    margin: 0;
    padding: 0;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
}

.aco-wrap.aco-wrap .aco-btn-outline {
    background: transparent;
    color: var(--aco-orange);
    border: 1.5px solid var(--aco-orange);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
    text-shadow: none;
    line-height: 1.4;
    font-family: inherit;
}

.aco-wrap.aco-wrap .aco-btn-outline:hover {
    background: var(--aco-orange);
    color: #ffffff;
    text-decoration: none;
    border-color: var(--aco-orange);
}

/* ── Step 1: Upload ──────────────────────────────────────────────────────────── */
.aco-wrap.aco-wrap .aco-upload-wrap {
    padding: 32px 40px;
}

.aco-wrap.aco-wrap .aco-upload-zone {
    border: 2px dashed var(--aco-gray-300);
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
    background: transparent;
    margin: 0;
}

.aco-wrap.aco-wrap .aco-upload-zone:hover,
.aco-wrap.aco-wrap .aco-upload-zone.dragging {
    border-color: var(--aco-orange);
    background: var(--aco-orange-light);
}

.aco-wrap.aco-wrap .aco-upload-zone.has-file {
    border-color: var(--aco-green);
    background: var(--aco-green-light);
    border-style: solid;
}

.aco-wrap.aco-wrap .aco-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.aco-wrap.aco-wrap .aco-upload-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aco-gray-100);
    border: 1px dashed var(--aco-gray-300);
    box-shadow: none;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-upload-zone.has-file .aco-upload-icon {
    background: var(--aco-green);
    border: none;
}

.aco-wrap.aco-wrap .aco-upload-zone.has-file .aco-upload-icon::after {
    content: "✓";
    font-size: 32px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
}

.aco-wrap.aco-wrap .aco-upload-zone.has-file .aco-upload-icon img {
    display: none;
}

.aco-wrap.aco-wrap .aco-upload-icon img {
    width: 36px;
    height: auto;
    display: block;
    margin: 0;
    border: none;
}

.aco-wrap.aco-wrap .aco-upload-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--aco-gray-900);
    margin: 0 0 6px 0;
    padding: 0;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.4;
}

.aco-wrap.aco-wrap .aco-upload-subtitle {
    font-size: 13px;
    color: var(--aco-gray-500);
    margin: 0 0 16px 0;
    padding: 0;
    font-weight: 400;
    text-transform: none;
}

.aco-wrap.aco-wrap .aco-file-type-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-badge {
    padding: 4px 12px;
    background: #ffffff;
    border: 1px solid var(--aco-gray-200);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--aco-gray-700);
    letter-spacing: 0.3px;
    margin: 0;
    display: inline-block;
    line-height: 1.5;
    text-transform: none;
}

.aco-wrap.aco-wrap .aco-upload-error {
    color: var(--aco-red);
    font-size: 13px;
    margin-top: 12px;
    text-align: center;
    font-weight: 400;
}

.aco-wrap.aco-wrap .aco-progress-wrap {
    margin-top: 20px;
}

.aco-wrap.aco-wrap .aco-progress-bar {
    height: 6px;
    background: var(--aco-gray-200);
    border-radius: 3px;
    overflow: hidden;
    border: none;
    padding: 0;
    margin: 0;
}

.aco-wrap.aco-wrap .aco-progress-fill {
    height: 100%;
    background: var(--aco-green);
    width: 0%;
    transition: width 0.2s;
    border-radius: 3px;
    display: block;
}

.aco-wrap.aco-wrap .aco-progress-status {
    font-size: 12px;
    color: var(--aco-gray-500);
    margin-top: 4px;
    text-align: center;
    font-weight: 400;
}

.aco-wrap.aco-wrap .aco-pdf-preview {
    margin-top: 16px;
    text-align: center;
}

.aco-wrap.aco-wrap .aco-pdf-preview canvas {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
    border: none;
}

/* ── Step 2: Configure ───────────────────────────────────────────────────────── */
.aco-wrap.aco-wrap .aco-config-wrap {
    padding: 24px 40px;
}

.aco-wrap.aco-wrap .aco-config-group {
    margin-bottom: 24px;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-config-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--aco-gray-900);
    margin: 0 0 8px 0;
    padding: 0;
    display: block;
    text-transform: none;
    letter-spacing: normal;
}

.aco-wrap.aco-wrap .aco-required {
    color: var(--aco-red);
    font-weight: 600;
}

.aco-wrap.aco-wrap .aco-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-pill-btn {
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid var(--aco-gray-300);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--aco-gray-700);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    font-family: inherit;
    line-height: 1.4;
    margin: 0;
    box-shadow: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    display: inline-block;
}

.aco-wrap.aco-wrap .aco-pill-btn:hover {
    border-color: var(--aco-orange);
    color: var(--aco-orange);
    background: #ffffff;
    box-shadow: none;
}

.aco-wrap.aco-wrap .aco-pill-btn.active {
    background: var(--aco-orange-light);
    border-color: var(--aco-orange);
    color: var(--aco-orange);
    box-shadow: none;
}

.aco-wrap.aco-wrap .aco-dims-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-dim-field {
    flex: 1;
    margin: 0;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-dim-field label {
    display: block;
    font-size: 12px;
    color: var(--aco-gray-500);
    margin: 0 0 4px 0;
    padding: 0;
    font-weight: 400;
    cursor: default;
}

.aco-wrap.aco-wrap .aco-dim-field input[type="number"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--aco-gray-300);
    border-radius: 8px;
    font-size: 14px;
    color: var(--aco-gray-900);
    font-family: inherit;
    transition: border-color 0.15s;
    background: #ffffff;
    box-shadow: none;
    outline: none;
    margin: 0;
    height: auto;
    min-height: 0;
    -moz-appearance: textfield;
    display: block;
}

.aco-wrap.aco-wrap .aco-dim-field input[type="number"]:focus {
    outline: none;
    border-color: var(--aco-orange);
    box-shadow: none;
}

.aco-wrap.aco-wrap .aco-dim-field input[type="number"]::-webkit-inner-spin-button,
.aco-wrap.aco-wrap .aco-dim-field input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.aco-wrap.aco-wrap .aco-dim-sep {
    font-size: 18px;
    color: var(--aco-gray-500);
    padding-bottom: 10px;
    display: block;
    line-height: 1;
    font-weight: 400;
}

.aco-wrap.aco-wrap .aco-dim-error {
    font-size: 12px;
    color: var(--aco-red);
    margin-top: 6px;
    padding: 0;
    font-weight: 400;
}

/* Quantity stepper */
.aco-wrap.aco-wrap .aco-quantity-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--aco-gray-300);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-qty-btn {
    width: 38px;
    height: 38px;
    background: var(--aco-gray-100);
    border: none;
    font-size: 20px;
    color: var(--aco-gray-700);
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
    line-height: 1;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-shadow: none;
    text-transform: none;
}

.aco-wrap.aco-wrap .aco-qty-btn:hover {
    background: var(--aco-gray-200);
    color: var(--aco-gray-700);
    box-shadow: none;
}

.aco-wrap.aco-wrap .aco-qty-input {
    width: 64px;
    height: 38px;
    border: none;
    border-left: 1px solid var(--aco-gray-300);
    border-right: 1px solid var(--aco-gray-300);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--aco-gray-900);
    background: #ffffff;
    outline: none;
    font-family: inherit;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    display: block;
    -moz-appearance: textfield;
}

.aco-wrap.aco-wrap .aco-qty-input::-webkit-inner-spin-button,
.aco-wrap.aco-wrap .aco-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.aco-wrap.aco-wrap .aco-qty-input:focus {
    outline: none;
    box-shadow: none;
}

/* Checkbox */
.aco-wrap.aco-wrap .aco-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--aco-gray-700);
    cursor: pointer;
    font-weight: 400;
    margin: 0;
    padding: 0;
    max-width: none;
    line-height: 1.5;
}

.aco-wrap.aco-wrap .aco-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--aco-orange);
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    border: 1px solid var(--aco-gray-300);
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    background: #ffffff;
}

.aco-wrap.aco-wrap .aco-checkbox-error {
    font-size: 12px;
    color: var(--aco-red);
    margin-top: 6px;
    padding: 0;
    font-weight: 400;
}

/* Text inputs */
.aco-wrap.aco-wrap .aco-text-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--aco-gray-300);
    border-radius: 8px;
    font-size: 14px;
    color: var(--aco-gray-900);
    font-family: inherit;
    transition: border-color 0.15s;
    background: #ffffff;
    box-shadow: none;
    outline: none;
    margin: 0;
    height: auto;
    min-height: 0;
    display: block;
    line-height: 1.5;
}

.aco-wrap.aco-wrap .aco-text-input:focus {
    outline: none;
    border-color: var(--aco-orange);
    box-shadow: none;
}

.aco-wrap.aco-wrap .aco-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--aco-gray-300);
    border-radius: 8px;
    font-size: 14px;
    color: var(--aco-gray-900);
    font-family: inherit;
    transition: border-color 0.15s;
    background: #ffffff;
    box-shadow: none;
    outline: none;
    margin: 0;
    min-height: 0;
    display: block;
    resize: vertical;
    line-height: 1.5;
}

.aco-wrap.aco-wrap .aco-textarea:focus {
    outline: none;
    border-color: var(--aco-orange);
    box-shadow: none;
}

/* ── Step 3: Add-ons ─────────────────────────────────────────────────────────── */
.aco-wrap.aco-wrap .aco-addon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 24px 40px;
    margin: 0;
}

@media (max-width: 600px) {
    .aco-wrap.aco-wrap .aco-addon-grid {
        grid-template-columns: 1fr;
    }
}

.aco-wrap.aco-wrap .aco-addon-card {
    border: 1.5px solid var(--aco-gray-200);
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #ffffff;
    user-select: none;
    margin: 0;
    box-shadow: none;
    text-align: left;
}

.aco-wrap.aco-wrap .aco-addon-card:hover:not(.locked) {
    border-color: var(--aco-orange);
    background: #ffffff;
    box-shadow: none;
}

.aco-wrap.aco-wrap .aco-addon-card.active {
    border-color: var(--aco-green);
    background: var(--aco-green-light);
}

.aco-wrap.aco-wrap .aco-addon-card.locked {
    cursor: default;
}

.aco-wrap.aco-wrap .aco-addon-checkbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--aco-gray-300);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: all 0.15s;
    padding: 0;
    box-shadow: none;
}

.aco-wrap.aco-wrap .aco-addon-card.active .aco-addon-checkbox {
    background: var(--aco-green);
    border-color: var(--aco-green);
}

.aco-wrap.aco-wrap .aco-addon-card.active .aco-addon-checkbox::after {
    content: "✓";
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.aco-wrap.aco-wrap .aco-addon-content {
    flex: 1;
    margin: 0;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-addon-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--aco-gray-900);
    margin: 0 0 2px 0;
    padding: 0;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.4;
}

.aco-wrap.aco-wrap .aco-addon-desc {
    font-size: 12px;
    color: var(--aco-gray-700);
    margin: 0 0 6px 0;
    padding: 0;
    line-height: 1.4;
    font-weight: 400;
    text-transform: none;
}

.aco-wrap.aco-wrap .aco-addon-price {
    font-size: 12px;
    color: var(--aco-orange);
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-addon-price.free {
    color: var(--aco-green);
}

/* ── Step 4: Review ──────────────────────────────────────────────────────────── */
.aco-wrap.aco-wrap .aco-review-wrap {
    padding: 24px 40px;
}

.aco-wrap.aco-wrap .aco-review-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 20px;
    border: none;
}

.aco-wrap.aco-wrap .aco-review-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--aco-gray-100);
    border-top: none;
    border-left: none;
    border-right: none;
    background: none;
    vertical-align: middle;
}

.aco-wrap.aco-wrap .aco-review-table td:first-child {
    color: var(--aco-gray-500);
    font-weight: 500;
    width: 40%;
}

.aco-wrap.aco-wrap .aco-review-table td:last-child {
    color: var(--aco-gray-900);
    font-weight: 600;
    text-align: right;
}

.aco-wrap.aco-wrap .aco-review-total-row td {
    border-top: 2px solid var(--aco-gray-200);
    border-bottom: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--aco-blue);
    padding-top: 14px;
}

.aco-wrap.aco-wrap .aco-wishlist {
    margin-top: 16px;
}

/* ── Navigation ──────────────────────────────────────────────────────────────── */
.aco-wrap.aco-wrap .aco-step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--aco-gray-200);
}

.aco-wrap.aco-wrap .aco-nav-btn {
    background: none;
    border: none;
    color: var(--aco-orange);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 4px;
    font-family: inherit;
    transition: opacity 0.15s;
    box-shadow: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    border-radius: 0;
    line-height: 1.4;
    margin: 0;
    display: inline-block;
    width: auto;
}

.aco-wrap.aco-wrap .aco-nav-btn:hover {
    opacity: 0.75;
    background: none;
    color: var(--aco-orange);
    box-shadow: none;
}

.aco-wrap.aco-wrap .aco-nav-btn:disabled {
    color: var(--aco-gray-300);
    cursor: not-allowed;
    opacity: 1;
    background: none;
}

/* ── Price sidebar ───────────────────────────────────────────────────────────── */
.aco-wrap.aco-wrap .aco-price-sidebar {
    position: static;
    top: auto;
}

.aco-wrap.aco-wrap .aco-price-summary {
    background: var(--aco-blue);
    color: #ffffff;
    border-radius: 12px 12px 0 0;
    padding: 20px;
    margin: 0;
    border: none;
    box-shadow: none;
}

.aco-wrap.aco-wrap .aco-summary-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin: 0 0 8px 0;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-price-main {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 0 0 8px 0;
    padding: 0;
}

.aco-wrap.aco-wrap .aco-price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--aco-orange);
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.aco-wrap.aco-wrap .aco-price-unit {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.aco-wrap.aco-wrap .aco-price-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin: 0 0 12px 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
}

.aco-wrap.aco-wrap .aco-price-total-row span:last-child {
    font-weight: 600;
}

.aco-wrap.aco-wrap .aco-savings-badge {
    background: var(--aco-green);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    display: block;
}

.aco-wrap.aco-wrap .aco-price-loader {
    text-align: center;
    margin-top: 10px;
}

.aco-wrap.aco-wrap .aco-price-breakdown {
    background: #ffffff;
    border: 1px solid var(--aco-gray-200);
    border-top: none;
    padding: 16px 20px;
    margin: 0;
}

.aco-wrap.aco-wrap .aco-breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--aco-gray-700);
    padding: 6px 0;
    border: none;
    margin: 0;
    background: none;
}

.aco-wrap.aco-wrap .aco-breakdown-row strong {
    color: var(--aco-gray-900);
    font-weight: 600;
}

.aco-wrap.aco-wrap .aco-order-total-banner {
    background: var(--aco-orange);
    color: #ffffff;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0;
    border: none;
    display: block;
}

.aco-wrap.aco-wrap .aco-section-card {
    background: #ffffff;
    border: 1px solid var(--aco-gray-200);
    border-top: none;
    padding: 16px 20px;
    margin: 0;
}

.aco-wrap.aco-wrap .aco-section-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--aco-gray-900);
    margin: 0 0 10px 0;
    padding: 0;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.4;
}

/* Volume pricing table */
.aco-wrap.aco-wrap .aco-volume-table {
    width: 100%;
    font-size: 12px;
    border-collapse: collapse;
    margin: 0;
    border: none;
}

.aco-wrap.aco-wrap .aco-volume-row {
    border-bottom: 1px solid var(--aco-gray-100);
    background: none;
    transition: background 0.15s;
}

.aco-wrap.aco-wrap .aco-volume-row:last-child {
    border-bottom: none;
}

.aco-wrap.aco-wrap .aco-volume-row td {
    padding: 6px 4px;
    color: var(--aco-gray-700);
    border: none;
    background: none;
    vertical-align: middle;
    font-size: 12px;
    font-weight: 400;
}

.aco-wrap.aco-wrap .aco-volume-row td:nth-child(2) {
    text-align: right;
    color: var(--aco-gray-900);
    font-weight: 500;
}

.aco-wrap.aco-wrap .aco-volume-row td:nth-child(3) {
    text-align: right;
    color: var(--aco-green);
    font-weight: 600;
}

.aco-wrap.aco-wrap .aco-volume-row.active {
    background: var(--aco-orange-light);
}

.aco-wrap.aco-wrap .aco-volume-row.active td {
    color: var(--aco-orange-dark);
}

.aco-wrap.aco-wrap .aco-no-pricing {
    font-size: 12px;
    color: var(--aco-gray-500);
    text-align: center;
    padding: 8px 0;
    margin: 0;
    font-weight: 400;
}

/* Sidebar actions */
.aco-wrap.aco-wrap .aco-sidebar-actions {
    background: #ffffff;
    border: 1px solid var(--aco-gray-200);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 16px 20px;
    margin: 0;
}

.aco-wrap.aco-wrap .aco-btn-primary {
    width: 100%;
    background: var(--aco-orange);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin: 0 0 8px 0;
    transition: background 0.2s;
    font-family: inherit;
    line-height: 1.4;
    display: block;
    text-align: center;
    box-shadow: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    border-radius: 8px;
}

.aco-wrap.aco-wrap .aco-btn-primary:hover:not(:disabled) {
    background: var(--aco-orange-dark);
    color: #ffffff;
    box-shadow: none;
}

.aco-wrap.aco-wrap .aco-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--aco-orange);
}

.aco-wrap.aco-wrap .aco-btn-secondary {
    display: block;
    width: 100%;
    background: #ffffff;
    color: var(--aco-gray-900);
    border: 1px solid var(--aco-gray-300);
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 0 6px 0;
    transition: border-color 0.2s, color 0.2s;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1.4;
    box-shadow: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
}

.aco-wrap.aco-wrap .aco-btn-secondary:hover {
    border-color: var(--aco-orange);
    color: var(--aco-orange);
    background: #ffffff;
    text-decoration: none;
    box-shadow: none;
}

.aco-wrap.aco-wrap .aco-btn-link {
    display: block;
    text-decoration: none;
}
