/*
Theme Name: Morvie Art
Theme URI: https://morvie.art/
Author: MORVIE LTD
Author URI: https://morvie.art/
Description: Premium handcrafted art & artisan goods theme for Morvie Art — where craft meets soul.
Version: 1.0.0
Text Domain: morvie
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
    --mv-cream: #FAF7F2;
    --mv-warm-white: #FFFDF9;
    --mv-clay: #C4A882;
    --mv-clay-dark: #9E7E5A;
    --mv-terracotta: #C4714F;
    --mv-terracotta-dark: #A3573C;
    --mv-forest: #3D5C4A;
    --mv-forest-light: #547A63;
    --mv-charcoal: #1E1A18;
    --mv-dark: #2C2520;
    --mv-brown: #4A3728;
    --mv-sand: #E8D5B7;
    --mv-sand-light: #F2E8D5;
    --mv-gold: #C9A227;
    --mv-gold-light: #E8C547;
    --mv-ink: #14110F;
    --mv-text: #2C2520;
    --mv-text-light: #5C4E42;
    --mv-text-muted: #8C7B6E;
    --mv-text-xs: #B0A090;
    --mv-bg: #FAF7F2;
    --mv-bg-warm: #F5EFE6;
    --mv-bg-card: #FFFDF9;
    --mv-border: #E8D5B7;
    --mv-border-md: #D4C0A0;
    --mv-shadow-xs: 0 1px 3px rgba(74, 55, 40, 0.06);
    --mv-shadow: 0 4px 12px rgba(74, 55, 40, 0.10);
    --mv-shadow-md: 0 8px 24px rgba(74, 55, 40, 0.13);
    --mv-shadow-lg: 0 20px 48px rgba(74, 55, 40, 0.16);
    --mv-shadow-xl: 0 32px 64px rgba(74, 55, 40, 0.20);
    --mv-shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.22);
    --mv-glass-header: rgba(30, 26, 24, 0.92);
    --mv-glass-card: rgba(255, 253, 249, 0.85);
    --mv-font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --mv-font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --mv-font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --mv-r: 8px;
    --mv-r-lg: 14px;
    --mv-r-xl: 22px;
    --mv-r-pill: 100px;
    --mv-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --mv-ease-std: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══ RESET & BASE ═══ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: var(--mv-ink) !important;
    scroll-behavior: smooth;
}

#wpadminbar {
    display: none !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ═══ KEYFRAMES ═══ */
@keyframes mv-fade-up {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mv-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mv-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes mv-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes mv-pulse-ring {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(201, 162, 39, 0);
    }
}

@keyframes mv-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes mv-slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mv-mesh-move {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -25px) scale(1.06);
    }

    66% {
        transform: translate(-25px, 35px) scale(0.96);
    }
}

@keyframes mv-draw {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes mv-count {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══ ANIMATION UTILITIES ═══ */
.mv-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s var(--mv-ease-std), transform 0.65s var(--mv-ease-std);
}

.mv-animate.mv-visible {
    opacity: 1;
    transform: translateY(0);
}

.mv-delay-1 {
    transition-delay: 0.1s;
}

.mv-delay-2 {
    transition-delay: 0.22s;
}

.mv-delay-3 {
    transition-delay: 0.36s;
}

.mv-delay-4 {
    transition-delay: 0.50s;
}

/* ═══ WRAPPER & CONTAINER ═══ */
.morvie-wrapper {
    font-family: var(--mv-font-body);
    color: var(--mv-text);
    background: var(--mv-bg);
    line-height: 1.7;
    text-align: left;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    overflow-x: hidden;
}

.mv-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
}

.mv-container-sm {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
}

/* ═══ TYPOGRAPHY ═══ */
.morvie-wrapper h1 {
    font-family: var(--mv-font-serif);
    color: var(--mv-charcoal);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-top: 0;
}

.morvie-wrapper h2 {
    font-family: var(--mv-font-serif);
    color: var(--mv-charcoal);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-top: 0;
}

