/* =============================================================================
   Literature Center Redesign CSS
   =============================================================================
   This is the sole stylesheet for the Literature Center pages.
   These pages render inside an IFRAME within a host site's modal.
   ============================================================================= */

/* =============================================================================
   0. Font Face Declarations
   ============================================================================= */
@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/sourcesanspro-regular-webfont.woff2') format('woff2'),
         url('fonts/sourcesanspro-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/sourcesanspro-semibold-webfont.woff2') format('woff2'),
         url('fonts/sourcesanspro-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('fonts/sourcesanspro-bold-webfont.woff2') format('woff2'),
         url('fonts/sourcesanspro-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Georgia Pro';
    src: url('fonts/GeorgiaPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Georgia Pro';
    src: url('fonts/GeorgiaPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Georgia Pro';
    src: url('fonts/GeorgiaPro-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* =============================================================================
   1. CSS Reset / Normalize
   Body has no margin/padding since it renders inside an IFRAME.
   ============================================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* =============================================================================
   2. Design Tokens / Variables
   ============================================================================= */
:root {
    /* Colors */
    --color-primary: #003243;
    --color-primary-hover: #1a2832;
    --color-accent: #2ba824;
    --color-accent-hover: #239a1d;
    --color-bg: #ffffff;
    --color-bg-page: #f5f5f5;
    --color-border: #bdc3c7;
    --color-border-light: #e0e0e0;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-header-bg: #003243;
    --color-header-text: #ffffff;
    --color-error: #c0392b;
    --color-row-hover: #f9fafb;
    --color-step-inactive: #bdc3c7;
    --color-step-complete: #003243;

    /* Typography */
    --font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --font-family-body: 'Georgia Pro', Georgia, 'Times New Roman', serif;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-xxl: 28px;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height-base: 1.5;
    --line-height-tight: 1.25;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;

    /* Layout */
    --page-max-width: 960px;
    --page-padding: 32px;
    --border-radius: 4px;
    --border-radius-sm: 2px;
    --input-height: 40px;
    --btn-height: 46px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
}

/* =============================================================================
   3. Base / Typography
   ============================================================================= */
body.litcenter-body {
    font-family: var(--font-family-body);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
}

a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-hover);
}

a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--border-radius-sm);
}

p {
    margin: 0 0 var(--spacing-md);
}

strong {
    font-weight: var(--font-weight-bold);
}

/* =============================================================================
   4. Page Container
   ============================================================================= */
.litcenter-page {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: var(--page-padding);
}

.litcenter-page__title {
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

/* =============================================================================
   5. Stepper Component
   Desktop: Vertical on the left side with connecting lines between circles.
   Mobile/Tablet: Horizontal at the top with connecting lines.
   ============================================================================= */
.stepper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.stepper__step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    position: relative;
    padding-bottom: var(--spacing-xl);
}

.stepper__step:last-child {
    padding-bottom: 0;
}

/* Connecting line between steps (vertical) */
.stepper__step::after {
    content: "";
    position: absolute;
    left: 8px; /* center of 18px icon */
    top: 18px;
    width: 2px;
    height: calc(100% - 18px);
    background-color: var(--color-primary);
    transition: background-color var(--transition-base);
}

.stepper__step:last-child::after {
    display: none;
}

/* Completed step line turns dark */
.stepper__step--completed::after {
    background-color: var(--color-primary);
}

.stepper__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background-color: transparent;
    color: var(--color-primary);
    font-size: 10px;
    font-weight: var(--font-weight-semibold);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);
}

.stepper__label {
    font-size: var(--font-size-xs);
    color: var(--color-primary) !important;
    font-weight: var(--font-weight-normal);
    padding-top: 0;
    line-height: 1.1;
    transition: color var(--transition-base);
}

.stepper__label strong {
    color: var(--color-primary);
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    margin-bottom: 1px;
}

.stepper__desc {
    display: block;
    color: #3f3f3f !important;
    font-family: var(--font-family);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-normal);
    line-height: 1.1;
}

/* Active step */
.stepper__step--active .stepper__icon {
    border-color: var(--color-primary);
}

/* Completed step */
.stepper__step--completed .stepper__icon {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-header-text);
}

/* Icon variants */
/* Checkmark icon (completed step) */
.stepper__icon--check::after {
    content: "";
    width: 9px;
    height: 7px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7'%3E%3Cpath fill='%23fff' d='M7.9,0L3.2,4.8,1.1,2.7l-1.1,1.1,3.2,3.2L9,1.1l-1.1-1.1Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* Dot/bullseye icon (active/current step) - blue border, white fill, blue dot center */
.stepper__icon--dot {
    border-color: var(--color-primary);
    background-color: var(--color-bg);
    position: relative;
}

.stepper__icon--dot::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary);
}

/* Empty circle — default, no inner content */

/* Page layout: stepper beside content on desktop */
.litcenter-page__body {
    display: flex;
    gap: var(--spacing-xl);
}

.litcenter-page__body .stepper {
    flex-shrink: 0;
    width: auto;
    margin-bottom: 0;
}

.litcenter-page__content {
    flex: 1;
    min-width: 0;
}

