:root {
    --asr-ink: #050512;
    --asr-muted: #6f7080;
    --asr-border: #e3e4ea;
    --asr-soft: #f5f5f7;
    --asr-white: #ffffff;
    --asr-black: #010011;
    --asr-accent: #6d4cff;
    --asr-radius: 14px;
    --asr-radius-lg: 18px;
    --asr-shadow: 0 18px 50px rgba(6, 7, 20, .10);
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    color: var(--asr-ink);
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

.asr-container {
    width: min(100% - 40px, 1168px);
    margin: 0 auto;
}

.asr-main {
    min-height: 60vh;
}

.asr-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--asr-border);
    transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.asr-header.is-scrolled {
    background: rgba(255, 255, 255, .76);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
}

.asr-nav {
    height: 72px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.asr-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
}

.asr-brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #4f64ff, #9628ff);
    font-size: 16px;
    font-weight: 800;
}

.asr-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #646575;
    font-size: 15px;
    font-weight: 500;
}

.asr-nav-links a:hover,
.asr-nav-links a.active {
    color: var(--asr-ink);
}

.asr-header-search {
    flex: 1;
    max-width: 430px;
    margin-left: auto;
}

.asr-header-search form {
    position: relative;
}

.asr-header-search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 18px;
    height: 18px;
    color: #7c7d8d;
    transform: translateY(-50%);
}

.asr-header-search input {
    width: 100%;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #f1f1f4;
    color: var(--asr-ink);
    font-size: 14px;
    padding: 0 14px 0 42px;
    outline: none;
}

.asr-header-search input:focus {
    border-color: #cfd1da;
    background: #fff;
}

.asr-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.asr-icon-link,
.asr-menu-toggle,
.asr-icon-btn {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    display: inline-grid;
    place-items: center;
    background: transparent;
    color: var(--asr-ink);
    transition: background .2s ease, transform .2s ease;
}

.asr-icon-link svg,
.asr-menu-toggle svg,
.asr-icon-btn svg {
    width: 20px;
    height: 20px;
}

.asr-icon-link:hover,
.asr-menu-toggle:hover,
.asr-icon-btn:hover,
.asr-icon-btn.active {
    background: #f0f0f4;
    transform: translateY(-1px);
}

.asr-btn {
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--asr-border);
    border-radius: 10px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.asr-btn:hover {
    transform: translateY(-1px);
}

.asr-btn-dark {
    background: var(--asr-black);
    border-color: var(--asr-black);
    color: #fff !important;
}

.asr-btn-dark:hover {
    box-shadow: 0 16px 30px rgba(1, 0, 17, .18);
}

.asr-btn-light {
    background: #fff;
    color: var(--asr-ink) !important;
}

.asr-menu-toggle {
    display: none;
}

.asr-hero {
    min-height: 430px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--asr-hero-bg, linear-gradient(135deg, #315fff 0%, #9a20ff 52%, #f0047f 100%));
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 76px 0;
}

.asr-hero-inner {
    width: min(100% - 36px, 820px);
}

.asr-hero h1 {
    margin: 0 auto 20px;
    font-size: clamp(36px, 5vw, 66px);
    line-height: .98;
    letter-spacing: 0;
    font-weight: 800;
    max-width: 820px;
}

.asr-hero p {
    margin: 0 auto 30px;
    max-width: 700px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: rgba(255, 255, 255, .92);
}

.asr-hero-search {
    display: grid;
    grid-template-columns: 1fr 112px;
    gap: 8px;
    max-width: 620px;
    margin: 0 auto 18px;
}

.asr-hero-search input {
    height: 58px;
    border: 0;
    border-radius: 10px;
    padding: 0 22px;
    font-size: 15px;
    color: var(--asr-ink);
    outline: none;
}

.asr-hero-search button {
    height: 58px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    color: var(--asr-accent);
    font-weight: 800;
}

.asr-popular {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, .86);
    font-size: 12px;
    font-weight: 700;
}

.asr-chip {
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.asr-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 46px 0;
    border-bottom: 1px solid var(--asr-border);
}

.asr-stat {
    text-align: center;
}

.asr-stat-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: #eeeef2;
    color: #535463;
}

.asr-stat-icon svg {
    width: 22px;
    height: 22px;
}

.asr-stat strong {
    display: block;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
}

.asr-stat span {
    color: var(--asr-muted);
    font-size: 13px;
    font-weight: 500;
}

.asr-section {
    padding: 64px 0;
}

.asr-section-soft {
    background: #f4f4f6;
}

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

.asr-section-head.center {
    text-align: center;
    display: block;
}

.asr-section-head h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.1;
    font-weight: 800;
}

.asr-section-head p {
    margin: 0;
    color: var(--asr-muted);
    font-size: 15px;
    line-height: 1.5;
}

