:root {
    --bg: #0a0a0a;
    --bg-soft: #111111;
    --bg-card: #151515;
    --bg-card-2: #1b1b1b;
    --text: #f5f1e8;
    --text-soft: #b7b0a3;
    --muted: #8b857a;
    --line: rgba(255, 255, 255, 0.08);
    --gold: #c6a96b;
    --gold-soft: #e0c48a;
    --danger: #d96b6b;
    --success: #6bbf8f;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --radius: 18px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --container: 1280px;
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Tahoma, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    direction: rtl;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: 0;
    background: none;
}

input,
select,
textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: var(--radius-xs);
    padding: 14px 16px;
    outline: none;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 169, 107, 0.12);
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.narrow {
    width: min(100% - 32px, 900px);
    margin-inline: auto;
}

.section {
    padding: 90px 0;
}

.section-dark {
    background: linear-gradient(180deg, #0d0d0d 0%, #111111 100%);
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-head {
    text-align: center;
    margin-bottom: 42px;
}

.section-head--left {
    text-align: right;
}

.section-head h1,
.section-head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.25;
}

.section-head p {
    margin: 0;
    color: var(--text-soft);
    max-width: 760px;
}

.section-head.section-head--left p {
    max-width: 780px;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: var(--transition);
    font-weight: 700;
}

.btn-primary {
    background: var(--gold);
    color: #111;
}

.btn-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
}

.btn-secondary {
    border-color: var(--line);
    color: var(--text);
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
}

.btn-block {
    width: 100%;
}

.inline-link {
    color: var(--gold);
    font-weight: 700;
}

.inline-link:hover {
    color: var(--gold-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(10, 10, 10, 0.82);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 20px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo span {
    color: var(--gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav a {
    color: var(--text-soft);
    font-size: 15px;
}

.nav a:hover,
.nav a.is-active {
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--line);
    color: var(--text);
}

.header-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--line);
    color: var(--text);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 90px;
    background:
        radial-gradient(circle at top right, rgba(198, 169, 107, 0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 22%),
        linear-gradient(180deg, #090909 0%, #111111 100%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 70px);
    line-height: 1.12;
}

.hero-content p {
    margin: 0 0 30px;
    color: var(--text-soft);
    max-width: 640px;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.hero-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 22px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.hero-stat {
    background: var(--bg-card);
    border: 1px solid var(--line);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 20px;
    color: var(--gold);
}

.hero-stat span {
    color: var(--text-soft);
    font-size: 13px;
}

.category-card,
.brand-card,
.article-card,
.product-card,
.feature-card,
.review-card,
.info-card,
.account-card,
.summary-card,
.form-card,
.content-block,
.legal-content,
.faq-item,
.compare-table-wrap,
.cart-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.category-card__inner,
.brand-card__inner {
    display: block;
    overflow: hidden;
}

.category-card__image img,
.brand-card__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
}

.category-card__content,
.brand-card__content {
    padding: 22px;
}

.category-card h3,
.brand-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.category-card p,
.brand-card p {
    margin: 0;
    color: var(--text-soft);
}

.product-card {
    overflow: hidden;
}

.product-card__image {
    position: relative;
    display: block;
    background: #0f0f0f;
}

.product-card__image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.product-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: var(--gold);
    color: #111;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.product-card__body {
    padding: 20px;
}

.product-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.product-card__title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.4;
}

.product-card__text {
    margin: 0 0 18px;
    color: var(--text-soft);
    font-size: 14px;
}

.product-card__bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.product-card__price {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-card__price strong {
    color: var(--gold);
    font-size: 20px;
}

.product-card__price del {
    color: var(--muted);
    font-size: 13px;
}

.product-card__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.product-card__link {
    color: var(--text-soft);
    font-size: 13px;
}

.product-card__link--strong,
.product-card__link:hover {
    color: var(--gold);
}

.article-card__image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
}

.article-card__body {
    padding: 22px;
}

.article-card__meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.article-card__title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.5;
}

.article-card__excerpt {
    margin: 0 0 16px;
    color: var(--text-soft);
}

.feature-card,
.review-card,
.info-card,
.account-card,
.content-block {
    padding: 28px;
}

