@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --primary-color: #006a61;
}

body {
    background: #f8f9ff;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    color: #45464d;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
}

button {
    background-color: transparent;
    font-weight: 600;
}

/* =========================
       CUSTOM FONT SIZE CLASSES
    ========================== */

.text-sm {
    font-size: 14px;
}

.text-xs {
    font-size: 12px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 6px 18px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* =================================
    HEADER
================================= */

.clipart-header {
    border-bottom: 1px solid #c6c6cd;
    background: #f8f9ff;
    padding: 10px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.clipart-header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.clipart-mobile-toggle {
    display: none;
    font-size: 28px;
    color: #13233d;
    background: none;
    border: none;
}

.clipart-logo {
    font-size: 34px;
    display: inline-flex;
    font-weight: 700;
    color: #13233d;
}

.clipart-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.clipart-menu-link {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #505968;
    padding: 10px 0;
    transition: 0.3s;
}

.clipart-menu-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

.clipart-menu-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 20px;
}

.clipart-header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.clipart-plan {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.clipart-plan-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.clipart-progress {
    width: 120px;
    height: 5px;
    border-radius: 20px;
    background: #dce4ef;
    overflow: hidden;
}

.clipart-progress-bar {
    width: 75%;
    height: 100%;
    background: var(--primary-color);
}

.clipart-plan-text {
    font-size: 12px;
    color: #6a7282;
    margin-top: 4px;
}

.clipart-header-icon {
    font-size: 18px;
    color: #4e5665;
    cursor: pointer;
}

.clipart-profile {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #c6c6cd;
}

.clipart-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =================================
    HERO
================================= */

.clipart-hero-section {
    padding: 36px 24px 24px;
}

.clipart-hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    padding: 70px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url("../images/hero-banner.png") center/cover;
}

.clipart-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 15, 35, 0.35);
}

.clipart-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.clipart-hero-title {
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 10px;
}

.clipart-hero-subtitle {
    font-size: 20px;
    line-height: 1.2;
    color: #e8edf6;
    margin-bottom: 44px;
}

/* =================================
    SEARCH
================================= */

.clipart-search-bar {
    border-radius: 8px;
    border: 1px solid #c6c6cd;
    background: #f8f9ff;
    overflow: hidden;
    padding: 5px;
    display: flex;
    align-items: center;
    max-width: 820px;
    margin: auto;
}

.clipart-search-category {
    width: 200px;
    height: 56px;
    border: none;
    border-right: 1px solid #e4e9f2;
    padding: 0 22px;
    outline: none;
    background-color: transparent;
}

.clipart-search-input-wrapper {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.clipart-search-input-wrapper i {
    font-size: 20px;
    color: #697181;
    margin-right: 14px;
}

.clipart-search-input {
    width: 100%;
    height: 56px;
    border: none;
    outline: none;
    background-color: transparent;
}

.clipart-search-btn {
    width: 150px;
    height: 56px;
    border: none;
    border-radius: 4px;
    background: #0f71a2;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* =================================
    FILTERS
================================= */

.clipart-filter-bar {
    padding: 0 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid #c6c6cd;
}

.clipart-filter-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.clipart-filter-btn {
    height: 44px;
    padding: 0 20px;
    border-radius: 12px;
    border: 1px solid #c6c6cd;
    background: #f8f9ff;
    font-weight: 600;
    color: #4e5665;
}

.clipart-sort {
    color: #5c6574;
    font-weight: 600;
}

.clipart-sort select {
    color: #5c6574;
    font-weight: 700;
    background: transparent;
    outline: 0;
    border: 0;
    max-width: 124px;
}

/* =================================
    SECTION
================================= */

.clipart-section {
    padding: 24px;
}

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

.clipart-section-title {
    font-size: 36px;
    font-weight: 600;
    color: #13233d;
    margin-bottom: 8px;
}

.clipart-section-subtitle {
    font-size: 18px;
    color: #657082;
}

.clipart-section-link {
    font-weight: 600;
    color: #0f71a2;
}

/* =================================
    CATEGORY
================================= */

.clipart-category-card {
    border-radius: 8px;
    border: 1px solid #c6c6cd;
    background: #f8f9ff;
    padding: 40px 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.clipart-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.clipart-category-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: #eff4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 30px;
    color: #0f71a2;
}

.clipart-category-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.clipart-category-count {
    font-size: 18px;
    color: #6a7382;
}

/* =================================
    FEATURED
================================= */

.clipart-featured-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    border: 1px solid #c6c6cd;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.clipart-featured-card img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    object-position: center;
    transition: 0.4s;
}

.clipart-featured-card:hover img {
    transform: scale(1.05);
}

.clipart-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.1));
}

