/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --ink: #1a1008;
    --ink-light: #2c1f0e;
    --gold: #c9a84c;
    --gold-light: #e8c96d;
    --gold-pale: #f5e9c8;
    --cream: #faf6ef;
    --cream-dark: #f0e8d5;
    --paper: #fdf9f0;
    --dark-teal: #1e3a3a;
    --text-dark: #1a1008;
    --text-mid: #4a3a28;
    --text-light: #7a6a50;
    --border: rgba(201,168,76,0.25);
    --shadow: rgba(26,16,8,0.15);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
    background-color: var(--paper);
    color: var(--text-dark);
    overflow-x: hidden;
    direction: rtl;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.4; }
p { line-height: 2; }
a { text-decoration: none; color: inherit; }

/* ===================== SIYAH-MASHQ BACKGROUND ===================== */
.siyah-bg {
    position: relative;
    overflow: hidden;
}
.siyah-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Ctext x='50%25' y='50%25' font-family='serif' font-size='320' fill='%23c9a84c' opacity='0.04' text-anchor='middle' dominant-baseline='middle'%3E%D8%A8%3C/text%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ===================== NAVIGATION ===================== */
nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(26,16,8,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.3);
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.7;
}
nav:hover
{
    opacity: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--ink);
    font-weight: 900;
    box-shadow: 0 2px 12px rgba(201,168,76,0.4);
}

.nav-logo-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-logo-text span {
    display: block;
    font-size: 0.7rem;
    color: var(--gold-light);
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ink) !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all 0.3s !important;
    box-shadow: 0 2px 10px rgba(201,168,76,0.3);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(201,168,76,0.5) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===================== LANGUAGE SWITCHER ===================== */
.nav-lang-switcher { position: relative; flex-shrink: 0; }

.lang-toggle {
    background: none;
    border: 1px solid rgba(201,168,76,0.3);
    color: rgba(255,255,255,0.7);
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s;
    line-height: 1;
    white-space: nowrap;
}

.lang-toggle:hover,
.nav-lang-switcher.open .lang-toggle {
    color: var(--gold-light);
    border-color: rgba(201,168,76,0.55);
}

.lang-caret { font-size: 0.6rem; }

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; /* LTR default; RTL overrides below */
    min-width: 140px;
    background: rgba(26,16,8,0.97);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    padding: 6px;
    flex-direction: column;
    gap: 2px;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* RTL: open left of toggle */
[dir="rtl"] .lang-menu,
body.rtl .lang-menu { left: auto; right: 0; }

.nav-lang-switcher.open .lang-menu { display: flex; }

.lang-menu a {
    color: rgba(255,255,255,0.65);
    font-size: 0.82rem;
    padding: 7px 12px;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.lang-menu a:hover {
    background: rgba(201,168,76,0.1);
    color: var(--gold-light);
}

.footer-lang-list { list-style: none; }
.footer-lang-list li { margin-bottom: 6px; }
.footer-lang-list a {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-lang-list a:hover { color: var(--gold-light); }

/* ===================== HERO ===================== */
#hero {
    min-height: 100vh;
    background: linear-gradient(165deg, #0d0a06 0%, #1a1008 40%, #0f1e1e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

/* ===================== HERO REDESIGN — SPLIT LAYOUT ===================== */
#hero {
    min-height: 100vh;
    background: #0b0806;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start; /* RTL: start = RIGHT side */
}

/* Left side: artwork image panel */
.hero-artwork-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.6;
}

.hero-artwork-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Multi-layer gradient: fades artwork LEFT→RIGHT toward text, top/bottom dark vignette */
.hero-artwork-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(11,8,6,0.05) 0%,
            rgba(11,8,6,0.15) 35%,
            rgba(11,8,6,0.7) 65%,
            #0b0806 90%
        ),
        linear-gradient(to bottom,
            rgba(11,8,6,0.65) 0%,
            transparent 18%,
            transparent 68%,
            rgba(11,8,6,0.9) 100%
        );
}

/* Thin gold accent line at the right edge of the artwork panel */
.hero-artwork-panel::before {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 15%;
    right: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.5), transparent);
    z-index: 2;
}

/* Right side: bio content panel (RTL: flex-start = right) */
.hero-content-panel {
    position: relative;
    z-index: 2;
    width: 44%;
    padding: 0 3.5rem 5.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
}