.morvie-wrapper h3 {
    font-family: var(--mv-font-serif);
    color: var(--mv-brown);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
}

.morvie-wrapper h4 {
    color: var(--mv-brown);
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0;
    font-family: var(--mv-font-body);
}

.morvie-wrapper p {
    margin-bottom: 1.3rem;
    color: var(--mv-text-light);
    line-height: 1.8;
}

.morvie-wrapper a {
    text-decoration: none;
    color: var(--mv-terracotta);
    transition: color 0.18s;
}

.morvie-wrapper a:hover {
    color: var(--mv-clay-dark);
}

.mv-serif {
    font-family: var(--mv-font-serif);
}

.mv-display {
    font-family: var(--mv-font-display);
}

.mv-gradient-text {
    background: linear-gradient(135deg, var(--mv-terracotta), var(--mv-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══ SEPARATOR ═══ */
.mv-separator {
    height: 3px;
    background: linear-gradient(90deg, var(--mv-terracotta) 0%, var(--mv-gold) 35%, var(--mv-clay) 65%, var(--mv-terracotta) 100%);
    background-size: 200% 100%;
    animation: mv-shimmer 4s linear infinite;
}

/* ═══ HEADER ═══ */
.mv-header-container {
    background: var(--mv-glass-header);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    position: sticky;
    top: 0;
    z-index: 9990;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 32px rgba(0, 0, 0, 0.4);
}

.mv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.mv-logo {
    font-family: var(--mv-font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
    text-decoration: none !important;
}

.mv-logo-dot {
    width: 8px;
    height: 8px;
    background: var(--mv-gold);
    border-radius: 50%;
    flex-shrink: 0;
    animation: mv-pulse-ring 3s ease-in-out infinite;
}

.mv-logo em {
    font-style: italic;
    color: var(--mv-clay);
}

.mv-logo-tagline {
    font-size: 0.55rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-top: 1px;
    font-family: var(--mv-font-body);
}

.mv-nav {
    display: flex;
    gap: 2px;
    align-items: center;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    flex-wrap: wrap;
}

.mv-nav-btn {
    background: transparent;
    border: none;
    padding: 8px 13px;
    font-size: 0.825rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7) !important;
    cursor: pointer;
    border-radius: var(--mv-r);
    transition: all 0.18s;
    text-decoration: none !important;
    white-space: nowrap;
    font-family: var(--mv-font-body);
    letter-spacing: 0.01em;
    position: relative;
}

.mv-nav-btn:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.09);
}

.mv-nav-btn.active {
    color: var(--mv-gold) !important;
    background: rgba(201, 162, 39, 0.15);
    font-weight: 600;
}

.mv-nav-cta {
    background: var(--mv-terracotta) !important;
    color: white !important;
    padding: 8px 18px;
    border-radius: var(--mv-r-pill);
    font-size: 0.825rem;
    font-weight: 600;
    margin-left: 6px;
    box-shadow: 0 2px 12px rgba(196, 113, 79, 0.35);
    transition: all 0.2s;
}

.mv-nav-cta:hover {
    background: var(--mv-terracotta-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(196, 113, 79, 0.45);
}

.mv-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.mv-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: all 0.25s;
}

.mv-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mv-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.mv-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.mv-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    background: var(--mv-charcoal);
    transform: translateX(100%);
    transition: transform 0.35s var(--mv-ease);
    z-index: 9999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mv-mobile-drawer.open {
    transform: translateX(0);
}

.mv-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mv-drawer-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
}

.mv-drawer-nav {
    flex: 1;
    padding: 16px 0;
}

