/* Fast material art-store layer. No external font request. */
:root {
    --art-bg: #f8fafc;
    --art-surface: #ffffff;
    --art-surface-2: #f1f5f9;
    --art-ink: #0f172a;
    --art-muted: #64748b;
    --art-line: #e2e8f0;
    --art-primary: #2563eb;
    --art-primary-2: #7c3aed;
    --art-accent: #14b8a6;
    --art-warn: #f59e0b;
    --art-shadow: 0 18px 55px rgba(15, 23, 42, .10);
    --art-shadow-lg: 0 30px 90px rgba(15, 23, 42, .16);
}

html { scroll-behavior: smooth; }

body.art-store {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, .09), transparent 32rem),
        radial-gradient(circle at top right, rgba(20, 184, 166, .10), transparent 30rem),
        var(--art-bg);
    color: var(--art-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}

body.art-store h1,
body.art-store h2,
body.art-store h3,
body.art-store h4 {
    color: var(--art-ink);
    font-family: inherit;
    letter-spacing: -0.035em;
}

body.art-store a,
body.art-store button {
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

body.art-store img { max-width: 100%; }

.art-topbar {
    background: linear-gradient(90deg, #0f172a, #1e293b);
    color: rgba(255,255,255,.78);
    font-size: 12px;
    padding: 7px 0;
}

.art-topbar .header-social ul,
.art-topbar .header-info ul { margin-bottom: 0; }
.art-topbar a,
.art-topbar i,
.art-topbar span { color: rgba(255,255,255,.82) !important; }

.art-nav {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255,255,255,.82);
    border-bottom: 1px solid rgba(226,232,240,.86);
    box-shadow: 0 10px 30px rgba(15,23,42,.06);
    backdrop-filter: blur(18px);
}

.art-nav.is-scrolled {
    background: rgba(255,255,255,.94);
    box-shadow: 0 16px 40px rgba(15,23,42,.10);
}

.art-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
}

.art-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--art-ink);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.art-brand:before {
    content: "";
    width: 34px;
    height: 34px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--art-primary), var(--art-primary-2));
    box-shadow: 0 12px 28px rgba(37,99,235,.28);
}

.art-brand:hover { color: var(--art-primary); }

.art-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.art-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 999px;
    padding: 0 14px;
    color: #334155;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.art-menu a:hover {
    background: var(--art-surface-2);
    color: var(--art-primary);
}

.art-pill {
    min-height: 42px !important;
    padding: 0 18px !important;
    background: linear-gradient(135deg, var(--art-primary), var(--art-primary-2)) !important;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(37,99,235,.25);
}

.art-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(37,99,235,.32);
}

.art-hero {
    min-height: auto;
    padding: 50px 0 72px;
}

.art-hero-grid {
    display: grid;
    gap: 30px;
    align-items: center;
}

.art-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--art-primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.art-kicker:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--art-accent);
    box-shadow: 0 0 0 5px rgba(20,184,166,.12);
}

.art-hero h1,
.art-detail h1 {
    margin: 16px 0;
    max-width: 850px;
    font-size: clamp(42px, 9vw, 86px);
    font-weight: 950;
    line-height: .96;
}

.art-lead {
    max-width: 650px;
    color: var(--art-muted);
    font-size: 17px;
    line-height: 1.75;
}

.art-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.art-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--art-line);
    border-radius: 16px;
    background: var(--art-surface);
    color: var(--art-ink);
    box-shadow: 0 8px 22px rgba(15,23,42,.06);
    font-weight: 900;
}

.art-btn.primary {
    background: linear-gradient(135deg, var(--art-primary), var(--art-primary-2));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 16px 35px rgba(37,99,235,.24);
}

.art-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--art-shadow);
    color: var(--art-primary);
}

.art-btn.primary:hover { color: #fff; }

.art-feature {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 390px;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 28px;
    background-color: #e2e8f0;
    background-size: cover;
    background-position: center;
    box-shadow: var(--art-shadow-lg);
    transform: translateZ(0);
}

.art-feature:before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 22px;
    pointer-events: none;
    z-index: 1;
}

.art-feature:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,.04), rgba(15,23,42,.78));
}

.art-feature:hover { transform: translateY(-4px) scale(1.01); }

.art-feature-caption {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
    color: #fff;
}

.art-feature-caption h2 {
    margin: 8px 0;
    color: #fff;
    font-size: 34px;
    line-height: 1.05;
}