.feature-card__index {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold);
    font-weight: 800;
    font-size: 18px;
}

.feature-card h3,
.review-card__author strong,
.info-card h3,
.account-card h2,
.content-block h2,
.summary-card h2,
.legal-content h2 {
    margin: 0 0 12px;
}

.feature-card p,
.review-card__text,
.info-card p,
.content-block p,
.legal-content p {
    margin: 0;
    color: var(--text-soft);
}

.review-card__rating {
    color: var(--gold);
    margin-bottom: 12px;
}

.review-card__author {
    margin-top: 18px;
}

.review-card__author span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.section-cta {
    margin-top: 32px;
    text-align: center;
}

.newsletter {
    background:
        radial-gradient(circle at top left, rgba(198,169,107,0.16), transparent 24%),
        linear-gradient(180deg, #111111, #0c0c0c);
}

.newsletter-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px;
}

.newsletter-card h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 4vw, 40px);
}

.newsletter-card p {
    margin: 0;
    color: var(--text-soft);
    max-width: 620px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    min-width: 360px;
}

.newsletter-form input {
    min-width: 220px;
}

.site-footer {
    padding: 70px 0 20px;
    background: #090909;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 34px;
}

.footer-col h3,
.footer-col h4 {
    margin: 0 0 16px;
}

.footer-col p,
.footer-col li,
.footer-bottom {
    color: var(--text-soft);
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li + li {
    margin-top: 10px;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.breadcrumb {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    background: #0d0d0d;
}

.breadcrumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb li::before {
    content: "/";
    margin-left: 10px;
    color: var(--muted);
}

.breadcrumb li:first-child::before {
    content: "";
    margin: 0;
}

.page-intro {
    padding-bottom: 36px;
}

.shop-filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 28px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
}

.shop-filters__group label,
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-soft);
}

.shop-filters__actions {
    display: flex;
    align-items: end;
    gap: 10px;
}

.results-bar {
    margin-bottom: 24px;
    color: var(--text-soft);
}

.empty-state {
    text-align: center;
    padding: 50px 24px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 20px;
}

.empty-state h1,
.empty-state h2,
.empty-state h3 {
    margin-top: 0;
}

.empty-state p {
    color: var(--text-soft);
    margin-bottom: 20px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: start;
}

.product-gallery__main {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
}

.product-gallery__main img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.product-gallery__thumb {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    background: var(--bg-card);
}

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
    border-color: var(--gold);
}

.product-gallery__thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.product-summary__meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
    margin-bottom: 12px;
}

.product-badge {
    display: inline-block;
    margin-bottom: 14px;
    background: rgba(198, 169, 107, 0.14);
    color: var(--gold-soft);
    padding: 8px 14px;
    border-radius: 999px;
}

.product-summary h1 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 50px);
    line-height: 1.25;
}

.product-summary__lead {
    margin: 0 0 22px;
    color: var(--text-soft);
}

.product-summary__price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.product-summary__price strong {
    font-size: 28px;
    color: var(--gold);
}

.product-summary__price del {
    color: var(--muted);
}

.product-summary__stock {
    margin-bottom: 20px;
    color: var(--text-soft);
}

.product-summary__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.product-box {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
}

.product-box h2,
.product-box h3 {
    margin-top: 0;
}

.product-list,
.product-specs,
.account-list,
.account-orders {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-list li + li,
.account-list li + li,
.account-orders li + li {
    margin-top: 12px;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.product-specs li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.product-specs li:last-child {
    border-bottom: 0;
}

.article-layout {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
}

.article-hero img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.article-content {
    padding: 34px;
}

.article-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
    margin-bottom: 10px;
}

.article-content h1 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.3;
}

.article-excerpt {
    color: var(--text-soft);
    margin-bottom: 20px;
}

.article-body p {
    white-space: pre-line;
}

.content-grid,
.contact-layout,
.cart-layout,
.account-layout {
    display: grid;
    gap: 24px;
}

.content-grid {
    grid-template-columns: 1fr 1fr;
}

.contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
}

.contact-info {
    display: grid;
    gap: 18px;
}