.mv-drawer-nav a {
    display: block;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.mv-drawer-nav a:hover,
.mv-drawer-nav a.active {
    color: var(--mv-gold);
    background: rgba(201, 162, 39, 0.1);
}

.mv-drawer-ctas {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ═══ BUTTONS ═══ */
.mv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--mv-terracotta);
    color: white !important;
    font-family: var(--mv-font-body);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--mv-r);
    border: 1.5px solid var(--mv-terracotta);
    cursor: pointer;
    transition: all 0.22s var(--mv-ease);
    letter-spacing: 0.01em;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(196, 113, 79, 0.28), 0 6px 24px rgba(196, 113, 79, 0.16);
    position: relative;
    overflow: hidden;
}

.mv-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
    pointer-events: none;
}

.mv-btn:hover {
    background: var(--mv-terracotta-dark);
    border-color: var(--mv-terracotta-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(196, 113, 79, 0.4), 0 12px 36px rgba(196, 113, 79, 0.2);
}

.mv-btn:active {
    transform: translateY(0);
}

.mv-btn-gold {
    background: var(--mv-gold);
    border-color: var(--mv-gold);
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

.mv-btn-gold:hover {
    background: var(--mv-clay-dark);
    border-color: var(--mv-clay-dark);
}

.mv-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: none;
}

.mv-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff !important;
    transform: translateY(-1px);
}

.mv-btn-outline-dark {
    background: transparent;
    border: 2px solid var(--mv-border-md);
    color: var(--mv-text) !important;
    box-shadow: none;
}

.mv-btn-outline-dark:hover {
    background: var(--mv-sand-light);
    border-color: var(--mv-clay);
    color: var(--mv-brown) !important;
}

.mv-btn-sm {
    padding: 9px 18px;
    font-size: 0.825rem;
}

.mv-btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.mv-btn-full {
    width: 100%;
}

/* ═══ SECTIONS ═══ */
.mv-section {
    padding: 96px 0;
    background: var(--mv-bg-card);
}

.mv-section-alt {
    background: var(--mv-bg-warm);
}

.mv-section-dark {
    background: var(--mv-charcoal);
}

.mv-section-cream {
    background: var(--mv-cream);
}

.mv-text-center {
    text-align: center;
}

.mv-section-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mv-terracotta);
    background: rgba(196, 113, 79, 0.1);
    padding: 5px 14px;
    border-radius: var(--mv-r-pill);
    margin-bottom: 16px;
    border: 1px solid rgba(196, 113, 79, 0.2);
}

.mv-section-label-gold {
    color: var(--mv-gold-light);
    background: rgba(201, 162, 39, 0.12);
    border-color: rgba(201, 162, 39, 0.25);
}

.mv-section-title {
    font-family: var(--mv-font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--mv-charcoal);
    margin-bottom: 16px;
}

.mv-section-title em {
    font-style: italic;
    color: var(--mv-terracotta);
}

.mv-section-sub {
    font-size: 1.05rem;
    color: var(--mv-text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

.mv-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--mv-terracotta), var(--mv-gold));
    border-radius: 2px;
    margin: 20px auto 28px;
}

.mv-divider-left {
    margin: 20px 0 28px;
}

/* ═══ GRID ═══ */
.mv-grid {
    display: grid;
    gap: 24px;
}

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

.mv-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.mv-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.mv-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.mv-grid-auto {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.mv-grid-auto-sm {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* ═══ CARDS — PRODUCT ═══ */
.mv-product-card {
    background: var(--mv-bg-card);
    border: 1px solid var(--mv-border);
    border-radius: var(--mv-r-lg);
    overflow: hidden;
    transition: all 0.32s var(--mv-ease);
    position: relative;
    cursor: pointer;
}

.mv-product-card:hover {
    border-color: var(--mv-clay);
    box-shadow: var(--mv-shadow-lg);
    transform: translateY(-6px);
}

.mv-product-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: linear-gradient(135deg, var(--mv-sand) 0%, var(--mv-sand-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
    transition: transform 0.4s var(--mv-ease);
}

.mv-product-card:hover .mv-product-img {
    transform: scale(1.04);
}

.mv-product-body {
    padding: 18px 20px 20px;
}

.mv-product-category {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--mv-terracotta);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.mv-product-name {
    font-family: var(--mv-font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--mv-charcoal);
    margin-bottom: 8px;
    line-height: 1.3;
}

.mv-product-artist {
    font-size: 0.78rem;
    color: var(--mv-text-muted);
    margin-bottom: 10px;
}

.mv-product-price {
    font-weight: 700;
    color: var(--mv-terracotta);
    font-size: 1.1rem;
}

.mv-product-price-old {
    text-decoration: line-through;
    color: var(--mv-text-xs);
    font-size: 0.85rem;
    margin-left: 6px;
    font-weight: 400;
}

.mv-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--mv-terracotta);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--mv-r-pill);
}

