/* RESET CHO SINGLE BDS - ƯU TIÊN CAO NHẤT */
.bds-single-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.bds-single-article {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Tiêu đề */
.bds-single-header {
    padding: 25px 30px 10px;
}

.bds-single-title {
    font-size: 32px !important;
    color: #222 !important;
    margin: 0 0 10px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

/* Ảnh đại diện */
.bds-single-thumbnail {
    padding: 0 30px 20px;
}

.bds-single-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* THÔNG TIN CHI TIẾT */
.bds-single-info {
    background: #f8fafc;
    padding: 30px;
    margin: 0 30px 30px;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.bds-info-main-title {
    font-size: 24px !important;
    color: #2c3e50 !important;
    margin: 0 0 25px !important;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
    font-weight: 600 !important;
}

/* Grid 2 cột */
.bds-info-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
}

.bds-info-row:last-child {
    margin-bottom: 0 !important;
}

/* Mỗi ô thông tin */
.bds-info-col {
    background: white !important;
    padding: 18px 20px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02) !important;
    border: 1px solid #e9ecef !important;
    transition: all 0.2s ease;
}

.bds-info-col.highlight {
    background: linear-gradient(135deg, #fff8e7, #fff) !important;
    border-left: 4px solid #3498db !important;
}

.bds-info-icon {
    font-size: 28px !important;
    min-width: 40px !important;
    text-align: center !important;
    line-height: 1 !important;
}

.bds-info-content {
    flex: 1 !important;
}

.bds-info-label {
    display: block !important;
    font-size: 12px !important;
    color: #7f8c8d !important;
    margin-bottom: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 500 !important;
}

.bds-info-value {
    display: block !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    line-height: 1.4 !important;
    word-break: break-word !important;
}

.bds-info-value.price {
    color: #e74c3c !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

/* Mô tả */
.bds-single-description {
    padding: 0 30px 40px;
}

.bds-description-title {
    font-size: 24px !important;
    color: #2c3e50 !important;
    margin: 0 0 20px !important;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
    font-weight: 600 !important;
}

.bds-description-content {
    color: #495057 !important;
    line-height: 1.8 !important;
    font-size: 16px !important;
}

.bds-description-content p {
    margin: 0 0 20px !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .bds-single-title {
        font-size: 28px !important;
    }
    
    .bds-info-row {
        gap: 15px !important;
    }
}

@media (max-width: 768px) {
    .bds-single-header {
        padding: 20px 20px 5px;
    }
    
    .bds-single-thumbnail {
        padding: 0 20px 15px;
    }
    
    .bds-single-info {
        padding: 20px;
        margin: 0 20px 25px;
    }
    
    .bds-info-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .bds-info-col {
        padding: 15px !important;
    }
    
    .bds-info-icon {
        font-size: 24px !important;
        min-width: 36px !important;
    }
    
    .bds-info-value {
        font-size: 16px !important;
    }
    
    .bds-info-value.price {
        font-size: 18px !important;
    }
    
    .bds-single-description {
        padding: 0 20px 30px;
    }
    
    .bds-description-title {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    .bds-single-title {
        font-size: 24px !important;
    }
    
    .bds-info-col {
        flex-direction: column !important;
        text-align: center !important;
        gap: 8px !important;
    }
    
    .bds-info-icon {
        margin: 0 !important;
    }
}