
.address {
    margin-left: 35px;
}

#shipping label,
#billing label,
#payment-info label {
    font-size: 13pt;
    font-weight: 700;
}

#shipping input,
#billing input,
#shipping select,
#billing select,
#payment-info input[type="text"] {
    font-size: 12pt;
    font-weight: 200;
    width: 300px;
    margin-bottom: 5px;

}

#shipping input[type="radio"],
#billing input[type="radio"] {
    float: left;
    width: 30px;
}

#shipping p,
#billing p {
    font-size: 13pt;
    font-weight: 500;

}

.billing_address {
    margin-left: 35px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px #999 solid
}

#payment-info input {
    font-family: 'Source Code Pro', monospace;
}

#payment-info #card_number {
    width: 225px;
}

#payment-info #card_expiration {
    width: 75px;
}

#payment-info #card_cvv {
    width: 50px;
}

#card_expiration {
    text-align: center;
    font-size: 10pt;
}

.point-out {
    font-weight: 600;
    color: #c20000;
}

.error label,
label.error {
    color: #c20000;
}

.error input,
input.error {
    border-color: #c20000;
    border-width: 2px;
    background: #fee;
}

#order {
    margin-top: 50px;
    margin-left: 25px;
    border-top: 2px solid #fff;
    padding-top: 5px;
    width: 425px;
    font-family: 'Source Code Pro', monospace;
    font-size: 11pt;
}

#order table {
    margin-top: 20px;
    border-top: 1px solid #fff;
    border-collapse: collapse;
}

td.orderline_description {
    width: 350px;
    vertical-align: top;
}

td.orderline_amount {
    width: 75px;
    text-align: right;
    vertical-align: top;
}

.ui-menu {
    background: rgba(255, 255, 255, 0.95);
}

.ui-menu .ui-menu-item {
    color: #222;
}

.ui-menu .ui-menu-item .ui-state-hover,
.ui-menu .ui-menu-item .ui-state-active {
    background: rgba(255, 200, 200, 1.0);
}

/* Cart count badge in the shared site header.  The .cart-link anchor is
   the positioning context; the .cart-badge sits absolutely in the icon's
   top-right corner.  Single fixed color across all four sites because the
   session cart is cross-site -- a site-branded badge would mislead about
   where the items come from.  See docs/superpowers/specs/
   2026-04-22-cart-count-badge-design.md. */

.cart-link {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: #c33;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    line-height: 18px;
    text-align: center;
    box-sizing: border-box;
}

/* Add-to-cart confirmation modal shown after AJAX add-to-cart.  Consolidated
   here from mcc.css / mct.css / mcp.css (near-identical copies, all off-center
   due to a -25% translate typo and all using a fixed 500x200 footprint that
   didn't adapt to the product-name length).  Font inherits from body, so each
   site's own typography flows through without any per-site CSS. */

#add-to-cart {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: max-content;
    min-width: 320px;
    max-width: min(600px, 90vw);

    padding: 24px 32px;
    background-color: rgba(3, 16, 56, 0.92);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);

    color: #fff;
    text-align: center;
    font-size: 14pt;
    font-weight: 500;

    z-index: 100;
    display: none;
}

#add-to-cart .add-to-cart-message {
    margin: 0 0 20px;
    line-height: 1.4;
}

#add-to-cart .add-to-cart-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

#opaque {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.6;
    z-index: 99;
    display: none;
}

/* Pill button family.  Neutral outline on dark backgrounds; filled variant
   for "active"/"selected" states (e.g., the "Following" pill on a partner
   channel page).  Used on MCT channel pages today and intentionally
   site-agnostic so other sites' profile/channel pages can reuse it.

   Specificity note: MCT's mct.css defines a:link / a:visited / a:hover /
   a:active with color and underline.  That is specificity (0,1,1), which
   beats a plain .pill-button class (0,1,0) — without the tag-anchored
   rules below, pill text would render in MCT's default link color
   (#eee, invisible on the white filled pill) and pick up an underline
   on hover.  a.pill-button* ties on specificity (0,1,1) and wins because
   orders.css is loaded after mct.css in common_base.html.  Spelled out
   verbosely for clarity rather than using :is(). */
.pill-button {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 11pt;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
}

a.pill-button,
a.pill-button:link,
a.pill-button:visited,
a.pill-button:hover,
a.pill-button:active {
    color: #fff;
    text-decoration: none;
}

.pill-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pill-button-filled {
    background: #fff;
    color: #031038;
}

a.pill-button-filled,
a.pill-button-filled:link,
a.pill-button-filled:visited,
a.pill-button-filled:hover,
a.pill-button-filled:active {
    color: #031038;
    text-decoration: none;
}

.pill-button-filled:hover {
    background: #eee;
}

.pill-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pill-button.disabled:hover {
    background: transparent;
}

/* #313 shared service-page pieces: the mandated CCPA link on the age-gate
   splash and legal links beside it (was three inline-style variants). */
.age-ccpa a,
.age-legal {
    font-size: 11pt;
    font-weight: 400;
    color: #888;
}