/* Signature image: transparent PNG with gold ink - no filter needed */
.hero-signature {
    max-height: 250px;
    max-width: 300px;
    width: auto;
    object-fit: contain;
    opacity: 0.92;
    margin-bottom: -0.2rem;
    /* drop-shadow for depth on dark bg */
    filter: drop-shadow(0 2px 12px rgba(201,168,76,0.35));
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-master-name {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.hero-master-name span { color: var(--gold-light); }

.hero-gold-line {
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-credentials {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.hero-cred-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    line-height: 1.6;
}

.hero-cred-item::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-desc-short {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 2;
    max-width: 360px;
    border-right: 2px solid rgba(201,168,76,0.35);
    padding-right: 1rem;
    margin-top: -0.3rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tag {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.55);
    padding: 5px 13px;
    border-radius: 3px;
    font-size: 0.78rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 0.2rem;
}

/* Decorative vertical site label on far left */
.hero-vertical-label {
    position: absolute;
    left: 1.2rem;
    bottom: 6rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: rgba(255,255,255,0.18);
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 3;
    transform: rotate(180deg);
}

/* Scroll indicator */
.scroll-down {
    position: absolute;
    bottom: 2.2rem;
    right: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.28);
    font-size: 0.68rem;
    letter-spacing: 2px;
    z-index: 3;
}

.scroll-down::after {
    content: '↓';
    font-size: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes fadeInUp {
    from { opacity: 0.3; }
    to { opacity: 0.7; }
}

/* Buttons (used across sections) */
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ink);
    padding: 13px 32px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
    font-family: 'Vazirmatn', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

.btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.82);
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 400;
    border: 1px solid rgba(255,255,255,0.22);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Vazirmatn', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* Responsive hero */
@media (max-width: 900px) {
    .hero-artwork-panel {
        width: 100%;
        height: 55vh;
        bottom: auto;
        top: 70px;
    }
    .hero-artwork-panel::after {
        background:
            linear-gradient(to bottom,
                rgba(11,8,6,0.1) 0%,
                rgba(11,8,6,0.3) 50%,
                #0b0806 100%
            );
    }
    .hero-artwork-panel::before { display: none; }
    .hero-content-panel {
        width: 100%;
        padding: 0 2rem 4rem;
        margin-top: calc(55vh + 70px - 8rem);
        align-items: flex-start;
    }
    .hero-vertical-label { display: none; }
    .scroll-down { right: 50%; transform: translateX(50%); }
}

/* ===================== SECTION HEADERS ===================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title.light { color: #fff; }

.section-sub {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 2;
}

.section-sub.light { color: rgba(255,255,255,0.6); }

.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
}

.title-ornament::before,
.title-ornament::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.title-ornament::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament-diamond {
    color: var(--gold);
    font-size: 0.7rem;
}

/* ===================== ABOUT SECTION ===================== */
#about {
    padding: 7rem 2rem;
    background: var(--paper);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold-light));
    z-index: 0;
}

.about-image-frame img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 3px;
    filter: sepia(10%) contrast(1.05);
}

.about-image-deco {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    opacity: 0.25;
    border-radius: 2px;
}

.about-image-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ink);
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    line-height: 1.5;
    z-index: 10000;
}

.about-text { }

.about-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-intro span {
    color: var(--gold);
}

.about-body {
    color: var(--text-mid);
    font-size: 0.98rem;
    margin-bottom: 2rem;
    line-height: 2.2;
}

.about-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 2.5rem;
}

.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fact-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-pale);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.fact-text strong {
    display: block;
    font-size: 0.88rem;
    color: var(--ink);
    font-weight: 600;
}

.fact-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.about-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    border-color: transparent;
}

.social-btn.instagram:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(253,29,29,0.4); }

.social-btn.telegram {
    background: #0088cc;
    color: white;
    border-color: transparent;
}
.social-btn.telegram:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,136,204,0.4); }

/* ===================== HONORS ===================== */
#honors {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, #0f0b07 0%, #1a1008 50%, #0f1e1e 100%);
    position: relative;
    overflow: hidden;
}

.honors-bg-text {
    position: absolute;
    font-size: 30vw;
    font-weight: 900;
    color: rgba(201,168,76,0.025);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.honors-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.honor-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.honor-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
}