.mv-product-badge-new {
    background: var(--mv-forest);
}

.mv-product-badge-gold {
    background: var(--mv-gold);
    color: var(--mv-ink);
}

.mv-product-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.25s var(--mv-ease);
}

.mv-product-card:hover .mv-product-actions {
    opacity: 1;
    transform: translateX(0);
}

.mv-product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 253, 249, 0.95);
    border: 1px solid var(--mv-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--mv-charcoal);
    box-shadow: var(--mv-shadow-xs);
}

.mv-product-action-btn:hover {
    background: var(--mv-terracotta);
    color: white;
    border-color: var(--mv-terracotta);
}

.mv-product-add-btn {
    width: 100%;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--mv-charcoal);
    color: white !important;
    padding: 11px 0;
    border-radius: var(--mv-r);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    border: 1.5px solid var(--mv-charcoal);
    text-decoration: none;
}

.mv-product-add-btn:hover {
    background: var(--mv-terracotta);
    border-color: var(--mv-terracotta);
    color: white !important;
}

/* ═══ CARDS — GENERAL ═══ */
.mv-card {
    background: var(--mv-bg-card);
    border: 1px solid var(--mv-border);
    border-radius: var(--mv-r-lg);
    padding: 32px;
    box-shadow: var(--mv-shadow);
    transition: all 0.3s var(--mv-ease);
    position: relative;
    overflow: hidden;
}

.mv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mv-terracotta), var(--mv-gold));
    opacity: 0;
    transition: opacity 0.3s;
}

.mv-card:hover {
    border-color: var(--mv-clay);
    box-shadow: var(--mv-shadow-md);
    transform: translateY(-3px);
}

.mv-card:hover::after {
    opacity: 1;
}

/* ═══ HERO ═══ */
.mv-hero {
    padding: 130px 0 120px;
    background: linear-gradient(160deg, #1A1008 0%, #2C1A0A 35%, #3A2010 65%, #2C1808 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mv-hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    top: -250px;
    right: -200px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.14) 0%, transparent 70%);
    filter: blur(60px);
    animation: mv-mesh-move 14s ease-in-out infinite;
    pointer-events: none;
}

.mv-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(196, 113, 79, 0.16) 0%, transparent 70%);
    filter: blur(50px);
    animation: mv-mesh-move 18s ease-in-out infinite reverse;
    pointer-events: none;
}

.mv-hero-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.mv-hero-content {
    position: relative;
    z-index: 2;
}

.mv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.18);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--mv-gold-light);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: var(--mv-r-pill);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.mv-hero h1 {
    font-family: var(--mv-font-serif);
    color: #FFFDF9;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    max-width: 1000px;
    margin: 0 auto 20px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.mv-hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--mv-gold-light) 0%, var(--mv-clay) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mv-hero-rule {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--mv-terracotta), var(--mv-gold));
    margin: 22px auto 26px;
    border-radius: 2px;
}

.mv-hero p {
    font-size: 1.15rem;
    color: rgba(255, 253, 249, 0.65);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.82;
}

.mv-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.mv-hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.mv-hero-stat-num {
    font-family: var(--mv-font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--mv-gold-light);
    line-height: 1;
}

.mv-hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

/* ═══ TRUST STRIP ═══ */
.mv-trust-strip {
    background: var(--mv-sand-light);
    padding: 22px 0;
    border-top: 1px solid var(--mv-border);
    border-bottom: 1px solid var(--mv-border);
    overflow: hidden;
}