.clipart-watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-18deg);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 2;
}

.clipart-featured-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    color: #fff;
    text-align: center;
    padding: 10px 24px;
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clipart-load-btn {
    min-width: 240px;
    height: 64px;
    border-radius: 4px;
    border: 1px solid #76777d;
    color: #0b1c30;
    margin-top: 34px;
}

/* =================================
    FOOTER
================================= */

.clipart-footer {
    margin-top: 40px;
    border-top: 1px solid #c6c6cd;
    background: #f8f9ff;
    padding: 20px 24px;
}

.clipart-footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.clipart-footer-text {
    color: #6b7280;
}

.clipart-footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.clipart-footer-links a {
    color: #6b7280;
    font-weight: 500;
}

/* =================================
    SEARCH SECTION
================================= */

.search-results-section {
    padding: 16px 40px;
    border-bottom: 1px solid #c6c6cd;
    background: #f8f9ff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* =================================
    TOP SEARCH AREA
================================= */

.search-results-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 16px;
}

.search-results-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    border-radius: 2px;
    border: 1px solid #76777d;
    background: #f8f9ff;
    overflow: hidden;
    /*max-width: 1000px;*/
    height: 50px;
}

/* CATEGORY */

.search-results-category {
    width: 260px;
    height: 100%;
    border: none;
    border-right: 1px solid #c6c6cd;
    padding: 0 24px;
    color: #243248;
    background: #eef3fb;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.search-results-category-wrapper {
    position: relative;
    height: 100%;
    border-right: 1px solid #76777d;
    background: #e5eeff;
}

.search-results-category-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #4e5665;
    pointer-events: none;
}

/* INPUT */

.search-results-input-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 26px;
}

.search-results-input {
    width: 100%;
    border: none;
    outline: none;
    font-weight: 500;
    height: 100%;
    background: transparent;
}

.search-results-input::placeholder {
    color: #8a93a3;
}

/* ACTIONS */

.search-results-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

.search-results-action-icon {
    font-size: 18px;
    color: #4f5665;
    cursor: pointer;
    transition: 0.3s;
}

.search-results-action-icon:hover {
    color: #0f71a2;
}

/* SEARCH BUTTON */

.search-results-btn {
    width: 90px;
    height: 100%;
    border: none;
    background: #0f71a2;
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
}

.search-results-btn:hover {
    background: #0f71a2;
}

/* =================================
    AI SEARCH
================================= */

.clipart-ai-btn {
    border-radius: 2px;
    border: 1px solid #76777d;
    background: #f8f9ff;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 20px;
    font-weight: 500;
    color: #1f2c43;
    position: relative;
    transition: 0.3s;
}

.clipart-ai-btn:hover {
    background: #f5f8ff;
}

.clipart-ai-badge {
    border-radius: 2px;
    background: #d2bbff;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
}

/* =================================
    RELATED SEARCHES
================================= */

.clipart-related-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.clipart-related-wrapper::-webkit-scrollbar {
    height: 6px;
}

.clipart-related-wrapper::-webkit-scrollbar-thumb {
    background: #d3dae6;
    border-radius: 20px;
}

.clipart-related-title {
    font-weight: 500;
    white-space: nowrap;
}