.honor-card:hover {
    background: rgba(201,168,76,0.07);
    border-color: rgba(201,168,76,0.35);
    transform: translateY(-4px);
}

.honor-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(201,168,76,0.15);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Vazirmatn', monospace;
}

.honor-title {
    font-size: 1.1rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.honor-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.9;
}

/* ===================== GALLERY ===================== */
#gallery {
    padding: 7rem 2rem;
    background: var(--cream);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(201,168,76,0.3);
    background: transparent;
    color: var(--text-mid);
    font-family: 'Vazirmatn', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.gallery-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #f0e8d5;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.4s;
    box-shadow: 0 4px 16px rgba(26,16,8,0.1);
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,16,8,0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-info {
    color: white;
}

.gallery-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.gallery-info span {
    font-size: 0.8rem;
    color: var(--gold-light);
}

.gallery-sold-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(26,16,8,0.85);
    color: var(--gold-light);
    border: 1px solid rgba(201,168,76,0.5);
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 0.75rem;
}

/* Placeholder calligraphy SVG */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5e9c8 0%, #e8d5a8 50%, #f0dfa0 100%);
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: attr(data-text);
    font-size: clamp(2rem, 5vw, 4rem);
    color: rgba(26,16,8,0.7);
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}

.gallery-placeholder::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(201,168,76,0.4);
}

/* ===================== ARCHIVED SOLD WORKS ===================== */
#archive {
    padding: 7rem 2rem;
    background: var(--paper);
}

.archive-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.archive-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.archive-item:hover { box-shadow: 0 6px 24px var(--shadow); }

.archive-thumb {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #e8d5a8, #f5e9c8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(26,16,8,0.4);
    position: relative;
}

.archive-thumb::after {
    content: 'فروخته شده';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-20deg);
    background: rgba(180,30,30,0.85);
    color: white;
    padding: 6px 16px;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 1px;
}

.archive-info {
    padding: 1rem;
}

.archive-info h4 {
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.archive-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
}

.archive-sold-price {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-top: 4px;
}

/* ===================== SHOP ===================== */
#shop {
    padding: 7rem 2rem;
    background: var(--cream-dark);
}

.shop-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--paper);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s;
    box-shadow: 0 2px 12px var(--shadow);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(26,16,8,0.15);
}

.product-thumb {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f5e9c8, #e8d5a8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-size: 4rem;
    color: rgba(26,16,8,0.2);
}

.product-thumb-text {
    position: absolute;
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: rgba(26,16,8,0.55);
    font-weight: 900;
}

.product-body {
    padding: 1.5rem;
}

.product-cat {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.product-name {
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}

.product-price span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

.btn-order {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ink);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Vazirmatn', sans-serif;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(201,168,76,0.4);
}

/* ===================== ORDER FORM ===================== */
#order {
    padding: 7rem 2rem;
    background: linear-gradient(165deg, #0d0a06 0%, #1a1008 100%);
    position: relative;
    overflow: hidden;
}

.order-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 6px;
    padding: 13px 16px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-family: 'Vazirmatn', sans-serif;
    transition: border-color 0.3s;
    direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group select option {
    background: #1a1008;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* ===================== CLASSES ===================== */
/* REMOVED - user said no classes section */

/* ===================== CONTACT ===================== */
#contact {
    padding: 7rem 2rem;
    background: var(--paper);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {}

.contact-info-title {
    font-size: 1.5rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-pale);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--ink);
    margin-bottom: 3px;
}

.contact-item-text span,
.contact-item-text a {
    font-size: 0.88rem;
    color: var(--text-light);
}

.contact-item-text a:hover { color: var(--gold); }

.contact-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.3s;
    text-decoration: none;
}

.social-icon-btn:hover { transform: translateY(-3px); }

