/* RAM Global Styles */
:root {
    --bg: #faf8f4;
    --card: #ffffff;
    --card2: #f5f0e8;
    --blk: #0A0902;
    --brn: #3e2f1c;
    --bdr: #d5cfc5;
    --sec: #6b5b47;
    --teal: #0d9488;
    --red: #dc2626;
    --grn: #16a34a;
    --warn: #f59e0b;
    --err: #ef4444;
    --ok: #22c55e;
    --gray: #9ca3af;
    --hint: #78716c;
    --hover: #f5f0e8;
    --sel: #e8e0d4;
    /* Brand palette */
    --cream: #faf6ee;
    --brown-dark: #2c2016;
    --brown-darker: #0A0902;
    --brown-mid: #5c4a3a;
    --gold: #d4a843;
    --paper: #f0e8d8;
    --ink: #1a1a1a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { min-height: 100%; }
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
    background-color: #ede8df;
    background-image: url('/images/little-pluses.png');
    background-repeat: repeat;
    color: var(--blk);
    line-height: 1.5;
    padding-top: 0;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   HEADER BANNER
   ============================================================ */
.ram-header-banner {
    background: #0A0902;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ram-header-banner img {
    display: block;
    max-width: 100%;
    height: auto;
}
.ram-header-banner::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 25%;
    background: linear-gradient(to right, #0A0902 0%, rgba(10,9,2,0.7) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}
.ram-header-banner::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 25%;
    background: linear-gradient(to left, #0A0902 0%, rgba(10,9,2,0.7) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* ============================================================
   STICKY NAV
   ============================================================ */
.ram-nav-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 20px;
    background: #2c2016;
    flex-wrap: wrap;
    border-top: 1px dashed rgba(255,255,255,0.1);
    z-index: 999;
    width: 100%;
    box-sizing: border-box;
}
.ram-nav-sticky.ram-nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
}
.ram-nav-spacer { display: none; }
.ram-nav-spacer.active { display: block; }

.ram-nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    text-decoration: none;
    padding: 8px 16px;
    transition: all 0.15s;
    position: relative;
    color: rgba(255,255,255,0.85);
}
.ram-nav-link:hover { color: #d4a843; text-decoration: none; }
.ram-nav-link.ram-active { color: #d4a843; }
.ram-nav-link.ram-active::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 16px;
    right: 16px;
    border-bottom: 1px dashed #d4a843;
}

.ram-nav-dot {
    width: 3px;
    height: 3px;
    background: #faf6ee;
    border-radius: 50%;
    opacity: 0.2;
}

.ram-nav-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 7px 16px;
    border: 1px dashed rgba(255,255,255,0.2);
    cursor: pointer;
    background: transparent;
    color: rgba(255,255,255,0.85);
    transition: all 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.ram-nav-btn:hover { background: rgba(255,255,255,0.1); color: #faf6ee; text-decoration: none; }

.ram-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: rgba(255,255,255,0.85);
    padding: 6px;
    cursor: pointer;
}
.ram-mobile-toggle svg { display: block; }
.ram-mobile-right { display: none; align-items: center; gap: 8px; }
.ram-nav-items { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.ram-cart-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.4); z-index:3000; }
.ram-cart-overlay.open { display:block; }
.ram-cart-drawer { position:fixed; top:0; right:-420px; width:400px; max-width:90vw; height:100vh; background:#1a2a1a; z-index:3001; transition:right 0.3s ease; display:flex; flex-direction:column; border-left:1px dashed rgba(255,255,255,0.1); }
.ram-cart-drawer.open { right:0; }
.ram-cart-header { display:flex; align-items:center; justify-content:space-between; padding:20px 24px; border-bottom:1px dashed rgba(255,255,255,0.1); }
.ram-cart-title { font-size:14px; font-weight:800; text-transform:uppercase; letter-spacing:3px; color:#8fbc8f; }
.ram-cart-close { background:none; border:1px dashed rgba(255,255,255,0.15); color:rgba(255,255,255,0.6); font-family:'Outfit',sans-serif; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:2px; padding:6px 12px; cursor:pointer; }
.ram-cart-close:hover { background:rgba(255,255,255,0.1); color:#fff; }
.ram-cart-items { flex:1; overflow-y:auto; padding:16px 24px; }
.ram-cart-empty { text-align:center; padding:60px 20px; color:rgba(255,255,255,0.3); font-size:13px; font-weight:500; letter-spacing:1px; }
.ram-cart-footer { padding:20px 24px; border-top:1px dashed rgba(255,255,255,0.15); background:rgba(0,0,0,0.2); }
.ram-cart-total-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; }
.ram-cart-total-label { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:rgba(255,255,255,0.5); }
.ram-cart-total-amount { font-size:20px; font-weight:900; color:#8fbc8f; }
.ram-cart-checkout-btn { display:block; width:100%; font-family:'Outfit',sans-serif; font-size:13px; font-weight:800; text-transform:uppercase; letter-spacing:3px; padding:14px 20px; background:#8fbc8f; color:#1a2a1a; border:none; cursor:pointer; transition:all 0.15s; text-align:center; text-decoration:none; box-sizing:border-box; }
.ram-cart-checkout-btn:hover { background:#a3d4a3; color:#1a2a1a; }
.ram-cart-note { text-align:center; font-size:10px; color:rgba(255,255,255,0.3); margin-top:10px; letter-spacing:1px; }

/* ============================================================
   LOGIN / REGISTER MODAL
   ============================================================ */
.ram-acct-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.75); z-index:99999; align-items:center; justify-content:center; }
.ram-acct-overlay.active { display:flex; }
.ram-acct-modal { background:#e8e0d0; border:2px dotted #8b7355; border-radius:8px; max-width:420px; width:90%; position:relative; overflow:hidden; }
.ram-acct-body { padding:20px 30px 30px; }
.ram-acct-sub { text-align:center; color:var(--brown-mid); font-size:13px; margin-bottom:20px; }
.ram-acct-close { position:absolute; top:10px; right:14px; background:rgba(255,255,255,0.85); border:none; font-size:18px; cursor:pointer; color:#2c2416; z-index:10; width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.ram-acct-modal input[type="text"], .ram-acct-modal input[type="email"], .ram-acct-modal input[type="password"] { width:100%; padding:12px; border:1px solid #d4c9b8; border-radius:4px; font-size:13px; margin-bottom:10px; background:var(--cream); box-sizing:border-box; font-family:inherit; }
.ram-acct-btn { width:100%; padding:12px; background:var(--brown-dark); color:var(--cream); border:none; border-radius:4px; font-size:14px; font-weight:600; cursor:pointer; font-family:inherit; margin-bottom:8px; }
.ram-acct-btn:hover { opacity:0.9; }
.ram-acct-toggle { text-align:center; font-size:12px; color:var(--brown-mid); margin-top:10px; }
.ram-acct-toggle a { color:#2980b9; cursor:pointer; text-decoration:underline; }
.ram-acct-error { color:#c0392b; font-size:13px; font-weight:600; text-align:center; margin-bottom:10px; display:none; background:#fde8e8; border:1px solid #f5c6c6; border-radius:4px; padding:10px 14px; }
.ram-acct-error.shake { animation: ramShake 0.4s ease; }
@keyframes ramShake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-6px)} 40%,80%{transform:translateX(6px)} }
.ram-acct-forgot-link { text-align:center; font-size:12px; margin:6px 0 4px; }
.ram-acct-forgot-link a { color:#2980b9; cursor:pointer; text-decoration:underline; }

main { flex: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.ram-site-footer {
    background: var(--brown-darker);
    color: rgba(255,255,255,0.4);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px dashed rgba(255,255,255,0.08);
}
.ram-footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.ram-footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.15s;
}
.ram-footer-links a:hover { color: var(--gold); }
.ram-footer-copy {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ============================================================
   MOBILE (<= 700px)
   ============================================================ */
@media (max-width: 700px) {
    .ram-header-banner::before { width: 8%; }
    .ram-header-banner::after  { width: 15%; }
    .ram-header-banner img { max-width: none; width: 140%; margin-left: -20%; }
    .ram-nav-sticky { justify-content: space-between; }
    .ram-mobile-toggle { display: block; }
    .ram-mobile-right  { display: flex; }
    .ram-nav-items { display: none; flex-direction: column; width: 100%; padding: 4px 0 8px; }
    .ram-nav-items.ram-open { display: flex; }
    .ram-nav-link { padding: 10px 20px; width: 100%; text-align: center; }
    .ram-nav-link.ram-active::after { display: none; }
    .ram-nav-dot { display: none; }
    .ram-btn-group { display: none !important; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-brown { background: var(--brn); color: #fff; }
.btn-danger { background: var(--red); color: #fff; }
.btn-xs { padding: 4px 10px; font-size: 12px; }
.btn-sm { padding: 8px 12px; font-size: 13px; }

/* ============================================================
   ALERTS
   ============================================================ */
.alert { padding: 12px 20px; border-radius: 6px; margin: 20px auto; max-width: 600px; }
.alert-success { background: #dcfce7; color: #166534; }
.alert-error { background: #fee2e2; color: #991b1b; }

/* ============================================================
   AUTH PAGES
   ============================================================ */

/* Hero bar — dark brown, full width, matches WP account pages */
.auth-hero {
    background: var(--brown-dark);
    color: var(--cream);
    text-align: center;
    padding: 44px 20px 36px;
    border-bottom: 1px dashed #8b7355;
}
.auth-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin: 0 0 10px;
    color: var(--cream);
}
.auth-hero p {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.6;
    margin: 0;
}
@media (max-width: 480px) {
    .auth-hero h1 { font-size: 28px; letter-spacing: 1px; }
    .auth-hero { padding: 30px 16px 24px; }
}

/* Outer wrapper — cream background behind the card */
.auth-page-wrap {
    min-height: 50vh;
    background: var(--paper);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px 60px;
}

/* The card itself */
.auth-container {
    background: var(--cream);
    border: 1px dotted #8b7355;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    max-width: 440px;
    width: 100%;
    padding: 36px 32px 32px;
}
@media (max-width: 480px) {
    .auth-container { padding: 28px 20px 24px; }
}

/* Section heading inside card */
.auth-container .auth-card-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brn);
    text-align: center;
    margin-bottom: 4px;
}
.auth-container .auth-card-sub {
    font-size: 13px;
    color: var(--brown-mid);
    font-style: italic;
    text-align: center;
    margin-bottom: 22px;
}

/* Form fields */
.auth-container .form-group {
    margin-bottom: 14px;
}
.auth-container label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    color: var(--brown-mid);
}
.auth-container input[type="text"],
.auth-container input[type="email"],
.auth-container input[type="password"],
.auth-container input[type="date"] {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #c4b89a;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    background: #fffdf5;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.auth-container input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}

/* Remember me row */
.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.auth-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--brn);
    flex-shrink: 0;
}
.auth-remember label {
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--sec);
    margin: 0;
    cursor: pointer;
}

/* Submit button — full width, brown */
.auth-container .btn { width: 100%; text-align: center; margin-top: 6px; }

/* Error list (server-side validation) */
.auth-container .error-list {
    background: #fde8e8;
    border: 1px solid #f5c6c6;
    color: #721c24;
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    list-style: none;
    font-size: 13px;
    font-weight: 600;
}
.auth-container .error-list.shake {
    animation: authShake 0.4s ease;
}
@keyframes authShake {
    0%,100% { transform: translateX(0); }
    20%,60%  { transform: translateX(-6px); }
    40%,80%  { transform: translateX(6px); }
}

/* Success message (forgot password) */
.auth-container .alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 600;
}

/* Links row below form */
.auth-container .auth-links {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    color: var(--brown-mid);
}
.auth-container .auth-links a {
    color: #2980b9;
    font-weight: 600;
}

/* OAuth divider */
.oauth-divider {
    text-align: center;
    margin: 18px 0;
    color: var(--hint);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.oauth-divider::before, .oauth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #c4b89a;
}
.oauth-divider::before { left: 0; }
.oauth-divider::after { right: 0; }

/* OAuth buttons */
.oauth-buttons {
    display: flex;
    gap: 10px;
}
.oauth-buttons a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 12px;
    text-align: center;
    border: 1px solid #c4b89a;
    border-radius: 4px;
    background: #fffdf5;
    color: var(--brn);
    font-weight: 600;
    font-size: 13px;
    transition: background 0.15s, border-color 0.15s;
}
.oauth-buttons a:hover { background: #f0e8d8; border-color: #8b7355; text-decoration: none; }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* ===== SHARED HERO STYLES ===== */
.ram-home-hero-tagline {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 12px;
}
.ram-home-hero-headline {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.05;
    color: var(--brown-dark);
    margin-bottom: 16px;
}
.ram-home-hero-sub {
    font-size: 16px;
    line-height: 1.6;
    color: var(--brown-mid);
    margin-bottom: 28px;
    max-width: 480px;
}
.ram-home-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.ram-home-hero-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 28px;
    border: 2px dashed;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    display: inline-block;
}
.ram-home-hero-btn.ram-primary {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}
.ram-home-hero-btn.ram-primary:hover {
    background: #a93226;
    border-color: #a93226;
    text-decoration: none;
}
.ram-home-hero-btn.ram-secondary {
    background: transparent;
    color: var(--brown-dark);
    border-color: var(--brown-mid);
}
.ram-home-hero-btn.ram-secondary:hover {
    background: var(--brown-dark);
    color: var(--cream);
    text-decoration: none;
}
.ram-home-hero-quip {
    margin-top: 20px;
    font-size: 13px;
    color: var(--brown-mid);
    font-style: italic;
    opacity: 0.7;
}

/* TV internals */
.ram-home-tv-wrapper {
    position: relative;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.ram-home-tv-wrapper img.ram-home-tv-bg {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.ram-home-tv-dim {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.45) 100%);
    z-index: 3;
    pointer-events: none;
}
.ram-home-tv-screen-overlay {
    box-shadow: 0 0 30px rgba(255,255,255,0.3), 0 0 60px rgba(255,255,255,0.1);
    position: absolute;
    top: 29%;
    left: 38%;
    width: 24%;
    height: 30%;
    overflow: hidden;
    z-index: 1;
}
.ram-home-tv-scanlines {
    position: absolute;
    top: 29%;
    left: 38%;
    width: 24%;
    height: 30%;
    background: repeating-linear-gradient(to bottom, transparent 0px, transparent 2px, rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px);
    z-index: 4;
    pointer-events: none;
}
.ram-home-tv-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.1s;
}
.ram-home-tv-slide.ram-home-active { opacity: 1; }
.ram-home-tv-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== HERO LAYOUT — Split (text left, TV right) ===== */
.ram-home-tv-hero {
    background: var(--paper);
    position: relative;
    overflow: hidden;
    border-bottom: 1px dashed #5c4a3a;
}
.ram-home-hero-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0 0 30px;
    gap: 24px;
}
.ram-home-hero-text {
    flex: 0 0 22%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}
.ram-home-hero-headline {
    font-size: clamp(22px, 3vw, 36px) !important;
}
.ram-home-hero-tagline {
    font-size: 10px !important;
    letter-spacing: 2px !important;
}
.ram-home-hero-sub {
    font-size: 13px !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
}
.ram-home-hero-btn {
    font-size: 11px !important;
    padding: 10px 18px !important;
    letter-spacing: 1.5px !important;
}
.ram-home-hero-quip {
    font-size: 11px !important;
}
.ram-home-hero-tv {
    flex: 1;
    position: relative;
    display: flex;
    align-items: stretch;
}
.ram-home-hero-tv .ram-home-tv-wrapper {
    display: flex;
    align-items: stretch;
}
.ram-home-hero-tv .ram-home-tv-wrapper img.ram-home-tv-bg {
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.ram-home-hero-tv {
    border-left: 1px dashed #5c4a3a;
    border-right: 1px dashed #5c4a3a;
}

/* Static overlay */
.ram-home-tv-static {
    position: absolute;
    inset: 0;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    border-radius: 12px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 150px 150px;
    mix-blend-mode: screen;
}
.ram-home-tv-static.ram-home-flash {
    animation: ramHomeStaticFlash 300ms steps(4) forwards;
}
@keyframes ramHomeStaticFlash {
    0% { opacity: 1; background-position: 0 0; }
    25% { opacity: 0.9; background-position: -30px -50px; }
    50% { opacity: 1; background-position: 20px 30px; }
    75% { opacity: 0.85; background-position: -10px -20px; }
    100% { opacity: 0; background-position: 0 0; }
}

/* Channel indicator */
.ram-home-channel-indicator {
    position: absolute;
    top: 4px;
    right: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Outfit', monospace;
    z-index: 12;
    text-shadow: 0 0 4px rgba(255,255,255,0.3);
}

/* ===== SERVICES SECTION ===== */
.ram-home-services-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.ram-home-services-header {
    text-align: center;
    margin-bottom: 50px;
}
.ram-home-services-header h2 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brown-dark);
    line-height: 1.1;
}
.ram-home-services-header p {
    color: var(--brown-mid);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
}

.ram-home-service-block {
    position: relative;
    padding: 0 40px 40px;
    border: 1px dashed #d4cbbe;
    margin-bottom: 50px;
    transition: transform 0.2s;
    overflow: visible;
}
.ram-home-service-hero-bg {
    width: calc(100% + 82px);
    margin-left: -41px;
    height: 250px;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
    border-radius: 0;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.ram-home-service-block:hover { transform: rotate(0deg) !important; }

.ram-home-service-block.ram-home-bg-cream { background: var(--cream); }
.ram-home-service-block.ram-home-bg-paper { background: var(--paper); }
.ram-home-service-block.ram-home-bg-dark {
    background: var(--brown-dark);
    color: var(--cream);
    border-color: rgba(255,255,255,0.1);
}
.ram-home-service-block.ram-home-bg-dark .ram-home-service-desc,
.ram-home-service-block.ram-home-bg-dark .ram-home-service-points li { color: rgba(255,255,255,0.65); }
.ram-home-service-block.ram-home-bg-dark .ram-home-service-point-title { color: var(--cream); }
.ram-home-service-block.ram-home-bg-dark .ram-home-service-photo { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.2); }
.ram-home-service-block.ram-home-bg-dark .ram-home-point-divider { color: rgba(255,255,255,0.2); }

.ram-home-service-block.ram-home-rot-left { transform: rotate(-0.5deg); }
.ram-home-service-block.ram-home-rot-right { transform: rotate(0.6deg); }
.ram-home-service-block.ram-home-rot-slight { transform: rotate(-0.3deg); }

.ram-home-service-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.ram-home-service-inner.ram-home-reverse { direction: rtl; }
.ram-home-service-inner.ram-home-reverse > * { direction: ltr; }

.ram-home-service-title {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    padding: 10px 30px;
    background: var(--brown-dark);
    color: var(--cream);
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.ram-home-service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--brown-mid);
    margin-bottom: 24px;
}