.clipart-related-list {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* TAG */

.clipart-related-tag {
    padding: 5px 15px;
    border-radius: 2px;
    border: 1px solid #76777d;
    background: #f8f9ff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #243248;
    white-space: nowrap;
    transition: 0.3s;
    cursor: pointer;
}

.clipart-related-tag:hover {
    background: #eef3fb;
    border-color: #0f71a2;
}

.clipart-related-emoji {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: #eef3fb;
}

.clipart-gallery-page {
    padding: 24px 40px;
}

/* =================================
    HEADER
================================= */

.clipart-gallery-title {
    font-size: 32px;
    font-weight: 700;
    color: #132a4c;
    margin-bottom: 10px;
}

.clipart-gallery-subtitle {
    color: #6f7480;
    margin-bottom: 28px;
}

.clipart-gallery-subtitle a {
    color: #2672ff;
    font-weight: 600;
}

/* =================================
    FILTER BAR
================================= */

.clipart-gallery-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}

.clipart-gallery-filter-bar>.cgf-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.clipart-gallery-filter-btn {
    display: flex;
    align-items: center;
    padding: 10px 26px;
    border-radius: 2px;
    border: 1px solid #76777d;
    background: #f8f9ff;
}

.clipart-gallery-filter-left {
    display: flex;
    border-radius: 2px;
    border: 1px solid #76777d;
    background: #f8f9ff;
}

.clipart-gallery-filter-left button {
    padding: 10px 26px;
    border: 0;
    outline: 0;
}

.clipart-gallery-filter-left button+button {
    border-left: 1px solid #76777d;
}

.clipart-gallery-filter-left button:hover {
    background: #f1f5fc;
}

.clipart-gallery-filter-left button.active {
    background: #edf3ff;
    color: #2668ff;
}

.clipart-gallery-filter-select {
    padding: 10px 20px;
    border-radius: 2px;
    border: 1px solid #76777d;
    background: #f8f9ff;
    outline: none;
}

/* =================================
    MASONRY GRID
================================= */

.clipart-gallery-grid {
    column-count: 4;
    column-gap: 6px;
}

.clipart-gallery-item {
    position: relative;
    margin-bottom: 6px;
    break-inside: avoid;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    border: 1px solid #ddd;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clipart-gallery-item img {
    width: auto;
    height: 250px;
    display: block;
    transition: 0.4s;
}

.clipart-gallery-item:hover img {
    transform: scale(1.05);
}

/* =================================
    OVERLAY
================================= */

.clipart-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.clipart-gallery-item:hover .clipart-gallery-overlay {
    opacity: 1;
}

.clipart-gallery-overlay-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.clipart-gallery-no-data {
    column-count: 1;
}

/* =================================
    PLACEHOLDER
================================= */

.clipart-gallery-placeholder {
    background: #e7e7ea;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 28px;
    font-weight: 500;
}

.vector-asset-page {
    padding: 28px;
}

/* =================================
    SEARCH BAR
================================= */

.vector-search-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    background: #f4fbf9;
    padding: 10px;
    border-radius: 8px;
}

.vector-search-logo {
    min-width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    font-size: 15px;
    font-weight: 700;
}

.vector-search-box {
    flex: 1;
    display: flex;
    align-items: center;
    height: 50px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #fff;
    overflow: hidden;
}

.vector-search-input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
}

.search-clear-icon {
    color: #94a3b8;
    font-size: 16px;
    margin-right: 16px;
    transition: 0.2s;
}

.search-clear-icon:hover {
    color: #64748b;
}

.vector-search-btn {
    width: 60px;
    height: 100%;
    border: none;
    background: #0f71a2;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.vector-search-btn:hover {
    background: #0f71a2;
}

.vector-ai-btn {
    height: 50px;
    padding: 0 16px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.vector-ai-btn i {
    color: #4f46e5;
}

.vector-ai-badge {
    background: #e2e8f0;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
}

/* =================================
    BREADCRUMB
================================= */

.vector-breadcrumb {
    margin-bottom: 24px;
    color: #64748b;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vector-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: 0.2s;
}

.vector-breadcrumb a:hover {
    color: #1e293b;
}

.breadcrumb-chevron {
    font-size: 10px;
    color: #cbd5e1;
}

.vector-breadcrumb .active {
    color: #0f172a;
    font-weight: 700;
}

/* =================================
    MAIN GRID
================================= */

.vector-main-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 28px;
    align-items: start;
}

