/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : May 26, 2026, 8:56:22 PM
    Author     : lehan
*/

.detail-body-wrapper {
    background: transparent !important; /* Thêm !important để phá vỡ mọi cache màu đen */
    color: #FFFFFF;
    padding: 40px 24px 80px;
    padding-top: 1px; /* Tránh Margin Collapse */
    font-family: 'Be Vietnam Pro', sans-serif;
}
.detail-container {
    max-width: 1200px;
    margin: 0 auto;
}
/* Nút Back */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ccc3d8;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 24px;
    transition: color 0.3s;
}
.btn-back:hover {
    color: white;
}

/* Hero Section */
.detail-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}
.detail-image-box {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #161821;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.detail-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-info {
    display: flex;
    flex-direction: column;
}
.detail-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a3a3a3;
    margin-bottom: 8px;
}
.detail-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}
.detail-rating {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Giá & Form mua hàng */
.buy-card {
    background: #11141C;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
}
.buy-price {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.buy-desc {
    color: #a3a3a3;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.btn-full {
    grid-column: span 2;
    background: #3B82F6;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}
.btn-half {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
}

/* Middle Section */
.detail-middle {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}
.section-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.section-heading::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.feature-box {
    background: #11141C;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
}
.feature-box ul {
    list-style: none;
    padding: 0;
    color: #ccc3d8;
    font-size: 14px;
}
.feature-box li {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
}
.feature-box li::before {
    content: '✓';
    color: #3B82F6;
}

.designer-card {
    background: #11141C;
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}
.designer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #D8B4FF;
    margin-bottom: 16px;
}

/* Review Section */
.review-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
}
.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.review-name {
    font-weight: 700;
}