:root {
    --as-bg: #0f0d24;
    --as-bg-alt: #161233;
    --as-bg-elevated: #1d1846;
    --as-bg-elevated-2: #241c58;
    --as-purple: #8b5cf6;
    --as-purple-deep: #5b21b6;
    --as-gold: #fbbf24;
    --as-gold-soft: #fde68a;
    --as-orange: #fb923c;
    --as-cyan: #22d3ee;
    --as-ink: #0a0818;
    --as-text: #f4f2ff;
    --as-muted: #a79fd1;
    --as-muted-2: #7b73a8;
    --as-line: rgba(255, 255, 255, 0.09);
    --as-line-strong: rgba(255, 255, 255, 0.16);
}

body:has(.animeshop-site) {
    background: var(--as-bg);
    color: var(--as-text);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.animeshop-site,
.animeshop-site * {
    box-sizing: border-box;
}

.animeshop-site img {
    display: block;
    max-width: 100%;
}

.animeshop-site a {
    color: inherit;
    text-decoration: none;
}

.animeshop-site button,
.animeshop-site input {
    font: inherit;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.animeshop-site h1,
.animeshop-site h2,
.animeshop-site h3,
.display {
    font-family: "Unbounded", "Manrope", sans-serif;
    letter-spacing: 0;
    line-height: 1.05;
}

.bg-glow {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(600px 400px at 85% -5%, rgba(139, 92, 246, 0.35), transparent 60%),
        radial-gradient(500px 400px at -5% 15%, rgba(34, 211, 238, 0.16), transparent 60%),
        radial-gradient(700px 500px at 50% 120%, rgba(251, 146, 60, 0.14), transparent 60%),
        var(--as-bg);
}

.eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--as-gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 16px;
    height: 2px;
    background: var(--as-gold);
    display: inline-block;
}

.site-shell-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 13, 36, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--as-line);
}

.navrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 18px;
    min-width: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.brand img,
.brand-mark {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--as-purple), 0 0 30px rgba(139, 92, 246, 0.55);
    object-fit: cover;
}

.site-shell-header .brand img,
.site-shell-header .brand-mark {
    margin: 20px 0 -30px;
}

.brand-mark {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--as-purple), var(--as-gold));
    color: #fff;
    font-family: "Unbounded", sans-serif;
    font-weight: 900;
}

.brand .word {
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.brand .l2 {
    color: var(--as-purple);
}

.brand .l3 {
    color: var(--as-gold);
    font-size: 0.75em;
}

.mainnav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.animeshop-site .mainnav ul {
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.animeshop-site .mainnav li {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.animeshop-site .mainnav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 10px;
    color: var(--as-text);
    white-space: nowrap;
}

.animeshop-site .mainnav > ul > li > a:hover,
.animeshop-site .mainnav > ul > li.open > a {
    background: var(--as-bg-elevated);
    color: var(--as-gold-soft);
}

.animeshop-site .caret {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    opacity: 0.7;
}

.animeshop-site .open > a .caret {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.animeshop-site .dropdown,
.animeshop-site .mainnav .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: var(--as-bg-elevated);
    border: 1px solid var(--as-line-strong);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    display: block;
    list-style: none;
    margin: 0;
}

.animeshop-site .open .dropdown,
.animeshop-site .mainnav .open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.animeshop-site .dropdown a,
.animeshop-site .mainnav .sub-menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 9px;
    color: var(--as-muted);
}

.animeshop-site .mainnav .sub-menu a::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--as-purple);
    flex: 0 0 auto;
}

.animeshop-site .mainnav .sub-menu a .dot {
    display: none;
}

.animeshop-site .dropdown a:hover,
.animeshop-site .mainnav .sub-menu a:hover {
    background: var(--as-bg-elevated-2);
    color: var(--as-text);
}

.animeshop-site .dot,
.animeshop-site .genre-chip .sw {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--as-purple);
    flex-shrink: 0;
}

.navactions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    min-width: 0;
}

.lang-select {
    position: relative;
    flex: 0 0 auto;
}

.animeshop-site .lang-btn {
    height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--as-line-strong);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--as-text);
    padding: 0 12px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    appearance: none;
    box-shadow: none;
}

.animeshop-site .lang-btn:hover,
.animeshop-site .lang-select.open .lang-btn {
    border-color: var(--as-purple);
    background: var(--as-bg-elevated);
}