/* =================================
    PREVIEW
================================= */

.vector-preview-card {
    border-radius: 8px;
    border: 1px solid #c6c6cd;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
}

.vector-preview-image {
    position: relative;
    background: #ffffff;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    padding: 30px;
}

.vector-preview-image img {
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.vector-watermark {
    position: absolute;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.1);
    transform: rotate(-14deg);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 2;
}

.vector-watermark.one {
    left: 20px;
    bottom: 120px;
}

.vector-watermark.two {
    right: 20px;
    top: 50%;
}

.vector-feedback-bar {
    min-height: 72px;
    border-radius: 0 0 8px 8px;
    border: 1px solid #c6c6cd;
    border-top: none;
    background: #eff4ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
}

.vector-feedback-title {
    font-size: 16px;
    color: #1b2740;
    margin-bottom: 6px;
    font-weight: 600;
}

.vector-stars {
    color: #0f71a2;
    font-size: 18px;
}

.vector-review-text {
    color: #6c7482;
    margin-left: 8px;
    font-size: 16px;
}

.vector-review-link {
    color: #0f71a2;
    font-size: 16px;
    font-weight: 600;
}

/* =================================
    SIDEBAR
================================= */

.vector-sidebar-card {
    border-radius: 8px;
    border: 1px solid #c6c6cd;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
    padding: 24px;
    margin-bottom: 22px;
}

.vector-asset-title {
    font-size: 16px;
    line-height: 1.3;
    color: #16243d;
    margin-bottom: 10px;
    font-weight: 700;
}

.vector-author {
    font-size: 12px;
    color: #6d7481;
    margin-bottom: 24px;
}

.vector-author span {
    color: #0f71a2;
    font-weight: 600;
}

/* =================================
    DOWNLOAD BAR
================================= */

.vector-download-box {
    border-radius: 4px;
    background: #eff4ff;
    padding: 16px;
    margin-bottom: 20px;
}

.vector-download-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #4d5666;
    margin-bottom: 10px;
}

.vector-download-row strong {
    color: #13233d;
    font-weight: 600;
}

.vector-download-progress {
    width: 100%;
    height: 10px;
    border-radius: 20px;
    background: #d7deea;
    overflow: hidden;
    margin-bottom: 10px;
}

.vector-download-progress-bar {
    width: 84%;
    height: 100%;
    background: #0f71a2;
}

.vector-credit-text {
    text-align: right;
    font-size: 14px;
    color: #596272;
}

/* =================================
    BUTTONS
================================= */

.vector-primary-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 4px;
    background: #0f71a2;
    color: #fff;
    font-weight: 600;
    margin-bottom: 14px;
}

.vector-secondary-btn {
    width: 100%;
    height: 50px;
    border: 1px solid #1f2b43;
    border-radius: 4px;
    background: #ffffff;
    color: #1c2940;
    font-weight: 600;
}

/* =================================
    ASSET DETAILS UI
================================= */

.asset-details-card {
    border-radius: 12px;
    border: 1px solid #f0f2f5;
    background: #fff;
    box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.03);
    margin-bottom: 22px;
    overflow: hidden;
}

.asset-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #f0f2f5;
}

.asset-details-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.asset-details-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.asset-details-icon-circle.green {
    background: #e7eefe;
    color: #0f71a2;
}

.asset-details-title {
    font-size: 18px;
    color: #111a2d;
    font-weight: 700;
    margin-bottom: 4px;
}

.asset-details-subtitle {
    font-size: 13px;
    color: #727f95;
}

.asset-details-heart-btn {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid #e2e6eb;
    background: #fff;
    color: #0d8a72;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    cursor: pointer;
}

