:root {
    --navy-deep: #0D1B2A;
    --navy-medium: #1B2838;
    --navy-light: #243447;
    --gold-primary: #C9A227;
    --gold-dark: #A68B1B;
    --steel-gray: #6B7280;
    --steel-light: #9CA3AF;
    --pure-white: #FFFFFF;
    /* Light theme */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F4F6FA;
    --bg-card: #FFFFFF;
    --text-primary: #0D1B2A;
    --text-secondary: #243447;
    --text-muted: #546070;
    --border-color: rgba(13, 27, 42, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(13, 27, 42, 0.1);
    transition: all 0.4s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img,
.logo-img {
    height: 68px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 60px;
    margin-bottom: 0.75rem;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
}

/* Seletor de idioma e CTA da navbar */
.nav-lang {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links .lang-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 32px;
    padding: 0 0.55rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.nav-links .lang-pill:hover {
    background: rgba(201, 162, 39, 0.14);
    color: var(--navy-deep);
}

.nav-links .lang-pill.active {
    background: var(--navy-deep);
    color: var(--pure-white);
}

.nav-links .nav-cta {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.9rem;
    border-radius: 50px;
    background: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    color: var(--pure-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-links .nav-cta:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--pure-white);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}

/* O sublinhado animado dos links não se aplica às pílulas nem ao CTA */
.nav-links .lang-pill::after,
.nav-links .nav-cta::after {
    display: none;
}

@media (max-width: 1180px) {
    .nav-links {
        gap: 1.1rem;
    }

    .nav-links .nav-cta {
        padding: 0.75rem 1.3rem;
    }
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a.active {
    color: var(--gold-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy-deep);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold-primary);
    color: var(--pure-white);
    padding: 0.8rem 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-primary);
}

.nav-cta:hover {
    background: transparent;
    color: var(--gold-primary);
}

/* Hero Section — tema claro para páginas de categoria */
.products-hero {
    min-height: 32vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 100px,
            rgba(13, 27, 42, 0.025) 100px,
            rgba(13, 27, 42, 0.025) 101px);
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {

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

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(201, 162, 39, 0.08);
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--gold-primary);
}

.hero-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
}

.breadcrumb-link {
    color: var(--gold-primary);
    text-decoration: none;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--gold-primary);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.category-block {
    margin-bottom: 4rem;
}

.category-block:last-child {
    margin-bottom: 0;
}

.category-header {
    margin-bottom: 3rem;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold-primary);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.category-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 800px;
    line-height: 1.8;
}

/* ── Category sidebar layout ───────────────────────────────────────────────── */
.products-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.category-sidebar {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 6rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    padding: 1.5rem;
}

.sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.25s ease;
    border-radius: 0 2px 2px 0;
}

.sidebar-link::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.25s ease;
}

.sidebar-link:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
    border-left-color: var(--border-color);
}

.sidebar-link:hover::before {
    opacity: 0.8;
}

.sidebar-link.active {
    color: var(--gold-primary);
    font-weight: 700;
    border-left-color: var(--gold-primary);
    background: rgba(201, 162, 39, 0.06);
}

.sidebar-link.active::before {
    opacity: 1;
    background: var(--gold-primary);
}

.category-block {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .products-layout {
        flex-direction: column;
        gap: 1.5rem;
    }

    .category-sidebar {
        width: 100%;
        position: static;
    }

    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .sidebar-link {
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: 2px 2px 0 0;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .sidebar-link.active {
        border-left-color: transparent;
        border-bottom-color: var(--gold-primary);
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 20px 40px rgba(13, 27, 42, 0.12);
}

.product-image {
    width: 100%;
    height: 280px;
    background: var(--bg-secondary);
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(244, 246, 250, 0.95) 100%);
    pointer-events: none;
}

.product-content {
    padding: 1.5rem;
}

.product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold-primary);
    color: var(--pure-white);
    padding: 1.2rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-primary);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

/* Footer */
/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
    position: relative;
    background: var(--navy-deep);
    color: var(--steel-light);
    padding: 0;
    border-top: none;
}

.footer-accent {
    height: 3px;
    background: linear-gradient(90deg, #A68B1B 0%, #C9A227 25%, #D4B544 50%, #C9A227 75%, #A68B1B 100%);
}

.footer-inner {
    padding: 3.5rem 0 2rem;
}

/* Colunas */
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 0.9fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-col h4 {
    position: relative;
    padding-bottom: 0.9rem;
    margin-bottom: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--pure-white);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.9rem;
}

.footer-col a {
    display: inline-block;
    font-size: 0.92rem;
    color: var(--steel-light);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold-primary);
    transform: translateX(3px);
}