.animeshop-site .lang-btn .caret {
    width: 7px;
    height: 7px;
    margin-top: -3px;
}

.animeshop-site .lang-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 86px;
    padding: 7px;
    border: 1px solid var(--as-line-strong);
    border-radius: 12px;
    background: var(--as-bg-elevated);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
    z-index: 20;
}

.animeshop-site .lang-dropdown[hidden] {
    display: none;
}

.animeshop-site .lang-opt {
    display: block;
    border-radius: 8px;
    padding: 8px 9px;
    color: var(--as-muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 800;
}

.animeshop-site .lang-opt:hover,
.animeshop-site .lang-opt.active {
    color: var(--as-text);
    background: var(--as-bg-elevated-2);
}

.animeshop-site .icon-btn,
.animeshop-site .slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--as-line-strong);
    color: var(--as-text);
    background: transparent;
    appearance: none;
    padding: 0;
    line-height: 1;
    text-decoration: none;
    box-shadow: none;
    cursor: pointer;
}

.animeshop-site .icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    min-width: 40px;
    min-height: 40px;
    font-size: 20px;
    font-family: "Manrope", system-ui, sans-serif;
}

.animeshop-site .icon-btn:hover,
.animeshop-site .slider-btn:hover {
    border-color: var(--as-purple);
    background: var(--as-bg-elevated);
}

.animeshop-site .cta-btn {
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 11px 20px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--as-purple), var(--as-purple-deep));
    color: #fff;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
    white-space: nowrap;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.burger {
    display: none;
}

.hero {
    position: relative;
    padding: 78px 0 60px;
    overflow: hidden;
}

.hero-ring {
    position: absolute;
    top: -180px;
    right: -220px;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    border: 2px dashed rgba(139, 92, 246, 0.35);
    animation: as-spin 60s linear infinite;
}

.hero-ring::before,
.hero-ring::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.hero-ring::before {
    inset: 60px;
    border: 2px solid rgba(251, 191, 36, 0.25);
}

.hero-ring::after {
    inset: 120px;
    border: 2px dashed rgba(34, 211, 238, 0.3);
    animation: as-spin 40s linear infinite reverse;
}

@keyframes as-spin {
    to { transform: rotate(360deg); }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    margin: 18px 0 20px;
    color: var(--as-text);
}

.hero h1 .accent {
    color: var(--as-purple);
}

.hero h1 .accent2 {
    color: var(--as-gold);
}

.lead {
    font-size: 17px;
    color: var(--as-muted);
    max-width: 520px;
    margin-bottom: 32px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--as-bg-elevated);
    border: 1px solid var(--as-line-strong);
    border-radius: 15px;
    padding: 8px 8px 8px 18px;
    max-width: 520px;
    margin-bottom: 24px;
}

.search-bar span {
    color: var(--as-muted-2);
}

.search-bar input {
    flex: 1;
    min-width: 0;
    background: none;
    border: 0;
    outline: 0;
    color: var(--as-text);
    font-size: 14.5px;
}

.search-bar button {
    background: linear-gradient(135deg, var(--as-gold), var(--as-orange));
    color: var(--as-ink);
    font-weight: 800;
    font-family: "Unbounded", sans-serif;
    font-size: 12.5px;
    padding: 11px 18px;
    border-radius: 10px;
    border: 0;
}