.social-icon-btn.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; }
.social-icon-btn.tg { background: #0088cc; color: white; }
.social-icon-btn.wa { background: #25D366; color: white; }

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
}

.map-header {
    background: var(--gold);
    color: var(--ink);
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-frame {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
    background: #f0e8d5;
}

.map-fallback {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #e8d5a8, #f5e9c8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-mid);
}

.map-fallback p {
    text-align: center;
    font-size: 0.9rem;
    line-height: 2;
    max-width: 260px;
}

.map-directions-btn {
    background: var(--gold);
    color: var(--ink);
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.map-directions-btn:hover { background: var(--gold-light); }

/* ===================== FOOTER ===================== */
footer {
    background: #0d0a06;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--ink);
    font-weight: 900;
}

.footer-logo-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo-text span {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

.footer-desc {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    line-height: 2;
    max-width: 280px;
}

.footer-col-title {
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--gold-light); }

/* ===================== LIGHTBOX ===================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox-overlay.active { display: flex; }

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    left: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
}

.lightbox-close:hover { color: var(--gold-light); }

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a1008; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===================== UTILITY ===================== */
.container { max-width: 1200px; margin: 0 auto; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .about-container { grid-template-columns: 1fr; }
    .about-image-wrapper { max-width: 420px; margin: 0 auto; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        background: rgba(26,16,8,0.98);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(201,168,76,0.2);
        z-index: 999;
    }
    .hamburger { display: flex; }
    .about-facts { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

/* ===================== ORNAMENTAL DIVIDER ===================== */
.ornamental-divider {
    text-align: center;
    padding: 3rem 0 1rem;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* ===================== FADE IN ANIMATIONS ===================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== GALLERY MASONRY SPECIAL ===================== */
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; min-height: 500px; }
.gallery-item.wide { aspect-ratio: 16/9; }
.gallery-item.square { aspect-ratio: 1/1; }

/* ===================== QUOTE BAND ===================== */
.quote-band {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0d0a06, #1a1008);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-band::before {
    content: '❝';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12rem;
    color: rgba(201,168,76,0.04);
    line-height: 1;
}

.quote-text {
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.quote-source {
    color: var(--gold);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* ===================== SHOP PAGE TEMPLATE ===================== */

/* Page Banner */
.shop-hero {
    position: relative;
    height: 48vh;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: 70px;
}

.shop-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.shop-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: sepia(25%) contrast(1.08);
}

.shop-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(11,8,6,0.98) 0%, rgba(11,8,6,0.72) 50%, rgba(11,8,6,0.4) 100%),
        linear-gradient(to left, transparent 0%, rgba(11,8,6,0.15) 100%);
    z-index: 1;
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.breadcrumb-nz {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    list-style: none;
}

.breadcrumb-nz a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nz a:hover { color: var(--gold-light); }

.breadcrumb-nz .sep {
    color: rgba(201,168,76,0.4);
    font-size: 0.5rem;
}

.shop-hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.shop-hero-sub {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.9;
}

/* Trust Strip */
.trust-strip {
    background: var(--ink);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 0 2rem;
}

.trust-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.5rem 2.2rem;
    border-left: 1px solid rgba(201,168,76,0.1);
    flex: 1;
    min-width: 200px;
}

.trust-item:last-child { border-left: none; }

.trust-icon {
    font-size: 1.9rem;
    flex-shrink: 0;
    line-height: 1;
    opacity: 0.9;
}

.trust-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 3px;
}

.trust-text span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.5;
}

/* Shop Main Section */
.shop-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

/* Module output — override Bootstrap classes (Bootstrap not loaded in RTL template) */
.nz-shop-mini .row {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)) !important;
    gap: 2rem !important;
    margin: 0 !important;
}

.nz-shop-mini [class*="col-"] {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    padding: 0 !important;
}

.nz-shop-mini .card {
    background: var(--paper) !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    transition: all 0.4s !important;
    box-shadow: 0 2px 16px rgba(26,16,8,0.06) !important;
    height: auto !important;
}

.nz-shop-mini .card:hover {
    transform: translateY(-7px) !important;
    border-color: rgba(201,168,76,0.45) !important;
    box-shadow: 0 16px 45px rgba(201,168,76,0.13) !important;
}

.nz-shop-mini .card-img-top {
    height: 290px !important;
    object-fit: cover !important;
    object-position: center !important;
    width: 100% !important;
    display: block !important;
    transition: transform 0.6s ease !important;
    filter: sepia(8%) contrast(1.03);
}

.nz-shop-mini .card:hover .card-img-top {
    transform: scale(1.06) !important;
}

.nz-shop-mini .card-body {
    padding: 1.5rem !important;
    text-align: right !important;
}

.nz-shop-mini .card-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    line-height: 1.6 !important;
}

.nz-shop-mini .text-muted {
    color: var(--gold) !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    direction: ltr !important;
    text-align: right !important;
    display: block !important;
    margin-bottom: 1rem !important;
}