.asset-details-heart-btn:hover {
    background: #f8fafc;
}

.asset-details-body {
    padding: 10px 24px 24px;
}

.asset-details-row {
    display: flex;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #f0f2f6;
    gap: 18px;
}

.asset-details-row.align-start {
    align-items: flex-start;
}

.asset-details-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.asset-details-row-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.asset-details-row-icon.teal {
    background: #e7eefe;
    color: #0f71a2;
}

.asset-details-row-icon.purple {
    background: #e7eefe;
    color: #7c57db;
}

.asset-details-row-icon.blue {
    background: #e7eefe;
    color: #0f71a2;
}

.asset-details-row-icon.green-shield {
    background: #e7eefe;
    color: #0f71a2;
}

.asset-details-row-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.asset-details-row-content.formats-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.asset-details-label {
    font-size: 13px;
    color: #7e899d;
    font-weight: 500;
}

.asset-details-value.ref-id {
    font-size: 16px;
    color: #111a2d;
    font-weight: 700;
}

.asset-details-copy-btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: none;
    background: #e7eefe;
    color: #0f71a2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.asset-details-copy-btn:hover {
    background: #d4f2e9;
}

/* Categories */
.category-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cat-tag {
    background: #e7eefe;
    color: #0f71a2;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e1f5ef;
}

.cat-chevron {
    color: #0f71a2;
    font-size: 14px;
}

/* Styles */
.style-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.style-tag {
    background: #e7eefe;
    color: #6940d0;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #ece4fb;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Formats */
.format-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.format-tag {
    background: #fff;
    color: #111a2d;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #e4e8ef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.format-tag .cdr-icon {
    color: #0f71a2;
    font-size: 18px;
}

.format-tag .png-icon {
    color: #377df3;
    font-size: 18px;
}

.format-tag .jpeg-icon {
    color: #7c57db;
    font-size: 18px;
}

/* License */
.license-badge {
    background: #e7eefe;
    color: #0f71a2;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =================================
    RELATED
================================= */

.vector-related-section {
    margin-top: 42px;
    border-top: 1px solid #e5eaf2;
    padding-top: 36px;
}

.vector-related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.vector-related-title {
    font-size: 28px;
    color: #132a4c;
    font-weight: 700;
}

.vector-related-link {
    color: #0f71a2;
    font-size: 18px;
    font-weight: 600;
}

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

.vector-related-card {
    border-radius: 4px;
    border: 1px solid #c6c6cd;
    background: #fff;
    padding: 5px;
    overflow: hidden;
    border: 1px solid #dbe2ec;
    transition: 0.3s;
}

.vector-related-card:hover {
    transform: translateY(-4px);
}

.vector-related-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

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

.download-dashboard-page {
    padding: 36px 28px;
}

.download-dashboard-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
}

/* =================================
    SIDEBAR
================================= */

.download-sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.download-sidebar-card {
    border-radius: 8px;
    border: 1px solid #c6c6cd;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 26px;
}

/* =================================
    PROFILE
================================= */

.download-profile-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.download-profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #182544;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #cfd7e8;
}

.download-profile-name {
    font-size: 18px;
    color: #13233d;
    font-weight: 700;
}

.download-profile-email {
    font-size: 14px;
    color: #687282;
}

.download-profile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #c6c6cd;
}

.download-profile-row:last-child {
    border-bottom: none;
}

.download-profile-label {
    font-size: 16px;
    color: #5d6675;
}

.download-profile-value {
    font-size: 16px;
    color: #1d2a42;
    font-weight: 600;
}

.download-tier-badge {
    padding: 6px 14px;
    border-radius: 2px;
    background: #86f2e4;
    color: #0f71a2;
    font-size: 15px;
    font-weight: 500;
}

.download-status-active {
    color: #0f71a2;
}

.download-manage-btn {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: 1px solid #76777d;
    color: #1d2a42;
    font-weight: 600;
    margin-top: 22px;
}

/* =================================
    USAGE
================================= */

