/* ================================================
   MERCH PAGE
   ================================================ */

.merch-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 120px;
    position: relative;
    z-index: 3;
}

/* ── HERO ── */
.merch-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 72px 0 64px;
    border-bottom: 3px solid #1a0000;
}

.merch-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 520px;
}

.merch-hero-tag {
    font-size: 7px;
    color: #cc1111;
    letter-spacing: 3px;
    animation: blink 1.2s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.merch-hero-title {
    font-size: clamp(22px, 5vw, 44px);
    color: var(--color-white);
    line-height: 1.4;
    letter-spacing: 3px;
    text-shadow: 4px 4px 0 #330000, 8px 8px 0 #1a0000;
}

.merch-hero-accent { color: #cc1111; }

.merch-hero-sub {
    font-size: 8px;
    color: #aaa;
    line-height: 2.4;
    letter-spacing: 1px;
}

.merch-hero-cta {
    display: inline-block;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: #000;
    background: #cc1111;
    border: 3px solid var(--color-white);
    padding: 12px 20px;
    text-decoration: none;
    box-shadow: 4px 4px 0 #550000;
    letter-spacing: 1px;
    transition: none;
    align-self: flex-start;
}

.merch-hero-cta:hover {
    background: #ff2222;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #550000;
}

/* Pixel T-shirt CSS art */
.merch-hero-visual {
    position: relative;
    flex-shrink: 0;
}

.hero-tshirt {
    position: relative;
    width: 160px;
    height: 180px;
}

.ht-body {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    top: 30px;
    background: #cc1111;
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 6px 6px 0 #550000;
}

.ht-logo {
    font-size: 22px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 #550000;
}

.ht-sleeve {
    position: absolute;
    top: 30px;
    width: 28px;
    height: 56px;
    background: #cc1111;
    border: 4px solid #fff;
}
.ht-sleeve--l { left: 0; transform: rotate(-8deg); transform-origin: top right; box-shadow: -4px 4px 0 #550000; }
.ht-sleeve--r { right: 0; transform: rotate(8deg); transform-origin: top left; box-shadow: 4px 4px 0 #550000; }

.ht-collar {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 24px;
    background: #aa0000;
    border: 4px solid #fff;
    border-radius: 0 0 50% 50%;
    z-index: 2;
}

/* Floating pixels */
.hero-pixels { position: absolute; inset: 0; pointer-events: none; }
.hp {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #cc1111;
    opacity: 0.4;
    animation: hp-float 3s ease-in-out infinite;
}
.hp--1 { top: 10%;  left: -20px;  animation-delay: 0s;    background: #cc1111; }
.hp--2 { top: 30%;  right: -24px; animation-delay: .5s;   background: #ffcc00; width:8px;height:8px; }
.hp--3 { top: 60%;  left: -16px;  animation-delay: 1s;    background: #4488cc; }
.hp--4 { bottom: 20%; right: -20px; animation-delay: 1.5s; }
.hp--5 { top: 5%;   right: 10px;  animation-delay: 2s;    background: #44aa44; width:6px;height:6px; }
.hp--6 { bottom: 10%; left: 10px; animation-delay: 2.5s;  background: #ffcc00; width:12px;height:12px; }
@keyframes hp-float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

/* ── SECTIONS ── */
.merch-section {
    padding: 64px 0;
    border-bottom: 3px solid #1a0000;
}

.merch-section-header {
    margin-bottom: 36px;
}

.merch-section-title {
    font-size: clamp(10px, 2vw, 16px);
    color: var(--color-white);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.merch-section-sub {
    font-size: 7px;
    color: #aaa;
    letter-spacing: 2px;
}

/* ── PRODUCT GRID ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    background: #080000;
    border: 3px solid #2a0000;
    display: flex;
    flex-direction: column;
    transition: none;
}

.product-card:hover {
    border-color: #cc1111;
    box-shadow: 6px 6px 0 #330000;
    transform: translate(-2px, -2px);
}

/* Product mockup area */
.product-mockup {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pm--red   { background: #200000; }
.pm--dark  { background: #080808; }
.pm--navy  { background: #000814; }
.pm--green { background: #001400; }

.pm-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 6px;
    background: #cc1111;
    color: #fff;
    padding: 4px 8px;
    letter-spacing: 1px;
}

.pm-badge--gold { background: #886600; color: #ffcc00; }

/* CSS T-shirt */
.pm-tshirt { position: relative; width: 90px; height: 100px; }
.pm-ts-body {
    position: absolute;
    bottom: 0; left: 12px; right: 12px; top: 18px;
    background: #cc1111;
    border: 3px solid #fff;
    display: flex; align-items: center; justify-content: center;
}
.pm-ts-logo { font-size: 9px; color: #fff; text-align: center; line-height: 1.4; letter-spacing: 1px; }
.pm-ts-sl {
    position: absolute; top: 18px;
    width: 16px; height: 32px;
    background: #cc1111; border: 3px solid #fff;
}
.pm-ts-sl--l { left: 0; }
.pm-ts-sl--r { right: 0; }
.pm-ts-collar {
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 28px; height: 16px;
    background: #aa0000; border: 3px solid #fff;
    border-radius: 0 0 50% 50%; z-index: 2;
}

/* CSS Hoodie */
.pm-hoodie { position: relative; width: 96px; height: 108px; }
.pm-hd-body {
    position: absolute;
    bottom: 0; left: 10px; right: 10px; top: 22px;
    background: #222; border: 3px solid #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.pm-hd-text { font-size: 7px; color: #cc1111; text-align: center; line-height: 1.4; letter-spacing: 1px; }
.pm-hd-pocket { width: 28px; height: 14px; background: #111; border: 2px solid #444; }
.pm-hd-sl { position: absolute; top: 22px; width: 16px; height: 36px; background: #222; border: 3px solid #fff; }
.pm-hd-sl--l { left: 0; }
.pm-hd-sl--r { right: 0; }
.pm-hd-hood {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 44px; height: 26px;
    background: #1a1a1a; border: 3px solid #fff;
    border-radius: 50% 50% 0 0; z-index: 2;
}

/* CSS Cap */
.pm-cap { position: relative; width: 90px; height: 70px; }
.pm-cap-top {
    position: absolute; top: 0; left: 10px; right: 10px; height: 44px;
    background: #112244; border: 3px solid #fff;
    border-radius: 50% 50% 0 0;
}
.pm-cap-brim {
    position: absolute; bottom: 8px; left: 0; right: 10px; height: 18px;
    background: #112244; border: 3px solid #fff;
    border-radius: 0 0 8px 0;
}
.pm-cap-logo {
    position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    font-size: 10px; color: #cc1111; letter-spacing: 1px; z-index: 2;
}

/* CSS Stickers */
.pm-stickers { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 10px; }
.pm-stk {
    background: #1a0000; border: 2px solid #cc1111;
    font-size: 8px; color: #cc1111;
    display: flex; align-items: center; justify-content: center;
    padding: 6px; letter-spacing: 1px;
}
.pm-stk--3 { grid-column: span 2; }
.pm-stk--2, .pm-stk--4 { font-size: 12px; }

/* Product info */
.product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-cat {
    font-size: 6px;
    color: #cc1111;
    letter-spacing: 3px;
}

.product-name {
    font-size: 9px;
    color: var(--color-white);
    letter-spacing: 1px;
    line-height: 1.5;
}

.product-desc {
    font-size: 6px;
    color: #aaa;
    line-height: 2.2;
    letter-spacing: 1px;
}

.product-sizes {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.size-label {
    font-size: 6px;
    color: #999;
    letter-spacing: 2px;
}

.size-btns {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.size-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: #aaa;
    background: #0a0000;
    border: 2px solid #2a0000;
    padding: 5px 7px;
    cursor: pointer;
    letter-spacing: 0;
    transition: none;
}

.size-btn:hover, .size-btn--active {
    color: #fff;
    border-color: #cc1111;
    background: #1a0000;
}

.color-dots {
    display: flex;
    gap: 8px;
}

.color-dot {
    width: 18px;
    height: 18px;
    border: 3px solid #333;
    cursor: pointer;
    padding: 0;
    background: var(--c, #333);
}

.color-dot--active { border-color: #fff; }

.sticker-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.stk-tag {
    font-size: 5px;
    background: #1a0000;
    border: 1px solid #440000;
    color: #cc1111;
    padding: 3px 6px;
    letter-spacing: 1px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 2px solid #1a0000;
}

.product-price {
    font-size: 14px;
    color: #ffcc00;
    text-shadow: 2px 2px 0 #664400;
}

.product-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: #000;
    background: #cc1111;
    border: 3px solid #fff;
    padding: 8px 12px;
    cursor: pointer;
    box-shadow: 3px 3px 0 #550000;
    letter-spacing: 1px;
    transition: none;
}

.product-btn:hover {
    background: #ff2222;
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 #550000;
}

/* ── KİŞİYE ÖZEL BÖLÜM ── */
.custom-section { border-bottom: none; }

.custom-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    margin-bottom: 52px;
}

.custom-hero-badge {
    font-size: 7px;
    color: #ffcc00;
    letter-spacing: 3px;
    animation: blink 1.2s step-end infinite;
}

.custom-hero-title {
    font-size: clamp(14px, 3vw, 26px);
    color: var(--color-white);
    line-height: 1.5;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0 #1a0000;
}

.custom-hero-desc {
    font-size: 7px;
    color: #aaa;
    line-height: 2.4;
    letter-spacing: 1px;
}

.custom-steps {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cstep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: #0a0000;
    border: 2px solid #2a0000;
    padding: 12px 16px;
}

.cstep-num {
    font-size: 14px;
    color: #cc1111;
}

.cstep-label {
    font-size: 6px;
    color: #bbb;
    letter-spacing: 1px;
}

.cstep-arrow {
    font-size: 10px;
    color: #cc3333;
}

/* ── FORM ── */
.custom-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Upload area */
.custom-upload-area {
    border: 3px dashed #330000;
    background: #040000;
    min-height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.custom-upload-area:hover,
.custom-upload-area.upload-area--drag {
    border-color: #cc1111;
    background: #0a0000;
}

.custom-upload-area.upload-area--filled { border-style: solid; border-color: #cc1111; }

#pixel-upload { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; width: 100%; }

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    pointer-events: none;
}

.upload-icon { font-size: 40px; opacity: 0.8; }
.upload-text { font-size: 9px; color: #cc1111; letter-spacing: 2px; }
.upload-sub  { font-size: 6px; color: #999; letter-spacing: 1px; }

.upload-preview-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
}

#upload-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: pixelated;
    filter: brightness(0.7);
    min-height: 280px;
}

.upload-pixel-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 12px;
}

.upo-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(204,17,17,0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204,17,17,0.15) 1px, transparent 1px);
    background-size: 16px 16px;
}

.upo-label {
    font-size: 7px;
    color: #cc1111;
    background: rgba(0,0,0,0.8);
    padding: 5px 10px;
    letter-spacing: 2px;
    animation: blink 1s step-end infinite;
    position: relative;
    z-index: 2;
}

.upload-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    background: rgba(0,0,0,0.85);
    border: 2px solid #cc1111;
    color: #ff6666;
    padding: 5px 8px;
    cursor: pointer;
    z-index: 3;
}

/* Form alanları */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: span 2; }

.form-label {
    font-size: 6px;
    color: #aaa;
    letter-spacing: 2px;
}

.form-input {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: var(--color-white);
    background: #080000;
    border: 2px solid #2a0000;
    padding: 10px 12px;
    outline: none;
    letter-spacing: 1px;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus { border-color: #cc1111; }
.form-input::placeholder { color: #666; }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 72px; line-height: 2; }

/* Renk seçimi (özel form) */
.form-colors {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.fcolor-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: #aaa;
    background: #080000;
    border: 2px solid #2a0000;
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
    transition: none;
}

.fcolor-dot {
    width: 10px;
    height: 10px;
    background: var(--c, #333);
    border: 1px solid #555;
    flex-shrink: 0;
}

.fcolor-btn--active { border-color: #cc1111; color: #fff; }
.fcolor-btn:hover   { border-color: #880000; }

/* Fiyat çubuğu */
.custom-price-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0a0000;
    border: 2px solid #330000;
    padding: 12px 16px;
}

.cpb-info { display: flex; flex-direction: column; gap: 4px; }
.cpb-label { font-size: 7px; color: #fff; letter-spacing: 1px; }
.cpb-note  { font-size: 5px; color: #aaa; letter-spacing: 1px; }
.cpb-price { font-size: 16px; color: #ffcc00; text-shadow: 2px 2px 0 #664400; flex-shrink: 0; }

.custom-submit-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: #000;
    background: #cc1111;
    border: 4px solid #fff;
    padding: 16px;
    cursor: pointer;
    box-shadow: 5px 5px 0 #550000;
    letter-spacing: 2px;
    width: 100%;
    transition: none;
}

.custom-submit-btn:hover {
    background: #ff2222;
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 #550000;
}

.form-disclaimer {
    font-size: 6px;
    color: #999;
    letter-spacing: 1px;
    line-height: 2.2;
    text-align: center;
    border-top: 2px solid #1a0000;
    padding-top: 12px;
}

/* ── SEPET BAR ── */
.cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a0000;
    border-top: 3px solid #cc1111;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 200;
    font-size: 8px;
    box-shadow: 0 -4px 20px rgba(204,17,17,0.2);
}

.cart-bar-icon { font-size: 16px; }

#cart-bar-text { flex: 1; color: #ffcc00; letter-spacing: 1px; }

.cart-bar-checkout {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: #000;
    background: #cc1111;
    border: 3px solid #fff;
    padding: 9px 16px;
    cursor: pointer;
    box-shadow: 3px 3px 0 #550000;
    letter-spacing: 1px;
}

.cart-bar-checkout:hover { background: #ff2222; }

.cart-bar-clear {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: #aaa;
    background: transparent;
    border: 2px solid #330000;
    padding: 8px 10px;
    cursor: pointer;
}

.cart-bar-clear:hover { color: #cc1111; border-color: #cc1111; }

/* ── MODALS ── */
.checkout-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 24px;
}

.checkout-box {
    background: #080000;
    border: 4px solid #cc1111;
    box-shadow: 8px 8px 0 #330000;
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    font-family: 'Press Start 2P', monospace;
}

.checkout-box--success { border-color: #44aa00; box-shadow: 8px 8px 0 #002200; }

.checkout-icon { font-size: 40px; }
.checkout-title { font-size: 12px; color: #cc1111; letter-spacing: 2px; }
.checkout-sub   { font-size: 8px;  color: #ffcc00; }
.checkout-desc  { font-size: 7px;  color: #aaa; line-height: 2.4; letter-spacing: 1px; }

.checkout-close {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: #bbb;
    background: transparent;
    border: 2px solid #333;
    padding: 8px 16px;
    cursor: pointer;
    letter-spacing: 1px;
}

.checkout-close:hover { color: #fff; border-color: #666; }

.coupon-wrap {
    display: flex;
    gap: 6px;
    width: 100%;
}
.coupon-input {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: #fff;
    background: #080000;
    border: 2px solid #330000;
    padding: 8px 10px;
    flex: 1;
    outline: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.coupon-input:focus { border-color: #cc1111; }
.coupon-apply-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: #fff;
    background: #330000;
    border: 2px solid #cc1111;
    padding: 8px 10px;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 1px;
}
.coupon-apply-btn:hover { background: #550000; }
.coupon-result {
    font-size: 7px;
    letter-spacing: 1px;
    min-height: 20px;
    text-align: center;
}

/* ── CART DRAWER ── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1050;
    display: none;
}
.cart-overlay--open { display: block; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 360px;
    max-width: 100vw;
    background: #080000;
    border-left: 3px solid #cc1111;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.22s ease;
    box-shadow: -8px 0 32px rgba(204,17,17,0.25);
    font-family: 'Press Start 2P', monospace;
}
.cart-drawer--open { transform: translateX(0); }

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 2px solid #1a0000;
    flex-shrink: 0;
}
.cart-drawer-title { font-size: 10px; color: #fff; letter-spacing: 2px; }

.cart-drawer-close {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: #aaa;
    background: transparent;
    border: 2px solid #330000;
    padding: 6px 10px;
    cursor: pointer;
}
.cart-drawer-close:hover { color: #fff; border-color: #cc1111; }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart-items:empty + .cart-empty { display: flex; }

.cart-item {
    background: #0a0000;
    border: 2px solid #2a0000;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.cart-item-name { font-size: 7px; color: #fff; letter-spacing: 1px; line-height: 1.6; }
.cart-item-size { font-size: 6px; color: #aaa; letter-spacing: 1px; }

.cart-item-remove {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: #cc1111;
    background: transparent;
    border: 1px solid #440000;
    padding: 4px 7px;
    cursor: pointer;
    flex-shrink: 0;
}
.cart-item-remove:hover { border-color: #cc1111; color: #ff4444; }

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.qty-controls {
    display: flex;
    align-items: center;
    border: 2px solid #2a0000;
}
.qty-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: #fff;
    background: #150000;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.qty-btn:hover { background: #cc1111; }
.qty-val {
    font-size: 8px;
    color: #ffcc00;
    background: #080000;
    width: 34px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    border-left: 2px solid #2a0000;
    border-right: 2px solid #2a0000;
}
.cart-item-price { font-size: 11px; color: #ffcc00; text-shadow: 1px 1px 0 #664400; }

.cart-empty {
    flex: 1;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 40px;
}
.cart-empty--show { display: flex; }
.cart-empty-icon { font-size: 48px; opacity: 0.3; }
.cart-empty-text { font-size: 9px; color: #aaa; letter-spacing: 2px; }
.cart-empty-sub  { font-size: 6px; color: #666; letter-spacing: 1px; line-height: 2; }

.cart-drawer-footer {
    border-top: 3px solid #330000;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
.cart-subtotal-row,
.cart-discount-row,
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-total-label   { font-size: 7px; color: #aaa; letter-spacing: 2px; }
.cart-total-val     { font-size: 16px; color: #ffcc00; text-shadow: 2px 2px 0 #664400; }
.cart-subtotal-val  { font-size: 11px; color: #aaa; }
.cart-discount-val  { font-size: 11px; color: #44ff44; }

.cart-checkout-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: #000;
    background: #cc1111;
    border: 3px solid #fff;
    padding: 14px;
    cursor: pointer;
    box-shadow: 4px 4px 0 #550000;
    letter-spacing: 1px;
    width: 100%;
    transition: none;
}
.cart-checkout-btn:hover { background: #ff2222; transform: translate(-1px,-1px); box-shadow: 5px 5px 0 #550000; }

.cart-clear-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: #aaa;
    background: transparent;
    border: 2px solid #330000;
    padding: 10px;
    cursor: pointer;
    letter-spacing: 1px;
    width: 100%;
    transition: none;
}
.cart-clear-btn:hover { color: #ff4444; border-color: #cc1111; }

/* ── TOAST ── */
.merch-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    background: #080000;
    border: 3px solid #cc1111;
    padding: 10px 18px;
    font-size: 7px;
    color: #fff;
    z-index: 1200;
    opacity: 0;
    transition: all .3s;
    white-space: nowrap;
    letter-spacing: 1px;
}

.merch-toast--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .merch-hero { flex-direction: column; text-align: center; padding: 48px 0 40px; }
    .merch-hero-inner { align-items: center; }
    .custom-form-wrap { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field--full { grid-column: span 1; }
}

@media (max-width: 600px) {
    .merch-main { padding: 0 16px 120px; }
    .product-grid { grid-template-columns: 1fr; }
    .custom-steps { gap: 6px; }
    .cstep-arrow { display: none; }
    .checkout-box { padding: 28px 20px; }
}