.asr-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.asr-type-card {
    min-height: 158px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px 18px;
    border: 1px solid var(--asr-border);
    border-radius: var(--asr-radius);
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.asr-type-card:hover {
    transform: translateY(-4px);
    border-color: #cacbd5;
    box-shadow: var(--asr-shadow);
}

.asr-type-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #4f64ff, #982bff);
}

.asr-type-icon svg,
.asr-type-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.asr-type-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 800;
}

.asr-type-card p {
    margin: 0;
    color: var(--asr-muted);
    font-size: 13px;
}

.asr-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.asr-masonry {
    columns: 3 260px;
    column-gap: 18px;
}

.asr-asset-card {
    position: relative;
    break-inside: avoid;
    margin-bottom: 18px;
}

.asr-asset-media {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--asr-radius);
    background: #ececf0;
}

.asr-card-grid .asr-asset-media {
    aspect-ratio: 1.25 / 1;
}

.asr-masonry .asr-asset-media {
    min-height: 220px;
}

.asr-asset-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.asr-asset-card:hover .asr-asset-media img {
    transform: scale(1.045);
}

.asr-premium-badge,
.asr-free-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(1, 0, 17, .82);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease;
}

.asr-free-badge {
    background: rgba(255, 255, 255, .88);
    color: var(--asr-ink);
}

.asr-asset-overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 44px 16px 16px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .68));
    opacity: 0;
    transition: opacity .22s ease;
}

.asr-asset-overlay strong {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
}

.asr-asset-overlay span {
    font-size: 12px;
    color: rgba(255, 255, 255, .82);
}

.asr-asset-card:hover .asr-asset-overlay,
.asr-asset-card:hover .asr-premium-badge,
.asr-asset-card:hover .asr-free-badge {
    opacity: 1;
    transform: translateY(0);
}

.asr-card-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease;
}

.asr-asset-card:hover .asr-card-actions {
    opacity: 1;
    transform: translateY(0);
}

.asr-card-actions .asr-icon-btn {
    width: 36px;
    height: 36px;
    color: #fff;
    background: rgba(1, 0, 17, .62);
    backdrop-filter: blur(12px);
}

.asr-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.asr-collection-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--asr-border);
    border-radius: var(--asr-radius-lg);
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.asr-collection-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--asr-shadow);
}

.asr-collection-cover {
    position: relative;
    min-height: 210px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 4px;
    background: #ececf0;
}

.asr-collection-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asr-collection-stack {
    display: grid;
    gap: 4px;
}

.asr-collection-count {
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(1, 0, 17, .78);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.asr-collection-body {
    padding: 20px;
}

.asr-collection-body h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
}

.asr-collection-body p {
    margin: 0;
    color: var(--asr-muted);
    font-size: 14px;
}

.asr-page-hero {
    padding: 72px 0;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #4f64ff, #9729ff);
}

.asr-page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.05;
}

.asr-page-hero p {
    max-width: 690px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .9);
}

.asr-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.asr-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 460px;
    border: 1px solid var(--asr-border);
    border-radius: var(--asr-radius-lg);
    padding: 30px;
    background: #fff;
}

.asr-plan.featured {
    border-color: var(--asr-black);
    box-shadow: 0 18px 45px rgba(1, 0, 17, .12);
}

.asr-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
    padding: 6px 13px;
    background: var(--asr-black);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.asr-plan h3 {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 800;
}

.asr-price {
    display: flex;
    align-items: end;
    gap: 6px;
    margin-bottom: 12px;
}

.asr-price strong {
    font-size: 42px;
    line-height: 1;
    font-weight: 500;
}

.asr-price span {
    color: var(--asr-muted);
    font-size: 14px;
    padding-bottom: 6px;
}

.asr-plan-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--asr-border);
    border-radius: 999px;
    padding: 10px 14px;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
}

.asr-save {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 10px;
    background: #f0f1f4;
    color: var(--asr-ink);
    font-size: 12px;
    font-weight: 800;
}

.asr-plan p {
    color: var(--asr-muted);
}

.asr-check-list {
    display: grid;
    gap: 13px;
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
}

.asr-check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--asr-ink);
}

.asr-check-list svg {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex-shrink: 0;
}

.asr-plan .asr-btn {
    margin-top: auto;
    width: 100%;
}

.asr-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 850px;
    margin: 0 auto;
}

.asr-table th,
.asr-table td {
    padding: 18px;
    border-bottom: 1px solid var(--asr-border);
    text-align: center;
    font-size: 15px;
}

.asr-table th:first-child,
.asr-table td:first-child {
    text-align: left;
}

.asr-faq {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.asr-faq details {
    border: 1px solid var(--asr-border);
    border-radius: var(--asr-radius);
    padding: 22px 24px;
    background: #fff;
}

.asr-faq summary {
    cursor: pointer;
    font-weight: 800;
    font-size: 17px;
}

.asr-faq p {
    margin: 12px 0 0;
    color: var(--asr-muted);
}

.asr-browse-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
}

