/* ═══════════════════════════════════════════════════════════
   WOLF — Pages, Forms & Content Design System
   ═══════════════════════════════════════════════════════════ */

.site-page { background: #f4f4f5; padding-bottom: 80px; min-height: 50vh; }
.site-page .page-content { padding: 0 0 48px; background: transparent; }

/* ── Page hero strip ── */
.page-hero-strip {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 36px 0 40px;
    margin-bottom: 32px;
    border-bottom: 4px solid #eb0000;
}
.page-hero-strip h1 {
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: none;
}
.page-hero-sub {
    margin: 10px 0 0;
    font-size: 16px;
    color: rgba(255,255,255,.75);
    max-width: 640px;
    line-height: 1.5;
}
.page-breadcrumb {
    font-size: 13px;
    margin-bottom: 14px;
    color: rgba(255,255,255,.55);
}
.page-breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb span[aria-current] { color: #eb0000; font-weight: 500; }

/* ── Layout shells ── */
.page-wrap { max-width: 1140px; margin: 0 auto; }
.page-wrap-narrow { max-width: 720px; margin: 0 auto; }
.page-wrap-medium { max-width: 900px; margin: 0 auto; }
.form-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.form-layout-single { max-width: 720px; margin: 0 auto; }

/* ── Cards ── */
.ui-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.ui-card-head {
    padding: 18px 24px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}
.ui-card-head h2, .ui-card-head h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #1a1a1a;
}
.ui-card-body { padding: 24px; }

/* ── Unified form styles ── */
.wg-form .form-group { margin-bottom: 20px; }
.wg-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #666;
    margin-bottom: 7px;
}
.wg-form label .req { color: #eb0000; }
.wg-form label .opt { font-weight: 400; text-transform: none; color: #aaa; font-size: 11px; }
.wg-form input[type="text"],
.wg-form input[type="email"],
.wg-form input[type="tel"],
.wg-form input[type="number"],
.wg-form input[type="password"],
.wg-form input[type="search"],
.wg-form select,
.wg-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
    color: #1a1a1a;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    border-radius: 0;
    box-sizing: border-box;
}
.wg-form input:focus,
.wg-form select:focus,
.wg-form textarea:focus {
    outline: none;
    border-color: #eb0000;
    box-shadow: 0 0 0 3px rgba(235,0,0,.08);
}
.wg-form textarea { resize: vertical; min-height: 100px; }
.wg-form .form-row { display: grid; gap: 16px; }
.wg-form .form-row-2 { grid-template-columns: 1fr 1fr; }
.wg-form .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.wg-form .form-actions { margin-top: 8px; padding-top: 8px; }
.wg-form .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 180px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    border: none;
    cursor: pointer;
    background: #1a1a1a;
    color: #fff;
    transition: background .15s;
}
.wg-form .btn-submit:hover { background: #eb0000; }
.wg-form .btn-submit.btn-block { width: 100%; }

/* ── Alerts ── */
.ui-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid;
}
.ui-alert-success { background: #ecfdf5; color: #065f46; border-color: #10b981; }
.ui-alert-error { background: #fef2f2; color: #991b1b; border-color: #ef4444; }
.ui-alert-info { background: #eff6ff; color: #1e40af; border-color: #3b82f6; }

/* ── Form aside (sidebar info) ── */
.form-aside { display: grid; gap: 16px; }
.info-panel {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 20px;
}
.info-panel h3 { margin: 0 0 12px; font-size: 14px; font-weight: 700; text-transform: uppercase; }
.info-panel p, .info-panel li { font-size: 13px; color: #666; line-height: 1.6; margin: 0 0 8px; }
.info-panel ul { margin: 0; padding-left: 18px; }
.info-panel .info-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.info-panel-highlight { border-color: #eb0000; background: #fff8f8; }

/* ── Auth pages ── */
.auth-page-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px 80px;
    min-height: 55vh;
}
.auth-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    overflow: hidden;
}
.auth-card-head {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #fff;
    padding: 28px 32px;
    text-align: center;
    border-bottom: 3px solid #eb0000;
}
.auth-card-head h1 { margin: 0; font-size: 22px; color: #fff; }
.auth-card-head p { margin: 8px 0 0; font-size: 13px; color: rgba(255,255,255,.7); }
.auth-card-body { padding: 32px; }
.auth-card-body .wg-form .form-group { margin-bottom: 18px; }
.auth-divider { text-align: center; margin: 20px 0; font-size: 13px; color: #888; }
.auth-divider a { color: #eb0000; font-weight: 600; text-decoration: none; }
.auth-divider a:hover { text-decoration: underline; }
.auth-tabs { display: flex; gap: 0; margin-bottom: 24px; border: 1px solid #e8e8e8; }
.auth-tab { flex: 1; text-align: center; padding: 12px; font-size: 14px; font-weight: 600; color: #666; text-decoration: none; background: #fafafa; border-right: 1px solid #e8e8e8; }
.auth-tab:last-child { border-right: none; }
.auth-tab.active, .auth-tab:hover { background: #fff; color: #eb0000; }
.auth-mode-hint { font-size: 13px; color: #888; margin: -12px 0 20px; text-align: center; }
.auth-resend-btn { background: none; border: none; color: #eb0000; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: underline; padding: 0; }
.checkout-auth-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #888; margin: 0 0 10px; }
.otp-sent { background: #f0fdf4; border: 1px solid #bbf7d0; padding: 12px 14px; font-size: 13px; color: #166534; margin-bottom: 18px; border-radius: 0; }

/* ── Register checkout layout ── */
.register-checkout-wrap { padding: 32px 0 80px; }
.register-checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.register-form-card .ui-card-head {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-bottom: 3px solid #eb0000;
    padding: 22px 28px;
}
.register-form-card .ui-card-head h2 {
    color: #fff;
    font-size: 18px;
    text-transform: none;
    letter-spacing: 0;
}
.register-form-card .ui-card-head p { color: rgba(255,255,255,.75); }

.auth-step-pills {
    display: flex; gap: 0; margin-bottom: 28px;
    border: 1px solid #e8e8e8; background: #fafafa;
}
.auth-step-pill {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 10px; font-size: 13px; font-weight: 600; color: #999;
    border-right: 1px solid #e8e8e8;
}
.auth-step-pill:last-child { border-right: none; }
.auth-step-pill.active { background: #fff; color: #eb0000; }
.auth-step-pill.done { background: #fff; color: #1a1a1a; }
.auth-step-pill .pill-num {
    width: 22px; height: 22px; border-radius: 50%; border: 2px solid currentColor;
    display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0;
}
.auth-step-pill.active .pill-num { background: #eb0000; border-color: #eb0000; color: #fff; }
.auth-step-pill.done .pill-num { background: #1a1a1a; border-color: #1a1a1a; color: #fff; }
.form-section { margin-bottom: 24px; }
.form-section-title {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    color: #1a1a1a; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 1px solid #f0f0f0;
}
.form-section-title span { font-size: 16px; }
.register-benefits {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px;
}
.register-benefit {
    text-align: center; padding: 14px 10px; background: #fafafa; border: 1px solid #f0f0f0;
    font-size: 12px; color: #666; line-height: 1.4;
}
.register-benefit strong { display: block; font-size: 13px; color: #1a1a1a; margin-bottom: 4px; }
.register-benefit .benefit-icon { font-size: 22px; display: block; margin-bottom: 6px; }
.otp-input-large {
    font-size: 28px !important; letter-spacing: .35em; text-align: center;
    padding: 16px !important; font-weight: 700;
}
.register-trust {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-top: 20px; padding-top: 16px; border-top: 1px solid #f0f0f0;
    font-size: 12px; color: #888;
}
.register-trust span { display: flex; align-items: center; gap: 4px; }
.register-back-links {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 16px; font-size: 13px;
}
.register-back-links a { color: #888; text-decoration: none; }
.register-back-links a:hover { color: #eb0000; }
.register-back-links .login-link { color: #eb0000; font-weight: 600; }

/* ── Track order ── */
.track-card { max-width: 640px; margin: 0 auto; }
.track-form-card .wg-form { display: grid; gap: 0; }
.track-form-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end; }
.track-result-card { margin-top: 24px; }
.track-status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background: #1a1a1a;
    color: #fff;
}
.track-status-badge.status-confirmed { background: #16a34a; }
.track-status-badge.status-pending { background: #f59e0b; }
.track-status-badge.status-shipped { background: #3b82f6; }
.track-timeline { list-style: none; margin: 20px 0 0; padding: 0; }
.track-timeline li {
    position: relative;
    padding: 0 0 20px 28px;
    font-size: 14px;
    color: #666;
    border-left: 2px solid #e8e8e8;
    margin-left: 8px;
}
.track-timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.track-timeline li::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #eb0000;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #eb0000;
}
.track-timeline li strong { display: block; color: #1a1a1a; font-size: 13px; margin-bottom: 2px; }

/* ── Cart page ── */
.cart-page-wrap { padding-bottom: 48px; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.cart-items-card { background: #fff; border: 1px solid #e8e8e8; }
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
    width: 80px;
    height: 80px;
    background: #f9f9f9;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item-img img { max-width: 70px; max-height: 70px; object-fit: contain; }
.cart-item-info h3 { margin: 0 0 4px; font-size: 14px; font-weight: 600; line-height: 1.3; }
.cart-item-info h3 a { color: #1a1a1a; text-decoration: none; }
.cart-item-info h3 a:hover { color: #eb0000; }
.cart-item-sku { font-size: 11px; color: #aaa; margin: 0 0 6px; }
.cart-item-price { font-size: 15px; font-weight: 700; color: #eb0000; }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-qty-form { display: flex; align-items: center; gap: 6px; }
.cart-qty-form input { width: 52px; padding: 8px; text-align: center; border: 1px solid #ddd; font-size: 14px; }
.cart-qty-form button {
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
}
.cart-qty-form button:hover { background: #eb0000; }
.cart-remove {
    background: none;
    border: none;
    color: #999;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}
.cart-remove:hover { color: #eb0000; }
.cart-summary-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    position: sticky;
    top: 24px;
}
.cart-summary-head { padding: 18px 20px; border-bottom: 1px solid #f0f0f0; background: #fafafa; }
.cart-summary-head h3 { margin: 0; font-size: 15px; font-weight: 700; text-transform: uppercase; }
.cart-summary-body { padding: 20px; }
.coupon-form { display: flex; gap: 8px; margin-bottom: 20px; }
.coupon-form input { flex: 1; padding: 11px 12px; border: 1px solid #ddd; font-size: 14px; }
.coupon-form button {
    padding: 11px 16px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}
.coupon-form button:hover { background: #eb0000; }
.summary-line { display: flex; justify-content: space-between; font-size: 14px; color: #666; padding: 6px 0; }
.summary-line.discount { color: #16a34a; }
.summary-line.grand { margin-top: 10px; padding-top: 14px; border-top: 2px solid #1a1a1a; font-size: 18px; font-weight: 700; color: #1a1a1a; }
.summary-line.grand span:last-child { color: #eb0000; }
.btn-checkout-cart {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: #eb0000;
    color: #fff;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s;
}
.btn-checkout-cart:hover { background: #c80000; color: #fff; }
.cart-empty {
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border: 1px solid #e8e8e8;
}
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; }
.cart-empty h2 { margin: 0 0 8px; font-size: 22px; }
.cart-empty p { color: #888; margin-bottom: 24px; }

/* ── Account pages ── */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
.account-nav-card { background: #fff; border: 1px solid #e8e8e8; overflow: hidden; position: sticky; top: 24px; }
.account-nav { display: flex; flex-direction: column; }
.account-nav a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background .15s, color .15s;
}
.account-nav a:hover { background: #fafafa; color: #1a1a1a; }
.account-nav a.active { background: #fff8f8; color: #eb0000; font-weight: 600; border-left: 3px solid #eb0000; padding-left: 17px; }
.account-nav a.nav-logout { color: #991b1b; border-top: 1px solid #f0f0f0; }
.account-main-card { background: #fff; border: 1px solid #e8e8e8; }
.account-main-card .ui-card-body h2 { font-size: 18px; margin: 28px 0 16px; padding-top: 8px; border-top: 1px solid #f0f0f0; }
.account-main-card .ui-card-body h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.orders-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.orders-table th {
    text-align: left;
    padding: 12px 14px;
    background: #fafafa;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #888;
    border-bottom: 1px solid #eee;
}
.orders-table td { padding: 14px; border-bottom: 1px solid #f5f5f5; color: #444; }
.orders-table tr:hover td { background: #fafafa; }
.orders-table a { color: #eb0000; font-weight: 600; text-decoration: none; }
.order-status-pill {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: #f3f4f6;
    color: #374151;
}

/* ── Content / prose pages ── */
.content-card { background: #fff; border: 1px solid #e8e8e8; padding: 32px 36px; }
.content-prose { max-width: none; color: #444; line-height: 1.75; font-size: 15px; }
.content-prose h2 { font-size: 20px; color: #1a1a1a; margin: 32px 0 12px; }
.content-prose h2:first-child { margin-top: 0; }
.content-prose h3 { font-size: 16px; color: #1a1a1a; margin: 24px 0 8px; }
.content-prose p { margin: 0 0 16px; max-width: none; color: #555; }
.content-prose ul, .content-prose ol { margin: 0 0 16px; padding-left: 22px; color: #555; }
.content-prose li { margin-bottom: 6px; }
.content-prose a { color: #eb0000; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin: 24px 0; }
.feature-box { background: #fafafa; border: 1px solid #eee; padding: 20px; }
.feature-box strong { display: block; font-size: 14px; margin-bottom: 6px; color: #1a1a1a; }
.feature-box span { font-size: 13px; color: #888; }

/* ── FAQ ── */
.faq-page-wrap { max-width: 800px; margin: 0 auto; }
.faq-category { margin-bottom: 28px; }
.faq-category h2 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #eb0000;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eb0000;
}
.faq-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    margin-bottom: 8px;
    overflow: hidden;
}
.faq-item summary {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: #eb0000; font-weight: 400; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px solid #f0f0f0; background: #fafafa; }
.faq-item p { padding: 16px 20px; margin: 0; font-size: 14px; color: #666; line-height: 1.7; }
.faq-help-card {
    margin-top: 32px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #fff;
    padding: 28px 32px;
    text-align: center;
    border-bottom: 3px solid #eb0000;
}
.faq-help-card h2 { margin: 0 0 8px; font-size: 20px; color: #fff; }
.faq-help-card p { margin: 0; color: rgba(255,255,255,.75); font-size: 14px; }
.faq-help-card a { color: #fff; font-weight: 600; }

/* ── Retailer finder ── */
.retailer-search { margin-bottom: 28px; }
.retailer-grid { display: grid; gap: 12px; }
.retailer-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 18px 20px;
    transition: border-color .15s;
}
.retailer-card:hover { border-color: #eb0000; }
.retailer-card h3 { margin: 0 0 4px; font-size: 15px; }
.retailer-card p { margin: 0; font-size: 13px; color: #888; }
.retailer-badge { font-size: 12px; font-weight: 700; color: #16a34a; text-transform: uppercase; }

/* ── Survey / rating ── */
.rating-group { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.rating-group label { cursor: pointer; }
.rating-group input { position: absolute; opacity: 0; }
.rating-group span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #ddd;
    font-size: 16px;
    font-weight: 700;
    color: #666;
    transition: border-color .15s, background .15s, color .15s;
}
.rating-group input:checked + span { background: #eb0000; border-color: #eb0000; color: #fff; }
.rating-group label:hover span { border-color: #eb0000; }

/* ── Order success ── */
.success-page { text-align: center; padding: 60px 24px; }
.success-icon {
    width: 72px;
    height: 72px;
    background: #ecfdf5;
    border: 3px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
    color: #10b981;
}
.success-card { max-width: 520px; margin: 0 auto; background: #fff; border: 1px solid #e8e8e8; padding: 40px 36px; }
.success-card h1 { margin: 0 0 12px; font-size: 28px; }
.success-card p { color: #666; margin-bottom: 8px; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ── Search results ── */
.search-form-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    max-width: 560px;
}
.search-form-bar input { flex: 1; padding: 13px 16px; border: 1px solid #ddd; font-size: 15px; }
.search-form-bar button { padding: 13px 24px; background: #1a1a1a; color: #fff; border: none; font-weight: 700; text-transform: uppercase; font-size: 12px; cursor: pointer; }
.search-form-bar button:hover { background: #eb0000; }
.search-results-grid { display: grid; gap: 12px; }
.search-result-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 16px 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s;
}
.search-result-card:hover { border-color: #eb0000; }
.search-result-card h3 { margin: 0 0 4px; font-size: 15px; color: #1a1a1a; }
.search-result-card .result-type { font-size: 11px; color: #eb0000; text-transform: uppercase; font-weight: 700; }

/* ── Newsletter footer upgrade ── */
.newsletter-bar { background: #1a1a1a; color: #fff; padding: 40px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter-text strong { display: block; font-size: 18px; margin-bottom: 4px; }
.newsletter-text p { margin: 0; font-size: 14px; color: rgba(255,255,255,.65); }
.newsletter-form { display: flex; gap: 0; flex: 1; max-width: 440px; }
.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 14px;
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    border-right: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input:focus { outline: none; background: rgba(255,255,255,.15); }
.newsletter-form button {
    padding: 14px 24px;
    background: #eb0000;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}
.newsletter-form button:hover { background: #c80000; }

/* ── Collections page ── */
.collections-page .collection-grid { margin-top: 8px; }

/* ── Checkout auth gate ── */
.checkout-auth-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.checkout-auth-options { display: grid; gap: 14px; }
.checkout-auth-btn {
    display: flex; align-items: center; gap: 16px; padding: 20px 22px;
    border: 2px solid #e8e8e8; text-decoration: none; color: #1a1a1a;
    transition: border-color .15s, background .15s;
}
.checkout-auth-btn:hover { border-color: #eb0000; background: #fff8f8; }
.checkout-auth-login { border-color: #1a1a1a; }
.checkout-auth-register { border-color: #eb0000; background: #fff8f8; }
.auth-btn-icon { font-size: 28px; flex-shrink: 0; }
.checkout-auth-btn div { flex: 1; }
.checkout-auth-btn strong { display: block; font-size: 15px; margin-bottom: 4px; }
.checkout-auth-btn span { font-size: 13px; color: #888; }
.auth-btn-arrow { font-size: 20px; color: #eb0000; font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .form-layout, .cart-layout, .account-layout, .checkout-auth-layout, .register-checkout-layout { grid-template-columns: 1fr; }
    .form-aside { order: -1; }
    .account-nav-card { position: static; }
    .account-nav { flex-direction: row; flex-wrap: wrap; }
    .account-nav a { flex: 1; min-width: 120px; text-align: center; border-left: none !important; padding-left: 20px !important; }
    .cart-item { grid-template-columns: 64px 1fr; }
    .cart-item-actions { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
    .track-form-row { grid-template-columns: 1fr; }
    .wg-form .form-row-2, .wg-form .form-row-3 { grid-template-columns: 1fr; }
    .content-card { padding: 24px 20px; }
    .register-benefits { grid-template-columns: 1fr; }
    .newsletter-form { width: 100%; max-width: none; }
}