.nz-shop-mini .nz-order-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--ink) !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-family: 'Vazirmatn', sans-serif !important;
    padding: 11px 0 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    width: 100% !important;
    font-size: 0.9rem !important;
    box-shadow: 0 2px 10px rgba(201,168,76,0.25) !important;
    display: block !important;
}

.nz-shop-mini .nz-order-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 22px rgba(201,168,76,0.45) !important;
}

/* Featured Artwork Spotlight */
.shop-featured {
    padding: 7rem 2rem;
    background: var(--paper);
    border-top: 1px solid var(--border);
}

.shop-featured-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: center;
}

.shop-featured-img-wrap {
    position: relative;
}

.shop-featured-img-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26,16,8,0.18);
}

.shop-featured-img-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold), transparent 50%, var(--gold-light));
    border-radius: 8px;
    z-index: 0;
}

.shop-featured-img-frame img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 7px;
    filter: sepia(10%) contrast(1.05);
}

.shop-featured-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ink);
    padding: 7px 20px;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 18px rgba(201,168,76,0.45);
    letter-spacing: 1px;
}

.shop-featured-deco {
    position: absolute;
    bottom: -18px;
    left: -18px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--gold);
    opacity: 0.2;
    border-radius: 3px;
}

.shop-featured-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.shop-featured-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--ink);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 1.5rem;
}

.shop-featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--border);
}