/* =============================================================================
   6. Cart Table
   ============================================================================= */
.cart-table {
    width: 100%;
    margin-bottom: var(--spacing-lg);
    border: none;
    border-radius: 0;
    overflow: visible;
    font-family: var(--font-family);
}

.cart-table thead th,
.cart-table th {
    background-color: var(--color-header-bg);
    color: var(--color-header-text);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-align: left;
    padding: var(--spacing-md);
    border: none;
}

.cart-table th.align-center,
.cart-table td.center-align {
    text-align: center;
}

.cart-table tbody td,
.cart-table td {
    padding: var(--spacing-md);
    border-top: none;
    border-bottom: 1px solid var(--color-border-light);
    border-left: none;
    border-right: none;
    font-size: var(--font-size-sm);
    vertical-align: middle;
}

.cart-table tbody tr:last-child td {
    border-bottom: none;
}

.cart-table tbody tr:hover {
    background-color: var(--color-row-hover);
}

.cart-table a {
    color: var(--color-primary);
    text-decoration: none;
}

.cart-table a:hover {
    text-decoration: underline;
}

/* Quantity input in table */
.cart-table .qty,
input.qty {
    width: 80px;
    height: 36px;
    text-align: left;
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: border-color var(--transition-fast);
    background-color: var(--color-bg);
}

.cart-table .qty:focus,
input.qty:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 50, 67, 0.15);
}

/* Remove button — styles any button/link/input in the Remove column as a plain X */
.cart-table td.center-align input[type="image"],
.cart-table td.center-align input[type="submit"],
.cart-table td.center-align input[type="button"],
.cart-table td.center-align a,
.cart-table td.center-align button,
.cart-table__remove-btn,
.remove-btn {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    padding: 0;
    text-decoration: none;
    /* Hide the original image/text and replace with X via background SVG */
    font-size: 0;
    color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M5 5 L15 15 M15 5 L5 15' stroke='%23333333' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

/* For input[type=image], hide the src image */
.cart-table td.center-align input[type="image"] {
    -webkit-appearance: none;
    appearance: none;
    object-position: -9999px -9999px;
}

/* Hover state */
.cart-table td.center-align input[type="image"]:hover,
.cart-table td.center-align input[type="submit"]:hover,
.cart-table td.center-align input[type="button"]:hover,
.cart-table td.center-align a:hover,
.cart-table td.center-align button:hover,
.cart-table__remove-btn:hover,
.remove-btn:hover {
    background-color: rgba(192, 57, 43, 0.08);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M5 5 L15 15 M15 5 L5 15' stroke='%23c0392b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Focus state */
.cart-table td.center-align input:focus-visible,
.cart-table td.center-align a:focus-visible,
.cart-table td.center-align button:focus-visible,
.cart-table__remove-btn:focus-visible,
.remove-btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* =============================================================================
   7. Form Styles
   ============================================================================= */
.form-section {
    margin-bottom: var(--spacing-xl);
}

.form-section__title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.form-section__description {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.form-control {
    display: block;
    width: 100%;
    height: var(--input-height);
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--color-primary);
    background-color: var(--color-bg);
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 50, 67, 0.15);
}

.form-control:disabled,
.form-control[readonly] {
    background-color: var(--color-bg);
    border-color: #595959;
    color: #595959;
    cursor: not-allowed;
    opacity: 1;
    -webkit-text-fill-color: #595959;
}

/* Hide number input spinner arrows */
input[type="number"].form-control::-webkit-outer-spin-button,
input[type="number"].form-control::-webkit-inner-spin-button,
input[type="number"].qty::-webkit-outer-spin-button,
input[type="number"].qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"].form-control,
input[type="number"].qty {
    -moz-appearance: textfield;
}

/* Post-submission disabled form labels */
.form-disabled .form-label {
    color: #595959;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23003243' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

select.form-control:disabled {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23595959' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

/* Inline form row (e.g., city / state / zip on one line) */
.form-row {
    display: flex;
    gap: var(--spacing-md);
}

.form-row .form-group {
    flex: 1;
}

.form-row .form-group--sm {
    flex: 0 0 120px;
}

/* City / State / ZIP row: City widest, State medium, ZIP narrow */
.form-row--three .form-group:first-child {
    flex: 2;
}

.form-row--three .form-group:nth-child(2) {
    flex: 1.5;
}

.form-row--three .form-group--sm {
    flex: 0 0 100px;
}

/* Validation errors */
.validation-error,
.required,
span.required {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--color-error);
    margin-top: var(--spacing-xs);
}

/* Static/read-only display */
.form-static {
    display: block;
    width: 100%;
    height: var(--input-height);
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: #666666;
    background-color: var(--color-bg);
    border: 1px solid #666666;
    border-radius: var(--border-radius);
    line-height: 1.5;
}

/* =============================================================================
   8. Buttons
   ============================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-height);
    padding: 0 var(--spacing-xl);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Primary button (filled pill shape) */
.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-header-text);
    border-radius: 100px;
    padding: 0 var(--spacing-xxl);
}

.btn--primary:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-header-text);
    text-decoration: none;
}