.asr-filter-card {
    position: sticky;
    top: 94px;
    border: 1px solid var(--asr-border);
    border-radius: var(--asr-radius);
    padding: 24px;
    background: #fff;
}

.asr-filter-card h3 {
    margin: 0 0 26px;
    font-size: 22px;
    font-weight: 800;
}

.asr-filter-group {
    margin-bottom: 30px;
}

.asr-filter-group strong {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
}

.asr-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--asr-ink);
    font-size: 15px;
}

.asr-filter-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--asr-black);
}

.asr-color-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.asr-color-filter a {
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #d9d9df;
}

.asr-browse-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.asr-browse-top h1 {
    margin: 0 0 6px;
    font-size: 38px;
    font-weight: 800;
}

.asr-browse-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.asr-select {
    height: 42px;
    border: 1px solid var(--asr-border);
    border-radius: 10px;
    background: #f4f4f6;
    padding: 0 14px;
    font-weight: 700;
}

.asr-product-detail {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 34px;
    padding: 54px 0 70px;
}

.asr-product-preview {
    overflow: hidden;
    border-radius: var(--asr-radius-lg);
    background: #eeeef2;
}

.asr-product-preview img,
.asr-product-preview video {
    width: 100%;
    max-height: 620px;
    display: block;
    object-fit: contain;
    background: #f3f3f5;
}

.asr-product-info h1 {
    margin: 28px 0 10px;
    font-size: 38px;
    font-weight: 800;
}

.asr-product-info p {
    color: var(--asr-muted);
    font-size: 17px;
    line-height: 1.55;
}

.asr-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0;
}

.asr-tag-list a,
.asr-tag-list span {
    border-radius: 999px;
    background: #f0f1f4;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
}

.asr-product-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 26px 0;
    border-top: 1px solid var(--asr-border);
    border-bottom: 1px solid var(--asr-border);
}

.asr-product-metrics strong {
    display: block;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}

.asr-product-metrics span {
    display: block;
    color: var(--asr-muted);
    text-align: center;
}

.asr-download-panel {
    position: sticky;
    top: 94px;
    border: 1px solid var(--asr-border);
    border-radius: var(--asr-radius-lg);
    padding: 24px;
    background: #fff;
}

.asr-download-panel h2 {
    margin: 12px 0 10px;
    font-size: 26px;
    font-weight: 800;
}

.asr-download-panel p {
    color: var(--asr-muted);
    line-height: 1.55;
}

.asr-license-pill {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    background: #f0f1f4;
    color: var(--asr-ink);
    font-size: 12px;
    font-weight: 800;
}

.asr-license-pill.premium {
    background: var(--asr-black);
    color: #fff;
}

.asr-download-panel .asr-btn {
    width: 100%;
    margin-bottom: 12px;
}

.asr-panel-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0;
    padding: 18px 0;
    border-top: 1px solid var(--asr-border);
    border-bottom: 1px solid var(--asr-border);
}

.asr-license-block {
    padding: 14px 0;
    border-bottom: 1px solid var(--asr-border);
}

.asr-license-block:last-child {
    border-bottom: 0;
}

.asr-license-block h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
}

.asr-license-block ul {
    margin: 0;
    padding-left: 18px;
    color: var(--asr-muted);
}

.asr-asset-meta {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.asr-asset-meta li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--asr-muted);
}

.asr-asset-meta strong {
    color: var(--asr-ink);
}

.asr-share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.asr-share-row a {
    border: 1px solid var(--asr-border);
    border-radius: 10px;
    padding: 9px 12px;
    color: var(--asr-ink);
    font-size: 13px;
    font-weight: 800;
}

.asr-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.asr-story h2 {
    font-size: 38px;
    font-weight: 800;
}

.asr-story p {
    color: var(--asr-muted);
    font-size: 17px;
    line-height: 1.75;
}

.asr-story-image {
    overflow: hidden;
    border-radius: var(--asr-radius-lg);
    background: #eeeef2;
}

.asr-story-image img {
    width: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
}

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

.asr-value {
    border: 1px solid var(--asr-border);
    border-radius: var(--asr-radius);
    padding: 24px;
    background: #fff;
}

.asr-value h3 {
    font-size: 18px;
    font-weight: 800;
}

.asr-value p {
    color: var(--asr-muted);
}

.asr-team-card {
    overflow: hidden;
    border: 1px solid var(--asr-border);
    border-radius: var(--asr-radius);
    background: #fff;
}

.asr-team-card img {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    display: block;
    object-fit: cover;
}

.asr-team-card h3 {
    margin: 18px 18px 4px;
    font-size: 18px;
    font-weight: 800;
}

