/* ============================================================
   TICK MU — Uber Set Shop · 2026 redesign (branded + alive)
   ============================================================ */
:root {
    --bg: #090b10;
    --bg-2: #0d1017;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text: #eef1f7;
    --text-dim: #9aa3b8;
    --gold: #d4af5f;
    --gold-bright: #f0c877;
    --cyan: #3fe3ff;
    --orange: #ff8a3d;
    --orange-deep: #e05f2f;
    --grad-accent: linear-gradient(135deg, #ffb066 0%, #ff8a3d 45%, #e05f2f 100%);
    --grad-gold: linear-gradient(135deg, #f5d494, #d4af5f);
    --radius: 18px;
    --radius-sm: 12px;
    --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.55);
    --shadow-glow: 0 0 0 1px rgba(255, 138, 61, 0.3), 0 16px 50px rgba(255, 138, 61, 0.16);
    --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated ambient backdrop */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(1000px 520px at 85% -5%, rgba(255, 138, 61, 0.14), transparent 60%),
        radial-gradient(900px 520px at 8% -5%, rgba(63, 227, 255, 0.10), transparent 60%),
        radial-gradient(760px 700px at 50% 115%, rgba(212, 175, 95, 0.09), transparent 60%),
        var(--bg);
}

/* Floating orbs */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(220px 220px at 12% 30%, rgba(255, 138, 61, 0.10), transparent 70%),
        radial-gradient(180px 180px at 88% 22%, rgba(63, 227, 255, 0.09), transparent 70%),
        radial-gradient(260px 260px at 78% 78%, rgba(212, 175, 95, 0.08), transparent 70%);
    animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
    from { transform: translateY(-14px) scale(1); }
    to { transform: translateY(16px) scale(1.03); }
}

::selection { background: rgba(255, 138, 61, 0.4); }

/* ---------- Top bar / brand ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 32px;
    background: rgba(9, 11, 16, 0.78);
    backdrop-filter: blur(20px) saturate(170%);
    -webkit-backdrop-filter: blur(20px) saturate(170%);
    border-bottom: 1px solid var(--border);
}
.topbar::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 61, 0.5), rgba(63, 227, 255, 0.4), transparent);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.brand-logo {
    height: 46px;
    width: auto;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease;
}
.brand:hover .brand-logo { transform: scale(1.05) rotate(-1.5deg); }
.brand-text {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.4px;
    color: var(--text);
}
.brand-text em {
    font-style: normal;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.topbar-nav { display: flex; gap: 10px; align-items: center; }

.back-link {
    position: relative;
    color: var(--gold-bright);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 10px 20px;
    border: 1px solid rgba(212, 175, 95, 0.5);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(212, 175, 95, 0.16), rgba(212, 175, 95, 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -2px 6px rgba(0, 0, 0, 0.4), 0 4px 14px rgba(0, 0, 0, 0.4);
    text-shadow: 0 0 10px rgba(240, 200, 119, 0.5), 0 1px 2px rgba(0, 0, 0, 0.6);
    transition: all 0.22s ease;
    white-space: nowrap;
}
.back-link:hover {
    border-color: var(--gold-bright);
    background: linear-gradient(180deg, rgba(240, 200, 119, 0.28), rgba(212, 175, 95, 0.1));
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -2px 6px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(212, 175, 95, 0.35);
    text-shadow: 0 0 16px rgba(240, 200, 119, 0.8);
}

.flash {
    margin: 18px 32px 0;
    padding: 13px 18px;
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.45);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
}

/* ---------- Class tabs ---------- */
.class-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 30px 32px 6px;
    max-width: 1320px;
    margin: 0 auto;
}

