/* Product Detail Page Styles */
.detail-banner {
    background: linear-gradient(rgba(10, 10, 12, 0.8), rgba(10, 10, 12, 0.9)), url('img/news-bg.png') no-repeat center center/cover;
    padding: 40px 0;
    color: var(--white);
    margin-top: 60px;
    /* Offset for fixed header */
}

.detail-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-banner h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.detail-breadcrumbs {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.detail-breadcrumbs a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.detail-breadcrumbs a:hover {
    color: var(--primary-color);
}

.detail-content {
    padding: 60px 0;
    background-color: var(--white);
}

.detail-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

/* Left Sidebar */
.brand-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-logo-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-logo-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--white);
}

.btn-website {
    background-color: #3498db;
}

.btn-website:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-contact-dept {
    background-color: #e67e22;
    /* Warning/Orange tone for business */
}

.btn-contact-dept:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

/* Main Content Area */
.brand-main-info {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.brand-main-info h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.brand-main-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.detail-footer-note {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-left: 4px solid var(--primary-color);
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .brand-sidebar {
        order: 2;
    }

    .brand-main-info {
        order: 1;
    }
}