.hero-ctas,
.hero-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-ghost {
    padding: 13px 22px;
    border-radius: 12px;
    border: 1px solid var(--as-line-strong);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost:hover {
    border-color: var(--as-cyan);
}

.bolt {
    color: var(--as-gold);
}

.hero-stats {
    gap: 30px;
    margin-top: 38px;
}

.hero-stats div {
    font-family: "JetBrains Mono", monospace;
}

.hero-stats .num {
    font-size: 22px;
    font-weight: 700;
    color: var(--as-text);
}

.hero-stats .lbl {
    font-size: 11px;
    color: var(--as-muted-2);
    letter-spacing: 0.06em;
}

.spotlight-wrap {
    position: relative;
}

.spotlight {
    background: linear-gradient(160deg, var(--as-bg-elevated-2), var(--as-bg-elevated) 60%);
    border: 1px solid var(--as-line-strong);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.spotlight-tag {
    display: inline-flex;
    background: rgba(251, 191, 36, 0.14);
    color: var(--as-gold);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.slider-viewport {
    border-radius: 16px;
    overflow: hidden;
    max-width: 100%;
    contain: paint;
}

.slider-track {
    display: flex;
    width: 100%;
    max-width: 100%;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.slide-thumb,
.anime-card .cover,
.new-card .cover,
.product-card .thumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, var(--c1, #7c3aed), var(--c2, #22d3ee));
}

.slide-thumb {
    height: 220px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-thumb img,
.anime-card .cover img,
.product-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 22px);
}

.product-symbol {
    font-size: 58px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.slide-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    background: rgba(10, 8, 24, 0.55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: "JetBrains Mono", monospace;
    font-size: 10.5px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 8px;
    letter-spacing: 0.04em;
}

.slide-info {
    padding-top: 16px;
}

.slide-info h3 {
    font-size: 18px;
    margin: 0 0 8px;
}

.slide-price {
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    color: var(--as-gold);
    font-size: 18px;
}

.old,
.slide-price del,
.price del {
    color: var(--as-muted-2);
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 500;
    margin-left: 8px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.animeshop-site .slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    font-size: 16px;
    min-width: 38px;
    min-height: 38px;
}

.animeshop-site .slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.animeshop-site .slider-dots button {
    display: block;
    width: 8px !important;
    height: 8px !important;
    min-width: 8px !important;
    min-height: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50%;
    background: var(--as-line-strong);
    transition: background 0.2s, width 0.2s;
    appearance: none;
    box-shadow: none;
    line-height: 0;
}

.animeshop-site .slider-dots button.active {
    background: var(--as-gold);
    width: 22px !important;
    min-width: 22px !important;
    border-radius: 5px;
}

.float-badge {
    position: absolute;
    top: -18px;
    right: -18px;
    background: linear-gradient(135deg, var(--as-cyan), var(--as-purple));
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Unbounded", sans-serif;
    font-weight: 800;
    font-size: 11px;
    text-align: center;
    line-height: 1.2;
    color: #fff;
    box-shadow: 0 12px 26px rgba(34, 211, 238, 0.35);
    transform: rotate(8deg);
}

.marquee {
    background: linear-gradient(90deg, var(--as-purple-deep), var(--as-purple) 50%, var(--as-purple-deep));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    padding: 13px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: as-marquee 34s linear infinite;
}

.marquee-track span {
    font-family: "JetBrains Mono", monospace;
    font-size: 13.5px;
    font-weight: 500;
    color: #fff;
    padding: 0 28px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 28px;
}

.marquee-track span::after {
    content: "⚡";
    color: var(--as-gold);
}

@keyframes as-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.animeshop-home section {
    padding: 84px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 38px;
    gap: 20px;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    margin: 10px 0 0;
}

.section-head .sub {
    color: var(--as-muted);
    font-size: 14.5px;
    margin-top: 6px;
    max-width: 460px;
}

.see-all {
    font-family: "JetBrains Mono", monospace;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--as-cyan);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1px solid var(--as-line-strong);
    border-radius: 11px;
    flex-shrink: 0;
}

.anime-slider {
    width: 100%;
}

.anime-slider-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 18px;
}

.anime-slider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.anime-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.anime-slider-controls {
    justify-content: center;
    gap: 18px;
    margin-top: 22px;
}

.anime-card,
.new-card,
.product-card,
.news-col {
    background: var(--as-bg-alt);
    border: 1px solid var(--as-line);
    border-radius: 18px;
}

.anime-card,
.product-card {
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}

.anime-card:hover,
.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--as-purple);
}

.anime-card .cover {
    height: 150px;
}

.rank-star {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(10, 8, 24, 0.65);
    backdrop-filter: blur(4px);
    color: var(--as-gold);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 8px;
}

.anime-card .body,
.product-card .body {
    padding: 16px;
}

.anime-card h4,
.product-card h4 {
    font-family: "Unbounded", sans-serif;
    font-size: 14px;
    line-height: 1.35;
    margin: 0 0 8px;
}

.anime-card h4 {
    min-height: 38px;
}

.tags,
.genre-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 10.5px;
    background: var(--as-bg-elevated);
    color: var(--as-muted);
    padding: 4px 8px;
    border-radius: 6px;
}

.anime-card .foot {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    color: var(--as-muted-2);
}

.shop-cats,
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.shop-cats {
    margin-bottom: 44px;
}