.download-usage-title {
    font-size: 22px;
    color: #13233d;
    margin-bottom: 26px;
    font-weight: 700;
}

.download-usage-title i {
    margin-right: 10px;
    color: #4f5564;
}

.download-usage-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.download-usage-label {
    color: #5d6675;
    font-size: 16px;
}

.download-usage-value {
    color: #13233d;
    font-size: 18px;
    font-weight: 700;
}

.download-usage-value span {
    color: #7c8594;
    font-weight: 400;
}

.download-usage-progress {
    width: 100%;
    height: 10px;
    border-radius: 20px;
    overflow: hidden;
    background: #d8e1ef;
    margin-bottom: 12px;
}

.download-usage-progress-bar {
    width: 28%;
    height: 100%;
    background: #0f71a2;
}

.download-reset-text {
    color: #5d6675;
    font-size: 16px;
}

/* =================================
    QUICK ACTIONS
================================= */

.download-action-title {
    font-size: 22px;
    color: #13233d;
    margin-bottom: 26px;
    font-weight: 700;
}

.download-action-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.download-action-item {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #4f5665;
    font-size: 18px;
    transition: 0.3s;
}

.download-action-item:hover {
    color: #0f71a2;
}

.download-action-item i {
    width: 18px;
    font-size: 18px;
}

/* =================================
    CONTENT
================================= */

.download-main-content {
    width: 100%;
}

.download-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.download-section-title {
    font-size: 28px;
    font-weight: 700;
}

.download-view-link {
    color: #0f71a2;
    font-weight: 600;
}

/* =================================
    COLLECTIONS
================================= */

.download-collection-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
    margin-bottom: 46px;
}

.download-collection-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 280px;
    max-height: 440px;
    border: 1px solid #dbe3ef;
}

.download-collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.download-collection-card:hover img {
    transform: scale(1.05);
}

.download-collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.15));
}

.download-collection-content {
    position: absolute;
    left: 26px;
    bottom: 24px;
    z-index: 2;
}

.download-collection-title {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
}

.download-collection-meta {
    color: #dbe3ef;
}

/* =================================
    DOWNLOADS HEADER
================================= */

.download-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.download-export-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #8f98a8;
    background: transparent;
    color: #132a4c;
    font-size: 18px;
}

.download-export-btn {
    height: 44px;
    padding: 0 22px;
    border-radius: 12px;
    border: 1px solid #76777d;
    background: transparent;
    color: #132a4c;
    font-weight: 600;
}

/* =================================
    TABLE
================================= */

.download-table-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #dce4ef;
    overflow: hidden;
}

.download-history-table {
    width: 100%;
    border-collapse: collapse;
}

.download-history-table thead {
    background: #eef3fb;
}

.download-history-table th {
    padding: 20px;
    color: #5f6775;
    border-bottom: 1px solid #c6c6cd;
    background: #eff4ff;
    font-size: 16px;
    font-weight: 600;
}

.download-history-table td {
    padding: 14px 20px;
    border-top: 1px solid #e7edf5;
    vertical-align: middle;
}

.download-asset-cell {
    display: flex;
    align-items: center;
    gap: 18px;
}

.download-asset-thumb {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    background: #eef3fb;
    border: 1px solid #dbe3ef;
}

.download-asset-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-asset-thumb-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #7a8392;
}

.download-asset-name {
    color: #1b2840;
    font-size: 18px;
    font-weight: 600;
}

.download-format-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 4px;
    background: #dfe8fb;
    color: #1b2840;
    font-size: 15px;
    font-weight: 600;
}

.download-license-standard {
    background: #d9f6ee;
    color: #0f71a2;
}

.download-license-extended {
    background: #efe7ff;
    color: #6f2cff;
}

.download-license-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
}

.download-license-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    background: currentColor;
}

.download-date-text {
    color: #4f5665;
    font-size: 17px;
}

.download-action-download {
    color: #0f71a2;
    font-size: 22px;
}