.mv-trust-inner {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mv-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mv-brown);
    white-space: nowrap;
}

.mv-trust-item svg,
.mv-trust-item i {
    color: var(--mv-terracotta);
    font-size: 1.1rem;
}

/* ═══ COLLECTION CARDS ═══ */
.mv-collection-card {
    position: relative;
    border-radius: var(--mv-r-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.mv-collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--mv-brown) 0%, var(--mv-charcoal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: transform 0.5s var(--mv-ease);
}

.mv-collection-card:hover .mv-collection-img {
    transform: scale(1.07);
}

.mv-collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 17, 15, 0.85) 0%, rgba(20, 17, 15, 0.1) 60%, transparent 100%);
}

.mv-collection-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
}

.mv-collection-cat {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mv-gold-light);
    margin-bottom: 6px;
}

.mv-collection-name {
    font-family: var(--mv-font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.mv-collection-count {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.mv-collection-card:hover .mv-collection-body {
    transform: translateY(-4px);
    transition: transform 0.3s var(--mv-ease);
}

/* ═══ TESTIMONIALS ═══ */
.mv-testimonial {
    background: var(--mv-bg-card);
    border: 1px solid var(--mv-border);
    border-radius: var(--mv-r-lg);
    padding: 32px;
    position: relative;
}

.mv-testimonial::before {
    content: '\201C';
    font-family: var(--mv-font-serif);
    font-size: 5rem;
    color: var(--mv-clay);
    opacity: 0.4;
    position: absolute;
    top: 12px;
    left: 24px;
    line-height: 1;
}

.mv-testimonial-text {
    font-size: 0.98rem;
    color: var(--mv-text-light);
    line-height: 1.85;
    margin-bottom: 20px;
    padding-top: 32px;
    font-style: italic;
}

.mv-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mv-testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--mv-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.mv-testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--mv-charcoal);
}

.mv-testimonial-loc {
    font-size: 0.75rem;
    color: var(--mv-text-muted);
    margin-top: 1px;
}

.mv-stars {
    color: var(--mv-gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* ═══ FAQ ═══ */
.mv-faq-item {
    border: 1px solid var(--mv-border);
    border-radius: var(--mv-r-lg);
    margin-bottom: 12px;
    overflow: hidden;
}

.mv-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--mv-bg-card);
    border: none;
    cursor: pointer;
    font-family: var(--mv-font-body);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--mv-charcoal);
    text-align: left;
    transition: background 0.2s;
    gap: 16px;
}

.mv-faq-q:hover {
    background: var(--mv-sand-light);
}

.mv-faq-item.active .mv-faq-q {
    background: var(--mv-sand-light);
    color: var(--mv-terracotta);
}

.mv-faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--mv-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.2s;
    color: var(--mv-terracotta);
    font-weight: 700;
}

.mv-faq-item.active .mv-faq-icon {
    transform: rotate(45deg);
    background: var(--mv-terracotta);
    color: white;
}

.mv-faq-a {
    display: none;
    padding: 20px 24px 24px;
    background: var(--mv-bg-card);
    border-top: 1px solid var(--mv-border);
}

.mv-faq-a p {
    font-size: 0.92rem;
    color: var(--mv-text-light);
    line-height: 1.82;
    margin: 0;
}

/* ═══ CONTACT FORM ═══ */
.mv-form-group {
    margin-bottom: 20px;
}

.mv-form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mv-brown);
    margin-bottom: 7px;
    letter-spacing: 0.02em;
}

.mv-form-input,
.mv-form-select,
.mv-form-textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--mv-border-md);
    border-radius: var(--mv-r);
    font-family: var(--mv-font-body);
    font-size: 0.92rem;
    color: var(--mv-text);
    background: var(--mv-bg-card);
    transition: all 0.2s;
    outline: none;
    box-sizing: border-box;
}