.art-feature-caption p { color: rgba(255,255,255,.82); }
.art-feature-caption .art-kicker { color: #bfdbfe; }

.art-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    color: var(--art-ink);
    padding: 64px 0;
}

.art-band:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(37,99,235,.055) 1px, transparent 1px), linear-gradient(180deg, rgba(37,99,235,.045) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .65;
    pointer-events: none;
}

.art-band > .container { position: relative; z-index: 1; }

.art-section-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.art-section-title h2 {
    margin: 0;
    font-size: clamp(32px, 7vw, 58px);
    font-weight: 950;
}

.art-section-title p {
    max-width: 560px;
    color: var(--art-muted);
    line-height: 1.75;
}

.art-grid {
    display: grid;
    gap: 18px;
}

.art-card {
    overflow: hidden;
    border: 1px solid var(--art-line);
    border-radius: 26px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 16px 42px rgba(15,23,42,.08);
    color: var(--art-ink);
    transform: translateZ(0);
}

.art-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--art-shadow-lg);
}

.art-card-img {
    display: block;
    aspect-ratio: 4 / 4.8;
    background-color: #e2e8f0;
    background-size: cover;
    background-position: center;
}

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

.art-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
}

.art-card h3 a { color: var(--art-ink) !important; }
.art-card p { color: var(--art-muted); line-height: 1.65; }

.art-price {
    color: var(--art-primary) !important;
    font-size: 15px;
    font-weight: 950;
}

.art-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-top: 10px;
    border-radius: 999px;
    background: rgba(20,184,166,.12);
    color: #0f766e;
    padding: 0 11px;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.portfolio-menu { margin-bottom: 26px; }
.portfolio-menu ul { display: flex; gap: 10px; overflow-x: auto; padding: 0 0 8px; }
.portfolio-menu li {
    min-height: 38px;
    border: 1px solid var(--art-line) !important;
    border-radius: 999px !important;
    background: var(--art-surface) !important;
    color: #334155 !important;
    padding: 9px 16px !important;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(15,23,42,.05);
}
.portfolio-menu li.filtr-active,
.portfolio-menu li:hover {
    background: linear-gradient(135deg, var(--art-primary), var(--art-primary-2)) !important;
    color: #fff !important;
}

.art-booking {
    padding: 72px 0;
    background: #eef2ff;
}

.art-booking-grid {
    display: grid;
    gap: 28px;
    align-items: center;
}

.art-form {
    border: 1px solid rgba(226,232,240,.95);
    border-radius: 26px;
    background: rgba(255,255,255,.94);
    padding: 20px;
    box-shadow: var(--art-shadow);
}

.art-form label {
    display: block;
    margin-bottom: 14px;
    color: #334155;
    font-size: 12px;
    font-weight: 900;
}

.art-form input,
.art-form textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    border: 1px solid var(--art-line);
    border-radius: 14px;
    background: #f8fafc;
    padding: 13px 14px;
    color: var(--art-ink);
    font-weight: 600;
    outline: 0;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.art-form input:focus,
.art-form textarea:focus {
    border-color: rgba(37,99,235,.55);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

.art-detail {
    padding: 42px 0 70px;
}

.art-detail-grid {
    display: grid;
    gap: 30px;
    align-items: start;
}

.art-detail-image {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--art-shadow-lg);
}

.art-detail-image img {
    width: 100%;
    min-height: 360px;
    border-radius: 28px;
    object-fit: cover;
}

.art-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0;
}

.art-specs > div {
    border: 1px solid var(--art-line);
    border-radius: 18px;
    background: #fff;
    padding: 14px;
    box-shadow: 0 8px 22px rgba(15,23,42,.05);
}

.art-specs span {
    display: block;
    color: var(--art-muted);
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.art-specs strong { display: block; margin-top: 5px; color: var(--art-ink); }

.art-purchase-panel {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.art-purchase-panel h3 {
    margin: 6px 0 16px;
    color: var(--art-ink);
    font-size: 24px;
    font-weight: 950;
}

.art-inquiry-form { background: rgba(255,255,255,.92); }

.art-notice {
    margin: 0;
    padding: 13px 18px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    text-align: center;
    font-weight: 850;
}

.art-footer-cta {
    padding: 56px 0;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
}

.art-footer-cta-card {
    display: grid;
    gap: 18px;
    align-items: center;
}

.art-footer-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 7vw, 56px);
    font-weight: 950;
}

.art-footer-cta p { max-width: 620px; color: rgba(255,255,255,.82); line-height: 1.7; }