.form-card {
    padding: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group--full {
    grid-column: 1 / -1;
}

.alert {
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 18px;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(107, 191, 143, 0.1);
    border-color: rgba(107, 191, 143, 0.3);
    color: #b7f0cc;
}

.compare-table-wrap,
.cart-table-wrap {
    overflow-x: auto;
}

.compare-table,
.cart-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.compare-table th,
.compare-table td,
.cart-table th,
.cart-table td {
    padding: 18px;
    border-bottom: 1px solid var(--line);
    text-align: right;
}

.compare-table th,
.cart-table th {
    color: var(--gold);
    font-weight: 700;
}

.cart-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-product img {
    width: 78px;
    height: 94px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-product span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.summary-card {
    padding: 26px;
    position: sticky;
    top: 110px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--text-soft);
}

.summary-row strong {
    color: var(--text);
}

.summary-row--total strong,
.summary-row--total span {
    color: var(--gold);
    font-size: 18px;
}

.auth-switch {
    display: inline-flex;
    padding: 6px;
    border-radius: 999px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    margin-bottom: 22px;
}

.auth-switch a {
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--text-soft);
}

.auth-switch a.is-active {
    background: var(--gold);
    color: #111;
    font-weight: 700;
}

.account-list li,
.account-orders li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.account-list li:last-child,
.account-orders li:last-child {
    border-bottom: 0;
}

.account-list span,
.account-orders span {
    color: var(--muted);
    display: block;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px;
    color: var(--text);
    font-weight: 700;
    text-align: right;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 22px;
}

.faq-item.is-open .faq-answer {
    max-height: 240px;
    padding-bottom: 22px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-soft);
}

.legal-content {
    padding: 30px;
}

.legal-content h2:not(:first-child) {
    margin-top: 28px;
}

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-3,
    .footer-grid,
    .content-grid,
    .contact-layout,
    .cart-layout,
    .product-layout,
    .product-details-grid,
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        min-width: 0;
    }

    .shop-filters {
        grid-template-columns: 1fr 1fr;
    }

    .summary-card {
        position: static;
    }
}

@media (max-width: 780px) {
    .section {
        padding: 72px 0;
    }

    .nav {
        position: fixed;
        top: 82px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(18, 18, 18, 0.98);
        border: 1px solid var(--line);
        border-radius: 18px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 16px 18px;
        border-bottom: 1px solid var(--line);
    }

    .nav a:last-child {
        border-bottom: 0;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header-actions .header-icon {
        display: none;
    }

    .hero {
        padding-top: 96px;
    }

    .grid-4,
    .grid-3,
    .shop-filters,
    .form-grid,
    .hero-stats,
    .product-gallery__thumbs {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .product-card__bottom,
    .shop-filters__actions,
    .product-summary__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .product-gallery__main img {
        height: 420px;
    }

    .article-hero img {
        height: 320px;
    }

    .article-content,
    .form-card,
    .summary-card,
    .legal-content,
    .feature-card,
    .review-card,
    .info-card,
    .account-card,
    .content-block {
        padding: 22px;
    }

    .header-inner {
        min-height: 74px;
    }
}

/* ============================= */
/* VELMORA UI REFINEMENT PATCH   */
/* Header / Footer / Hover Fixes */
/* ============================= */

/* رنگ‌بندی حرفه‌ای‌تر */
:root {
    --bg: #080808;
    --bg-soft: #101010;
    --bg-card: #141414;
    --bg-card-2: #1b1b1b;
    --text: #f7f3eb;
    --text-soft: #c8c0b2;
    --muted: #9b9387;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(198, 169, 107, 0.24);
    --gold: #c9a86a;
    --gold-soft: #e7c98e;
    --gold-deep: #9f7f45;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.22);
    --radius: 20px;
    --radius-sm: 14px;
    --radius-xs: 10px;
    --transition: all 0.28s ease;
}

/* فونت و ظاهر کلی */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;600;700&display=swap');
body {
   font-family: 'Vazirmatn', sans-serif;
    background:
        radial-gradient(circle at top right, rgba(201, 168, 106, 0.08), transparent 18%),
        linear-gradient(180deg, #060606 0%, #0b0b0b 100%);
    color: var(--text);
    padding:0;
    margin:0;
}

/* ================= HEADER ================= */

/* ================= GENERAL HOVER FIX ================= */

a,
button,
.btn,
.header-icon,
.nav a,
.footer-col a,
.inline-link,
.product-card,
.category-card,
.brand-card,
.article-card,
.feature-card,
.review-card,
.info-card,
.account-card,
.faq-item {
    transition: var(--transition);
}

a:hover,
.inline-link:hover {
    color: var(--gold-soft);
}

.footer-col a,
.nav a,
.breadcrumb a,
.product-card__link {
    position: relative;
}

.footer-col a::after,
.product-card__link::after,
.inline-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.28s ease;
}

.footer-col a:hover::after,
.product-card__link:hover::after,
.inline-link:hover::after {
    width: 100%;
}

/* کارت‌ها hover محسوس‌تر */
.product-card:hover,
.category-card:hover,
.brand-card:hover,
.article-card:hover,
.feature-card:hover,
.review-card:hover,
.info-card:hover,
.account-card:hover,
.form-card:hover,
.content-block:hover,
.faq-item:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 106, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

/* ================= FAQ SECTION ================= */

.faq-list {
    gap: 18px;
}

.faq-item {
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, #141414 0%, #101010 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:hover {
    border-color: rgba(201, 168, 106, 0.22);
}

.faq-item.is-open {
    border-color: rgba(201, 168, 106, 0.28);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.faq-question {
    min-height: 72px;
    padding: 22px 24px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold-soft);
}

.faq-question::after {
    content: "+";
    font-size: 26px;
    line-height: 1;
    color: var(--gold);
    transition: transform 0.28s ease;
}

.faq-item.is-open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
}

.faq-item.is-open .faq-answer {
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-soft);
    line-height: 2;
}