.mv-form-input:focus,
.mv-form-select:focus,
.mv-form-textarea:focus {
    border-color: var(--mv-terracotta);
    box-shadow: 0 0 0 3px rgba(196, 113, 79, 0.14);
    background: #fff;
}

.mv-form-textarea {
    resize: vertical;
    min-height: 130px;
}

.mv-form-msg {
    padding: 14px 18px;
    border-radius: var(--mv-r);
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 14px;
    display: none;
}

.mv-form-msg.success {
    background: rgba(61, 92, 74, 0.12);
    border: 1px solid rgba(61, 92, 74, 0.3);
    color: var(--mv-forest);
}

.mv-form-msg.error {
    background: rgba(196, 113, 79, 0.1);
    border: 1px solid rgba(196, 113, 79, 0.3);
    color: var(--mv-terracotta-dark);
}

/* ═══ FOOTER ═══ */
.mv-footer {
    background: var(--mv-charcoal);
    color: rgba(255, 255, 255, 0.65);
    padding: 80px 0 0;
}

.mv-footer h3 {
    font-family: var(--mv-font-body);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mv-footer p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.8rem;
}

.mv-footer a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.mv-footer a:hover {
    color: var(--mv-gold-light);
}

.mv-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 56px;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
    gap: 16px;
}

.mv-footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.mv-payment-badges {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.mv-payment-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.mv-footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mv-footer-links a {
    display: inline;
    margin-bottom: 0;
    font-size: 0.78rem;
}

.mv-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.mv-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.mv-social-icon:hover {
    background: var(--mv-terracotta) !important;
    border-color: var(--mv-terracotta) !important;
    color: white !important;
}

/* ═══ PROMO BANNER ═══ */
.mv-promo-banner {
    background: linear-gradient(135deg, var(--mv-terracotta) 0%, var(--mv-clay-dark) 100%);
    padding: 18px 0;
    text-align: center;
}

.mv-promo-banner p {
    color: white;
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.mv-promo-banner a {
    color: var(--mv-gold-light) !important;
    text-decoration: underline;
}

/* ═══ FILTER BAR ═══ */
.mv-filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.mv-filter-btn {
    padding: 8px 18px;
    border: 1.5px solid var(--mv-border-md);
    border-radius: var(--mv-r-pill);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--mv-text-light);
    background: var(--mv-bg-card);
    cursor: pointer;
    transition: all 0.2s;
}

.mv-filter-btn:hover,
.mv-filter-btn.active {
    background: var(--mv-terracotta);
    border-color: var(--mv-terracotta);
    color: white;
}

/* ═══ BREADCRUMB ═══ */
.mv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--mv-text-muted);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.mv-breadcrumb a {
    color: var(--mv-text-muted);
}

.mv-breadcrumb a:hover {
    color: var(--mv-terracotta);
}

.mv-breadcrumb-sep {
    opacity: 0.4;
}

/* ═══ NEWSLETTER ═══ */
.mv-newsletter {
    background: linear-gradient(135deg, var(--mv-charcoal) 0%, var(--mv-brown) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mv-newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.mv-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 28px auto 0;
}

.mv-newsletter-form input {
    flex: 1;
    padding: 13px 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--mv-r-pill);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: var(--mv-font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.mv-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.mv-newsletter-form input:focus {
    border-color: var(--mv-gold);
}

.mv-newsletter-form button {
    padding: 13px 24px;
    background: var(--mv-gold);
    border: none;
    border-radius: var(--mv-r-pill);
    color: var(--mv-ink);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--mv-font-body);
    flex-shrink: 0;
}

.mv-newsletter-form button:hover {
    background: var(--mv-gold-light);
    transform: scale(1.03);
}

/* ═══ PAGE HERO (inner pages) ═══ */
.mv-page-hero {
    padding: 80px 0 72px;
    background: linear-gradient(160deg, #1A1008 0%, #2C1A0A 60%, #3A2010 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mv-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.mv-page-hero-content {
    position: relative;
    z-index: 2;
}

.mv-page-hero h1 {
    font-family: var(--mv-font-serif);
    color: #FFFDF9;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 14px;
}

.mv-page-hero p {
    color: rgba(255, 253, 249, 0.6);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
}

/* ═══ ARTIST CARD ═══ */
.mv-artist-card {
    text-align: center;
}

.mv-artist-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--mv-sand), var(--mv-clay));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    border: 3px solid var(--mv-clay);
    overflow: hidden;
}