.btn--primary:active {
    background-color: var(--color-primary-hover);
}

/* Secondary button (text only, no background, no border, always underlined) */
.btn--secondary {
    background-color: transparent;
    border: none;
    color: var(--color-primary);
    border-radius: 0;
    padding: 0 var(--spacing-lg);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.btn--secondary:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.btn--secondary:active {
    color: var(--color-primary-hover);
}

/* Legacy button class compatibility */
.cartButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-height);
    padding: 0 var(--spacing-xxl);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    border: none;
    background-color: var(--color-primary);
    color: var(--color-header-text);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    margin-left: var(--spacing-md);
}

.cartButton:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-header-text);
    text-decoration: none;
}

a.cartButton {
    text-decoration: none;
}

/* =============================================================================
   9. Checkout Layout (two-column for ConfirmOrder)
   ============================================================================= */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.checkout-layout__cart {
    min-width: 0;
}

.checkout-layout__form {
    min-width: 0;
}

/* =============================================================================
   10. Button Bar
   ============================================================================= */
.button-bar,
.checkout-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    border-top: none;
}

/* =============================================================================
   11. Order Confirmation
   ============================================================================= */
.order-complete,
.orderComplete {
    margin-bottom: var(--spacing-xl);
}

.order-complete:empty,
.orderComplete:empty {
    display: none;
}

.order-complete p:first-child,
.orderComplete p:first-child {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.order-complete p,
.orderComplete p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.order-complete p:last-child,
.orderComplete p:last-child {
    margin-bottom: 0;
}

/* =============================================================================
   12. Cart Message / Labels
   ============================================================================= */
.cartmessagelbl {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-error);
    margin-bottom: var(--spacing-md);
}

/* =============================================================================
   13. Utility Classes
   ============================================================================= */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =============================================================================
   14. Print Styles
   ============================================================================= */
@media print {
    .stepper,
    .button-bar,
    .checkout-buttons,
    .btn,
    .cartButton {
        display: none;
    }

    .litcenter-page {
        max-width: 100%;
        padding: 0;
    }

    .cart-table {
        border: 1px solid #000;
    }

    .cart-table th {
        background-color: #eee !important;
        color: #000 !important;
    }
}

/* =============================================================================
   15. Responsive Breakpoints
   ============================================================================= */

/* Tablet / smaller desktop (iframe may be narrowed) */
@media (max-width: 768px) {
    :root {
        --page-padding: 24px;
    }

    .litcenter-page__title {
        font-size: var(--font-size-xl);
    }

    /* Stepper: switch to horizontal at top, full width */
    .litcenter-page__body {
        flex-direction: column;
    }

    .stepper {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0;
        width: 100%;
        margin-bottom: var(--spacing-lg);
        position: relative;
    }

    /* Continuous horizontal line behind all circles */
    .stepper::before {
        content: "";
        position: absolute;
        top: 8px; /* center of 18px icon */
        left: 16.67%;
        right: 16.67%;
        height: 2px;
        background-color: var(--color-primary);
    }

    .stepper__step {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        padding-bottom: 0;
        gap: var(--spacing-xs);
        position: relative;
    }

    /* Hide the vertical connecting lines */
    .stepper__step::after {
        display: none;
    }

    .stepper__icon {
        position: relative;
        z-index: 1;
        background-color: var(--color-bg);
    }

    /* Completed icons keep dark fill; active dot keeps white bg */
    .stepper__step--completed .stepper__icon {
        background-color: var(--color-primary);
    }

    .stepper__label {
        padding-top: var(--spacing-xs);
        font-size: var(--font-size-xs);
        text-align: center;
    }

    /* Stack checkout layout to single column */
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Form rows stay horizontal on mobile */
    .form-row {
        gap: var(--spacing-sm);
    }

    .form-row .form-group--sm {
        flex: 0 0 80px;
    }

    /* Buttons stack vertically - Checkout on top, Empty Cart below */
    .button-bar,
    .checkout-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn--primary {
        order: -1;
    }

    .btn--secondary {
        order: 0;
    }

    .btn,
    .cartButton {
        margin-left: 0;
    }
}

/* Mobile (small screen / narrow iframe) */
@media (max-width: 480px) {
    :root {
        --page-padding: 16px;
        --spacing-lg: 16px;
        --spacing-xl: 24px;
    }

    .litcenter-page__title {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-md);
    }

    /* Stepper: hide labels, compact icons */
    .stepper__step {
        padding-right: 0;
    }

    .stepper__label {
        display: none;
    }

    .stepper__icon {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .stepper::before {
        top: 8px; /* center of 18px icon */
        left: 16.67%;
        right: 16.67%;
    }

    .stepper__step + .stepper__step {
        margin-left: 0;
    }

    /* Table: reduce padding */
    .cart-table th,
    .cart-table td {
        padding: var(--spacing-sm);
        font-size: var(--font-size-xs);
    }

    .cart-table .qty,
    input.qty {
        width: 40px;
        height: 32px;
    }

    /* Order complete */
    .order-complete,
    .orderComplete {
        padding: var(--spacing-md);
    }
}