.download-history-footer {
    padding: 20px 10px;
    border-top: 1px solid #e7edf5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f5665;
    font-weight: 600;
    background: #f9fbff;
}

/* =================================
    RESPONSIVE
================================= */

@media (max-width: 1199px) {
    .clipart-header-left {
        gap: 20px;
    }

    .clipart-hero-title {
        font-size: 48px;
    }

    .clipart-section-title {
        font-size: 32px;
    }

    .clipart-search-top {
        flex-direction: column;
        align-items: stretch;
    }

    /* .clipart-ai-btn{
        width:100%;
    } */

    .download-dashboard-layout {
        /* grid-template-columns:1fr; */
        display: flex;
        flex-direction: column;
    }

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

@media (max-width: 991px) {
    .clipart-header {
        height: auto;
        gap: 20px;
        padding: 10px 15px;
    }

    .clipart-header-left {
        gap: 10px;
    }

    .clipart-mobile-toggle {
        display: inline-block;
        font-size: 20px;
    }

    .clipart-logo img {
        height: 26px;
    }

    .clipart-header-right {
        gap: 12px;
    }

    /* Hide plan progress on tablet, too compact */
    .clipart-plan {
        display: none;
    }

    .clipart-sidebar-close {
        position: absolute;
        right: 10px;
        top: 15px;
        padding: 0px 7px;
        font-size: 20px;
        border-radius: 10px;
        border: 2px solid #006a61;
        cursor: pointer;
    }

    /* Mobile nav drawer */
    .clipart-menu {
        position: fixed;
        top: 57px;
        left: -400px;
        bottom: 0;
        background: #f8f9ff;
        flex-direction: column;
        width: 280px;
        align-items: flex-start;
        padding: 20px 15px;
        gap: 4px;
        opacity: 0;
        visibility: hidden;
        z-index: 1050;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.12);
        transition: all 0.3s ease-in-out;
    }

    .clipart-menu.active {
        left: 0;
        visibility: visible;
        opacity: 1;
    }

    .clipart-menu-link {
        width: 100%;
        padding: 12px 10px;
        border-radius: 8px;
        font-size: 15px;
    }

    .clipart-menu-link:hover {
        background: #eef3fb;
    }

    /* Backdrop overlay to close nav on tap outside */
    .clipart-nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 1040;
        background: rgba(0, 0, 0, 0.35);
    }

    .clipart-nav-backdrop.active {
        display: block;
    }

    .clipart-hero-title {
        font-size: 36px;
    }

    .clipart-hero-subtitle {
        font-size: 18px;
        margin-bottom: 28px;
    }

    /* Search bar stacks to column */
    .clipart-search-bar {
        flex-direction: column;
        align-items: stretch;
        border-radius: 12px;
    }

    .clipart-search-category {
        width: 100%;
        height: 48px;
        border-right: none;
        border-bottom: 1px solid #d9e0ea;
    }

    .clipart-search-input-wrapper {
        width: 100%;
        padding: 0 15px;
        border-bottom: 1px solid #d9e0ea;
    }

    .clipart-search-input {
        height: 48px;
    }

    .clipart-search-btn {
        width: 100%;
        height: 48px;
        border-radius: 0 0 8px 8px;
    }

    .clipart-section-title {
        font-size: 26px;
    }

    .clipart-section-subtitle {
        font-size: 15px;
    }

    .clipart-search-wrapper {
        flex-direction: column;
        height: auto;
    }

    .search-category-wrapper {
        width: 100%;
    }

    .clipart-search-input-area {
        width: 100%;
    }

    .download-collection-grid {
        grid-template-columns: 1fr;
    }

    .vector-main-grid {
        grid-template-columns: 1fr;
    }

    .clipart-gallery-grid {
        column-count: 2;
    }

    .vector-preview-image {
        min-height: auto;
    }

    /* Filter bar wraps nicely */
    .clipart-filter-bar {
        padding: 12px 15px;
        gap: 10px;
    }

    .clipart-section {
        padding: 20px 15px;
    }
}