.ram-home-service-points {
    list-style: none;
    padding: 0;
}
.ram-home-service-points li {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--brown-mid);
}
.ram-home-service-point-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink);
    margin-bottom: 4px;
}
.ram-home-point-divider {
    text-align: center;
    color: var(--brown-mid);
    opacity: 0.4;
    font-size: 14px;
    margin: 12px 0;
    letter-spacing: 4px;
}

/* Photo gallery for each service */
.ram-home-service-inner > .ram-home-service-gallery {
    align-self: stretch;
}
.ram-home-service-gallery {
    display: flex;
    flex-direction: column;
}
.ram-home-service-gallery-rotate {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: 4px;
    flex: 1;
    border: 1px dashed #5c4a3a;
}
.ram-home-gallery-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.ram-home-gallery-img.active {
    opacity: 1;
}
.ram-home-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

/* Service card badge */
.ram-home-service-badge {
    position: absolute;
    top: -18px;
    right: -10px;
    width: 160px;
    height: 160px;
    z-index: 2;
    transform: rotate(8deg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ram-home-service-badge img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ram-home-service-badge.ram-home-badge-red img {
    filter: invert(14%) sepia(89%) saturate(5765%) hue-rotate(357deg) brightness(89%) contrast(96%);
}
.ram-home-service-badge.ram-home-badge-gold img {
    filter: invert(65%) sepia(68%) saturate(490%) hue-rotate(6deg) brightness(93%) contrast(91%);
}
.ram-home-service-badge.ram-home-badge-gold .ram-home-service-badge-text {
    color: var(--brown-darker, #2a1f14);
}
.ram-home-service-badge-text {
    position: relative;
    z-index: 3;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.15;
    color: #fff;
    padding: 4px;
}

/* ===== JOIN POPUP ===== */
.ram-join-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.ram-join-overlay.show { opacity: 1; }
.ram-join-popup {
    position: relative;
    max-width: 700px;
    width: 100%;
    animation: ramJoinIn 0.4s ease;
}
@keyframes ramJoinIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.ram-join-popup a { display: block; }
.ram-join-popup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s;
}
.ram-join-popup img:hover { transform: scale(1.02); }
.ram-join-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brown-dark, #2c2416);
    color: #fff;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1;
}
.ram-join-close:hover { background: #1a1a1a; }

/* ===== REVIEWS SECTION ===== */
.ram-home-reviews-section {
    background: var(--paper);
    padding: 80px 20px;
    border-top: 1px dashed #d4cbbe;
    border-bottom: 1px dashed #d4cbbe;
}
.ram-home-reviews-header {
    text-align: center;
    margin-bottom: 50px;
}
.ram-home-reviews-header h2 {
    font-size: clamp(26px, 4.5vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brown-dark);
    line-height: 1.1;
}
.ram-home-reviews-header p {
    color: var(--brown-mid);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
}
.ram-home-reviews-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}
.ram-home-review-card {
    background: #fff;
    border: 1px dashed #d4cbbe;
    padding: 28px 24px;
    position: relative;
}
.ram-home-review-card::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    left: 14px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(0,0,0,0.06);
    line-height: 1;
}
.ram-home-review-card:nth-child(1) {
    grid-column: span 4;
    transform: rotate(-1deg);
}
.ram-home-review-card:nth-child(2) {
    grid-column: span 4;
    transform: rotate(0.7deg);
}
.ram-home-review-card:nth-child(3) {
    grid-column: span 4;
    transform: rotate(-0.5deg);
}
.ram-home-review-source {
    text-align: center;
    margin-top: 18px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    grid-column: 1 / -1;
}
.ram-home-review-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.ram-home-review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--brown-mid);
    font-style: italic;
    margin-bottom: 14px;
}
.ram-home-review-name {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brown-dark);
}

/* ===== CTA SECTION ===== */
.ram-home-cta-section {
    padding: 80px 20px;
    text-align: center;
    background: var(--cream);
    position: relative;
}
.ram-home-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px;
    border-top: 1px dashed #d4cbbe;
}
.ram-home-cta-section h2 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brown-dark);
    line-height: 1.1;
    margin-bottom: 12px;
}
.ram-home-cta-section .ram-home-cta-sub {
    font-size: 14px;
    color: var(--brown-mid);
    margin-bottom: 32px;
    font-weight: 500;
    letter-spacing: 1px;
}
.ram-home-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.ram-home-cta-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 14px 32px;
    border: 1px dashed;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    display: inline-block;
}
.ram-home-cta-btn.ram-home-primary {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}
.ram-home-cta-btn.ram-home-primary:hover {
    background: #a93226;
    border-color: #a93226;
    text-decoration: none;
}
.ram-home-cta-btn.ram-home-secondary {
    background: transparent;
    color: var(--brown-dark);
    border-color: var(--brown-mid);
}
.ram-home-cta-btn.ram-home-secondary:hover {
    background: var(--brown-dark);
    color: var(--cream);
    text-decoration: none;
}
.ram-home-cta-quip {
    margin-top: 28px;
    font-size: 13px;
    color: var(--brown-mid);
    font-style: italic;
    opacity: 0.7;
}

/* ===== HOME PAGE RESPONSIVE ===== */
@media (max-width: 800px) {
    .ram-home-hero-split {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }
    .ram-home-hero-text {
        flex: none;
        padding: 30px 20px;
        order: 2;
    }
    .ram-home-hero-sub { max-width: none !important; }
    .ram-home-hero-buttons { justify-content: center; }
    .ram-home-hero-tv {
        flex: none;
        width: 100%;
        order: 1;
        border-left: none;
        border-right: none;
        overflow: hidden;
    }
    .ram-home-hero-tv .ram-home-tv-wrapper {
        transform: scale(1.6);
        transform-origin: center 45%;
    }
    .ram-home-hero-tv .ram-home-tv-wrapper img.ram-home-tv-bg {
        height: auto;
        object-fit: contain;
    }
}
@media (max-width: 900px) {
    .ram-home-service-inner {
        grid-template-columns: 1fr;
    }
    .ram-home-service-inner.ram-home-reverse { direction: ltr; }
    .ram-home-service-block { transform: none !important; padding: 0 24px 30px; overflow: visible; margin-top: 30px; }
    .ram-home-service-hero-bg { height: 160px; width: calc(100% + 50px); margin-left: -25px; }
    .ram-home-service-title { font-size: 14px; padding: 8px 20px; top: -16px; }
    .ram-home-service-gallery-rotate { min-height: 300px; }
    .ram-home-reviews-grid {
        grid-template-columns: 1fr;
    }
    .ram-home-review-card {
        grid-column: span 1 !important;
    }
}
@media (max-width: 700px) {
    .ram-home-tv-screen-overlay {
        border-radius: 2px;
    }
    .ram-home-service-block { padding: 0 16px 24px; overflow: visible; margin-top: 25px; }
    .ram-home-service-hero-bg { height: 140px; width: calc(100% + 34px); margin-left: -17px; }
    .ram-home-service-title { font-size: 12px; padding: 7px 16px; top: -14px; letter-spacing: 2px; }
    .ram-home-service-gallery-rotate { min-height: 260px; }
    .ram-home-service-badge { width: 120px; height: 120px; top: -14px; right: -6px; }
    .ram-home-service-badge-text { font-size: 11px; }
}
@media (max-width: 480px) {
    .ram-home-tv-slide .ram-home-slide-headline { letter-spacing: 1px !important; }
}

/* ============================================================
   MERCH PAGE — CREATE YOUR MERCH
   ============================================================ */