.shop-cat {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 160px;
    border: 1px solid var(--as-line);
    background: linear-gradient(150deg, var(--c1), var(--c2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
}

.shop-cat span,
.shop-cat small {
    position: relative;
    z-index: 1;
}

.shop-cat span {
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 16.5px;
}

.shop-cat small {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

.product-card .thumb {
    height: 180px;
    display: grid;
    place-items: center;
}

.product-card .thumb .product-symbol {
    color: var(--as-purple);
}

.price,
.price ins {
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    color: var(--as-gold);
    font-size: 14px;
    text-decoration: none;
}

.buy-banner,
.newsletter {
    margin-top: 44px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(34, 211, 238, 0.12));
    border: 1px solid var(--as-line-strong);
    border-radius: 22px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.buy-banner h3,
.newsletter h3 {
    font-size: 24px;
    margin: 0 0 8px;
}

.buy-banner p,
.newsletter p {
    color: var(--as-muted);
    font-size: 14px;
    max-width: 520px;
    margin: 0;
}

.genre-chip {
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid var(--as-line-strong);
    font-size: 13.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.genre-chip:hover {
    background: var(--as-bg-elevated);
    border-color: var(--as-purple);
}

.news-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.news-col {
    border-radius: 20px;
    padding: 24px;
}

.news-col-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.news-col-head .ic {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.news-col-purple .ic {
    background: rgba(139, 92, 246, 0.18);
    color: var(--as-purple);
}

.news-col-cyan .ic {
    background: rgba(34, 211, 238, 0.18);
    color: var(--as-cyan);
}

.news-col-gold .ic {
    background: rgba(251, 191, 36, 0.18);
    color: var(--as-gold);
}

.news-col-head h3 {
    font-size: 15.5px;
    font-weight: 600;
    margin: 0;
}

.news-item {
    padding: 14px 0;
    border-top: 1px solid var(--as-line);
    display: block;
}

.news-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.news-item .dt {
    font-family: "JetBrains Mono", monospace;
    font-size: 10.5px;
    color: var(--as-muted-2);
    margin-bottom: 6px;
    display: block;
}

.news-item h5 {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.news-item:hover h5 {
    color: var(--as-gold-soft);
}

.newsletter {
    margin-top: 0;
}

.newsletter form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.newsletter input {
    min-width: 250px;
    background: rgba(10, 8, 24, 0.45);
    border: 1px solid var(--as-line-strong);
    color: var(--as-text);
    border-radius: 11px;
    padding: 12px 14px;
}

.site-shell-footer {
    border-top: 1px solid var(--as-line);
    padding: 56px 0 24px;
    background: rgba(10, 8, 24, 0.42);
}

.animeshop-content {
    min-height: 60vh;
}

.inner-hero {
    position: relative;
    padding: 76px 0 44px;
    overflow: hidden;
}

.inner-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
    gap: 42px;
    align-items: center;
}

.inner-hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    margin: 16px 0;
    color: var(--as-text);
}

.inner-hero p {
    max-width: 680px;
    color: var(--as-muted);
    font-size: 17px;
    margin: 0;
}

.inner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.inner-meta span {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--as-gold-soft);
    border: 1px solid var(--as-line-strong);
    background: rgba(29, 24, 70, 0.78);
    padding: 7px 10px;
    border-radius: 9px;
}

.inner-hero-media {
    border: 1px solid var(--as-line-strong);
    border-radius: 24px;
    overflow: hidden;
    min-height: 260px;
    background: linear-gradient(155deg, var(--as-bg-elevated-2), var(--as-bg-elevated));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38);
}

.inner-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.inner-hero-caption {
    margin: 0;
    padding: 10px 13px 12px;
    color: var(--as-muted-2);
    background: rgba(15, 13, 36, 0.84);
    border-top: 1px solid var(--as-line);
    font-size: 12px;
    line-height: 1.45;
}

.content-panel,
.side-card {
    background: rgba(22, 18, 51, 0.92);
    border: 1px solid var(--as-line);
    border-radius: 20px;
    padding: 28px;
}

.content-readable {
    max-width: 920px;
}

.entry-content {
    color: var(--as-text);
}

.entry-content p,
.entry-content li {
    color: var(--as-muted);
    font-size: 16px;
    line-height: 1.75;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 1.5em;
    color: var(--as-text);
}

.entry-content a {
    color: var(--as-cyan);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
    padding-bottom: 84px;
}

.detail-sidebar {
    position: sticky;
    top: 104px;
}

.side-card h3 {
    margin: 0 0 18px;
    font-size: 18px;
}

.side-card dl {
    margin: 0;
}

.side-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid var(--as-line);
    padding: 12px 0;
}

.side-card dt {
    color: var(--as-muted-2);
    font-size: 12px;
}

.side-card dd {
    margin: 0;
    color: var(--as-text);
    font-weight: 700;
    text-align: right;
}

.detail-tags {
    margin-bottom: 22px;
}

.product-price {
    color: var(--as-gold);
    font-family: "JetBrains Mono", monospace;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
}

.product-buy {
    width: 100%;
}

.product-archive-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.archive-result-count,
.archive-ordering {
    color: var(--as-muted);
    font-size: 13.5px;
}

.archive-result-count p,
.archive-ordering form,
.archive-ordering select {
    margin: 0;
}

.archive-ordering select {
    min-height: 40px;
    border: 1px solid var(--as-line-strong);
    border-radius: 11px;
    background: var(--as-bg-elevated);
    color: var(--as-text);
    padding: 0 38px 0 13px;
    font: inherit;
}

.product-archive-grid {
    padding-bottom: 30px;
}

.product-archive-empty {
    grid-column: 1 / -1;
}

.product-archive-pagination {
    padding-bottom: 84px;
}

.animeshop-site .woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
}