/* Redes sociais com rótulo */
.footer-social-list a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.footer-social-list svg {
    width: 20px;
    height: 20px;
    fill: var(--gold-primary);
    flex-shrink: 0;
    transition: fill 0.3s ease;
}

.footer-social-list a:hover svg {
    fill: var(--gold-light, #D4B544);
}

/* Bloco de contato */
.footer-contact p {
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--steel-light);
}

.footer-contact strong {
    display: block;
    margin-bottom: 0.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gold-primary);
}

.footer-contact a {
    color: var(--steel-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold-primary);
}

/* Barra inferior */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(156, 163, 175, 0.15);
}

.footer-copyright {
    font-size: 0.82rem;
    color: var(--steel-gray);
}

.footer-top-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    background: transparent;
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pure-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-top-btn:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--navy-deep);
}

.footer-top-btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Faixa tracejada decorativa */
.footer-dashes {
    height: 10px;
    background-image: repeating-linear-gradient(90deg,
    var(--gold-primary) 0 20px,
    transparent 20px 34px);
    opacity: 0.45;
}

/* Aba lateral fixa "TOPO" */
.side-top {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.9rem 0.55rem;
    background: var(--navy-deep);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: var(--pure-white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(100%);
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease, background 0.3s ease;
}

.side-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.side-top:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
}

.side-top svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.side-top span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .side-top {
        display: none;
    }
}

/* ── Lightbox ─────────────────────────────────────────────────────────────── */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(13, 27, 42, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-box {
    position: relative;
    max-width: 680px;
    width: 100%;
    background: #fff;
    border: 2px solid var(--gold-primary);
    transform: scale(0.88) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), max-width 0.35s ease;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.lightbox-box.has-specs {
    max-width: 1000px;
    flex-direction: row;
}

.lightbox-overlay.is-open .lightbox-box {
    transform: scale(1) translateY(0);
}

.lightbox-content-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.lightbox-box.has-specs .lightbox-content-layout {
    flex-direction: row;
}

.lightbox-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-secondary);
    flex: 1;
}

.lightbox-box.has-specs .lightbox-img-wrap {
    max-width: 55%;
    border-right: 1px solid var(--border-color);
}

.lightbox-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.lightbox-details {
    display: none;
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    max-height: 80vh;
}

.lightbox-box.has-specs .lightbox-details {
    display: block;
}

.lightbox-details h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.lightbox-details table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.lightbox-details th,
.lightbox-details td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
}

.lightbox-details th {
    color: var(--gold-primary);
    font-weight: 600;
    width: 40%;
    padding-right: 1rem;
}

.lightbox-details td {
    color: var(--text-muted);
}

.lightbox-details .raw-desc {
    white-space: pre-wrap;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.lightbox-caption {
    padding: 1rem 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    background: #fff;
    width: 100%;
}

.lightbox-box.has-specs .lightbox-caption {
    display: none;
}

.lightbox-close {
    position: absolute;
    top: -1.4rem;
    right: -1.4rem;
    width: 2.8rem;
    height: 2.8rem;
    background: var(--gold-primary);
    border: none;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--gold-dark);
    transform: scale(1.1) rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 27, 42, 0.7);
    border: none;
    color: #fff;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--gold-primary);
}

.lightbox-prev {
    left: -3.5rem;
}

.lightbox-next {
    right: -3.5rem;
}

.lightbox-counter {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Cursor pointer on product images ────────────────────────────────────── */
.product-image {
    cursor: zoom-in;
}

/* ── Breadcrumb link in hero ───────────────────────────────────────────────── */
.breadcrumb-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--gold-primary);
}

/* ── Category Overview Grid (produtos.html) ───────────────────────────────── */
.categories-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.category-overview-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    background: var(--bg-card);
}

.category-overview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: 0 24px 50px rgba(13, 27, 42, 0.14);
}

.cov-image {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.cov-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-overview-card:hover .cov-image img {
    transform: scale(1.08);
}

.cov-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 27, 42, 0.82) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.75rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-overview-card:hover .cov-overlay {
    opacity: 1;
}

.cov-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-primary);
}

.cov-content {
    padding: 1.75rem 2rem;
    border-top: 2px solid var(--gold-primary);
}

.cov-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.category-overview-card:hover .cov-title {
    color: var(--gold-primary);
}

.cov-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cov-count {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    border: 1px solid rgba(201, 162, 39, 0.35);
    padding: 0.35rem 0.85rem;
}

/* ── Responsive Design ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .categories-overview-grid {
        grid-template-columns: 1fr;
    }

    .cov-image {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}