/* ================= FOOTER ================= */

.site-footer {
    margin-top: 90px;
    padding: 0;
    background:
        radial-gradient(circle at top center, rgba(201, 168, 106, 0.10), transparent 24%),
        linear-gradient(180deg, #0c0c0c 0%, #070707 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer .footer-grid {
    padding-top: 70px;
    padding-bottom: 36px;
    align-items: start;
}

.footer-col {
    position: relative;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 800;
}

.footer-col p,
.footer-col li {
    color: var(--text-soft);
    line-height: 2;
    font-size: 15px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--text-soft);
    display: inline-block;
}

.footer-col a:hover {
    color: var(--gold-soft);
    transform: translateX(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0 28px;
    color: var(--muted);
    font-size: 14px;
}

/* ================= SECTION TITLES ================= */

.section-head h1,
.section-head h2 {
    color: #fff;
    letter-spacing: -0.5px;
}

.section-head p {
    color: var(--text-soft);
}

/* ================= FORMS ================= */

input,
select,
textarea {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(201, 168, 106, 0.26);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.10);
}

/* ================= MOBILE ================= */

@media (max-width: 1100px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav {
        gap: 8px;
    }

    .nav a {
        padding: 0 14px;
        font-size: 14px;
    }
}

@media (max-width: 780px) {
    .header-inner {
        min-height: 78px;
    }

    .logo {
        font-size: 24px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav {
        position: fixed;
        top: 88px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        border-radius: 22px;
        background: rgba(12, 12, 12, 0.98);
        border: 1px solid rgba(201, 168, 106, 0.14);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        justify-content: flex-start;
        width: 100%;
        min-height: 50px;
        border-radius: 14px;
        padding: 0 16px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions .btn {
        padding: 0 18px;
        min-height: 44px;
        font-size: 14px;
    }

    .page-intro {
        padding-top: 56px;
        padding-bottom: 28px;
    }

    .page-intro h1,
    .page-intro h2 {
        font-size: clamp(32px, 9vw, 48px);
    }

    .page-intro p {
        font-size: 16px;
        line-height: 1.85;
    }

    .site-footer .footer-grid {
        padding-top: 52px;
    }
}




a:hover,
button:hover,
.btn:hover,
.nav a:hover,
.footer-col a:hover,
.header-icon:hover {
    cursor: pointer;
}

/* =========================
   HERO VIDEO - CONTROLLED
   ========================= */

html,
body {
    overflow-x: hidden;
}



