/* Appearance - Rocket Driver Order Form Theme (2026)
Fortune 500 minimalist. Inter, warm paper surfaces, ink text,
restrained orange energy.
============================================================*/

/* TOP LEVEL STYLES
============================================================*/

@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap);

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.55;
    letter-spacing: normal;
    color: #36383D;
    background-color: #FAF9F5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, img a {
    border: 0 none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
    font-weight: 600;
    letter-spacing: -0.015em;
}

h2 {
    font-size: 20px;
    line-height: 1.3;
}

h4 {
    font-size: 14px;
    line-height: 1.4;
}

#wrapper {
    background-color: #FAF9F5;
}

#wrapper #rightbar {
    background-color: transparent;
}

p {
    color: #555555;
}

#content {
    background-color: transparent;
}

#shippingOptionsContainer,
#productsContainer,
#paymentPlansContainer,
#checkoutLinksContainer {
    border-top: 1px solid #E4E2DC;
}

#orderSummaryExpander {
    background-color: #FCF8F0;
    border: 1px solid #E4E2DC;
    border-radius: 8px;
}

#orderSummaryExpander > *:not(:last-child) {
    margin-right: 8px;
}

/* FIELDS
============================================================*/

.input-field,
.select-field {
    position: relative;
    margin: 0 0 24px;
    padding: 0 5px;
}

.input-field input,
.select-field select {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
    background-color: #FFFFFF;
    border: 1px solid #D6CFC2;
    border-radius: 6px;
    height: 44px;
    padding: 10px 14px;
    margin-top: 20px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input[type="text"],
input[type="number"] {
    font-family: 'Inter', sans-serif;
}


.select-field select:disabled,
.input-field input:disabled {
    background-color: #F3F1EB;
    color: #9A958B;
    border-color: #E4E2DC;
}

.input-field label,
.select-field label {
    position: absolute;
    top: 0;
    left: 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #62656B;
}

.input-field input:focus,
.select-field select:focus {
    border-color: #1A1A1A;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
    outline: none;
    background-color: #FFFFFF;
}

.input-field input:disabled~label {
    color: #B5AFA4;
}

.inline-field-invalid {
    border-color: #B3261E;
}

.inline-field-invalid:focus {
    border-color: #B3261E;
    box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.08);
}

.checkboxOption {
    display: flex;
    align-items: center;
}

.radioOption ~ .radioOption {
    margin-top: 12px;
}

.checkboxOption label {
    font-size: 14px;
    font-weight: 500;
    color: #36383D;
}

.checkboxOption input {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    accent-color: #ED6944;
}

.radioOptionDetails {
    color: #62656B;
    font-size: 13px;
}

.form-row {
    display: flex;
    margin: 0 -5px;
}

.form-row > * {
    flex: 1;
    padding: 0 5px;
}

/* LINKS AND BUTTONS
============================================================*/

a {
    color: #ED6944;
    font-weight: 500;
    text-decoration: none;
}

a:hover {
    color: #C9532F;
    text-decoration: underline;
}

.button {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
    color: #FFFFFF;
    background-color: #ED6944;
    border: 1px solid #ED6944;
    border-radius: 6px;
    padding: 13px 28px;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.button.block {
    display: block;
    width: 100%;
}

.button.secondary {
    background-color: transparent;
    color: #1A1A1A;
    border: 1px solid #1A1A1A;
}

.button:active {
    background-color: #C9532F;
    border-color: #C9532F;
}

.button:hover {
    background-color: #D85A37;
    border-color: #D85A37;
    color: #FFFFFF;
    text-decoration: none;
}

.button.secondary:active,
.button.secondary:hover {
    background-color: #1A1A1A;
    border-color: #1A1A1A;
    color: #FFFFFF;
}

.button[disabled] {
    background-color: #E4E2DC;
    border-color: #E4E2DC;
    color: #9A958B;
    cursor: not-allowed;
}

/* LOGO BANNER
============================================================*/

#companyLogoTopBanner {
    display: none;
}

#companyLogoTopBanner img {
    max-width: 240px;
    height: auto;
}

/* TITLES AND MICROLABELS
============================================================*/

.title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ED6944;
}

.formTitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: #1A1A1A;
}

/* PRODUCTS AND ORDER SUMMARY
============================================================*/

.productImage {
    border: 1px solid #E4E2DC;
    border-radius: 8px;
}

.productSubTotal,
.productTotal,
.productSubTotalPrice {
    color: #1A1A1A;
    font-weight: 600;
}

.productOriginalPrice {
    color: #9A958B;
    text-decoration: line-through;
}

.orderSummaryExpanderLink {
    color: #ED6944;
    font-weight: 600;
}

.orderSummarySubTotals {
    color: #555555;
}

.orderSummaryPrice {
    color: #1A1A1A;
    font-weight: 500;
}

.orderSummaryTotal .orderSummaryPrice p {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #1A1A1A;
}

.upsell {
    background-color: #FCF8F0;
    border: 1px solid #E4E2DC;
    border-radius: 8px;
}

.upsellOriginalPrice {
    color: #9A958B;
    text-decoration: line-through;
}

#wrapper #footer {
    color: #9A958B;
    font-size: 12px;
}

/* NO SHIPPING - Rocket Driver sells services only
============================================================*/

#ORDER_FORM_SHIPPING_ENTRY,
#SHIPPING_OPTIONS,
#shippingOptionsContainer,
#shippingRequired,
.checkboxOption:has(#copyToShipping) {
    display: none;
}

