
/* Tall & Spacious Products Hero Section */
.products-hero {
    min-height: 85vh;
    /* Expands section to 85% of the screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 60px 80px 60px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.75) 100%),
        url('https://images.unsplash.com/photo-1513694203232-719a280e022f?q=80&w=1600') center/cover no-repeat;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.products-hero h1 {
    font-family: var(--font-serif);
    font-size: 64px;
    /* Larger luxury font size */
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.products-hero p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Mobile & Tablet Height Adjustments */
@media (max-width: 768px) {
    .products-hero {
        min-height: 60vh;
        /* Scaled height on smaller mobile screens */
        padding: 130px 20px 60px 20px;
    }

    .products-hero h1 {
        font-size: 38px;
    }

    .products-hero p {
        font-size: 14px;
    }
}


/* Catalog Section */
.catalog-section {
    padding: 80px 60px 120px 60px;
    background-color: var(--bg-dark);
}

/* Minimalist Underline Filter Bar (FIXED) */
.filter-tabs-luxury {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto 60px auto;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-link {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 4px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
}

.tab-link::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.tab-link:hover {
    color: #ffffff;
}

.tab-link.active {
    color: var(--gold-primary);
    font-weight: 600;
}

.tab-link.active::after {
    width: 100%;
}

/* Product Grid Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card.hide {
    display: none !important;
}

.product-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.15);
}

/* Card Image & Badge */
.product-img-box {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #000;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.85;
}

.product-card:hover .product-img-box img {
    transform: scale(1.1);
    opacity: 1;
}

.brand-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-primary);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 2px;
    font-weight: 600;
}

/* Card Body Content */
.product-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat-tag {
    font-size: 10px;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 12px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Technical Specs Pill Tags */
.specs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.spec-item {
    font-size: 11px;
    color: #dddddd;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item i {
    color: var(--gold-primary);
    margin-right: 5px;
}

/* CTA Button */
.product-btn {
    margin-top: auto;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 12px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-card:hover .product-btn {
    background: var(--gold-primary);
    color: #0a0a0a;
    font-weight: 600;
}

/* Modal Styling */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.product-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: #0f0f0f;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    max-width: 800px;
    width: 90%;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--gold-primary);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-hero {
        padding: 120px 20px 60px 20px;
    }

    .products-hero h1 {
        font-size: 36px;
    }

    .catalog-section {
        padding: 60px 20px;
    }

    .filter-tabs-luxury {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 15px;
        gap: 20px;
    }
}

/* =========================================================
   CTA BANNER & FOOTER STYLES
   ========================================================= */

/* CTA Section */
.catalog-cta-section {
    padding: 100px 60px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 1) 0%, rgba(18, 18, 18, 1) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.015);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    padding: 60px 40px;
    border-radius: 4px;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 400;
    color: #ffffff;
    margin: 15px 0 20px 0;
    line-height: 1.3;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 35px auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button-gold {
    background: var(--gold-primary);
    color: #0a0a0a;
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button-gold:hover {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.cta-button-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Footer Section */
.site-footer {
    background: #050505;
    padding: 80px 60px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.brand-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-primary);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--gold-primary);
    color: #0a0a0a;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--gold-primary);
    margin-top: 3px;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold-primary);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 25px 0;
}

.bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 12px;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.bottom-links a:hover {
    color: var(--gold-primary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .catalog-cta-section {
        padding: 60px 20px;
    }

    .cta-container {
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .site-footer {
        padding: 60px 20px 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}