.mv-artist-name {
    font-family: var(--mv-font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--mv-charcoal);
    margin-bottom: 4px;
}

.mv-artist-specialty {
    font-size: 0.78rem;
    color: var(--mv-terracotta);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mv-artist-bio {
    font-size: 0.85rem;
    color: var(--mv-text-muted);
    line-height: 1.75;
}

.mv-artist-count {
    font-size: 0.78rem;
    color: var(--mv-clay);
    font-weight: 600;
    margin-top: 8px;
}

/* ═══ HIGHLIGHT BOX ═══ */
.mv-highlight-box {
    background: var(--mv-bg-card);
    border: 1px solid var(--mv-border);
    border-left: 4px solid var(--mv-terracotta);
    padding: 28px 32px;
    border-radius: var(--mv-r-lg);
    box-shadow: var(--mv-shadow);
    margin: 24px 0;
}

.mv-highlight-box-gold {
    border-left-color: var(--mv-gold);
}

/* ═══ MOBILE FLOAT CTA ═══ */
.mv-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9980;
    background: var(--mv-charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    gap: 10px;
}

.mv-mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: var(--mv-r);
    font-size: 0.88rem;
    font-weight: 700;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
    .mv-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {

    .mv-container,
    .mv-container-sm {
        padding: 0 20px;
    }

    .mv-nav {
        display: none;
    }

    .mv-hamburger {
        display: flex;
    }

    .mv-hero {
        padding: 90px 0 80px;
    }

    .mv-hero h1 {
        font-size: 2.6rem;
    }

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

    .mv-grid-2,
    .mv-grid-3,
    .mv-grid-4,
    .mv-grid-5 {
        grid-template-columns: 1fr;
    }

    .mv-grid-auto {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .mv-hero-stats {
        gap: 28px;
        margin-top: 48px;
        padding-top: 32px;
    }

    .mv-hero-stat-num {
        font-size: 1.8rem;
    }

    .mv-newsletter-form {
        flex-direction: column;
    }

    .mv-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .mv-mobile-cta {
        display: flex;
    }

    .morvie-wrapper {
        padding-bottom: 70px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .mv-container {
        padding: 0 32px;
    }

    .mv-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .mv-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ═══ CART DRAWER ═══ */
.mv-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--mv-ease);
}

.mv-cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mv-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 440px;
    max-width: 100vw;
    background: var(--mv-bg-card);
    z-index: 10005;
    transform: translateX(100%);
    transition: transform 0.4s var(--mv-ease);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mv-cart-drawer.open {
    transform: translateX(0);
}

.mv-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--mv-border);
}

.mv-cart-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.mv-cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--mv-text-light);
    line-height: 1;
    transition: color 0.15s;
}

.mv-cart-close:hover {
    color: var(--mv-charcoal);
}

.mv-cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 16px 32px;
}

.mv-cart-footer {
    padding: 24px 32px;
    border-top: 1px solid var(--mv-border);
    background: var(--mv-bg-warm);
}

.mv-cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--mv-charcoal);
    margin-bottom: 12px;
}

/* ═══ NAV CART BADGE ═══ */
.mv-cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--mv-terracotta);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--mv-bg-card);
    line-height: 1;
}

/* ═══ TOAST NOTIFICATION ═══ */
.mv-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--mv-charcoal);
    color: white;
    padding: 16px 24px;
    border-radius: var(--mv-r-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    z-index: 11000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 300px;
}

.mv-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}