.shop-featured-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shop-featured-meta-item strong {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.shop-featured-meta-item span {
    font-size: 0.98rem;
    color: var(--ink);
    font-weight: 600;
}

.shop-featured-desc {
    color: var(--text-mid);
    font-size: 0.97rem;
    line-height: 2.2;
    margin-bottom: 2rem;
}

.shop-featured-footer {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.shop-featured-price-label {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 5px;
}

.shop-featured-price-amount {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.shop-featured-price-amount small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
    margin-right: 5px;
}

/* Process / How to Order */
.shop-process {
    padding: 6rem 2rem;
    background: linear-gradient(165deg, #0d0a06 0%, #1a1008 50%, #0e1a1a 100%);
    position: relative;
    overflow: hidden;
}

.shop-process-bg-text {
    position: absolute;
    font-size: 30vw;
    font-weight: 900;
    color: rgba(201,168,76,0.022);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.shop-process-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.process-step {
    position: relative;
    padding-right: 0;
}

.process-step-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(201,168,76,0.1);
    line-height: 1;
    margin-bottom: 0.8rem;
    font-variant-numeric: tabular-nums;
}

.process-step-icon {
    width: 52px;
    height: 52px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    transition: all 0.4s;
}

.process-step:hover .process-step-icon {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-3px);
}

.process-step-title {
    font-size: 1.05rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.process-step-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.48);
    line-height: 2;
}

/* Custom Order CTA */
.shop-cta-section {
    padding: 7rem 2rem;
    background: var(--cream-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-cta-section::before {
    content: '✦';
    position: absolute;
    font-size: 22rem;
    color: rgba(201,168,76,0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.shop-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.shop-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.shop-cta-sub {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
}

.shop-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive — Shop specific */
@media (max-width: 1024px) {
    .shop-featured-inner { grid-template-columns: 1fr; gap: 3rem; }
    .shop-featured-img-wrap { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .shop-hero { height: auto; min-height: 300px; }
    .shop-process-steps { grid-template-columns: 1fr 1fr; }
    .trust-item { padding: 1.2rem 1.5rem; min-width: 160px; }
}

@media (max-width: 600px) {
    .trust-strip-inner { flex-direction: column; }
    .trust-item { border-left: none; border-bottom: 1px solid rgba(201,168,76,0.08); }
    .trust-item:last-child { border-bottom: none; }
    .shop-process-steps { grid-template-columns: 1fr; }
    .shop-featured-meta { gap: 1rem; }
}

/* ===================== WORDPRESS CORE / A11Y ===================== */
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; top: -100px; right: 1rem; z-index: 100000;
    background: var(--ink); color: var(--gold-light);
    padding: 0.6rem 1.2rem; border-radius: 0 0 8px 8px; transition: top 0.2s;
}
.skip-link:focus { top: 0; }
.alignwide { max-width: 1400px; margin-inline: auto; }
.alignfull { max-width: 100%; }
.aligncenter { display: block; margin-inline: auto; }
.alignleft { float: left; margin-inline-end: 1.5rem; }
.alignright { float: right; margin-inline-start: 1.5rem; }
img { max-width: 100%; height: auto; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-light); text-align: center; margin-top: 0.5rem; }
.bypostauthor { display: block; }

/* ===================== PAGINATION ===================== */
.nz-pagination {
    display: flex; justify-content: center; gap: 0.5rem; margin: 3rem 0; flex-wrap: wrap;
}
.nz-pagination a, .nz-pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 0.6rem;
    border-radius: 8px; border: 1px solid var(--border);
    color: var(--text-mid); font-size: 0.9rem; transition: all 0.25s;
}
.nz-pagination a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.nz-pagination .current { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }

/* ===================== GALLERY CPT GRID ===================== */
.nz-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.nz-gallery-item {
    position: relative; border-radius: 14px; overflow: hidden; cursor: pointer;
    box-shadow: 0 6px 24px var(--shadow); aspect-ratio: 4/5;
}
.nz-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.nz-gallery-item:hover img { transform: scale(1.07); }
.nz-gallery-item .nz-gallery-caption {
    position: absolute; inset-inline: 0; bottom: 0; padding: 1.2rem 1rem 1rem;
    background: linear-gradient(to top, rgba(26,16,8,0.92), transparent);
    color: #fff; font-size: 0.95rem; font-weight: 600;
    transform: translateY(100%); transition: transform 0.35s ease;
}
.nz-gallery-item:hover .nz-gallery-caption { transform: translateY(0); }
.nz-gallery-caption span { display: block; font-weight: 300; font-size: 0.78rem; color: var(--gold-light); margin-top: 0.2rem; }

/* ===================== SINGLE GALLERY ITEM ===================== */
.nz-single-gallery {
    max-width: 1100px; margin: 0 auto; padding: 8rem 1.5rem 4rem;
}
.nz-single-gallery figure { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 50px var(--shadow); margin-bottom: 2rem; }
.nz-single-gallery figure img { width: 100%; display: block; }
.nz-single-gallery .nz-meta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.nz-single-gallery .nz-meta a {
    background: var(--cream-dark); color: var(--text-mid); border-radius: 999px;
    padding: 0.35rem 1rem; font-size: 0.82rem; border: 1px solid var(--border);
}
.nz-back-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--gold); font-weight: 600; margin-bottom: 1.5rem; }

/* ===================== CONTACT PAGE FORM ===================== */
.nz-contact-page { max-width: 1300px; margin: 0 auto; padding: 8rem 1.5rem 5rem; }
.nz-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 880px) { .nz-contact-grid { grid-template-columns: 1fr; } }
.nz-contact-grid .form-group { margin-bottom: 1.2rem; }
.nz-contact-grid input, .nz-contact-grid textarea, .nz-contact-grid select {
    width: 100%; padding: 0.85rem 1rem; border-radius: 8px; border: 1px solid var(--border);
    background: #fff; font-family: inherit; font-size: 0.95rem; color: var(--text-dark);
}
.nz-contact-grid textarea { min-height: 130px; resize: vertical; }
.nz-contact-grid label { display: block; margin-bottom: 0.4rem; font-size: 0.88rem; color: var(--text-mid); font-weight: 600; }