.animeshop-site .woocommerce-pagination li {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
}

.animeshop-site .woocommerce-pagination a,
.animeshop-site .woocommerce-pagination span {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--as-line-strong);
    border-radius: 10px;
    color: var(--as-text);
    background: transparent;
}

.animeshop-site .woocommerce-pagination span.current,
.animeshop-site .woocommerce-pagination a:hover {
    border-color: var(--as-purple);
    background: var(--as-bg-elevated);
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding-bottom: 84px;
}

.archive-card {
    background: var(--as-bg-alt);
    border: 1px solid var(--as-line);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}

.archive-card:hover {
    transform: translateY(-5px);
    border-color: var(--as-purple);
}

.archive-card-media {
    height: 190px;
    display: grid;
    place-items: center;
    background: linear-gradient(155deg, var(--as-purple), var(--as-cyan));
}

.archive-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-card-body {
    padding: 18px;
}

.archive-card-body h2 {
    font-size: 16px;
    margin: 0 0 10px;
}

.archive-card-body p {
    color: var(--as-muted);
    font-size: 14px;
    margin: 0;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(4, 1fr);
    gap: 28px;
}

.foot-brand p {
    color: var(--as-muted);
    font-size: 14px;
    max-width: 320px;
    margin-top: 16px;
}

.foot-col h5 {
    font-family: "Unbounded", sans-serif;
    font-size: 13px;
    margin: 0 0 14px;
}

.foot-col a {
    display: block;
    color: var(--as-muted);
    font-size: 13.5px;
    margin: 9px 0;
}

.foot-col a:hover {
    color: var(--as-gold-soft);
}

.social-row {
    display: flex;
    gap: 8px;
}

.social-row a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--as-line-strong);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: "JetBrains Mono", monospace;
}

.foot-bottom {
    border-top: 1px solid var(--as-line);
    margin-top: 38px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--as-muted-2);
    font-size: 12.5px;
}

@media (prefers-reduced-motion: reduce) {
    .hero-ring,
    .hero-ring::after,
    .marquee-track {
        animation: none;
    }
}

@media (max-width: 1080px) {
    .mainnav {
        display: none;
    }

    .burger {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 11px;
        border: 1px solid var(--as-line-strong);
        background: transparent;
        color: var(--as-text);
    }

    .hero-grid,
    .news-cols,
    .inner-hero-grid,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .shop-cats,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .anime-slide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .foot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-sidebar {
        position: static;
    }

    .archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .wrap {
        padding: 0 18px;
    }

    .site-shell-header .brand .word,
    .navactions .cta-btn,
    .lang-select,
    .icon-btn {
        display: none;
    }

    .hero {
        padding-top: 52px;
    }

    .search-bar,
    .newsletter form,
    .buy-banner,
    .newsletter {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        gap: 18px;
    }

    .shop-cats,
    .product-grid,
    .foot-grid,
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .anime-slide {
        grid-template-columns: 1fr;
    }

    .float-badge {
        right: 0;
    }

    .newsletter input {
        min-width: 0;
        width: 100%;
    }

    .inner-hero {
        padding: 48px 0 32px;
    }

    .content-panel,
    .side-card {
        padding: 20px;
    }
}