.art-footer {
    padding: 56px 0 92px;
    background: #0f172a;
    color: rgba(255,255,255,.76);
}

.art-footer-grid {
    display: grid;
    gap: 24px;
}

.art-footer h3,
.art-footer h4 {
    margin: 0 0 14px;
    color: #fff;
    font-weight: 900;
}

.art-footer p,
.art-footer li,
.art-footer a { color: rgba(255,255,255,.72); line-height: 1.8; }
.art-footer a:hover { color: #93c5fd; }
.art-footer ul { margin: 0; padding: 0; list-style: none; }

.art-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 950;
    text-transform: uppercase;
}

.art-footer-brand:before {
    content: "";
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--art-primary), var(--art-accent));
}

.art-footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px !important; }
.art-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    color: #fff !important;
}
.art-footer-social a:hover { transform: translateY(-2px); background: var(--art-primary); }

.art-footer-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.art-footer-thumbs a {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
}

.art-footer-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease, filter .22s ease;
}

.art-footer-thumbs a:hover img {
    transform: scale(1.08);
    filter: saturate(1.15);
}

.art-footer-form {
    display: grid;
    grid-template-columns: 1fr 46px;
    gap: 8px;
    margin-top: 16px;
}

.art-footer-form input {
    width: 100%;
    min-width: 0;
    height: 46px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    background: rgba(255,255,255,.08);
    color: #fff;
    padding: 0 14px;
    outline: 0;
}

.art-footer-form input::placeholder { color: rgba(255,255,255,.55); }

.art-footer-form input:focus {
    border-color: rgba(147,197,253,.72);
    box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.art-footer-form button {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--art-primary), var(--art-primary-2));
    color: #fff;
}

.art-footer-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37,99,235,.28);
}

.art-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.art-footer-bottom {

    margin-top: 32px;
    border-top: 1px solid rgba(255,255,255,.10);
    padding-top: 20px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
}

.art-mobile-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 22px;
    background: rgba(255,255,255,.92);
    padding: 8px;
    box-shadow: 0 20px 55px rgba(15,23,42,.22);
    backdrop-filter: blur(18px);
}

.art-mobile-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 16px;
    color: #334155;
    font-size: 12px;
    font-weight: 900;
}

.art-mobile-bar a:nth-child(2) {
    background: linear-gradient(135deg, var(--art-primary), var(--art-primary-2));
    color: #fff;
}

[data-art-animate] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

[data-art-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.art-card,
.art-feature,
.art-form,
.art-section-title,
.art-hero-grid > div {
    animation: artRise .55s ease both;
}

.art-card:nth-child(2) { animation-delay: .05s; }
.art-card:nth-child(3) { animation-delay: .10s; }
.art-card:nth-child(4) { animation-delay: .15s; }
.art-card:nth-child(5) { animation-delay: .20s; }
.art-card:nth-child(6) { animation-delay: .25s; }

@keyframes artRise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
    .art-hero { padding: 68px 0 88px; }
    .art-hero-grid,
    .art-booking-grid,
    .art-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
    .art-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .art-footer-cta-card { grid-template-columns: 1fr auto; }
    .art-footer-grid { grid-template-columns: 1.4fr .8fr .8fr 1fr; }
    .art-form { padding: 28px; }
    .art-mobile-bar { display: none; }
}

@media (min-width: 992px) {
    .art-purchase-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
    .art-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    body.art-store { padding-bottom: 76px; }
    .art-topbar { display: none; }
    .art-nav-inner {
        min-height: 68px;
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
        padding: 12px 0;
    }
    .art-brand { font-size: 16px; }
    .art-brand:before { width: 30px; height: 30px; border-radius: 12px; }
    .art-menu {
        width: 100%;
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 3px;
        scrollbar-width: none;
    }
    .art-menu::-webkit-scrollbar { display: none; }
    .art-menu a { min-height: 34px; padding: 0 11px; white-space: nowrap; font-size: 11px; }
    .art-menu li:last-child { display: none; }
    .art-hero { padding: 34px 0 46px; }
    .art-hero h1,
    .art-detail h1 { font-size: clamp(42px, 14vw, 64px); }
    .art-feature { min-height: 330px; border-radius: 24px; }
    .art-grid { gap: 14px; }
    .art-card { border-radius: 22px; }
    .art-card-img { aspect-ratio: 1 / .92; }
    .art-booking { padding: 48px 0; }
    .art-detail-image img { min-height: 320px; }
    .art-specs { grid-template-columns: 1fr; }
    .art-footer { padding-bottom: 120px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}