/* ===================== WOOCOMMERCE OVERRIDES ===================== */
.woocommerce ul.products,
.nz-shop-mini .row { display: flex; flex-wrap: wrap; gap: 0; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 18px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease; padding: 0 !important; margin: 0 !important;
}
.woocommerce ul.products li.product:hover { transform: translateY(-6px); box-shadow: 0 12px 36px var(--shadow); }
.woocommerce ul.products li.product img { border-radius: 14px 14px 0 0; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem; font-weight: 700; padding: 0.9rem 1rem 0.2rem; color: var(--text-dark);
}
.woocommerce ul.products li.product .price { padding: 0 1rem 1rem; color: var(--gold); font-weight: 700; }
.woocommerce ul.products li.product .button {
    margin: 0 1rem 1rem; display: inline-block; background: var(--ink); color: var(--gold-light) !important;
    border-radius: 8px; padding: 0.6rem 1.4rem; font-size: 0.85rem; font-weight: 600;
}
.woocommerce ul.products li.product .button:hover { background: var(--gold); color: var(--ink) !important; }
.woocommerce nav.woocommerce-pagination ul { border: none; }
.woocommerce span.onsale {
    background: var(--gold); color: var(--ink); border-radius: 999px; font-weight: 700;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a { font-family: 'Vazirmatn', sans-serif; }
.woocommerce-page #content table.cart td.actions .button,
.woocommerce-page table.cart td.actions .button,
.woocommerce #content table.cart td.actions .button,
.woocommerce table.cart td.actions .button,
.woocommerce-page #respond input#submit, .woocommerce-page a.button, .woocommerce-page button.button,
.woocommerce-page input.button, .woocommerce #respond input#submit, .woocommerce a.button,
.woocommerce button.button, .woocommerce input.button {
    background: var(--ink) !important; color: var(--gold-light) !important; border-radius: 8px !important;
    font-family: 'Vazirmatn', sans-serif !important; border: none !important;
}
.woocommerce-page #respond input#submit:hover, .woocommerce-page a.button:hover, .woocommerce-page button.button:hover,
.woocommerce-page input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover,
.woocommerce button.button:hover, .woocommerce input.button:hover {
    background: var(--gold) !important; color: var(--ink) !important;
}
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews {
    border-top-color: var(--gold) !important;
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--gold) !important; }
.woocommerce ul.products li.product .star-rating { margin: 0 1rem; }
.woocommerce-product-gallery { border-radius: 14px; overflow: hidden; }

/* WooCommerce shop page header */
.nz-shop-page-header {
    padding: 9rem 1.5rem 2rem; text-align: center; background: var(--ink); color: #fff;
}
.nz-shop-page-header h1 { color: var(--gold-light); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.5rem; }
.nz-shop-page-header p { color: rgba(255,255,255,0.6); }
.nz-shop-wrap { max-width: 1400px; margin: 0 auto; padding: 2.5rem 1.5rem 5rem; }

/* Page (default) container for static pages */
.nz-page-wrap { max-width: 900px; margin: 0 auto; padding: 9rem 1.5rem 5rem; line-height: 2; }
.nz-page-wrap h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--text-dark); margin-bottom: 1.5rem; }

/* Search form in nav (a11y) */
.search-form { display: flex; gap: 0.5rem; }
.search-form input[type="search"] {
    border-radius: 8px; border: 1px solid var(--border); padding: 0.5rem 0.8rem; font-family: inherit;
}

/* ===================== FOOTER WIDGETS / MENUS ===================== */
.footer-widget-title { color: var(--gold-light); font-size: 1rem; margin-bottom: 1rem; font-weight: 700; }
.footer-links-list, .footer-bottom-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-bottom-links ul { flex-direction: row; gap: 1.5rem; }
.footer-links-list a, .footer-bottom-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.25s; }
.footer-links-list a:hover, .footer-bottom-links a:hover { color: var(--gold-light); }
.footer-social-icons { display: flex; gap: 0.7rem; }
.footer-widget { margin-bottom: 1.5rem; }
.footer-widget:last-child { margin-bottom: 0; }

/* ===================== ORDER SUCCESS MODAL ===================== */
.nz-modal {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 10000;
    display: flex; justify-content: center; align-items: center;
}
.nz-modal-box {
    background: var(--ink); border: 1px solid rgba(201,168,76,0.4); border-radius: 12px;
    padding: 3rem; text-align: center; max-width: 420px; margin: 2rem;
}
.nz-modal-box h3 { color: var(--gold-light); font-size: 1.4rem; margin-bottom: 1rem; }
.nz-modal-box p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

/* ===================== COMMENTS (singular gallery items) ===================== */
.comments-area { max-width: 800px; margin: 3rem auto 0; }
.comments-area .comment-list { list-style: none; }
.comments-area textarea, .comments-area input[type="text"], .comments-area input[type="email"], .comments-area input[type="url"] {
    width: 100%; padding: 0.7rem 1rem; border-radius: 8px; border: 1px solid var(--border); font-family: inherit;
}
.comments-area .comment-form p { margin-bottom: 1rem; }
.comments-area .comment-reply-title, .comments-area .comments-title { font-size: 1.3rem; margin-bottom: 1.5rem; }
.comments-area .submit { background: var(--ink); color: var(--gold-light); border: none; border-radius: 8px; padding: 0.7rem 1.8rem; cursor: pointer; font-family: inherit; }