.asr-team-card p {
    margin: 0 18px 18px;
    color: var(--asr-muted);
}

.asr-cta {
    padding: 76px 0;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #315fff, #9a20ff);
}

.asr-cta h2 {
    margin: 0 0 14px;
    font-size: 38px;
    font-weight: 800;
}

.asr-cta p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
}

.asr-footer {
    border-top: 1px solid var(--asr-border);
    background: #f6f6f8;
    padding: 58px 0 34px;
}

.asr-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 70px;
    padding-bottom: 42px;
    border-bottom: 1px solid #dcdee5;
}

.asr-footer p {
    color: var(--asr-muted);
    line-height: 1.6;
}

.asr-footer h3 {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 800;
}

.asr-footer ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.asr-footer a {
    color: #717280;
    font-size: 14px;
}

.asr-footer a:hover {
    color: var(--asr-ink);
}

.asr-newsletter {
    display: grid;
    grid-template-columns: 1fr 78px;
    gap: 8px;
    margin-top: 18px;
}

.asr-newsletter input,
.asr-newsletter button {
    height: 42px;
    border-radius: 10px;
}

.asr-newsletter input {
    border: 1px solid var(--asr-border);
    padding: 0 13px;
    background: #fff;
}

.asr-newsletter button {
    border: 0;
    background: var(--asr-black);
    color: #fff;
    font-weight: 800;
}

.asr-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    color: var(--asr-muted);
    font-size: 14px;
}

.asr-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.asr-blog-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--asr-border);
    border-radius: var(--asr-radius);
    background: #fff;
}

.asr-blog-card img {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    display: block;
    object-fit: cover;
}

.asr-blog-card span {
    display: inline-flex;
    margin: 18px 18px 8px;
    color: var(--asr-muted);
    font-size: 12px;
    font-weight: 800;
}

.asr-blog-card h3 {
    margin: 0 18px 20px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.asr-empty {
    border: 1px dashed var(--asr-border);
    border-radius: var(--asr-radius);
    padding: 48px 24px;
    background: #fff;
    color: var(--asr-muted);
    text-align: center;
    font-weight: 700;
}

.asr-pagination {
    margin-top: 32px;
}

.asr-pagination .pagination {
    justify-content: center;
    gap: 6px;
}

.asr-pagination .page-link {
    border-radius: 10px;
    color: var(--asr-ink);
}

.asr-social {
    display: flex !important;
    gap: 12px !important;
    margin-top: 18px !important;
}

.asr-social a {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: transparent;
    color: #777887;
}

.asr-copyright {
    margin: 28px 0 0;
    text-align: center;
    color: var(--asr-muted);
    font-size: 13px;
}

@media (max-width: 1199px) {
    .asr-nav-links,
    .asr-header-search,
    .asr-header-actions .asr-icon-link {
        display: none;
    }

    .asr-menu-toggle {
        display: inline-grid;
        margin-left: auto;
    }

    .asr-nav.open {
        height: auto;
        align-items: flex-start;
        padding: 18px 0;
        flex-wrap: wrap;
    }

    .asr-nav.open .asr-nav-links {
        width: 100%;
        display: grid;
        gap: 14px;
        padding: 18px 0 8px;
    }

    .asr-nav.open .asr-header-actions {
        display: flex;
        width: 100%;
        margin-left: 0;
        gap: 12px;
    }
}

@media (max-width: 991px) {
    .asr-stats,
    .asr-type-grid,
    .asr-card-grid,
    .asr-pricing-grid,
    .asr-values,
    .asr-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .asr-browse-layout,
    .asr-product-detail,
    .asr-story {
        grid-template-columns: 1fr;
    }

    .asr-filter-card,
    .asr-download-panel {
        position: static;
    }

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

    .asr-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .asr-container {
        width: min(100% - 32px, 1168px);
    }

    .asr-nav {
        height: 60px;
    }

    .asr-brand {
        font-size: 16px;
    }

    .asr-brand-mark {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .asr-hero {
        min-height: 500px;
        padding: 58px 0;
    }

    .asr-hero-search {
        grid-template-columns: 1fr;
    }

    .asr-stats,
    .asr-type-grid,
    .asr-card-grid,
    .asr-pricing-grid,
    .asr-values,
    .asr-blog-grid,
    .asr-collection-grid,
    .asr-footer-grid {
        grid-template-columns: 1fr;
    }

    .asr-stats {
        gap: 28px;
    }

    .asr-section {
        padding: 48px 0;
    }

    .asr-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .asr-browse-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .asr-browse-controls {
        width: 100%;
        flex-wrap: wrap;
    }

    .asr-browse-controls .asr-select,
    .asr-browse-controls .asr-btn {
        flex: 1;
    }

    .asr-product-metrics {
        grid-template-columns: 1fr;
    }

    .asr-footer-bottom {
        flex-direction: column;
    }
}