.ram-merch-page {
    font-family: 'Outfit', sans-serif;
    background: transparent;
    color: var(--ink, #1a1a1a);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===== PAGE HERO ===== */
.ram-merch-hero {
    background: var(--brown-dark, #2c2016);
    color: var(--cream, #faf6ee);
    text-align: center;
    padding: 44px 20px 36px;
    border-bottom: 1px dashed var(--brown-light, #8b7355);
}
.ram-merch-hero h1 {
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 10px;
}
.ram-merch-hero .ram-merch-subtitle {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.6;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===== CATEGORY NAV ===== */
.ram-merch-cat-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    border-bottom: 1.5px dashed #bfb5a3;
}
.ram-merch-cat-nav a {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    text-decoration: none;
    color: var(--brown-mid, #5c4a3a);
    border: 1px dashed var(--brown-mid, #5c4a3a);
    transition: all 0.15s;
}
.ram-merch-cat-nav a:hover { background: var(--paper, #f0e8d8); color: var(--ink, #1a1a1a); text-decoration: none; }
.ram-merch-cat-nav a.active {
    background: var(--brown-dark, #2c2016);
    color: var(--cream, #faf6ee);
    border-color: var(--brown-dark, #2c2016);
}

/* ===== SECTION BANNER ===== */
.ram-merch-section-banner {
    max-width: 1200px;
    margin: 30px auto 20px;
    padding: 0 20px;
}
.ram-merch-banner-inner {
    background: var(--brown-dark, #2c2016);
    color: var(--cream, #faf6ee);
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.ram-merch-banner-inner h2 {
    font-size: 34px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    flex-shrink: 0;
}
.ram-merch-banner-tagline { font-size: 14px; font-weight: 400; opacity: 0.6; }
.ram-merch-banner-deco {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-4deg);
    font-size: 40px;
    font-weight: 900;
    opacity: 0.08;
    text-transform: uppercase;
    letter-spacing: 6px;
    white-space: nowrap;
}

/* ===== CARD GRID ===== */
.ram-merch-grid { display: flex; flex-direction: column; gap: 60px; max-width: 1200px; margin: 0 auto; padding: 10px 20px 80px; }
.ram-merch-row { display: grid; gap: 40px; }
.ram-merch-row-hero { grid-template-columns: 1fr; }
.ram-merch-row-large { grid-template-columns: 1fr 1fr; }
.ram-merch-row-standard { grid-template-columns: 1fr 1fr; }

/* ===== CARD BASE ===== */
.ram-merch-card { position: relative; overflow: visible; transition: transform 0.15s, box-shadow 0.15s; }
.ram-merch-card:hover { z-index: 10; box-shadow: 4px 4px 16px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.06); transform: scale(1.01); }
.ram-merch-card-info {
    border: 1.5px dashed #bfb5a3;
    padding: 20px 20px 44px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ===== BACKGROUNDS ===== */
.ram-merch-bg-cream .ram-merch-card-info, .ram-merch-bg-cream .ram-merch-hero-layout { background: var(--cream, #faf6ee); --card-bg: var(--cream, #faf6ee); }
.ram-merch-bg-paper .ram-merch-card-info, .ram-merch-bg-paper .ram-merch-hero-layout { background: var(--paper, #f0e8d8); --card-bg: var(--paper, #f0e8d8); }
.ram-merch-bg-paper-alt .ram-merch-card-info, .ram-merch-bg-paper-alt .ram-merch-hero-layout { background: var(--paper-alt, #e8e0d0); --card-bg: var(--paper-alt, #e8e0d0); }
.ram-merch-bg-brown .ram-merch-card-info, .ram-merch-bg-brown .ram-merch-hero-layout { background: var(--brown-dark, #2c2016); color: var(--cream, #faf6ee); --card-bg: var(--brown-dark, #2c2016); }
.ram-merch-bg-red .ram-merch-card-info, .ram-merch-bg-red .ram-merch-hero-layout { background: var(--red, #c0392b); color: #fff; --card-bg: var(--red, #c0392b); }
.ram-merch-bg-white .ram-merch-card-info { background: #fff; --card-bg: #fff; }

/* ===== PRODUCT IMAGE — overlaps from side ===== */
.ram-merch-card-product {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    z-index: 2;
    pointer-events: none;
}
.ram-merch-card-product img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.15));
}
/* Standard row */
.ram-merch-row-standard .ram-merch-card-product { width: 300px; }
/* Image RIGHT — overlaps card edge */
.ram-merch-img-right .ram-merch-card-product { right: -120px; }
.ram-merch-img-right .ram-merch-card-info { padding-right: 200px; }
/* Narrow cards so image covers the right edge */
.ram-merch-row-large .ram-merch-card { max-width: 90%; }
.ram-merch-row-standard .ram-merch-card { max-width: 85%; }
/* Image LEFT — half on, half off */
.ram-merch-img-left .ram-merch-card-product { left: -120px; }
.ram-merch-img-left .ram-merch-card-info { padding-left: 200px; }

/* Standard row */
.ram-merch-row-standard { gap: 40px; }
.ram-merch-row-standard .ram-merch-card-product { width: 280px; }
.ram-merch-row-standard .ram-merch-card-info { min-height: 200px; padding: 20px; }
.ram-merch-row-standard .ram-merch-prod-name { font-size: 15px; }
.ram-merch-row-standard .ram-merch-prod-desc { font-size: 12px; }

/* Large row */
.ram-merch-row-large { gap: 40px; }
.ram-merch-row-large .ram-merch-card-product { width: 350px; }
.ram-merch-row-large .ram-merch-card-info { min-height: 200px; }
.ram-merch-row-large .ram-merch-img-right .ram-merch-card-info { padding-right: 200px; }
.ram-merch-row-large .ram-merch-img-left .ram-merch-card-info { padding-left: 200px; }

/* ===== HERO CARD ===== */
.ram-merch-card-hero { overflow: visible; border: 1.5px dashed #bfb5a3; position: relative; max-width: 1000px; margin: 0 auto; }
.ram-merch-card-hero .ram-merch-hero-layout { overflow: hidden; }
.ram-merch-card-hero .ram-merch-card-product { width: 420px; }
.ram-merch-hero-layout { display: grid; grid-template-columns: 35% 1fr; min-height: 320px; }
.ram-merch-hero-scene { position: relative; overflow: hidden; }
.ram-merch-hero-scene img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ram-merch-hero-scene::after {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
    background: linear-gradient(to right, transparent, var(--card-bg, var(--cream, #faf6ee))); pointer-events: none;
}
.ram-merch-bg-paper .ram-merch-hero-scene::after { background: linear-gradient(to right, transparent, var(--paper, #f0e8d8)); }
.ram-merch-bg-paper-alt .ram-merch-hero-scene::after { background: linear-gradient(to right, transparent, var(--paper-alt, #e8e0d0)); }
.ram-merch-bg-brown .ram-merch-hero-scene::after { background: linear-gradient(to right, transparent, var(--brown-dark, #2c2016)); }
.ram-merch-bg-red .ram-merch-hero-scene::after { background: linear-gradient(to right, transparent, var(--red, #c0392b)); }
.ram-merch-hero-content { display: flex; align-items: flex-start; padding: 24px 220px 50px 30px; position: relative; }
.ram-merch-hero-text { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.ram-merch-hero-text .ram-merch-prod-name { font-size: 24px; }

/* ===== PRICE TAG BOX ===== */
.ram-merch-price-tag {
    position: absolute;
    bottom: -12px;
    left: -10px;
    background: var(--brown-dark, #2c2016);
    color: var(--cream, #faf6ee);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 16px;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    z-index: 3;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.ram-merch-price-tag .ram-price-label {
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    margin-bottom: 3px;
}
.ram-merch-price-tag .ram-price-amount {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}
.ram-merch-price-tag .ram-price-design {
    font-size: 9px;
    font-weight: 600;
    opacity: 0.6;
    margin-top: 4px;
}
/* Dark card backgrounds — invert tag */
.ram-merch-bg-brown .ram-merch-price-tag { background: var(--cream, #faf6ee); color: var(--brown-dark, #2c2016); }
.ram-merch-bg-red .ram-merch-price-tag { background: var(--cream, #faf6ee); color: var(--brown-dark, #2c2016); }
/* Left-image rows — tag on right corner */
.ram-merch-img-left .ram-merch-price-tag { left: auto; right: -10px; }
/* Hero tag */
.ram-merch-card-hero .ram-merch-price-tag .ram-price-amount { font-size: 30px; }
/* Standard — slightly smaller */
.ram-merch-row-standard .ram-merch-price-tag { padding: 8px 14px; }
.ram-merch-row-standard .ram-merch-price-tag .ram-price-amount { font-size: 22px; }

/* ===== PRODUCT TEXT ===== */
.ram-merch-prod-name { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; line-height: 1.1; margin-bottom: 4px; }
.ram-merch-prod-desc { font-size: 12.5px; font-weight: 400; line-height: 1.45; margin-bottom: 10px; opacity: 0.8; }
.ram-merch-prod-meta { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.5; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.ram-merch-prod-material { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.5; }
.ram-merch-gender-badge { display: inline-block; background: #1a1a1a; color: #ffffff; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 2px 8px; flex-shrink: 0; }
.ram-merch-bg-brown .ram-merch-gender-badge { background: var(--cream, #faf6ee); color: var(--brown-dark, #2c2016); }
.ram-merch-bg-red .ram-merch-gender-badge { background: var(--cream, #faf6ee); color: var(--red, #c0392b); }

/* Badges */
.ram-merch-badges { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 8px; }
.ram-merch-badge { background: var(--ink, #1a1a1a); color: var(--cream, #faf6ee); font-size: 9px; font-weight: 700; padding: 4px 8px; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 4px; cursor: default; position: relative; }
.ram-merch-badge svg { width: 12px; height: 12px; flex-shrink: 0; }
.ram-merch-tooltip { position: fixed; background: var(--brown-dark, #2c2016); color: var(--cream, #faf6ee); font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.5px; padding: 6px 12px; white-space: nowrap; border-radius: 4px; pointer-events: none; z-index: 9999; box-shadow: 0 2px 8px rgba(0,0,0,0.2); opacity: 0; transition: opacity 0.15s; }
.ram-merch-tooltip.visible { opacity: 1; }
.ram-merch-bg-brown .ram-merch-badge, .ram-merch-bg-red .ram-merch-badge { background: rgba(255,255,255,0.2); }

/* Info chips */
.ram-merch-info-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.ram-merch-info-chip { background: transparent; font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 600; padding: 4px 10px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; border: 1.5px dashed #8b7355; transition: all 0.15s; }
.ram-merch-info-chip:hover { background: var(--ink, #1a1a1a); color: var(--cream, #faf6ee); border-color: var(--ink, #1a1a1a); }
.ram-merch-bg-brown .ram-merch-info-chip, .ram-merch-bg-red .ram-merch-info-chip { border-color: rgba(255,255,255,0.25); color: inherit; }
.ram-merch-bg-brown .ram-merch-info-chip:hover, .ram-merch-bg-red .ram-merch-info-chip:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }

/* Quote button — now inside card info */
.ram-merch-quote-btn { font-family: 'Outfit', sans-serif; display: inline-block; padding: 8px 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; border: 1.5px dashed var(--brown-dark, #2c2016); background: var(--brown-dark, #2c2016); color: var(--cream, #faf6ee); cursor: pointer; transition: all 0.15s; margin-top: 10px; }
.ram-merch-quote-btn:hover { background: transparent; color: var(--brown-dark, #2c2016); }
/* Light button on dark card backgrounds */
.ram-merch-bg-brown .ram-merch-quote-btn, .ram-merch-bg-red .ram-merch-quote-btn { background: var(--cream, #faf6ee); color: var(--brown-dark, #2c2016); border-color: var(--cream, #faf6ee); }
.ram-merch-bg-brown .ram-merch-quote-btn:hover, .ram-merch-bg-red .ram-merch-quote-btn:hover { background: transparent; color: var(--cream, #faf6ee); }

/* ===== COLOR/SIZE POPUP ===== */
.ram-merch-popup-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(44,32,22,0.5); z-index: 2000; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(3px); }
.ram-merch-popup-overlay.active { display: flex; }
.ram-merch-popup { background: var(--cream, #faf6ee); border: 1.5px dashed #bfb5a3; max-width: 560px; width: 100%; max-height: 85vh; overflow-y: auto; }
.ram-merch-popup-header { background: var(--brown-dark, #2c2016); color: var(--cream, #faf6ee); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
.ram-merch-popup-header h3 { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.ram-merch-popup-close { background: none; border: 1px dashed rgba(255,255,255,0.4); color: var(--cream, #faf6ee); font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; padding: 4px 14px; cursor: pointer; transition: all 0.15s; }
.ram-merch-popup-close:hover { background: rgba(255,255,255,0.15); }
.ram-merch-popup-body { padding: 24px; }
.ram-merch-popup-section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--brown-mid, #5c4a3a); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1.5px dashed #bfb5a3; }
.ram-merch-color-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.ram-merch-color-swatch { text-align: center; cursor: pointer; }
.ram-merch-swatch-circle { width: 36px; height: 36px; border-radius: 50%; border: 1.5px dashed rgba(0,0,0,0.2); margin: 0 auto 4px; transition: transform 0.15s, border-color 0.15s; }
.ram-merch-color-swatch.selected .ram-merch-swatch-circle { border: 3px solid var(--brown-dark, #2c2016); transform: scale(1.15); }
.ram-merch-swatch-name { font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--brown-mid, #5c4a3a); max-width: 48px; line-height: 1.2; }

/* Print position selector */
.ram-merch-print-positions { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.ram-merch-pos-option { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--brown-dark, #2c2016); cursor: pointer; padding: 6px 12px; border: 1px dashed #d4cbbe; background: var(--cream, #faf6ee); transition: all 0.15s; }
.ram-merch-pos-option:has(input:checked) { border-color: var(--brown-dark, #2c2016); background: var(--brown-dark, #2c2016); color: var(--cream, #faf6ee); }
.ram-merch-pos-option input { display: none; }

/* File upload */
.ram-merch-dropzone { border: 2px dashed #d4cbbe; padding: 24px 16px; text-align: center; cursor: pointer; transition: all 0.15s; background: rgba(255,255,255,0.5); }
.ram-merch-dropzone:hover, .ram-merch-dropzone.dragover { border-color: var(--brown-dark, #2c2016); background: rgba(255,255,255,0.8); }
.ram-merch-dropzone p { font-size: 13px; font-weight: 700; color: var(--brown-dark, #2c2016); margin-bottom: 4px; }
.ram-merch-dropzone span { font-size: 10px; color: var(--brown-mid, #5c4a3a); letter-spacing: 0.5px; }
.ram-merch-file-item { display: flex; align-items: center; gap: 8px; padding: 8px 12px; margin-top: 6px; border: 1px solid #e8e0d4; font-size: 12px; font-weight: 600; color: var(--brown-dark, #2c2016); }
.ram-merch-file-item span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ram-merch-file-item select { padding: 3px 6px; border: 1px solid #d4c5a0; border-radius: 3px; font-size: 11px; font-family: inherit; background: #fffdf5; color: var(--brown-dark, #2c2016); flex-shrink: 0; }
.ram-merch-file-item button { background: none; border: none; color: var(--red, #c0392b); cursor: pointer; font-size: 14px; font-weight: 700; flex-shrink: 0; }

.ram-merch-size-chart { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.ram-merch-size-tag { background: var(--brown-dark, #2c2016); color: var(--cream, #faf6ee); font-size: 13px; font-weight: 700; padding: 8px 16px; text-transform: uppercase; letter-spacing: 1px; }
.ram-merch-popup-footer { padding: 14px 24px; border-top: 1px dashed #d4cbbe; font-size: 13px; font-weight: 500; color: var(--brown-light, #8b7355); font-style: italic; text-align: center; }

/* ===== QUOTE BASKET DRAWER ===== */
.ram-merch-basket-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(44,32,22,0.4); z-index: 1500; backdrop-filter: blur(2px); }
.ram-merch-basket-overlay.active { display: block; }
.ram-merch-basket-drawer { position: fixed; top: 0; right: -420px; width: 400px; height: 100vh; background: var(--cream, #faf6ee); border-left: 1.5px dashed #bfb5a3; z-index: 1600; display: flex; flex-direction: column; transition: right 0.3s ease; }
.ram-merch-basket-drawer.active { right: 0; }
.ram-merch-basket-header { background: var(--brown-dark, #2c2016); color: var(--cream, #faf6ee); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.ram-merch-basket-header h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.ram-merch-basket-items { flex: 1; overflow-y: auto; padding: 16px; }
.ram-merch-basket-item { background: var(--paper, #f0e8d8); border: 1px dashed #d4cbbe; padding: 14px; margin-bottom: 8px; position: relative; }
.ram-merch-basket-item-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; padding-right: 60px; }
.ram-merch-basket-item-meta { font-size: 12px; color: var(--brown-mid, #5c4a3a); }
.ram-merch-basket-item-remove { position: absolute; top: 14px; right: 14px; background: none; border: none; color: var(--red, #c0392b); font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; }
.ram-merch-basket-item-remove:hover { text-decoration: underline; }
.ram-merch-basket-empty { text-align: center; padding: 50px 20px; color: var(--brown-light, #8b7355); }
.ram-merch-basket-empty p { font-size: 14px; font-weight: 500; line-height: 1.6; }
.ram-merch-basket-form { flex-shrink: 0; padding: 16px; border-top: 1.5px dashed #bfb5a3; background: var(--paper, #f0e8d8); }
.ram-merch-basket-form label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--brown-mid, #5c4a3a); margin-bottom: 4px; }
.ram-merch-basket-form input, .ram-merch-basket-form textarea { width: 100%; font-family: 'Outfit', sans-serif; font-size: 14px; padding: 10px 12px; border: 1px dashed #d4cbbe; background: var(--cream, #faf6ee); margin-bottom: 10px; }
.ram-merch-basket-form textarea { height: 70px; resize: vertical; }
.ram-merch-basket-form input:focus, .ram-merch-basket-form textarea:focus { outline: none; border-color: var(--brown-dark, #2c2016); border-style: solid; }
.ram-merch-submit-quote-btn { width: 100%; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; padding: 14px; background: var(--red, #c0392b); color: #fff; border: none; cursor: pointer; transition: all 0.15s; }
.ram-merch-submit-quote-btn:hover { background: var(--brown-dark, #2c2016); }

/* ===== TOAST ===== */
.ram-merch-toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--brown-dark, #2c2016); color: var(--cream, #faf6ee); font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; padding: 12px 28px; border: 1px dashed #d4cbbe; z-index: 3000; transition: transform 0.3s ease; white-space: nowrap; }
.ram-merch-toast.show { transform: translateX(-50%) translateY(0); }

/* ===== UPLOAD SPINNER ===== */
.ram-upload-spinner { width: 40px; height: 40px; border: 4px solid #e8e0d4; border-top-color: #2a9d8f; border-radius: 50%; margin: 0 auto; animation: ramSpin 0.8s linear infinite; }
@keyframes ramSpin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .ram-merch-row-standard { grid-template-columns: 1fr 1fr; }
    .ram-merch-hero h1 { font-size: 36px; }
    .ram-merch-banner-inner h2 { font-size: 24px; }
}

@media (max-width: 600px) {
    .ram-merch-row-large, .ram-merch-row-standard { grid-template-columns: 1fr; }
    .ram-merch-card { overflow: hidden; }
    .ram-merch-card-product { width: 180px !important; right: -40px !important; }
    .ram-merch-img-right .ram-merch-card-info { padding-right: 100px !important; }
    .ram-merch-card-info { min-height: 220px !important; padding-bottom: 44px !important; }
    .ram-merch-hero-layout { grid-template-columns: 1fr; }
    .ram-merch-hero-scene { min-height: 180px; }
    .ram-merch-hero-content { flex-direction: column; text-align: center; padding-bottom: 50px; }
    .ram-merch-hero-product { width: 200px !important; margin: 0 !important; }
    .ram-merch-hero-text .ram-merch-badges, .ram-merch-hero-text .ram-merch-info-chips { justify-content: center; }
    .ram-merch-basket-drawer { width: 100%; right: -100%; }
    .ram-merch-banner-inner h2 { font-size: 20px; }
    .ram-merch-hero h1 { font-size: 28px; letter-spacing: 1px; }
    .ram-merch-cat-nav { justify-content: center; }
    .ram-merch-prod-name { font-size: 16px !important; }
    .ram-merch-price-tag { font-size: 12px; padding: 8px 14px; }
    .ram-merch-price-tag .ram-price-amount { font-size: 20px; }
    .ram-merch-quote-btn { padding: 6px 14px; font-size: 10px; letter-spacing: 1px; }
}

/* ═══════════════════════════════════════════
   HEISER BROS STORE
═══════════════════════════════════════════ */
.hb-wrap { font-family: 'Outfit', sans-serif; color: var(--ink); }
.hb-wrap * { box-sizing: border-box; }

/* Admin notice */
.hb-admin-bar {
    background: #2c2016;
    color: var(--gold);
    text-align: center;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px dashed rgba(212,168,67,0.3);
}

/* Hero */
.hb-hero {
    background: var(--brown-darker);
    padding: 80px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent 0px, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px),
        repeating-linear-gradient(90deg, transparent 0px, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
    pointer-events: none;
}
.hb-storefront { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.hb-storefront-sign {
    border: 2px dashed rgba(212,168,67,0.4);
    padding: 40px 50px;
    position: relative;
    margin-bottom: 30px;
}
.hb-storefront-sign::before {
    content: 'EST. MMXXIV';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brown-darker);
    padding: 0 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    opacity: 0.6;
}
.hb-storefront-sign::after {
    content: 'A RAPID ARTIST MERCH ESTABLISHMENT';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brown-darker);
    padding: 0 16px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    white-space: nowrap;
}
.hb-hero h1 {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}
.hb-hero .hb-amp {
    display: block;
    font-size: clamp(20px, 3vw, 28px);
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: 300;
    margin: 4px 0;
}
.hb-hero .hb-subtitle {
    font-size: clamp(13px, 2vw, 16px);
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.5;
    font-style: italic;
}
.hb-hero .hb-intro {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.7;
}
.hb-open-sign {
    display: inline-block;
    border: 1px dashed var(--gold);
    color: var(--gold);
    padding: 6px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: hbFlicker 3s infinite;
}
@keyframes hbFlicker {
    0%, 95%, 100% { opacity: 1; }
    96% { opacity: 0.4; }
    97% { opacity: 1; }
    98% { opacity: 0.3; }
}

/* Theme tabs */
.hb-theme-tabs {
    background: var(--brown-dark);
    border-top: 1px dashed rgba(255,255,255,0.08);
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    position: sticky;
    top: 50px;
    z-index: 998;
}
.hb-theme-tab {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border: 1px dashed rgba(255,255,255,0.2);
    background: transparent;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.15s;
}
.hb-theme-tab:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }
.hb-theme-tab.active {
    background: var(--gold);
    color: var(--brown-darker);
    border-color: var(--gold);
}

/* Theme sections */
.hb-theme-section { display: none; }
.hb-theme-section.active { display: block; }
.hb-section-header { text-align: center; padding: 50px 20px 30px; }
.hb-section-header h2 {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 8px;
}
.hb-section-header .hb-section-subtitle {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.6;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}
.hb-section-header .hb-section-rule {
    width: 60px;
    margin: 18px auto 0;
    border: none;
    border-top: 1px dashed currentColor;
    opacity: 0.3;
}

/* Product grid */
.hb-product-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.hb-product-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: inherit;
    background-repeat: inherit;
    background-size: inherit;
    pointer-events: none;
    z-index: 0;
}

/* Product cards */
.hb-product-card {
    background: var(--cream);
    border: 1px dashed #d4cbbe;
    padding: 0;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}
.hb-product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); z-index: 5; }
.hb-product-card:nth-child(3) { transform: rotate(0.5deg); }
.hb-product-card:nth-child(3):hover { transform: rotate(0.5deg) translateY(-4px); }
.hb-product-card:nth-child(5) { transform: rotate(-0.4deg); }
.hb-product-card:nth-child(5):hover { transform: rotate(-0.4deg) translateY(-4px); }
.hb-product-image {
    aspect-ratio: 1;
    border-bottom: 1px dashed #d4cbbe;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
    color: var(--brown-mid);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hb-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.hb-product-image::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px dashed #d4cbbe;
    pointer-events: none;
    z-index: 1;
}
.hb-product-info { padding: 16px; }
.hb-product-name { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.2; margin-bottom: 4px; }
.hb-product-tagline { font-size: 12px; font-weight: 400; color: var(--brown-mid); line-height: 1.4; margin-bottom: 10px; }
.hb-product-price { font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: 0.5px; margin-bottom: 4px; }
.hb-product-formats { font-size: 10px; font-weight: 600; color: var(--brown-mid); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; opacity: 0.7; }
.hb-product-btn {
    display: block;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 16px;
    border: 1px dashed var(--brown-mid);
    background: transparent;
    color: var(--brown-dark);
    cursor: pointer;
    transition: all 0.15s;
}
.hb-product-btn:hover { background: var(--brown-dark); color: var(--cream); border-color: var(--brown-dark); }

/* Empty theme */
.hb-empty-theme { text-align: center; padding: 60px 20px; color: var(--brown-mid); font-size: 14px; opacity: 0.6; }

/* Section banner & character */
.hb-section-banner { width: 100%; aspect-ratio: 16/5; overflow: hidden; border-bottom: 2px dashed currentColor; opacity: 0.9; }
.hb-section-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hb-section-header.has-character { display: flex; align-items: center; gap: 20px; }
.hb-section-character { width: 120px; flex-shrink: 0; }
.hb-section-character img { width: 100%; height: auto; display: block; border-radius: 8px; }

/* Product modal */
.hb-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}
.hb-modal-overlay.open { display: flex; }
.hb-modal {
    background: var(--cream);
    border: 1px dashed var(--brown-mid);
    max-width: 480px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}
.hb-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: 1px dashed rgba(0,0,0,0.2);
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 12px;
    cursor: pointer;
    z-index: 5;
    color: var(--brown-mid);
}
.hb-modal-close:hover { background: var(--brown-dark); color: var(--cream); }
.hb-modal-image {
    aspect-ratio: 4/3;
    background: var(--paper);
    border-bottom: 1px dashed #d4cbbe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-mid);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.hb-modal-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hb-modal-details { padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; }
.hb-modal-name { font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; line-height: 1.1; }
.hb-modal-tagline { font-size: 13px; color: var(--brown-mid); line-height: 1.5; margin-top: -8px; }
.hb-modal-price { font-size: 18px; font-weight: 800; color: var(--red); letter-spacing: 0.5px; }
.hb-modal-field label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--brown-mid); margin-bottom: 6px; }
.hb-modal-select, .hb-modal-qty {
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
    border: 1px dashed #bfb5a3;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.hb-modal-select:focus, .hb-modal-qty:focus { outline: none; border-color: var(--gold); }
.hb-modal-qty { width: 80px; text-align: center; }

/* Color swatches */
.hb-color-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.hb-color-swatch { width: 32px; height: 32px; border: 2px solid transparent; cursor: pointer; position: relative; transition: all 0.15s; }
.hb-color-swatch:hover { transform: scale(1.1); }
.hb-color-swatch.selected { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.hb-color-swatch-name { font-size: 11px; font-weight: 600; color: var(--brown-mid); margin-top: 4px; text-align: center; }
.hb-modal-add-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 14px 20px;
    background: var(--brown-dark);
    color: var(--cream);
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    width: 100%;
}
.hb-modal-add-btn:hover { background: var(--ink); }
.hb-modal-formats { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brown-mid); opacity: 0.7; text-align: center; }

/* Bottom CTA */
.hb-bottom-cta {
    background: var(--brown-dark);
    color: var(--cream);
    text-align: center;
    padding: 60px 20px;
    border-top: 1px dashed rgba(255,255,255,0.08);
}
.hb-bottom-cta h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 900; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; }
.hb-bottom-cta p { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 28px; line-height: 1.6; }
.hb-cta-btn {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 14px 36px;
    border: 1px dashed var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}
.hb-cta-btn:hover { background: var(--gold); color: var(--brown-darker); border-color: var(--gold); }

/* Coming soon */
.hb-coming-soon {
    font-family: 'Outfit', sans-serif;
    text-align: center;
    padding: 100px 20px 120px;
    background: var(--brown-darker);
    color: var(--cream);
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hb-cs-sign {
    border: 2px dashed rgba(212,168,67,0.4);
    padding: 40px 50px;
    max-width: 600px;
    margin-bottom: 30px;
    position: relative;
}
.hb-cs-sign::before {
    content: 'A RAPID ARTIST MERCH ESTABLISHMENT';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brown-darker);
    padding: 0 16px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    white-space: nowrap;
}
.hb-coming-soon h1 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}
.hb-cs-amp { display: block; font-size: clamp(18px, 3vw, 24px); color: var(--gold); letter-spacing: 2px; font-weight: 300; margin: 4px 0; }
.hb-cs-badge {
    display: inline-block;
    border: 1px dashed var(--gold);
    color: var(--gold);
    padding: 8px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: hbFlicker 3s infinite;
}
.hb-cs-text { color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.6; max-width: 480px; margin-top: 20px; }
.hb-cs-cta {
    display: inline-block;
    margin-top: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 12px 32px;
    border: 1px dashed var(--gold);
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.15s;
}
.hb-cs-cta:hover { background: var(--gold); color: var(--brown-darker); }

/* Responsive */
@media (max-width: 1024px) { .hb-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
    .hb-product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .hb-storefront-sign { padding: 28px 24px; }
    .hb-theme-tabs { top: 44px; gap: 6px; padding: 10px 12px; }
    .hb-theme-tab { font-size: 10px; padding: 6px 14px; letter-spacing: 1.5px; }
    .hb-section-header.has-character { flex-direction: column; text-align: center; }
    .hb-section-character { width: 100px; }
}
@media (max-width: 700px) {
    .hb-modal { max-width: 95%; }
    .hb-modal-image { aspect-ratio: 16/9; }
    .hb-modal-details { padding: 24px 20px; }
}
@media (max-width: 520px) {
    .hb-product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 10px 12px 50px; }
    .hb-product-info { padding: 12px; }
    .hb-product-name { font-size: 12px; letter-spacing: 1px; }
    .hb-product-tagline { font-size: 11px; margin-bottom: 8px; }
    .hb-product-btn { font-size: 10px; padding: 8px 12px; letter-spacing: 1.5px; }
    .hb-hero { padding: 50px 16px 44px; }
    .hb-hero h1 { letter-spacing: 4px; }
    .hb-storefront-sign::after { font-size: 7px; letter-spacing: 2px; }
    .hb-cs-sign { padding: 28px 24px; }
    .hb-coming-soon h1 { letter-spacing: 4px; }
}

/* ============================================================
   RAM ACCOUNT PAGES — Shared Styles
   Ported from WordPress account-modular.php
   ============================================================ */

/* Account CSS variables */
:root {
    --ram-bg: #f5f0e8;
    --ram-card: #fffdf5;
    --ram-card-hover: #faf6e8;
    --ram-ink: #1a1a1a;
    --ram-brown: #8b7355;
    --ram-border: #c4b89a;
    --ram-border-light: #ddd5c0;
    --ram-teal: #2a9d8f;
    --ram-teal-dark: #238b7e;
    --ram-teal-light: #e8f5f3;
    --ram-red: #c44536;
    --ram-green: #2d6a4f;
    --ram-gold: #d4a847;
    --ram-shadow: 0 2px 8px rgba(0,0,0,0.06);
    --ram-radius: 6px;
    --ram-font: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Page Hero */
.ram-account-hero {
    background: #2c2016;
    color: #faf6ee;
    text-align: center;
    padding: 44px 20px 36px;
    border-bottom: 1px dashed #8b7355;
}
.ram-account-hero h1 {
    font-family: var(--ram-font);
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin: 0 0 10px;
}
.ram-account-subtitle {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.6;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Content Container */
.ram-account-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px 40px;
    overflow-x: hidden;
}

/* Account Tab Navigation */
.ram-acct-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 20px;
    border-bottom: 1px dashed var(--ram-border);
    margin-bottom: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.ram-acct-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--ram-brown);
    font-family: var(--ram-font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    white-space: nowrap;
    border: 1px solid var(--ram-border);
    border-radius: 6px;
    background: var(--ram-card);
}
.ram-acct-nav-link:hover {
    color: var(--ram-teal);
    border-color: var(--ram-teal);
    background: var(--ram-teal-light);
}
.ram-acct-nav-link.active {
    color: #fff;
    background: var(--ram-teal);
    border-color: var(--ram-teal);
}
.ram-acct-nav-link .nav-icon { font-size: 14px; }

/* Welcome */
.ram-welcome { text-align: center; padding: 28px 20px; }
.ram-welcome h2 {
    font-family: var(--ram-font);
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--ram-ink);
}
.ram-welcome p {
    font-family: var(--ram-font);
    font-style: italic;
    color: var(--ram-brown);
    font-size: 15px;
    margin: 0;
}

/* Stats Row */
.ram-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--ram-border);
    border-radius: var(--ram-radius);
    background: var(--ram-card);
    box-shadow: var(--ram-shadow);
    overflow: hidden;
    margin-bottom: 24px;
}
.ram-stat {
    padding: 20px 12px;
    text-align: center;
    border-right: 1px dashed var(--ram-border);
}
.ram-stat:last-child { border-right: none; }
.ram-stat-value {
    font-family: var(--ram-font);
    font-size: 34px;
    font-weight: 800;
    color: var(--ram-teal);
    line-height: 1;
    margin-bottom: 6px;
}
.ram-stat-label {
    font-family: var(--ram-font);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ram-brown);
}

/* Dashboard Two-Column */
.ram-dash-cols {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 24px;
}
.ram-dash-col-left { display: flex; flex-direction: column; }
.ram-dash-promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--ram-radius);
    border: 1px solid var(--ram-border);
}
.ram-dash-promo-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--ram-card);
    border: 2px dashed var(--ram-border);
    border-radius: var(--ram-radius);
    min-height: 280px;
}
.ram-dash-col-right { display: flex; flex-direction: column; gap: 20px; }

/* Card */
.ram-card {
    background: var(--ram-card);
    border: 1px solid var(--ram-border);
    border-radius: var(--ram-radius);
    box-shadow: var(--ram-shadow);
    overflow: hidden;
}
.ram-card-header {
    background: var(--ram-ink);
    color: #fff;
    padding: 11px 20px;
    font-family: var(--ram-font);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ram-card-body { padding: 20px; }

/* Tables */
.ram-table { width: 100%; border-collapse: collapse; }
.ram-table th {
    font-family: var(--ram-font);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ram-brown);
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid var(--ram-border);
}
.ram-table td {
    padding: 13px 14px;
    border-bottom: 1px dashed var(--ram-border-light);
    font-family: var(--ram-font);
    font-size: 14px;
    vertical-align: middle;
}
.ram-table tr:last-child td { border-bottom: none; }
.ram-table tr:hover td { background: var(--ram-card-hover); }

/* Status Badges */
.ram-badge {
    display: inline-block;
    padding: 3px 9px;
    font-family: var(--ram-font);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
}
.ram-badge-pending          { background: #fef3cd; color: #856404; }
.ram-badge-processing       { background: #cce5ff; color: #004085; }
.ram-badge-completed        { background: #d4edda; color: #155724; }
.ram-badge-shipped          { background: #d4edda; color: #155724; }
.ram-badge-deposit-paid     { background: #e8f5f3; color: #238b7e; }
.ram-badge-balance-due      { background: #fef3cd; color: #856404; }
.ram-badge-in-production    { background: #cce5ff; color: #004085; }
.ram-badge-approved         { background: #d4edda; color: #155724; }
.ram-badge-sent             { background: #cce5ff; color: #004085; }
.ram-badge-draft            { background: #e2e3e5; color: #383d41; }
.ram-badge-revision         { background: #f8d7da; color: #721c24; }
.ram-badge-revision-requested { background: #f8d7da; color: #721c24; }
.ram-badge-cancelled        { background: #e2e3e5; color: #6c757d; }
.ram-badge-expired          { background: #e2e3e5; color: #6c757d; }

/* Buttons */
.ram-btn {
    font-family: var(--ram-font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}
.ram-btn-sm { font-size: 11px; padding: 5px 12px; }
.ram-btn-teal { background: var(--ram-teal); color: #fff; }
.ram-btn-teal:hover { background: var(--ram-teal-dark); color: #fff; }
.ram-btn-outline { background: transparent; color: var(--ram-ink); border: 1px solid var(--ram-border); }
.ram-btn-outline:hover { background: var(--ram-ink); color: #fff; border-color: var(--ram-ink); }
.ram-btn-dark { background: var(--ram-ink); color: #fff; }
.ram-btn-dark:hover { background: #333; color: #fff; }
.ram-btn-ghost { background: transparent; color: var(--ram-red); border: 1px solid var(--ram-red); }
.ram-btn-ghost:hover { background: var(--ram-red); color: #fff; }

/* Empty State */
.ram-empty { text-align: center; padding: 40px 20px; color: var(--ram-brown); }
.ram-empty .empty-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.4; display: block; }
.ram-empty p { font-size: 15px; font-style: italic; margin-bottom: 16px; }

/* Pagination */
.ram-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px dashed var(--ram-border);
    flex-wrap: wrap;
}

/* Alert */
.ram-alert {
    background: #e8f5f3;
    border: 1px solid #2a9d8f;
    border-radius: var(--ram-radius);
    padding: 14px 20px;
    margin-bottom: 20px;
    color: #238b7e;
    font-weight: 600;
    font-family: var(--ram-font);
}

/* Scroll */
.ram-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Profile Form */
.ram-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ram-field { display: flex; flex-direction: column; gap: 4px; }
.ram-field.full { grid-column: 1 / -1; }
.ram-label {
    font-family: var(--ram-font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ram-brown);
}
.ram-input {
    font-family: var(--ram-font);
    font-size: 15px;
    padding: 10px 14px;
    border: 1px solid var(--ram-border);
    border-radius: 4px;
    background: var(--ram-card);
    color: var(--ram-ink);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.ram-input:focus { border-color: var(--ram-teal); box-shadow: 0 0 0 3px rgba(42,157,143,0.12); }
.ram-input[readonly] { background: #f0ead8; color: var(--ram-brown); }

/* Rewards Layout */
.ram-rewards-catalog { font-family: var(--ram-font); }
.ram-rewards-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
    align-items: start;
    padding-top: 20px;
}
.ram-rewards-col-left { min-width: 0; }
.ram-rewards-col-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 100px;
}
.ram-rewards-balance-bar {
    text-align: center;
    padding: 24px 20px;
    background: var(--ram-card);
    border: 1px solid var(--ram-border);
    border-radius: 8px;
}
.ram-rewards-pts-num { font-size: 42px; font-weight: 800; color: var(--ram-teal); line-height: 1; }
.ram-rewards-pts-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--ram-brown); margin-top: 4px; }
.ram-rewards-tier {
    display: inline-block; margin-top: 12px; padding: 4px 14px; border-radius: 14px;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    background: linear-gradient(135deg, #2a9d8f, #238477); color: #fff;
}
.ram-rewards-next { font-size: 12px; color: var(--ram-brown); margin-top: 6px; }
.ram-rewards-referral-card {
    padding: 20px;
    background: var(--ram-card);
    border: 1px solid var(--ram-border);
    border-radius: 8px;
}
.ram-earned-codes {
    padding: 20px;
    background: var(--ram-card);
    border: 1px solid var(--ram-border);
    border-radius: 8px;
}
.ram-earned-code { padding: 10px 0; border-bottom: 1px dashed var(--ram-border); }
.ram-earned-code:last-child { border-bottom: none; padding-bottom: 0; }
.ram-earned-code:first-child { padding-top: 0; }
.ram-earned-code-pill {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 700;
    color: #3c3226;
    background: rgba(212,160,23,0.18);
    border: 1px solid rgba(212,160,23,0.5);
    border-radius: 4px;
    padding: 3px 8px;
    letter-spacing: 1px;
}
.ram-earned-code-pill:hover { background: rgba(212,160,23,0.32); }
.ram-rewards-hiw-inline {
    padding: 20px;
    background: var(--ram-card);
    border: 1px solid var(--ram-border);
    border-radius: 8px;
}
.ram-hiw-inline-title {
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--ram-brown); margin-bottom: 14px; text-align: center;
}
.ram-hiw-inline-row {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 8px 0; border-bottom: 1px dashed var(--ram-border);
    font-size: 13px; color: var(--ram-ink); line-height: 1.4;
}
.ram-hiw-inline-row:last-of-type { border-bottom: none; }
.ram-hiw-inline-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.ram-hiw-inline-note {
    font-size: 11px; color: var(--ram-brown); font-style: italic;
    text-align: center; margin-top: 12px; padding-top: 10px;
    border-top: 1px dashed var(--ram-border);
}
.ram-hiw-inline-tiers-title {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--ram-brown); margin-top: 14px; margin-bottom: 8px; text-align: center;
}
.ram-hiw-inline-tier {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 10px; margin-bottom: 4px;
    background: #f5f0e8; border-radius: 4px; font-size: 12px;
}
.ram-hiw-inline-tier-pts { font-weight: 600; color: var(--ram-teal); }
.ram-rewards-convert-banner {
    display: flex; align-items: center; gap: 14px;
    background: linear-gradient(135deg, #2a9d8f 0%, #238477 100%);
    color: #fffdf5; padding: 14px 18px; border-radius: 10px;
    margin-bottom: 18px; box-shadow: 0 3px 10px rgba(42,157,143,.25);
}
.ram-rewards-convert-emoji { font-size: 32px; flex-shrink: 0; }
.ram-rewards-convert-main { font-size: 17px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; }
.ram-rewards-convert-sub { font-size: 12px; opacity: 0.9; margin-top: 2px; }
.ram-rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.ram-reward-card {
    background: var(--ram-card); border: 1px solid var(--ram-border);
    border-radius: 8px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.ram-reward-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.ram-reward-locked .ram-reward-img { opacity: 0.85; filter: grayscale(15%); }
.ram-reward-unlocked { border-color: var(--ram-teal); }
.ram-reward-img { position: relative; height: 160px; background: #f0ebe0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ram-reward-img img { width: 100%; height: 100%; object-fit: cover; }
.ram-reward-placeholder { font-size: 48px; opacity: 0.4; }
.ram-reward-badge {
    position: absolute; top: 8px; right: 8px;
    padding: 5px 12px; border-radius: 14px;
    font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
    background: #2c2416; color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.25); z-index: 2;
}
.ram-reward-badge-credit { background: #2c2416; color: #ffd680; }
.ram-reward-body { padding: 14px; }
.ram-reward-name { font-size: 15px; font-weight: 700; color: var(--ram-ink); margin-bottom: 4px; }
.ram-reward-desc { font-size: 12px; color: var(--ram-brown); line-height: 1.4; margin-bottom: 10px; }
.ram-reward-btn {
    display: inline-block; padding: 8px 18px; border: none; border-radius: 6px;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    cursor: pointer; font-family: inherit; transition: background 0.2s;
}
.ram-reward-btn-claim { background: #2a9d8f; color: #fff; width: 100%; text-align: center; }
.ram-reward-btn-claim:hover { background: #238477; }
.ram-reward-btn-cancel { background: #c4b89a; color: #1a1a1a; }
.ram-reward-btn-cancel:hover { background: #b5a68a; }
.ram-reward-needed {
    text-align: center; padding: 9px 8px; font-size: 12px; font-weight: 700;
    color: #fffdf5; background: #5c4a3a; border-radius: 6px;
    text-transform: uppercase; letter-spacing: 0.4px;
}

/* Loyalty Activity */
.ram-loyalty-activity-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 10px 0; border-bottom: 1px dashed var(--ram-border-light);
    font-family: var(--ram-font);
}
.ram-loyalty-activity-row:last-child { border-bottom: none; }
.ram-loyalty-activity-info { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.ram-loyalty-activity-type { font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.ram-loyalty-activity-note { font-size: 12px; color: var(--ram-brown); }
.ram-loyalty-activity-pts { font-weight: 700; font-size: 14px; white-space: nowrap; padding-left: 12px; }
.ram-loyalty-tx-earn { color: #2a9d8f; }
.ram-loyalty-tx-redeem { color: #c44536; }
.ram-loyalty-tx-adjust { color: #8b7355; }
.ram-loyalty-tx-expire { color: #6c757d; }

/* Badges Grid */
.ram-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}
.ram-badge-card {
    background: var(--ram-card);
    border: 1px solid var(--ram-border);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ram-badge-card-earned:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.ram-badge-card-locked { opacity: 0.45; filter: grayscale(1); }
.ram-badge-new-tag {
    position: absolute; top: -6px; right: -6px;
    background: #2a9d8f; color: #fff;
    font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    padding: 3px 7px; border-radius: 10px;
}
.ram-badge-card-img { margin-bottom: 10px; }
.ram-badge-card-img img { width: 60px; height: 60px; object-fit: contain; }
.ram-badge-card-placeholder {
    width: 60px; height: 60px; margin: 0 auto;
    background: #e8f5f3; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
}
.ram-badge-card-name { font-size: 13px; font-weight: 700; color: var(--ram-ink); margin-bottom: 4px; }
.ram-badge-card-desc { font-size: 11px; color: var(--ram-brown); line-height: 1.4; }
.ram-badge-card-locked-label { font-size: 11px; color: var(--ram-brown); margin-top: 6px; }

/* Reorder Tab */
.ram-reorder-catalog {
    border: 1px solid var(--ram-border);
    border-radius: var(--ram-radius);
    background: var(--ram-card);
    overflow: hidden;
    margin-bottom: 20px;
}
.ram-reorder-catalog-header {
    background: var(--ram-teal); color: #fff;
    padding: 12px 16px;
    font-family: var(--ram-font); font-weight: 700; font-size: 15px; letter-spacing: 0.5px;
}
.ram-reorder-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--ram-border-light);
    transition: background 0.15s;
}
.ram-reorder-item:last-child { border-bottom: none; }
.ram-reorder-item:hover { background: var(--ram-card-hover); }
.ram-reorder-item-thumb-placeholder {
    width: 56px; height: 56px; border-radius: 4px;
    border: 1px dashed var(--ram-border); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--ram-brown); background: #f0ece4;
}
.ram-reorder-item-info { flex: 1; min-width: 0; }
.ram-reorder-item-name {
    font-family: var(--ram-font); font-weight: 700; font-size: 14px;
    color: var(--ram-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ram-reorder-item-details {
    font-size: 12px; color: var(--ram-brown); margin-top: 3px;
    display: flex; gap: 8px; flex-wrap: wrap;
}
.ram-reorder-item-details span {
    background: rgba(43,157,143,0.08); padding: 1px 6px; border-radius: 3px; font-size: 11px;
}
.ram-reorder-item-price {
    font-family: var(--ram-font); font-weight: 700; font-size: 15px;
    color: var(--ram-teal); white-space: nowrap; margin-right: 8px;
}
.ram-reorder-item-add {
    background: var(--ram-teal); color: #fff; border: none;
    border-radius: 4px; padding: 7px 14px;
    font-family: var(--ram-font); font-weight: 600; font-size: 13px;
    cursor: pointer; white-space: nowrap; min-height: 44px; min-width: 44px;
    transition: background 0.15s;
}
.ram-reorder-item-add:hover { background: var(--ram-teal-dark); }
.ram-reorder-sheet {
    border: 2px dashed var(--ram-teal); border-radius: var(--ram-radius);
    background: var(--ram-card); overflow: hidden;
}
.ram-reorder-sheet-header {
    background: var(--ram-teal); color: #fff; padding: 12px 16px;
    font-family: var(--ram-font); font-weight: 700; font-size: 15px; letter-spacing: 0.5px;
}
.ram-reorder-sheet-body { padding: 16px; }
.ram-reorder-sheet-item {
    border: 1px solid var(--ram-border-light); border-radius: var(--ram-radius);
    padding: 14px; margin-bottom: 14px; background: #fff;
}
.ram-reorder-sheet-item:last-child { margin-bottom: 0; }
.ram-reorder-sheet-item-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.ram-reorder-sheet-item-name { font-family: var(--ram-font); font-weight: 700; font-size: 14px; color: var(--ram-ink); }
.ram-reorder-sheet-item-remove {
    background: none; border: none; color: var(--ram-red); cursor: pointer;
    font-size: 13px; font-family: var(--ram-font); font-weight: 600;
    padding: 4px 8px; min-height: 44px; min-width: 44px;
    display: flex; align-items: center;
}
.ram-reorder-sheet-item-remove:hover { text-decoration: underline; }
.ram-reorder-sizes { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end; }
.ram-reorder-size-group { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ram-reorder-size-group label {
    font-size: 11px; font-weight: 600; color: var(--ram-brown);
    font-family: var(--ram-font); text-transform: uppercase; letter-spacing: 0.5px;
}
.ram-reorder-size-group input {
    width: 52px; min-height: 44px; text-align: center;
    border: 1px solid var(--ram-border); border-radius: 4px;
    font-size: 14px; font-family: var(--ram-font); background: var(--ram-card);
}
.ram-reorder-line-total { font-size: 13px; color: var(--ram-brown); text-align: right; margin-top: 8px; }
.ram-reorder-totals {
    border-top: 2px solid var(--ram-teal); margin-top: 16px; padding-top: 14px;
    display: flex; flex-direction: column; gap: 6px;
}
.ram-reorder-totals-row {
    display: flex; justify-content: space-between;
    font-family: var(--ram-font); font-size: 14px; color: var(--ram-ink);
}
.ram-reorder-totals-row.total {
    font-weight: 800; font-size: 16px; color: var(--ram-teal);
    padding-top: 6px; border-top: 1px solid var(--ram-border-light); margin-top: 4px;
}
.ram-reorder-submit {
    width: 100%; margin-top: 16px; padding: 14px;
    background: var(--ram-teal); color: #fff; border: none;
    border-radius: var(--ram-radius);
    font-family: var(--ram-font); font-weight: 700; font-size: 15px;
    cursor: pointer; letter-spacing: 0.5px; min-height: 48px;
    transition: background 0.15s, opacity 0.15s;
}
.ram-reorder-submit:hover { background: var(--ram-teal-dark); }
.ram-reorder-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* Responsive */
@media (max-width: 900px) {
    .ram-dash-cols { grid-template-columns: 1fr; }
    .ram-dash-promo-placeholder { min-height: 200px; }
    .ram-rewards-layout { grid-template-columns: 1fr; }
    .ram-rewards-col-right { position: static; order: -1; }
}
@media (max-width: 768px) {
    .ram-acct-nav-link { padding: 12px 14px; font-size: 12px; }
    .ram-acct-nav-link .nav-label { display: none; }
    .ram-acct-nav-link .nav-icon { font-size: 18px; }
    .ram-stats { grid-template-columns: 1fr 1fr; }
    .ram-stat:nth-child(1), .ram-stat:nth-child(2) { border-bottom: 1px dashed var(--ram-border); }
    .ram-stat:nth-child(2), .ram-stat:nth-child(4) { border-right: none; }
    .ram-stat-value { font-size: 28px; }
    .ram-form-grid { grid-template-columns: 1fr; }
    .ram-welcome h2 { font-size: 22px; }
    .ram-card-body { padding: 16px; }
    .ram-rewards-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .ram-reward-img { height: 120px; }
    .ram-scroll { overflow-x: visible; }
    .ram-table { min-width: 0; }
    .ram-table thead { display: none; }
    .ram-table tbody tr {
        display: grid; grid-template-columns: 1fr 1fr;
        gap: 6px 12px; padding: 14px 0;
        border-bottom: 1px dashed var(--ram-border-light);
    }
    .ram-table tbody tr:last-child { border-bottom: none; }
    .ram-table tbody tr:hover td { background: transparent; }
    .ram-table td { padding: 0; border-bottom: none; font-size: 13px; }
    .ram-table td::before {
        content: attr(data-label);
        display: block; font-size: 10px; font-weight: 700;
        text-transform: uppercase; letter-spacing: 0.5px; color: var(--ram-brown); margin-bottom: 2px;
    }
    .ram-table td:last-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .ram-account-hero h1 { font-size: 28px; letter-spacing: 1px; }
    .ram-account-hero { padding: 30px 16px 24px; }
    .ram-stats { grid-template-columns: 1fr; }
    .ram-stat { border-right: none; border-bottom: 1px dashed var(--ram-border); }
    .ram-stat:last-child { border-bottom: none; }
    .ram-acct-nav-link { padding: 8px 14px; font-size: 11px; }
    .ram-acct-nav { gap: 6px; }
    .ram-rewards-convert-banner { padding: 12px 14px; gap: 10px; }
    .ram-rewards-convert-emoji { font-size: 26px; }
    .ram-rewards-convert-main { font-size: 14px; }
    .ram-badges-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }
    .ram-reorder-item { flex-wrap: wrap; gap: 10px; padding: 12px; }
    .ram-reorder-item-add { width: 100%; text-align: center; }
}

/* ============================================================
   QUOTE APPROVAL PAGE  (.rqa-*)
   ============================================================ */
:root {
    --rqa-bg: #F5F0E9;
    --rqa-card: #fffdf7;
    --rqa-border: #c4b89a;
    --rqa-border-light: #ddd5c0;
    --rqa-text: #3c3226;
    --rqa-brown: #8b7355;
    --rqa-teal: #2a9d8f;
    --rqa-teal-dark: #238b7e;
    --rqa-red: #c0392b;
    --rqa-dark: #1a1a1a;
}

.rqa-app {
    font-family: 'Outfit', sans-serif;
    color: var(--rqa-text);
    max-width: 8.5in;
    margin: 0 auto;
    background: var(--rqa-bg);
    border-left: 2px dotted #8b7355;
    border-right: 2px dotted #8b7355;
}
.rqa-inner { padding: 0 0.5in 0.4in; }

/* Dateline */
.rqa-dateline { display:flex; justify-content:space-between; align-items:center; margin:12px 0 8px; }
.rqa-date-text { font-size:12px; color:#5c4a3a; }
.rqa-qn-badge { display:inline-block; background:var(--rqa-dark); color:#fff; padding:4px 14px; border-radius:3px; font-size:13px; font-weight:700; letter-spacing:1px; }

.rqa-customer-row { display:flex; justify-content:space-between; padding:8px 0; font-size:13px; border-bottom:1px dashed var(--rqa-border); margin-bottom:16px; }
.rqa-meta-label { font-weight:700; text-transform:uppercase; letter-spacing:1px; font-size:10px; color:#5c4a3a; }

/* Turnaround Banner */
.rqa-turnaround-banner { margin:16px 0; padding:14px 18px; border:2px solid #2a9d8f; border-radius:8px; background:rgba(42,157,143,0.08); display:flex; align-items:center; gap:10px; }
.rqa-turnaround-label { font-weight:700; font-size:10px; text-transform:uppercase; letter-spacing:1.5px; color:#2a9d8f; margin-bottom:2px; }
.rqa-turnaround-val { font-size:15px; font-weight:600; color:#2c2416; }

/* Product Cards */
.rqa-product { background:var(--rqa-card); border:1px solid var(--rqa-border); border-radius:4px; margin-bottom:16px; overflow:hidden; }
.rqa-product-head { background:var(--rqa-dark); color:#fff; padding:7px 14px; font-weight:700; font-size:14px; text-transform:uppercase; letter-spacing:2px; }
.rqa-product-body { display:flex; gap:20px; padding:10px 14px; }
.rqa-product-left { width:180px; flex-shrink:0; }
.rqa-product-img { width:180px; height:140px; object-fit:contain; border:1px dashed #5c4a3a; background:#fffdf5; display:block; cursor:pointer; }
.rqa-product-img-ph { width:180px; height:140px; border:1px dashed #5c4a3a; background:#fffdf5; display:flex; align-items:center; justify-content:center; color:#b0a88e; font-size:11px; font-style:italic; }
.rqa-mock-label { display:block; text-align:center; font-size:10px; color:var(--rqa-teal); margin-top:4px; font-weight:600; cursor:pointer; }
.rqa-product-right { flex:1; }
.rqa-product-detail { display:flex; justify-content:space-between; padding:3px 0; font-size:12px; border-bottom:1px dotted var(--rqa-border); }
.rqa-product-detail:last-child { border-bottom:none; }
.rqa-product-detail .label { color:#5c4a3a; font-weight:700; text-transform:uppercase; font-size:10px; letter-spacing:1px; }
.rqa-product-pricing { background:#e8dfc9; margin-top:8px; overflow:hidden; }
.rqa-price-row { display:flex; justify-content:space-between; align-items:center; padding:10px 14px; }
.rqa-price-row + .rqa-price-row { border-top:1px solid #d4c5a0; }
.rqa-price-method { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--rqa-dark); }
.rqa-price-amount { font-size:20px; font-weight:700; color:var(--rqa-dark); }
.rqa-price-sub { font-size:10px; color:#5c4a3a; font-weight:400; }
.rqa-oversize-note { font-size:11px; color:var(--rqa-teal); padding:6px 14px; background:#f5f0e8; border:1px dashed var(--rqa-border); margin-top:4px; text-align:center; }

/* Fees */
.rqa-fees { background:var(--rqa-card); border:1px solid var(--rqa-border); border-radius:4px; padding:16px; margin-bottom:16px; }
.rqa-fee-row { display:flex; justify-content:space-between; padding:5px 0; font-size:13px; border-bottom:1px dashed var(--rqa-border-light); }
.rqa-fee-row:last-child { border-bottom:none; }
.rqa-fee-label { color:var(--rqa-brown); font-style:italic; }
.rqa-fee-val { font-weight:600; }

.rqa-gst-note { display:flex; justify-content:space-between; padding:6px 0; font-size:12px; font-style:italic; color:#5c4a3a; border-top:1px dashed #c4b89a; margin-bottom:16px; }

/* Admin Note */
.rqa-admin-note { background:#f5f0e8; border:1px solid var(--rqa-border); border-radius:6px; padding:14px 18px; margin-bottom:16px; }
.rqa-admin-note-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--rqa-brown); margin-bottom:6px; }
.rqa-admin-note-body { font-size:14px; color:var(--rqa-text); line-height:1.6; }

/* Terms */
.rqa-terms { background:#f0ebe0; border:1px solid var(--rqa-border); border-radius:4px; padding:14px 18px; margin-bottom:24px; font-size:12px; color:#5c4a3a; line-height:1.7; }
.rqa-terms strong { color:var(--rqa-dark); }

/* Easy as 1-2-3 Banner */
.rqa-steps-banner { background:linear-gradient(135deg,#2aa198 0%,#1a8a80 100%); border-radius:10px; padding:16px 20px; margin-bottom:20px; color:#fff; text-align:center; }
.rqa-steps-banner h4 { font-size:16px; margin:0 0 12px; font-weight:700; letter-spacing:0.5px; }
.rqa-steps-row { display:flex; gap:12px; justify-content:center; }
.rqa-step-item { flex:1; text-align:center; }
.rqa-step-num { background:rgba(255,255,255,0.22); width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:16px; margin:0 auto 6px; }
.rqa-step-label { font-size:12px; line-height:1.3; }

/* Action Buttons */
.rqa-actions { display:flex; gap:12px; margin-bottom:30px; }
.rqa-btn { flex:1; padding:14px 20px; border:none; border-radius:4px; font-family:'Outfit',sans-serif; font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; cursor:pointer; transition:all 0.2s; }
.rqa-btn-accept { background:var(--rqa-teal); color:#fff; }
.rqa-btn-accept:hover { background:var(--rqa-teal-dark); }
.rqa-btn-revise { background:transparent; color:var(--rqa-brown); border:1px solid var(--rqa-border); }
.rqa-btn-revise:hover { border-color:var(--rqa-brown); }
.rqa-btn-submit { background:var(--rqa-teal); color:#fff; width:100%; padding:16px; }
.rqa-btn-submit:hover { background:var(--rqa-teal-dark); }
.rqa-btn-submit:disabled { opacity:0.5; cursor:not-allowed; }
.rqa-btn-cancel { background:transparent; color:var(--rqa-brown); border:1px solid var(--rqa-border); width:100%; padding:12px; margin-top:8px; flex:none; }
.rqa-btn-sm-teal { padding:8px 16px; background:var(--rqa-teal); color:#fff; border:none; border-radius:6px; font-size:13px; font-weight:600; cursor:pointer; flex:none; }

/* Step Cards (1-2-3 inline) */
.rqa-step-card { border:2px solid #2aa198; border-radius:10px; overflow:hidden; margin-bottom:20px; display:none; }
.rqa-step-card.active { display:block; animation:rqaSlideDown 0.3s ease-out; }
@keyframes rqaSlideDown { from { opacity:0; max-height:0; } to { opacity:1; max-height:2000px; } }
.rqa-step-hdr { background:#2aa198; color:#fff; padding:10px 16px; font-weight:700; font-size:14px; display:flex; align-items:center; gap:8px; }
.rqa-step-circle { background:rgba(255,255,255,0.25); width:26px; height:26px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; flex-shrink:0; }
.rqa-step-body { padding:16px; background:#fff; }

/* Auth Tabs */
.rqa-auth-tabs { display:flex; margin-bottom:16px; border-bottom:2px solid #eee; }
.rqa-auth-tab { flex:1; padding:10px; background:none; border:none; font-size:13px; cursor:pointer; color:#888; font-weight:600; }
.rqa-auth-tab.active { color:#2aa198; border-bottom:2px solid #2aa198; margin-bottom:-2px; }
.rqa-auth-divider { text-align:center; color:#aaa; font-size:12px; margin:10px 0; }

/* OAuth button */
.rqa-oauth-btn { flex:1; display:flex; align-items:center; justify-content:center; gap:8px; padding:10px; border:1px solid #ddd; border-radius:6px; color:var(--blk); font-weight:500; font-size:13px; text-decoration:none; }
.rqa-oauth-btn:hover { background:#f5f0e8; text-decoration:none; }

/* Logged-in confirmation */
.rqa-logged-in { background:#d4edda; border:1px solid #a8d5ba; border-radius:8px; padding:12px 16px; margin-bottom:20px; display:flex; align-items:center; gap:8px; font-size:14px; color:#0d5f2c; }

/* Inline error */
.rqa-modal-error { color:#c0392b; font-size:13px; text-align:center; margin-bottom:10px; display:none; background:rgba(192,57,43,0.08); padding:8px 12px; border-radius:6px; font-weight:600; }
.rqa-forgot-link { text-align:center; font-size:12px; margin:6px 0 4px; }
.rqa-forgot-link a { color:#2980b9; cursor:pointer; text-decoration:underline; }
.rqa-forgot-label { font-size:12px; color:var(--rqa-brown); text-align:center; margin-bottom:10px; }
.rqa-forgot-success { color:var(--rqa-green,#27ae60); font-size:12px; text-align:center; margin-bottom:8px; display:none; }

/* Shared input */
.rqa-input { width:100%; padding:10px 12px; border:1px solid var(--rqa-border,#ddd); border-radius:6px; font-family:'Outfit',sans-serif; font-size:14px; box-sizing:border-box; background:#fff; }
.rqa-input:focus { border-color:var(--rqa-teal); outline:none; }
.rqa-textarea { width:100%; min-height:120px; padding:12px; border:1px solid var(--rqa-border); border-radius:4px; font-family:'Outfit',sans-serif; font-size:13px; resize:vertical; background:var(--rqa-card); }
.rqa-input-row { display:flex; gap:10px; margin-bottom:10px; }

/* Revision form */
.rqa-revision { display:none; background:var(--rqa-card); border:1px solid var(--rqa-border); border-radius:4px; padding:20px; margin-bottom:24px; }
.rqa-revision h3 { font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; margin-bottom:12px; }
.rqa-revision-desc { font-size:12px; color:var(--rqa-brown); margin-bottom:12px; }
.rqa-upload-guidelines { background:#e8f7f5; border:1px solid #b2dfdb; border-radius:4px; padding:10px 14px; font-size:12px; color:#2c6660; margin-bottom:10px; line-height:1.6; }
.rqa-dropzone { border:2px dashed var(--rqa-border); border-radius:8px; padding:24px; text-align:center; cursor:pointer; transition:border-color 0.2s; }
.rqa-dropzone:hover, .rqa-dropzone.drag-over { border-color:var(--rqa-teal); }

/* Order Form */
.rqa-order-product { margin-bottom:20px; padding-bottom:16px; border-bottom:1px dashed var(--rqa-border-light); }
.rqa-order-product:last-of-type { border-bottom:none; }
.rqa-order-product-name { font-weight:700; font-size:15px; margin-bottom:4px; }
.rqa-order-product-info { font-size:11px; color:var(--rqa-brown); margin-bottom:10px; }
.rqa-size-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(100px,1fr)); gap:8px; }
.rqa-size-item { text-align:center; }
.rqa-size-label { font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:1px; color:var(--rqa-dark); margin-bottom:4px; }
.rqa-size-price { font-size:10px; color:var(--rqa-teal); margin-bottom:4px; }
.rqa-size-qty { width:60px; margin:0 auto; padding:8px; border:1px solid var(--rqa-border); border-radius:4px; text-align:center; font-family:'Outfit',sans-serif; font-size:13px; font-weight:600; background:var(--rqa-card); display:block; }
.rqa-size-qty:focus { border-color:var(--rqa-teal); outline:none; }

/* Method buttons (DTG/DTF switcher) */
.rqa-method-btn { padding:8px; font-size:13px; border-radius:6px; cursor:pointer; font-weight:600; background:#fff; color:var(--rqa-teal); border:2px solid var(--rqa-teal); font-family:'Outfit',sans-serif; }
.rqa-method-btn.active { background:var(--rqa-teal); color:#fff; font-weight:700; }

/* Option blocks (payment, delivery, promo, social) */
.rqa-option-block { margin:16px 0; padding:14px; background:#f5f0e8; border:1px solid var(--rqa-border); border-radius:8px; }
.rqa-option-label { font-size:14px; font-weight:600; color:var(--rqa-text); display:block; margin-bottom:8px; }
.rqa-option-title { font-weight:700; font-size:13px; color:var(--rqa-dark); margin-bottom:10px; }
.rqa-radio-label { display:flex; align-items:center; gap:10px; cursor:pointer; font-size:14px; color:var(--rqa-text); }
.rqa-radio-label input[type="radio"], .rqa-radio-label input[type="checkbox"] { width:18px; height:18px; cursor:pointer; }

/* Order Totals */
.rqa-order-totals { background:#f0ebe0; border:1px solid var(--rqa-border); border-radius:4px; padding:16px; margin-top:16px; }
.rqa-total-row { display:flex; justify-content:space-between; padding:5px 0; font-size:13px; }
.rqa-total-grand { font-weight:700; font-size:18px; border-top:1px dotted var(--rqa-border); padding-top:10px !important; margin-top:6px; }
.rqa-total-deposit { padding-top:10px !important; margin-top:6px; border-top:1px dotted var(--rqa-dark); font-size:15px; font-weight:700; }
.rqa-total-balance { font-size:12px; color:var(--rqa-brown); }

/* Success State */
.rqa-success { display:block; text-align:center; padding:40px 20px; }
.rqa-success-check { font-size:48px; margin-bottom:15px; }
.rqa-success h3 { font-size:18px; font-weight:700; margin-bottom:10px; }
.rqa-success p { color:var(--rqa-brown); font-size:13px; margin-bottom:20px; }

/* Footer */
.rqa-footer { text-align:center; padding:20px 0 0; margin-top:24px; border-top:1px solid var(--rqa-border); font-size:11px; color:var(--rqa-brown); line-height:1.8; }
.rqa-footer strong { color:var(--rqa-dark); }

/* Image Lightbox */
.rqa-img-lb { display:none; position:fixed; inset:0; background:rgba(0,0,0,.8); z-index:99998; align-items:center; justify-content:center; padding:20px; cursor:pointer; }
.rqa-img-lb.active { display:flex; }
.rqa-img-lb img { max-width:90vw; max-height:85vh; object-fit:contain; border-radius:4px; box-shadow:0 8px 40px rgba(0,0,0,.5); }
.rqa-img-lb-close { position:fixed; top:16px; right:20px; color:#fff; font-size:32px; cursor:pointer; z-index:99999; font-weight:300; }

/* Responsive — Quote Approval */
@media(max-width:600px) {
    .rqa-app { width:100%; }
    .rqa-inner { padding:0 16px 20px; }
    .rqa-product-body { flex-direction:column; }
    .rqa-product-left { width:100%; }
    .rqa-product-img { width:100%; height:auto; max-height:200px; }
    .rqa-product-img-ph { width:100%; }
    .rqa-actions { flex-direction:column; }
    .rqa-input-row { flex-direction:column; }
    .rqa-size-grid { grid-template-columns:repeat(auto-fill,minmax(80px,1fr)); }
    .rqa-steps-row { gap:8px; }
    .rqa-step-label { font-size:11px; }
}

/* ============================================================
   PROOF APPROVAL PAGE  (.rpa-*)
   ============================================================ */
.rpa {
    font-family: 'Outfit', sans-serif;
    color: #3c3226;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}

.rpa-header { text-align:center; margin-bottom:30px; padding-bottom:20px; border-bottom:2px solid #d4c9b8; }
.rpa-header h2 { font-size:24px; font-weight:800; text-transform:uppercase; letter-spacing:3px; margin-bottom:8px; color:#2c2416; }
.rpa-badge { display:inline-block; background:#2c2416; color:#fff; padding:4px 14px; border-radius:3px; font-size:13px; font-weight:700; letter-spacing:1px; margin-bottom:10px; }
.rpa-meta { font-size:13px; color:#8b7355; }

.rpa-card { background:#faf8f4; border:1px solid #d4c9b8; border-radius:10px; padding:0; margin-bottom:20px; overflow:hidden; }
.rpa-card-head { font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:2px; padding:14px 20px; background:#2c2416; color:#faf8f4; display:flex; justify-content:space-between; align-items:center; }
.rpa-card-body { padding:20px; }

.rpa-proof-img { width:100%; height:auto; border-radius:6px; border:1px solid #d4c9b8; margin-bottom:8px; display:block; }
.rpa-download-link { font-size:12px; color:#2a9d8f; text-decoration:underline; }

.rpa-status-badge { font-size:11px; font-weight:700; padding:3px 10px; border-radius:3px; text-transform:uppercase; letter-spacing:1px; }
.rpa-status-pending { background:#fde8cd; color:#8a5a00; }
.rpa-status-approved { background:#d4edda; color:#155724; }
.rpa-status-rejected { background:#fce4ec; color:#b71c46; }

.rpa-actions { display:flex; gap:10px; margin-top:12px; }
.rpa-btn { flex:1; padding:12px 20px; border:2px solid; border-radius:6px; font-family:'Outfit',sans-serif; font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:1px; cursor:pointer; transition:all 0.2s; }
.rpa-btn-approve { background:#2a9d8f; border-color:#2a9d8f; color:#fff; }
.rpa-btn-approve:hover { background:#238b7e; }
.rpa-btn-approve.active { background:#1a7a6e; box-shadow:inset 0 2px 4px rgba(0,0,0,.2); }
.rpa-btn-reject { background:#fff; border-color:#c0392b; color:#c0392b; }
.rpa-btn-reject:hover { background:#fce4ec; }
.rpa-btn-reject.active { background:#c0392b; color:#fff; }

.rpa-feedback { display:none; margin-top:12px; }
.rpa-feedback label { font-size:12px; color:#8b7355; font-weight:600; text-transform:uppercase; letter-spacing:1px; margin-bottom:6px; display:block; }
.rpa-feedback textarea { width:100%; min-height:80px; padding:12px; border:1px solid #d4c9b8; border-radius:6px; font-family:'Outfit',sans-serif; font-size:14px; resize:vertical; background:#fffdf7; }
.rpa-feedback textarea:focus { outline:none; border-color:#2a9d8f; }

.rpa-approve-all-area { text-align:center; margin-bottom:24px; padding:20px; background:#faf8f4; border:1px solid #d4c9b8; border-radius:10px; }
.rpa-approve-all-btn { display:inline-block; padding:14px 40px; background:#2a9d8f; border:2px solid #2c2416; border-radius:6px; color:#fff; font-family:'Outfit',sans-serif; font-size:15px; font-weight:700; text-transform:uppercase; letter-spacing:2px; cursor:pointer; transition:all 0.2s; }
.rpa-approve-all-btn:hover { background:#238b7e; }
.rpa-approve-all-btn:disabled { opacity:0.5; cursor:not-allowed; }
.rpa-or { font-size:12px; color:#8b7355; margin:10px 0; text-transform:uppercase; letter-spacing:2px; }

.rpa-submit-area { text-align:center; padding:30px 0; }
.rpa-submit-btn { display:inline-block; padding:16px 48px; background:#2a9d8f; border:2px solid #2c2416; border-radius:6px; color:#fff; font-family:'Outfit',sans-serif; font-size:16px; font-weight:700; text-transform:uppercase; letter-spacing:2px; cursor:pointer; transition:all 0.2s; }
.rpa-submit-btn:hover { background:#238b7e; }
.rpa-submit-btn:disabled { opacity:0.5; cursor:not-allowed; }

.rpa-success { text-align:center; padding:40px 20px; }
.rpa-success-icon { font-size:60px; margin-bottom:15px; }
.rpa-success h3 { font-size:22px; font-weight:800; text-transform:uppercase; letter-spacing:2px; margin-bottom:10px; color:#2c2416; }
.rpa-success p { font-size:14px; color:#8b7355; line-height:1.6; }

.rpa-already { text-align:center; padding:40px 20px; background:#d4edda; border-radius:10px; margin-top:20px; }
.rpa-already h3 { font-size:18px; font-weight:700; color:#155724; margin-bottom:8px; }

/* Responsive — Proof Approval */
@media(max-width:600px) {
    .rpa { padding:12px; }
    .rpa-actions { flex-direction:column; }
    .rpa-btn { padding:10px 16px; font-size:13px; }
}

/* ═══════════════════════════════════════════════════════════════
   RAM Checkout & Invoice Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── Checkout Wrapper ── */
.ram-checkout-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 16px 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #3c3226;
}

/* ── Checkout Header ── */
.ram-checkout-wrap .ram-co-header {
    margin: 20px 0 0;
    overflow: hidden;
}
.ram-checkout-wrap .ram-co-header img {
    width: 100%; height: auto; display: block;
    border-radius: 8px 8px 0 0;
    border: 1px solid #d4c9b8;
    border-bottom: none;
}

/* ── Context Banner ── */
.ram-co-context {
    background: #faf8f4; color: #2c2416;
    border: 1px solid #d4c9b8;
    border-radius: 0 0 8px 8px; padding: 18px 24px;
    margin: 0 0 20px; text-align: center;
    border-top: 2px dotted #d4c9b8;
}
.ram-co-context .ram-co-qn {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px; font-weight: 900;
    letter-spacing: 2px; text-transform: uppercase;
    color: #2c2416; margin-bottom: 4px;
}
.ram-co-context .ram-co-type { font-size: 12px; color: #8b7355; letter-spacing: 1px; text-transform: uppercase; }
.ram-co-context .ram-co-type .highlight { color: #2c2416; font-weight: 700; }

/* ── Cards ── */
.ram-co-card {
    background: #faf8f4;
    border: 1px solid #d4c9b8;
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 20px;
}
.ram-co-card-title {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 3px;
    color: #2c2416;
    margin: 0 0 18px; padding-bottom: 10px;
    border-bottom: 2px dotted #d4c9b8;
}

/* ── Product Rows ── */
.ram-co-products { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.ram-co-prod-row {
    display: flex; align-items: center; gap: 14px;
    padding: 10px 12px; background: #f5f0e8;
    border: 1px solid #e8e0d0; border-radius: 6px;
}
.ram-co-prod-img { width: 56px; height: 56px; border-radius: 4px; object-fit: cover; border: 1px solid #d4c9b8; flex-shrink: 0; }
.ram-co-prod-img.placeholder { background: #e8e0d0; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #b5a68a; }
.ram-co-prod-info { flex: 1; min-width: 0; }
.ram-co-prod-name { font-weight: 700; font-size: 14px; color: #2c2416; margin-bottom: 2px; }
.ram-co-prod-detail { font-size: 12px; color: #8b7355; }
.ram-co-prod-price { font-weight: 700; font-size: 14px; color: #2c2416; white-space: nowrap; }

/* ── Totals Table ── */
.ram-co-totals { width: 100%; border-collapse: collapse; margin-top: 12px; }
.ram-co-totals td { padding: 6px 0; font-size: 13px; color: #3c3226; }
.ram-co-totals td:last-child { text-align: right; font-weight: 600; }
.ram-co-totals .total-row td { border-top: 2px solid #2c2416; padding-top: 10px; font-size: 16px; font-weight: 800; color: #2c2416; }
.ram-co-totals .deposit-row td { color: #2a9d8f; font-weight: 700; font-size: 14px; }
.ram-co-totals .sub-row td { color: #8b7355; font-size: 12px; }

/* ── Loyalty Earn Banner ── */
.ram-co-loyalty-earn {
    background: #f0faf8; border: 1px solid #2a9d8f;
    border-radius: 8px; padding: 12px 16px;
    font-size: 13px; color: #2c2416;
    text-align: center; margin-bottom: 20px; line-height: 1.5;
}
.ram-co-loyalty-earn strong { color: #2a9d8f; }

/* ── Pay Button ── */
.ram-co-pay-btn {
    display: block; width: 100%;
    background: #2a9d8f; color: #fff;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 3px;
    padding: 16px 40px; border: none;
    border-radius: 8px; cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 16px; text-align: center;
}
.ram-co-pay-btn:hover { background: #238b7e; transform: translateY(-1px); }
.ram-co-pay-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── Google Review Banner ── */
.ram-co-review-banner {
    background: linear-gradient(135deg, #2a9d8f 0%, #238b7e 100%);
    border-radius: 10px; overflow: hidden;
    text-align: center; margin: 16px 0;
}
.ram-co-review-banner img { width: 60%; height: auto; display: block; margin: 20px auto 0; }
.ram-co-review-text { padding: 12px 20px 0; font-size: 13px; color: #e0f5f2; line-height: 1.6; }
.ram-co-review-text strong { color: #ffffff; font-size: 15px; }
.ram-co-review-btn {
    display: inline-block; padding: 11px 32px;
    background: #ffffff; color: #2a9d8f;
    font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    text-decoration: none; border-radius: 8px;
    margin: 14px 0 20px;
}

/* ── Footer ── */
.ram-co-footer { text-align: center; padding: 20px 0; margin-top: 8px; }
.ram-co-footer p { font-size: 11px; color: #8b7355; margin: 0 0 4px; line-height: 1.5; }
.ram-co-footer strong { color: #2c2416; }
.ram-co-footer a { color: #2a9d8f; text-decoration: none; }

/* ── Thank You Wrapper ── */
.ram-ty-wrap {
    max-width: 680px; margin: 0 auto; padding: 0 16px 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #3c3226;
}
.ram-ty-wrap .ram-co-header { margin: 20px 0 0; overflow: hidden; }
.ram-ty-wrap .ram-co-header img { width: 100%; height: auto; display: block; border-radius: 8px 8px 0 0; border: 1px solid #d4c9b8; }

/* ── Detail Cards ── */
.ram-ty-details { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.ram-ty-detail {
    flex: 1; min-width: 140px; background: #f5f0e8;
    border: 1px solid #e8e0d0; border-radius: 6px;
    padding: 12px 14px; text-align: center;
}
.ram-ty-detail .label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: #8b7355; margin-bottom: 4px; font-weight: 600; }
.ram-ty-detail .value { font-size: 16px; font-weight: 800; color: #2c2416; }

/* ── What Happens Next Steps ── */
.ram-ty-steps { display: flex; flex-direction: column; gap: 12px; }
.ram-ty-step {
    display: flex; gap: 16px; align-items: flex-start;
    background: #faf8f4; border: 1px solid #d4c9b8;
    border-radius: 8px; padding: 16px 18px;
}
.ram-ty-step-num {
    width: 32px; height: 32px; background: #2a9d8f; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.ram-ty-step-text h3 {
    font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; color: #2c2416; margin: 0 0 4px;
}
.ram-ty-step-text p { font-size: 13px; color: #8b7355; margin: 0; line-height: 1.5; }

/* ── Back Link ── */
.ram-ty-back {
    display: block; text-align: center; margin-top: 28px;
    font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; color: #2a9d8f; text-decoration: none;
}
.ram-ty-back:hover { color: #238b7e; text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 600px) {
    .ram-co-card { padding: 18px 16px; }
    .ram-co-context .ram-co-qn { font-size: 17px; letter-spacing: 2px; }
    .ram-ty-details { flex-direction: column; }
    .ram-co-prod-row { flex-direction: column; text-align: center; gap: 8px; }
    .ram-co-prod-img { width: 48px; height: 48px; }
}
