/* Brand Products Page Styles */

/* Brand Hero Section */
.brand-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    position: relative;
    overflow: hidden;
}

.brand-hero-content {
    text-align: center;
}

.brand-logo-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #d4af37, #f7ef8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-weight: bold;
    color: #000;
    font-size: 1.8rem;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.brand-logo-large.brand-logo-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.brand-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.brand-subtitle {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.brand-description {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.brand-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-stats .stat {
    text-align: center;
}

.brand-stats .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    display: block;
}

.brand-stats .stat-label {
    color: #ccc;
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    background: #111;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.breadcrumb-nav {
    color: #ccc;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #f7ef8a;
}

.breadcrumb-nav .current {
    color: #fff;
}

/* Brand Products Section */
.brand-products-section {
    padding: 100px 0;
    background: #000;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.products-count {
    color: #ccc;
    font-size: 1.1rem;
}

.gold-text {
    color: #d4af37;
}

/* Products Grid - Responsive */
.brand-products-section .products-grid {
    display: grid;
    gap: 30px;
    /* Mobile first: 1 column */
    grid-template-columns: 1fr;
}

/* Tablet: 2 columns */
@media (min-width: 640px) {
    .brand-products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 3 columns with wider cards */
@media (min-width: 1024px) {
    .brand-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Large Desktop: 3 columns with even wider cards */
@media (min-width: 1280px) {
    .brand-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* No Products */
.no-products {
    text-align: center;
    padding: 100px 20px;
}

.no-products-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.no-products-content p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.related-brands-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #000 0%, #111 100%);
        }

        .related-brands-section .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 30px;
        }

        .related-brands-section .brand-card {
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 25px 15px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .related-brands-section .brand-card:hover {
            transform: translateY(-5px);
            border-color: #d4af37;
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
        }

        .related-brands-section .brand-logo {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #d4af37, #f7ef8a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: bold;
            color: #000;
            font-size: 1rem;
        }

        .related-brands-section .brand-card h3 {
            color: #fff;
            font-size: 1.1rem;
            margin: 0;
        }
/* Mobile Optimizations */
@media (max-width: 768px) {
    .brand-hero {
        padding: 120px 0 60px;
    }

    .brand-title {
        font-size: 2.2rem;
    }

    .brand-subtitle {
        font-size: 1rem;
    }

    .brand-stats {
        gap: 30px;
    }

    .brand-stats .stat-number {
        font-size: 2rem;
    }

    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .breadcrumb-nav {
        font-size: 0.8rem;
    }

    .brand-products-section {
        padding: 60px 0;
    }

    .related-brands-section {
        padding: 60px 0;
    }

    .related-brands-section .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-brands-section .brand-card {
        padding: 20px 10px;
    }

    .related-brands-section .brand-logo {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }

    .related-brands-section .brand-card h3 {
        font-size: 1rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .brand-logo-large {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }

    .brand-title {
        font-size: 1.8rem;
    }

    .brand-description {
        font-size: 1rem;
    }

    .brand-stats {
        gap: 20px;
    }

    .brand-stats .stat-number {
        font-size: 1.8rem;
    }

    .related-brands-section .brand-card h3 {
        font-size: 0.9rem;
    }
}