.class-tabs a {
    padding: 12px 24px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -2px 6px rgba(0, 0, 0, 0.35), 0 4px 14px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.class-tabs a:hover {
    color: var(--text);
    border-color: rgba(255, 138, 61, 0.5);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 22px rgba(255, 138, 61, 0.22);
    text-shadow: 0 0 12px rgba(255, 138, 61, 0.6);
}
.class-tabs a.active {
    color: #1a0e04;
    background: var(--grad-accent);
    border-color: rgba(255, 176, 102, 0.8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -3px 8px rgba(160, 60, 0, 0.4), 0 8px 30px rgba(255, 138, 61, 0.55), 0 0 24px rgba(255, 138, 61, 0.3);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* ---------- Set grid ---------- */
.set-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 24px;
    padding: 24px 32px 64px;
    max-width: 1320px;
    margin: 0 auto;
}

.set-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: var(--radius);
    background: linear-gradient(165deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    animation: cardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.set-card:nth-child(4n+1) { animation-delay: 0.03s; }
.set-card:nth-child(4n+2) { animation-delay: 0.07s; }
.set-card:nth-child(4n+3) { animation-delay: 0.11s; }
.set-card:nth-child(4n+4) { animation-delay: 0.15s; }

@keyframes cardIn {
    from { opacity: 0; transform: translateY(22px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* gradient border sweep */
.set-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(160deg, rgba(255, 176, 102, 0.6), transparent 35%, transparent 65%, rgba(63, 227, 255, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.set-card:hover::before { opacity: 1; }

/* shine sweep */
.set-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}
.set-card:hover::after { left: 130%; }

.set-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 138, 61, 0.45);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.set-image {
    display: grid;
    place-items: ce;nter
    margin-bottom: 16px;
    padding: 0;              /* was 22px — remove the padding so image can reach the edges */
    border-radius: var(--radius-sm);
    overflow: hidden;         /* clips the image to the rounded corners */
    background: ...;          /* keep your existing gradient background */
    border: 1px solid var(--border);
    aspect-ratio: 16 / 9;     /* pick a ratio — controls the box's shape */
}
.set-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* fills the box completely, cropping overflow */
}
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.6));
    transition: transform 0.35s ease;
}
.set-card:hover .set-image img { transform: scale(1.08) rotate(-2deg); }

.set-card header { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }

.class-badge, .kind-badge {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
}
.class-badge {
    color: #14110c;
    background: var(--grad-gold);
    box-shadow: 0 4px 16px rgba(212, 175, 95, 0.35);
}
.kind-badge {
    margin-left: 0;
    color: #14110c;
    background: linear-gradient(135deg, #8fe3ff, #3fe3ff);
    box-shadow: 0 4px 16px rgba(63, 227, 255, 0.3);
    vertical-align: middle;
}


.best-for-badge {
    margin-left: 0;
    color: #14110c;
    background: linear-gradient(135deg, #b7f7c2, #67e8a5);
    box-shadow: 0 4px 16px rgba(103, 232, 165, 0.25);
    vertical-align: middle;
}

.set-card h3 {
    flex-basis: 100%;
    margin: 10px 0 4px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: var(--orange);
    text-shadow: 0 0 14px rgba(255, 138, 61, 0.65), 0 0 40px rgba(255, 138, 61, 0.3);
}

.set-card .subtitle { flex-basis: 100%; margin: 0 0 14px; font-size: 13px; color: var(--text-dim); }

.set-card .options {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    flex-grow: 1;
    font-size: 13px;
    line-height: 1.75;
}
.set-card .options li { color: #8cf7ff; text-shadow: 0 0 8px rgba(0, 216, 255, 0.5); padding-left: 2px; }
.set-card .options li::before { content: "\2726  "; color: var(--cyan); text-shadow: 0 0 10px rgba(63, 227, 255, 0.9); }

.set-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.set-card .price {
    font-size: 22px;
    font-weight: 800;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.set-card button, .set-card .buy-button {
    position: relative;
    background: var(--grad-accent);
    color: #1a0e04;
    border: 1px solid rgba(255, 176, 102, 0.7);
    padding: 13px 26px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -3px 8px rgba(160, 60, 0, 0.45), 0 8px 24px rgba(255, 138, 61, 0.45), 0 0 20px rgba(255, 138, 61, 0.25);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.set-card button:hover, .set-card .buy-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -3px 8px rgba(160, 60, 0, 0.5), 0 14px 38px rgba(255, 138, 61, 0.65), 0 0 34px rgba(255, 138, 61, 0.45);
}
.set-card button:active, .set-card .buy-button:active { transform: translateY(0) scale(1); }

.set-card .owned { font-size: 12px; color: #5fd45f; font-weight: 800; }
.set-card .pending { font-size: 12px; color: #d9a441; font-weight: 800; }

/* ---------- F2P (Tier 3) ---------- */
.f2p-block { display: flex; flex-direction: column; gap: 10px; flex: 1; }

.f2p-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 9px 18px;
    border: 1px solid rgba(255, 138, 61, 0.6);
    border-radius: 999px;
    color: #ffb066;
    background: linear-gradient(180deg, rgba(255, 138, 61, 0.18), rgba(255, 138, 61, 0.05));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -2px 6px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(255, 138, 61, 0.25);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.4px;
    text-shadow: 0 0 12px rgba(255, 153, 51, 0.7);
}

.f2p-tagline {
    margin: 0;
    font-size: 12.5px;
    font-style: italic;
    line-height: 1.6;
    color: #ffb066;
    text-shadow: 0 0 10px rgba(255, 153, 51, 0.4);
}

.f2p-note { color: #ffb066; font-style: italic; line-height: 1.65; margin: 0; text-shadow: 0 0 12px rgba(255, 153, 51, 0.45); }

/* ---------- Set detail ---------- */
.set-detail {
    width: min(1240px, calc(100% - 48px));
    margin: 44px auto;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(380px, 1.05fr);
    gap: 44px;
    padding: 44px;
    background: linear-gradient(165deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
}

.detail-art {
    min-height: 480px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    background:
        radial-gradient(circle at 50% 42%, rgba(63, 227, 255, 0.14), transparent 62%),
        linear-gradient(160deg, rgba(255, 138, 61, 0.06), rgba(17, 20, 29, 0.5));
    border: 1px solid var(--border-strong);
    overflow: hidden;
}
.detail-art img {
    width: min(100%, 500px);
    /*max-height: 560px;*/
    object-fit: fill;
    filter: drop-shadow(0 0 30px rgba(63, 227, 255, 0.4));
    animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(-6px); } 50% { transform: translateY(8px); } }

.detail-content h2 {
    margin: 12px 0 6px;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--orange);
    text-shadow: 0 0 16px rgba(255, 138, 61, 0.7), 0 0 46px rgba(255, 138, 61, 0.35);
}
.detail-content .subtitle { color: var(--text-dim); font-size: 15px; margin: 0 0 8px; }
.detail-content h3 { margin: 28px 0 12px; font-size: 15px; font-weight: 700; letter-spacing: 0.7px; text-transform: uppercase; color: var(--text-dim); }

.detail-options { list-style: none; padding: 0; margin: 0; line-height: 1.85; font-size: 14px; }
.detail-options li { color: #8cf7ff; text-shadow: 0 0 8px rgba(0, 216, 255, 0.5); }
.detail-options li::before { content: "\2726  "; color: var(--cyan); text-shadow: 0 0 10px rgba(63, 227, 255, 0.9); }

.harmony-form { margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--border); }
.harmony-form label { display: block; color: var(--text); font-weight: 600; font-size: 13px; letter-spacing: 0.3px; margin: 14px 0 8px; }

.harmony-form select {
    width: 100%;
    padding: 14px 16px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    background-color: rgba(9, 11, 16, 0.65);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233fe3ff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.harmony-form select:hover { border-color: var(--cyan); }
.harmony-form select:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(63, 227, 255, 0.15); }
.harmony-form select option { background: #0d1017; color: var(--text); }

.detail-action { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 28px; }

.detail-action .price {
    font-size: 32px;
    font-weight: 800;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-action button {
    position: relative;
    border: 1px solid rgba(255, 176, 102, 0.8);
    border-radius: 999px;
    padding: 17px 36px;
    color: #1a0e04;
    background: var(--grad-accent);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -4px 10px rgba(160, 60, 0, 0.5), 0 14px 40px rgba(255, 138, 61, 0.5), 0 0 30px rgba(255, 138, 61, 0.3);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: btnPulse 3s ease-in-out infinite;
}
@keyframes btnPulse {
    0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -4px 10px rgba(160, 60, 0, 0.5), 0 14px 40px rgba(255, 138, 61, 0.5), 0 0 26px rgba(255, 138, 61, 0.3); }
    50% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -4px 10px rgba(160, 60, 0, 0.5), 0 14px 40px rgba(255, 138, 61, 0.6), 0 0 44px rgba(255, 138, 61, 0.5); }
}
.detail-action button:hover { transform: translateY(-3px) scale(1.03); animation-play-state: paused; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 -4px 10px rgba(160, 60, 0, 0.55), 0 18px 50px rgba(255, 138, 61, 0.7), 0 0 50px rgba(255, 138, 61, 0.5); }
.detail-action button:active { transform: translateY(0) scale(1); }

/* ---------- Checkout / order summary ---------- */
.checkout { max-width: 640px; margin: 44px auto; padding: 0 24px 56px; }

.order-summary {
    background: linear-gradient(165deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
    padding: 36px;
}

.order-summary h2 {
    margin: 0 0 22px;
    font-size: 28px;
    font-weight: 800;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.order-summary table { width: 100%; border-collapse: collapse; margin-bottom: 22px; }
.order-summary td { padding: 13px 4px; border-bottom: 1px solid var(--border); font-size: 14px; }
.order-summary td:first-child { color: var(--text-dim); }
.order-summary td.price { font-weight: 800; color: var(--gold-bright); font-size: 19px; }

.agree { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.55; color: var(--text-dim); margin-bottom: 13px; }
.agree input[type="checkbox"] { margin-top: 3px; accent-color: var(--orange-deep); width: 16px; height: 16px; cursor: pointer; }
.agree a { color: var(--cyan); text-decoration: underline; }
.agree a:hover { color: #8fe3ff; }

#paypal-button-container { margin-top: 24px; }
#checkout-message { color: #ff8a8a; font-size: 14px; margin-top: 14px; }

.account-line { font-size: 14px; margin-bottom: 14px; color: var(--text-dim); }
.account-line strong { color: var(--text); }

.account-input {
    display: block;
    width: 100%;
    padding: 14px 16px;
    margin: 6px 0 18px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background-color: rgba(9, 11, 16, 0.65);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.account-input:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(63, 227, 255, 0.15); }

/* ---------- Admin orders ---------- */
.orders-page { padding: 36px; overflow-x: auto; }
.orders-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.orders-table th { text-align: left; color: var(--text-dim); font-size: 12px; text-transform: uppercase; letter-spacing: 0.6px; padding: 12px 14px; border-bottom: 1px solid var(--border-strong); }
.orders-table td { padding: 13px 14px; border-bottom: 1px solid var(--border); }
.orders-table .row-fulfilled { color: #7fae7f; }
.orders-table button { background: var(--grad-gold); color: #14110c; border: none; padding: 8px 16px; border-radius: 999px; cursor: pointer; font-weight: 700; }

/* ---------- Refund policy ---------- */
.refund-policy { text-align: left; line-height: 1.75; }
.refund-policy h3 { margin: 30px 0 12px; color: var(--orange); font-size: 18px; }
.refund-policy ul, .refund-policy ol { margin: 12px 0 12px 26px; }
.refund-policy li { margin-bottom: 9px; color: var(--text-dim); }
.refund-policy p { color: var(--text-dim); }
.refund-policy strong { color: var(--text); }
.policy-updated { color: var(--text-dim); font-size: 13px; margin-top: -10px; }
.policy-note { margin-top: 30px; font-size: 13px; color: var(--text-dim); font-style: italic; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .set-detail { grid-template-columns: 1fr; padding: 28px; gap: 26px; }
    .detail-art { min-height: 320px; }
    .topbar, .class-tabs, .set-grid { padding-left: 20px; padding-right: 20px; }
    .brand-text { display: none; }
}

@media (max-width: 760px) {
    .set-detail { margin: 20px auto; }
    .detail-art { min-height: 280px; }
    .detail-content h2 { font-size: 32px; }
    .detail-action { flex-direction: column; align-items: stretch; text-align: center; }
    .detail-action button { width: 100%; }
    .set-card footer { flex-wrap: wrap; }
    .topbar { flex-wrap: wrap; gap: 10px; }
    .topbar-nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    body::after { animation: none; }
    .detail-art img { animation: none; }
}
