/* ============================================ */
/* RESET & BASE                                 */
/* ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background: #f5f6fa;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1; }

a { color: #e67e22; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ============================================ */
/* HEADER                                       */
/* ============================================ */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span { color: #e67e22; }
.logo:hover { text-decoration: none; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: all 0.15s;
}
.nav-menu a:hover { background: #f5f6fa; color: #1a1a2e; text-decoration: none; }

.btn-register {
    background: #e67e22 !important;
    color: #fff !important;
    font-weight: 600 !important;
    margin-left: 4px;
}
.btn-register:hover { background: #d35400 !important; }

/* Nav Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.15s;
}
.nav-dropdown-btn:hover { background: #f5f6fa; color: #1a1a2e; }

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 200px;
    padding: 8px;
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    color: #333;
}
.nav-dropdown-menu a:hover { background: #f5f6fa; }
.nav-dropdown-menu hr { border: none; border-top: 1px solid #eee; margin: 6px 0; }

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: all 0.2s;
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid #e9ecef;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }
    .nav-menu.open { display: flex; }
    .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; }
    .nav-dropdown:hover .nav-dropdown-menu { display: none; }
    .nav-dropdown.open .nav-dropdown-menu { display: block; }
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.site-footer {
    background: #1a1a2e;
    color: #b0b8c1;
    padding: 50px 20px 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}
.footer-logo span { color: #e67e22; }
.footer-logo:hover { text-decoration: none; }

.footer-section h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    display: block;
    color: #888;
    font-size: 13px;
    padding: 4px 0;
    text-decoration: none;
    transition: color 0.15s;
}
.footer-section a:hover { color: #e67e22; text-decoration: none; }
.footer-section p { font-size: 13px; line-height: 1.7; color: #888; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 480px) {
    .footer-container { grid-template-columns: 1fr; }
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary { background: #e67e22; color: #fff; }
.btn-primary:hover { background: #d35400; text-decoration: none; color: #fff; }
.btn-outline { background: transparent; color: #e67e22; border: 2px solid #e67e22; }
.btn-outline:hover { background: #e67e22; color: #fff; text-decoration: none; }
.btn-large { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ============================================ */
/* HERO                                         */
/* ============================================ */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}
.hero-content h1 { font-size: 38px; margin-bottom: 12px; font-weight: 800; letter-spacing: -1px; }
.hero-content p { font-size: 17px; color: #b0b8c1; max-width: 500px; margin: 0 auto 30px; }

.hero-stats { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 28px; color: #e67e22; font-weight: 700; }
.hero-stat span { font-size: 13px; color: #888; }

.hero-featured { margin-top: 40px; }
.hero-featured h3 { color: #e67e22; margin-bottom: 16px; font-size: 15px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }

.featured-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.featured-card {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    width: 230px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); text-decoration: none; }
.featured-card img { width: 100%; height: 170px; object-fit: cover; }
.featured-info { padding: 12px 14px; }
.featured-info h4 { font-size: 14px; margin-bottom: 2px; }
.featured-info p { font-size: 12px; color: #888; margin-bottom: 4px; }
.featured-price { color: #e67e22; font-weight: 700; font-size: 15px; }

/* ============================================ */
/* GALLERY                                      */
/* ============================================ */
.gallery-section { padding: 30px 20px; max-width: 1200px; margin: 0 auto; }

.gallery-controls { margin-bottom: 20px; }
.search-form { display: flex; gap: 10px; margin-bottom: 14px; max-width: 450px; }
.search-input { flex: 1; padding: 11px 16px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 14px; font-family: inherit; }
.search-input:focus { outline: none; border-color: #e67e22; }
.search-btn { padding: 11px 18px; background: #e67e22; color: #fff; border: none; border-radius: 8px; cursor: pointer; font-size: 15px; }
.clear-search { display: flex; align-items: center; color: #999; font-size: 13px; }

.filter-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }

.category-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.category-filters a {
    padding: 7px 15px; border-radius: 20px; font-size: 13px; font-weight: 500;
    text-decoration: none; color: #555; background: #fff; border: 1px solid #e0e0e0; transition: all 0.15s;
}
.category-filters a:hover { border-color: #e67e22; color: #e67e22; text-decoration: none; }
.category-filters a.active { background: #e67e22; color: #fff; border-color: #e67e22; }

.sort-select { padding: 8px 12px; border: 1px solid #e0e0e0; border-radius: 6px; font-size: 13px; font-family: inherit; cursor: pointer; }

.results-count { margin-bottom: 14px; font-size: 13px; color: #888; }

/* ============================================ */
/* ARTWORK GRID                                 */
/* ============================================ */
.artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.artwork-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.artwork-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); text-decoration: none; }

.artwork-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f0f0;
}
.artwork-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.artwork-card:hover .artwork-card-image img { transform: scale(1.04); }

.artwork-card-info { padding: 14px; }
.artwork-card-info h3 { font-size: 15px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-artist { font-size: 13px; color: #666; margin-bottom: 8px; }

.card-footer { display: flex; justify-content: space-between; align-items: center; }
.card-price { font-size: 17px; font-weight: 700; color: #e67e22; }
.card-views { font-size: 11px; color: #999; }

.card-badge {
    position: absolute; top: 10px; left: 10px;
    padding: 4px 10px; border-radius: 20px; font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.card-badge-promoted { background: #ffeaa7; color: #d35400; }

.wishlist-btn {
    position: absolute; top: 10px; right: 10px;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.9); border: none;
    font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; color: #e74c3c;
}
.wishlist-btn:hover { background: #e74c3c; color: #fff; }

.verified-badge {
    display: inline-block; width: 16px; height: 16px;
    background: #27ae60; color: #fff; border-radius: 50%;
    font-size: 10px; text-align: center; line-height: 16px; margin-left: 4px; vertical-align: middle;
}

/* For the detail page wishlist button (full-width) */
.artwork-actions .wishlist-btn {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: transparent;
    border: 2px solid #ddd;
    font-size: 16px;
    padding: 12px 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #333;
    font-weight: 500;
    gap: 8px;
}

.artwork-actions .wishlist-btn:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.artwork-actions .wishlist-btn.active {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
    border-color: #e74c3c;
}

.artwork-actions .wishlist-btn.active:hover {
    background: rgba(231, 76, 60, 0.15);
}

.artwork-actions .wishlist-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* For artwork cards (floating heart icon) */
.artwork-card .wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #e74c3c;
    z-index: 5;
}

.artwork-card .wishlist-btn:hover {
    background: #e74c3c;
    color: #fff;
}

.artwork-card .wishlist-btn.active {
    background: #e74c3c;
    color: #fff;
}

/* ============================================ */
/* PAGINATION                                   */
/* ============================================ */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 30px; }
.page-link {
    padding: 8px 14px; border: 1px solid #e0e0e0; border-radius: 6px;
    text-decoration: none; color: #555; font-size: 14px; transition: all 0.15s;
}
.page-link:hover { background: #f5f6fa; text-decoration: none; }
.page-link.active { background: #e67e22; color: #fff; border-color: #e67e22; }

/* ============================================ */
/* AUTH PAGES                                   */
/* ============================================ */
.auth-section { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-container { background: #fff; border-radius: 14px; box-shadow: 0 2px 20px rgba(0,0,0,0.06); padding: 40px; width: 100%; max-width: 480px; }
.auth-header { text-align: center; margin-bottom: 28px; }
.auth-header h1 { font-size: 26px; color: #1a1a2e; margin-bottom: 8px; }
.auth-header p { color: #888; font-size: 14px; }

.auth-form .form-group { margin-bottom: 18px; }
.auth-form label { display: block; font-weight: 600; margin-bottom: 5px; font-size: 13px; color: #444; }
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"],
.auth-form textarea,
.auth-form select {
    width: 100%; padding: 11px 14px; border: 2px solid #e0e0e0; border-radius: 8px;
    font-size: 14px; font-family: inherit; transition: border-color 0.15s;
}
.auth-form input:focus, .auth-form textarea:focus, .auth-form select:focus { outline: none; border-color: #e67e22; }
.input-error { border-color: #e74c3c !important; }
.error-text { color: #e74c3c; font-size: 12px; display: block; margin-top: 3px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.login-type-toggle {
    display: flex; gap: 0; margin-bottom: 22px;
    border: 2px solid #e0e0e0; border-radius: 10px; overflow: hidden;
}
.toggle-option {
    flex: 1; text-align: center; padding: 12px; cursor: pointer; font-weight: 600;
    font-size: 14px; color: #888; background: #fafafa; transition: all 0.15s;
}
.toggle-option.active { background: #e67e22; color: #fff; }
.toggle-option input { display: none; }

.checkbox-label { display: flex !important; align-items: flex-start; gap: 10px; font-weight: normal !important; font-size: 13px; color: #666; cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: auto; margin-top: 2px; accent-color: #e67e22; }

.auth-footer { text-align: center; margin-top: 22px; padding-top: 18px; border-top: 1px solid #eee; }
.auth-footer a { font-weight: 600; }

/* ============================================ */
/* ALERTS                                       */
/* ============================================ */
.alert { padding: 14px 16px; border-radius: 8px; margin-bottom: 18px; font-size: 14px; }
.alert-success { background: #eafaf1; color: #1e8449; border: 1px solid #c3e6cb; }
.alert-error { background: #fdeaea; color: #c0392b; border: 1px solid #f5c6cb; }
.alert-warning { background: #fef9e7; color: #b8860b; border: 1px solid #f9e79f; }

/* ============================================ */
/* ARTWORK DETAIL PAGE                          */
/* ============================================ */
.artwork-detail-page, .artist-profile-page { max-width: 1100px; margin: 0 auto; padding: 20px; }
.breadcrumb { margin-bottom: 18px; font-size: 13px; color: #999; }
.breadcrumb a { color: #e67e22; }
.breadcrumb span { margin: 0 4px; }

.artwork-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.artwork-images-column { position: sticky; top: 84px; }
.main-image-container { position: relative; border-radius: 12px; overflow: hidden; background: #f0f0f0; aspect-ratio: 1; }
.main-artwork-image { width: 100%; height: 100%; object-fit: cover; }
.promo-badge-large { position: absolute; top: 14px; left: 14px; background: #ffeaa7; color: #d35400; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 700; }
.thumbnail-strip { display: flex; gap: 8px; margin-top: 12px; overflow-x: auto; }
.thumbnail { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; cursor: pointer; border: 2px solid transparent; flex-shrink: 0; }
.thumbnail.active, .thumbnail:hover { border-color: #e67e22; }

.artwork-title { font-size: 28px; font-weight: 700; margin-bottom: 16px; color: #1a1a2e; }

.artist-card {
    display: flex; gap: 14px; align-items: center; padding: 16px;
    background: #f8f9fa; border-radius: 10px; margin-bottom: 20px;
}
.artist-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.artist-name-link { font-weight: 600; color: #333; font-size: 16px; }
.artist-location { font-size: 13px; color: #888; }
.artist-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.verify-badge { padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.badge-identity { background: #d5f5e3; color: #1e8449; }
.badge-artist { background: #e8daef; color: #6c3483; }
.badge-trusted { background: #fef3cd; color: #b8860b; }
.badge-featured { background: #ffeaa7; color: #d35400; }
.badge-platinum { background: #d6eaf8; color: #2471a3; }

.price-section { margin-bottom: 20px; }
.artwork-price { font-size: 34px; font-weight: 800; color: #e67e22; }
.promo-timer { display: block; font-size: 12px; color: #888; }

.artwork-meta-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    padding: 16px; background: #f8f9fa; border-radius: 10px; margin-bottom: 20px;
}
.meta-item strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #999; }
.meta-item span { font-size: 14px; }

.artwork-description { margin-bottom: 20px; }
.artwork-description h3 { margin-bottom: 8px; }
.artwork-description p { font-size: 14px; color: #555; line-height: 1.7; }

.artwork-actions { display: flex; gap: 12px; margin-bottom: 20px; }

.trust-section { background: #fef9e7; padding: 16px; border-radius: 10px; border: 1px solid #f9e79f; }
.trust-item { font-size: 13px; color: #555; padding: 3px 0; }

/* ============================================ */
/* ARTIST PROFILE PAGE                          */
/* ============================================ */
.artist-profile-header { display: flex; gap: 30px; margin-bottom: 40px; flex-wrap: wrap; }
.artist-profile-avatar { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: #f0f0f0; }
.artist-profile-info h1 { font-size: 28px; margin-bottom: 4px; }
.artist-location-text { color: #888; font-size: 14px; margin-bottom: 10px; }
.artist-bio-text { margin: 14px 0; font-size: 14px; color: #555; line-height: 1.7; }
.artist-stats-row { display: flex; gap: 28px; margin-top: 16px; flex-wrap: wrap; }
.artist-stat-item { text-align: center; }
.artist-stat-item strong { display: block; font-size: 20px; color: #e67e22; }
.artist-stat-item span { font-size: 11px; color: #888; }
.artist-artworks-section, .artist-reviews, .more-from-artist { margin-bottom: 40px; }
.artist-artworks-section h2, .artist-reviews h2, .more-from-artist h2 { font-size: 20px; margin-bottom: 16px; }

/* ============================================ */
/* REVIEWS                                      */
/* ============================================ */
.review-card { padding: 16px; border: 1px solid #e9ecef; border-radius: 10px; margin-bottom: 12px; }
.review-header { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; font-size: 13px; }
.review-stars { color: #f39c12; }
.review-date { font-size: 11px; color: #888; }
.review-comment { font-size: 14px; color: #555; }

/* ============================================ */
/* EMPTY STATES                                 */
/* ============================================ */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: #888; margin-bottom: 20px; }
.empty-text { color: #999; text-align: center; padding: 30px; }

/* ============================================ */
/* STATUS BADGES                                */
/* ============================================ */
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; text-transform: capitalize; }
.status-pending_payment { background: #fef9e7; color: #b8860b; }
.status-delivered { background: #d5f5e3; color: #1e8449; }
.status-published { background: #d5f5e3; color: #1e8449; }
.status-promoting { background: #ffeaa7; color: #d35400; }
.status-draft { background: #f0f0f0; color: #888; }
.status-processing { background: #eaf2f8; color: #2471a3; }
.status-shipped { background: #f5eef8; color: #7d3c98; }
.status-cancelled { background: #fdeaea; color: #c0392b; }

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 26px; }
    .artwork-detail-layout { grid-template-columns: 1fr; }
    .artwork-images-column { position: static; }
    .artist-profile-header { flex-direction: column; align-items: center; text-align: center; }
    .artist-stats-row { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
}

.artist-rating-stars {
    font-size: 11px;
    color: #f39c12;
    font-weight: 600;
    margin-left: 4px;
}

/* ============================================ */
/* HERO REDESIGN                                */
/* ============================================ */

.hero {
    background: linear-gradient(160deg, #0a0a1a 0%, #12122a 30%, #1a1a3e 60%, #0d0d28 100%);
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background Shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}
.shape-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #e67e22, transparent);
    top: -200px; right: -100px;
}
.shape-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #3498db, transparent);
    bottom: -100px; left: -50px;
}
.shape-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #e67e22, transparent);
    top: 40%; left: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Text */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,126,34,0.15);
    border: 1px solid rgba(230,126,34,0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #e67e22;
    margin-bottom: 24px;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: #27ae60;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}
.hero-highlight {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 17px;
    color: #a0a8c0;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: #e67e22;
    color: #fff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(230,126,34,0.3);
}
.btn-hero-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230,126,34,0.4);
    text-decoration: none;
    color: #fff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    text-decoration: none;
    color: #fff;
}

/* ============================================ */
/* HERO - MOBILE FIRST, DESKTOP ENHANCED        */
/* ============================================ */

.hero-full {
    width: 100%;
    background: #0a0a16;
    position: relative;
    overflow: hidden;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}
.blob-1 {
    width: 250px; height: 250px;
    background: #e67e22;
    top: 5%; right: -60px;
}
.blob-2 {
    width: 200px; height: 200px;
    background: #8e44ad;
    bottom: 30%; left: -60px;
}
.blob-3 {
    width: 180px; height: 180px;
    background: #2ecc71;
    top: 40%; left: 40%;
}
.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ============================================ */
/* MOBILE LAYOUT (default)                      */
/* ============================================ */

.hero-content-full {
    text-align: center;
    padding: 40px 20px 24px;
    position: relative;
    z-index: 1;
}

.hero-badge-row { margin-bottom: 14px; }

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,126,34,0.15);
    border: 1px solid rgba(230,126,34,0.25);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #e67e22;
    letter-spacing: 0.3px;
}
.badge-dot {
    width: 6px; height: 6px;
    background: #27ae60;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-heading {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.hero-heading-accent {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 14px;
    color: #8890a8;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 10px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 16px;
    margin-bottom: 20px;
}

.cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 24px;
    background: #e67e22;
    color: #fff;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.15s;
}
.cta-primary:active { transform: scale(0.97); background: #d35400; }

.cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: rgba(255,255,255,0.04);
    color: #ddd;
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}
.cta-secondary:active { transform: scale(0.97); background: rgba(255,255,255,0.06); }

/* Trust row */
.hero-trust-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.trust-chip {
    font-size: 11px;
    color: #777;
    background: rgba(255,255,255,0.03);
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Stats */
.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.hero-stat-num {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.hero-stat-lbl {
    font-size: 10px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================ */
/* CAROUSEL - FEATURED ARTWORKS ONLY            */
/* ============================================ */

.hero-carousel-full {
    width: 100%;
    position: relative;
    padding: 0 0 20px 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 10px;
    width: max-content;
    will-change: transform;
    padding: 0 16px;
}

.carousel-card {
    flex-shrink: 0;
    width: 160px;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s;
}
.carousel-card:active { transform: scale(0.96); }

.carousel-card-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1a1a2e;
    border-radius: 14px;
}
.carousel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

/* Overlay with gradient and text */
.carousel-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.05) 70%,
        transparent 100%
    );
    padding: 12px;
}

.carousel-featured-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e67e22;
    color: #fff;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-card-body h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}
.carousel-card-body p {
    font-size: 11px;
    color: #ccc;
    margin: 0;
}
.verified-dot {
    color: #27ae60;
    font-size: 7px;
    vertical-align: middle;
    margin-left: 3px;
}

/* Fade edges */
.carousel-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 2;
}
.carousel-fade-left {
    left: 0;
    background: linear-gradient(to right, #0a0a16 20%, transparent);
}
.carousel-fade-right {
    right: 0;
    background: linear-gradient(to left, #0a0a16 20%, transparent);
}

/* ============================================ */
/* DESKTOP CAROUSEL - BIGGER IMAGES             */
/* ============================================ */
@media (min-width: 768px) {
    .hero-carousel-full {
        max-width: 500px;
        padding: 0;
        flex-shrink: 0;
    }
    
    .carousel-track {
        gap: 16px;
        padding: 0 20px;
    }
    
    .carousel-card {
        width: 280px;
        border-radius: 18px;
    }
    
    .carousel-card-img {
        border-radius: 18px;
        aspect-ratio: 3/4;
    }
    
    .carousel-card-overlay {
        padding: 20px;
    }
    
    .carousel-featured-tag {
        top: 14px;
        left: 14px;
        padding: 5px 14px;
        font-size: 11px;
    }
    
    .carousel-card-body h4 {
        font-size: 16px;
    }
    
    .carousel-card-body p {
        font-size: 12px;
    }
    
    .carousel-card:hover {
        transform: translateY(-4px);
    }
    
    .carousel-card:hover .carousel-card-img img {
        transform: scale(1.05);
    }
}

@media (min-width: 1024px) {
    .hero-carousel-full {
        max-width: 600px;
    }
    
    .carousel-card {
        width: 340px;
    }
    
    .carousel-card-img {
        aspect-ratio: 3/4;
    }
    
    .carousel-card-body h4 {
        font-size: 18px;
    }
}

/* ============================================ */
/* CATEGORIES - MOBILE                          */
/* ============================================ */

.hero-categories {
    width: 100%;
    padding: 8px 0 24px;
    position: relative;
    z-index: 1;
}
.categories-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 16px;
}
.categories-scroll::-webkit-scrollbar { display: none; }

.category-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: #bbb;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s;
}
.category-pill:active {
    background: rgba(230,126,34,0.15);
    border-color: rgba(230,126,34,0.3);
    color: #e67e22;
}
.pill-count {
    background: rgba(255,255,255,0.06);
    padding: 2px 7px;
    border-radius: 8px;
    font-size: 10px;
    color: #777;
}

/* ============================================ */
/* DESKTOP - 768px+                             */
/* ============================================ */
@media (min-width: 768px) {
    .hero-full {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        min-height: 85vh;
        padding: 60px 40px;
        gap: 50px;
    }
    
    .hero-content-full {
        text-align: left;
        padding: 0;
        flex-shrink: 0;
        max-width: 460px;
    }
    
    .hero-heading {
        font-size: 44px;
    }
    
    .hero-sub {
        padding: 0;
        font-size: 15px;
    }
    
    .hero-cta {
        flex-direction: row;
        padding: 0;
    }
    
    .hero-trust-row {
        justify-content: flex-start;
    }
    
    .hero-stats-row {
        justify-content: flex-start;
    }
    
    .hero-carousel-full {
        max-width: 440px;
        padding: 0;
        flex-shrink: 0;
    }
    
    .carousel-card {
        width: 180px;
    }
    
    .carousel-card:hover {
        transform: translateY(-3px);
        border-color: rgba(255,255,255,0.12);
    }
    
    .hero-categories {
        width: 100%;
        padding: 0 40px 40px;
    }
    
    .categories-scroll {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
        padding: 0;
    }
    
    .category-pill:hover {
        background: rgba(230,126,34,0.12);
        border-color: rgba(230,126,34,0.25);
        color: #e67e22;
    }
}

@media (min-width: 1024px) {
    .hero-heading {
        font-size: 52px;
    }
    
    .hero-carousel-full {
        max-width: 520px;
    }
    
    .carousel-card {
        width: 220px;
    }
}

/* Remove conflicting old styles */
.hero, .hero-stats, .hero-featured, .featured-grid, .featured-card,
.hero-artistic, .hero-bg-shapes, .hero-container, .hero-text, .hero-visual,
.hero-artwork-grid, .hero-artwork-card, .hero-floating-stat, .scroll-indicator {
    display: none !important;
}

/* ============================================ */
/* DESKTOP BREAKPOINT                           */
/* ============================================ */
@media (min-width: 768px) {
    .hero-full {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 60px 40px 0;
        min-height: 90vh;
    }
    
    .hero-content-full {
        text-align: left;
        padding: 0;
        max-width: 500px;
        margin-right: 40px;
    }
    
    .hero-heading {
        font-size: 44px;
    }
    
    .hero-sub {
        font-size: 16px;
    }
    
    .hide-mobile { display: inline; }
    
    .hero-cta {
        flex-direction: row;
        padding: 0;
    }
    
    .hero-trust-row {
        justify-content: flex-start;
    }
    
    .hero-stats-row {
        justify-content: flex-start;
        gap: 32px;
    }
    
    .hero-badge-row {
        text-align: left;
    }
    
    .hero-carousel-full {
        max-width: 450px;
        margin: 0;
    }
    
    .carousel-card {
        width: 180px;
    }
    
    .hero-categories {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .categories-scroll {
        overflow-x: visible;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-heading {
        font-size: 52px;
    }
    
    .hero-carousel-full {
        max-width: 500px;
    }
    
    .carousel-card {
        width: 220px;
    }
}

/* Remove any old hero styles that might conflict */
.hero, .hero-stats, .hero-featured, .featured-grid, .featured-card,
.hero-artistic, .hero-bg-shapes, .hero-container, .hero-text, .hero-visual,
.hero-artwork-grid, .hero-artwork-card, .hero-floating-stat, .scroll-indicator {
    display: none;
}

.wishlist-btn.active {
    color: #e74c3c !important;
    background: #fff !important;
}

/* Notification Bell */
.notif-bell {
    position: relative;
    font-size: 18px;
    padding: 8px 10px !important;
    text-decoration: none !important;
}
.notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================ */
/* CURATED GALLERY HOMEPAGE STYLES               */
/* ============================================ */

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: #888;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================ */
/* FEATURED COLLECTIONS                         */
/* ============================================ */

.collections-section {
    padding: 80px 0;
    background: #fff;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

.collection-card {
    text-decoration: none;
    color: #333;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    text-decoration: none;
}

.collection-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f0f0;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.collection-card:hover .collection-image img {
    transform: scale(1.08);
}

.collection-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-explore {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 24px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 30px;
    transition: all 0.2s;
}

.collection-card h3 {
    font-size: 17px;
    font-weight: 600;
    padding: 16px 18px 4px;
    color: #1a1a2e;
}

.collection-card p {
    font-size: 13px;
    color: #888;
    padding: 0 18px 16px;
    line-height: 1.5;
}

/* ============================================ */
/* ARTIST SPOTLIGHT                             */
/* ============================================ */

.artist-spotlight {
    padding: 80px 0;
    background: #fafbfc;
}

.spotlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.spotlight-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.spotlight-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.spotlight-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-avatar-wrapper {
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background: #fff;
}

.spotlight-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a2e;
}

.spotlight-location {
    font-size: 14px;
    color: #888;
    margin-bottom: 14px;
}

.spotlight-stats {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.spotlight-quote {
    font-size: 16px;
    color: #555;
    font-style: italic;
    line-height: 1.7;
    padding: 16px 20px;
    border-left: 3px solid #e67e22;
    background: #fff;
    border-radius: 0 10px 10px 0;
    margin: 16px 0;
}

/* ============================================ */
/* HOW IT WORKS                                 */
/* ============================================ */

.how-it-works {
    padding: 80px 0;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: #fafbfc;
    border-radius: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #e67e22;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.step-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* ============================================ */
/* TESTIMONIALS                                 */
/* ============================================ */

.testimonials-section {
    padding: 80px 0;
    background: #fafbfc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-stars {
    color: #f39c12;
    font-size: 16px;
    margin-bottom: 12px;
}

.testimonial-card blockquote {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 16px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: #333;
}

.testimonial-author span {
    font-size: 12px;
    color: #888;
}

/* ============================================ */
/* NEWSLETTER                                   */
/* ============================================ */

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.newsletter-content p {
    font-size: 15px;
    color: #b0b8c1;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: rgba(255,255,255,0.06);
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    border-color: #e67e22;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    padding: 14px 24px;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #d35400;
}

.newsletter-note {
    font-size: 12px;
    color: #666;
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 24px;
    }
    
    .spotlight-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .spotlight-avatar-wrapper {
        width: 60px;
        height: 60px;
        bottom: -20px;
        right: 20px;
    }
    
    .spotlight-info h3 {
        font-size: 22px;
    }
    
    .collections-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .collections-section,
    .artist-spotlight,
    .how-it-works,
    .testimonials-section,
    .newsletter-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================ */
/* SEARCH BAR IN NAV                            */
/* ============================================ */

.nav-search {
    display: flex;
    align-items: center;
}

.nav-search-form {
    display: flex;
    align-items: center;
    background: #f5f6fa;
    border-radius: 20px;
    padding: 5px 5px 5px 14px;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.nav-search-form:focus-within {
    background: #fff;
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230,126,34,0.08);
}

.nav-search-input {
    border: none;
    background: transparent;
    padding: 5px 6px;
    font-size: 13px;
    width: 140px;
    outline: none;
    font-family: inherit;
    color: #333;
}

.nav-search-input::placeholder {
    color: #aaa;
}

.nav-search-btn {
    background: #e67e22;
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-search-btn:hover {
    background: #d35400;
}

@media (max-width: 900px) {
    .nav-search {
        width: 100%;
        padding: 4px 0;
    }
    .nav-search-form {
        width: 100%;
    }
    .nav-search-input {
        width: 100%;
        flex: 1;
    }
}

/* City Filter Styles */
.filter-options input[type="text"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.filter-options input[type="text"]:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

#cityOptions {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
}

#cityOptions::-webkit-scrollbar {
    width: 4px;
}

#cityOptions::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

#cityOptions::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

#cityOptions::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.filter-option {
    display: block;
    padding: 6px 12px;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    border-radius: 4px;
    transition: background 0.15s;
}

.filter-option:hover {
    background: #f0f0f0;
}

.filter-option.active {
    background: #e67e22;
    color: #fff;
}

.hero-stats-row {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-stat-num {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.hero-stat-lbl {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================ */
/* ARTMARKET HOMEPAGE — AM DESIGN SYSTEM        */
/* ============================================ */

/* Container */
.am-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Kicker */
.am-section-kicker {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e67e22;
    margin-bottom: 12px;
    display: block;
}

/* Section Heading */
.am-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}
.am-section-heading h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
.am-section-heading h2 span {
    color: #e67e22;
}
.am-section-heading p {
    font-size: 15px;
    color: #888;
    margin-top: 8px;
}
.am-section-heading.am-centered {
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.am-text-link {
    font-size: 14px;
    font-weight: 600;
    color: #e67e22;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.am-text-link:hover {
    text-decoration: underline;
}

/* Buttons */
.am-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    font-family: inherit;
    border: none;
}
.am-btn-primary {
    background: #e67e22;
    color: #fff;
    box-shadow: 0 4px 15px rgba(230,126,34,0.3);
}
.am-btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,126,34,0.4);
    text-decoration: none;
    color: #fff;
}
.am-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.15);
}
.am-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    text-decoration: none;
    color: #fff;
}
.am-btn-light {
    background: #fff;
    color: #1a1a2e;
}
.am-btn-light:hover {
    background: #f0f0f0;
    text-decoration: none;
    color: #1a1a2e;
}
.am-btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
}
.am-btn-outline-light:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
    text-decoration: none;
    color: #fff;
}

/* ============================================ */
/* HERO */
/* ============================================ */
.am-hero {
    width: 100%;
    background: #0a0a16;
    position: relative;
    overflow: hidden;
    padding: 60px 0 40px;
}
.am-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230,126,34,0.08), transparent 70%);
    top: -150px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}
.am-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(142,68,173,0.05), transparent 70%);
    bottom: -80px;
    left: -80px;
    border-radius: 50%;
    pointer-events: none;
}

.am-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.am-hero-copy {
    position: relative;
    z-index: 1;
}

.am-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,126,34,0.12);
    border: 1px solid rgba(230,126,34,0.2);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #e67e22;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}
.am-eyebrow-dot {
    width: 7px;
    height: 7px;
    background: #27ae60;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.am-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}
.am-hero-title span {
    color: #e67e22;
}
.am-hero-title strong {
    color: #fff;
}

.am-hero-description {
    font-size: 16px;
    color: #9098b0;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 460px;
}

.am-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.am-trust-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.am-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
}
.am-trust-icon {
    color: #27ae60;
    font-weight: 700;
    font-size: 14px;
}

.am-hero-proof {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.am-proof-item {
    text-align: center;
}
.am-proof-item strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.am-proof-item span {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.am-rating-star {
    color: #f39c12;
    margin-left: 2px;
    font-size: 16px;
}
.am-proof-divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
}

/* Hero Gallery */
.am-hero-gallery {
    position: relative;
}
.am-gallery-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.am-live-dot {
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.am-gallery-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}
.am-gallery-track::-webkit-scrollbar { display: none; }

.am-featured-art {
    flex-shrink: 0;
    scroll-snap-align: start;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}
.am-featured-art.is-primary {
    width: 280px;
}
.am-featured-art:not(.is-primary) {
    width: 200px;
    opacity: 0.8;
}
.am-featured-art:hover {
    transform: translateY(-4px);
    text-decoration: none;
}

.am-featured-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1a1a2e;
    border-radius: 16px;
}
.am-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.am-featured-art:hover .am-featured-image img {
    transform: scale(1.06);
}

.am-featured-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.am-featured-top {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.am-featured-label {
    background: #e67e22;
    color: #fff;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.am-verified-mark {
    width: 22px;
    height: 22px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.am-featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}
.am-featured-info h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.am-featured-info p {
    font-size: 12px;
    color: #ccc;
    margin: 0;
}
.am-verified-text {
    background: rgba(39,174,96,0.3);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 10px;
    color: #fff;
    margin-left: 6px;
}

.am-gallery-scroll-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
    margin-top: 12px;
    justify-content: flex-end;
}
.am-scroll-arrow {
    animation: scrollHint 1.5s infinite;
}
@keyframes scrollHint {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(4px); opacity: 0.5; }
}

/* ============================================ */
/* POSITIONING STRIP */
/* ============================================ */
.am-positioning-strip {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}
.am-positioning-strip .am-container {
    display: flex;
    align-items: center;
    padding: 30px 20px;
    gap: 30px;
    flex-wrap: wrap;
}
.am-positioning-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}
.am-positioning-number {
    font-size: 28px;
    font-weight: 800;
    color: #e0e0e0;
}
.am-positioning-item strong {
    display: block;
    font-size: 15px;
    color: #1a1a2e;
}
.am-positioning-item span {
    font-size: 13px;
    color: #888;
}
.am-positioning-line {
    width: 1px;
    height: 40px;
    background: #e9ecef;
}

/* ============================================ */
/* CATEGORY SECTION */
/* ============================================ */
.am-category-section {
    padding: 60px 0;
    background: #fff;
}
.am-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}
.am-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: #f8f9fa;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
    position: relative;
}
.am-category-card:hover {
    background: #fff;
    border-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    text-decoration: none;
}
.am-category-icon { font-size: 28px; }
.am-category-name { font-size: 14px; font-weight: 600; color: #333; }
.am-category-count { font-size: 11px; color: #888; }
.am-category-arrow {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 14px;
    color: #ccc;
    opacity: 0;
    transition: opacity 0.2s;
}
.am-category-card:hover .am-category-arrow { opacity: 1; color: #e67e22; }

/* ============================================ */
/* TRUST SECTION */
/* ============================================ */
.am-trust-section {
    padding: 60px 0;
    background: #fafbfc;
}
.am-trust-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.am-trust-intro h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
}
.am-trust-intro p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}
.am-trust-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.am-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.am-feature-number {
    font-size: 24px;
    font-weight: 800;
    color: #e0e0e0;
    flex-shrink: 0;
    width: 36px;
}
.am-feature h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}
.am-feature p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* ============================================ */
/* ARTIST SECTION */
/* ============================================ */
.am-artist-section {
    padding: 60px 0;
    background: #1a1a2e;
    color: #fff;
}
.am-artist-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.am-artist-copy h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
}
.am-artist-copy h2 span { color: #e67e22; }
.am-artist-copy p {
    font-size: 15px;
    color: #b0b8c1;
    line-height: 1.7;
    margin-bottom: 20px;
}
.am-artist-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.am-artist-benefits div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ccc;
}
.am-artist-benefits div span { color: #27ae60; font-weight: 700; }
.am-artist-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.am-artist-visual {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.am-artist-center {
    text-align: center;
    z-index: 2;
}
.am-artist-center-mark {
    display: block;
    width: 60px;
    height: 60px;
    background: #e67e22;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    line-height: 60px;
    margin: 0 auto 8px;
}
.am-artist-center strong { display: block; font-size: 16px; }
.am-artist-center small { font-size: 11px; color: #888; }
.am-artist-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
}
.am-orbit-1 { width: 280px; height: 280px; }
.am-orbit-2 { width: 380px; height: 380px; }

.am-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    backdrop-filter: blur(8px);
}
.am-floating-card span { font-size: 18px; }
.am-floating-card strong { display: block; font-size: 13px; color: #fff; }
.am-floating-card small { color: #888; }
.am-floating-card-1 { top: 10px; left: 10px; }
.am-floating-card-2 { top: 30px; right: 0; }
.am-floating-card-3 { bottom: 20px; left: 40px; }

/* ============================================ */
/* FLYWHEEL */
/* ============================================ */
.am-flywheel-section {
    padding: 60px 0;
    background: #fff;
}
.am-flywheel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 30px 0;
}
.am-flywheel-step {
    text-align: center;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    min-width: 90px;
}
.am-flywheel-step span {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 4px;
}
.am-flywheel-step strong { display: block; font-size: 14px; color: #1a1a2e; }
.am-flywheel-step small { font-size: 11px; color: #888; }
.am-flywheel-connector { font-size: 20px; color: #ccc; }
.am-flywheel-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}
.am-flywheel-loop { color: #e67e22; margin-right: 8px; }

/* ============================================ */
/* MARKETPLACE */
/* ============================================ */
.am-marketplace-section {
    padding: 60px 0;
    background: #fafbfc;
}
.am-marketplace-heading {
    margin-bottom: 30px;
}
.am-marketplace-heading h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
}
.am-marketplace-heading h2 span { color: #e67e22; }
.am-marketplace-heading p { font-size: 15px; color: #888; margin-top: 8px; }

.am-marketplace-controls {
    margin-bottom: 24px;
}
.am-search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}
.am-search-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.am-search-icon {
    position: absolute;
    left: 14px;
    color: #aaa;
    pointer-events: none;
}
.am-search-input {
    width: 100%;
    padding: 12px 40px 12px 42px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
}
.am-search-input:focus { outline: none; border-color: #e67e22; }
.am-search-clear {
    position: absolute;
    right: 12px;
    color: #aaa;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}
.am-search-button {
    padding: 12px 20px;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}
.am-search-button:hover { background: #d35400; }

.am-filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.am-category-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.am-category-filters a {
    padding: 7px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #555;
    background: #fff;
    border: 1px solid #e0e0e0;
}
.am-category-filters a:hover { border-color: #e67e22; color: #e67e22; }
.am-category-filters a.active { background: #e67e22; color: #fff; border-color: #e67e22; }
.am-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}
.am-sort-select {
    padding: 7px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
}

.am-artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.am-artwork-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.am-artwork-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.am-artwork-link { text-decoration: none; color: #333; display: block; }
.am-artwork-link:hover { text-decoration: none; }
.am-artwork-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f0f0;
}
.am-artwork-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.am-artwork-card:hover .am-artwork-image img { transform: scale(1.05); }
.am-card-featured {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e67e22;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.am-card-verified {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(39,174,96,0.9);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.am-artwork-info { padding: 14px 16px; }
.am-artwork-category { font-size: 11px; color: #e67e22; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.am-artwork-info h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.am-artwork-artist { font-size: 12px; color: #888; margin-bottom: 8px; }
.am-verified-badge { color: #27ae60; font-size: 10px; margin-left: 3px; }
.am-artwork-footer { display: flex; justify-content: space-between; align-items: center; }
.am-artwork-price { font-size: 17px; font-weight: 700; color: #e67e22; }
.am-artwork-rating { font-size: 12px; color: #f39c12; font-weight: 600; }
.am-artwork-rating span { margin-right: 1px; }

.am-wishlist-btn {
    position: absolute;
    top: 44px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    z-index: 2;
    transition: all 0.2s;
}
.am-wishlist-btn:hover { background: #e74c3c; color: #fff; }
.am-wishlist-btn.active { background: #fff; color: #e74c3c; }

.am-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
}
.am-page-link, .am-page-arrow {
    padding: 8px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: all 0.15s;
}
.am-page-link:hover, .am-page-arrow:hover { background: #f5f6fa; }
.am-page-link.active { background: #e67e22; color: #fff; border-color: #e67e22; }

.am-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}
.am-empty-icon { font-size: 48px; margin-bottom: 12px; }

/* ============================================ */
/* BUYER CTA */
/* ============================================ */
.am-buyer-cta {
    padding: 60px 0;
    background: #1a1a2e;
    color: #fff;
}
.am-buyer-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.am-buyer-cta-inner h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.am-buyer-cta-inner p { font-size: 15px; color: #b0b8c1; }

/* ============================================ */
/* FINAL ARTIST CTA */
/* ============================================ */
.am-final-artist-cta {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}
.am-final-artist-inner {
    max-width: 600px;
    margin: 0 auto;
}
.am-final-mark { font-size: 32px; color: #e67e22; display: block; margin-bottom: 12px; }
.am-final-artist-inner h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.am-final-artist-inner h2 span { color: #e67e22; }
.am-final-artist-inner p { font-size: 15px; color: #888; margin-bottom: 24px; }

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */
@media (max-width: 900px) {
    .am-hero-inner { grid-template-columns: 1fr; gap: 30px; }
    .am-hero-title { font-size: 32px; }
    .am-trust-layout { grid-template-columns: 1fr; }
    .am-artist-card { grid-template-columns: 1fr; }
    .am-artist-visual { height: 250px; }
    .am-positioning-strip .am-container { flex-direction: column; align-items: flex-start; gap: 20px; }
    .am-positioning-line { width: 100%; height: 1px; }
    .am-featured-art.is-primary { width: 220px; }
    .am-featured-art:not(.is-primary) { width: 160px; }
    .am-flywheel { gap: 4px; }
    .am-flywheel-step { min-width: 70px; padding: 12px 14px; }
    .am-flywheel-connector { font-size: 16px; }
}

@media (max-width: 480px) {
    .am-hero-title { font-size: 26px; }
    .am-hero-description { font-size: 14px; }
    .am-hero-actions { flex-direction: column; }
    .am-featured-art.is-primary { width: 180px; }
    .am-featured-art:not(.is-primary) { width: 140px; }
    .am-section-heading h2 { font-size: 22px; }
    .am-artwork-grid { grid-template-columns: 1fr 1fr; }
    .am-category-grid { grid-template-columns: 1fr 1fr; }
}