@media (max-width: 767px) {

    /* Adjust menu top to match smaller header */
    .clipart-menu {
        top: 57px;
    }

    .clipart-hero-section {
        padding: 15px 12px;
    }

    /* Drop masonry to 1 column on phones */
    .clipart-gallery-grid {
        column-count: 1;
    }

    .clipart-section-title {
        font-size: 22px;
    }

    .clipart-section-subtitle {
        font-size: 14px;
    }

    .clipart-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 16px;
    }

    .clipart-filter-left {
        gap: 6px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .clipart-filter-btn {
        height: auto;
        padding: 6px 12px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .clipart-filter-bar {
        overflow-x: auto;
    }

    .clipart-load-btn {
        margin-top: 0;
        min-width: 100%;
    }

    .clipart-footer {
        margin-top: 10px;
    }

    /* Footer stack on mobile */
    .clipart-footer .row>div {
        margin-bottom: 16px;
    }

    .clipart-footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .vector-asset-page {
        padding: 20px 15px;
    }

    .vector-search-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .vector-search-box {
        height: auto;
        flex-wrap: wrap;
    }

    .vector-search-logo {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #dfe4ee;
        height: 60px;
        font-size: 14px;
    }

    .vector-search-category {
        font-size: 15px;
    }

    .vector-search-input {
        height: 60px;
        padding: 12px 10px;
    }

    .vector-search-btn {
        width: 100%;
        height: 40px;
    }

    .vector-preview-image {
        min-height: 300px;
    }

    .vector-related-grid {
        grid-template-columns: 1fr;
    }

    .vector-feedback-bar {
        flex-direction: column;
        gap: 14px;
        height: auto;
        padding: 18px;
        align-items: flex-start;
    }

    .search-results-section {
        padding: 15px 15px;
    }

    .search-results-top {
        flex-direction: column;
        gap: 5px;
    }

    .search-results-category {
        width: auto;
        padding: 0 5px;
        font-size: 14px;
        padding-right: 15px;
    }

    .search-results-category-icon {
        right: 5px;
        font-size: 12px;
    }

    .search-results-input-area {
        padding: 10px 10px;
    }

    .search-results-btn {
        width: 40px;
        font-size: 14px;
        padding: 10px;
    }

    .search-results-actions {
        gap: 10px;
        margin-left: 10px;
    }

    .clipart-ai-btn {
        font-size: 16px;
        height: 40px;
    }

    .clipart-gallery-page {
        padding: 20px 15px;
    }

    .clipart-gallery-title {
        font-size: 20px;
    }

    .clipart-related-wrapper {
        gap: 8px;
    }

    .clipart-related-title {
        font-size: 14px;
    }

    .clipart-related-tag {
        font-size: 14px;
        padding: 0 10px;
    }

    .clipart-gallery-filter-left button {
        padding: 10px 10px;
    }
}

@media (max-width: 575px) {
    .clipart-hero-section {
        padding: 10px 0;
    }

    .clipart-hero-card {
        padding: 30px 16px;
        min-height: auto;
        border-radius: 16px;
    }

    .clipart-hero-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .clipart-hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .clipart-hero-content {
        max-width: 100%;
    }

    .clipart-search-bar {
        border-radius: 8px;
    }

    .clipart-search-input {
        font-size: 15px;
    }

    .clipart-section {
        padding: 16px 12px;
    }

    .clipart-category-card {
        padding: 24px 16px;
    }

    .clipart-category-title {
        font-size: 18px;
    }

    .clipart-category-count {
        font-size: 14px;
    }

    .clipart-category-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .clipart-featured-title {
        font-size: 16px;
    }

    .clipart-footer {
        padding: 20px 15px;
    }

    .clipart-footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px 16px;
        margin-top: 12px;
    }

    .clipart-gallery-grid {
        column-count: 1;
    }

    .clipart-search-section {
        padding: 16px;
    }

    .download-dashboard-page {
        padding: 16px;
    }

    .download-section-title {
        font-size: 24px;
    }

    .download-section-header,
    .download-history-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}