/**
 * Woo Author Product Frontend Styles
 */

.dut-ap-container {
    margin: 30px 0;
    width: 100%;
}

/* Author Profile Header */
.dut-ap-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.dut-ap-profile-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f2f5;
}

.dut-ap-profile-name {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.dut-ap-profile-label {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Product Grid Adjustments */
.dut-ap-container .woocommerce ul.products {
    display: grid !important;
    gap: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.dut-ap-container .woocommerce ul.products::before,
.dut-ap-container .woocommerce ul.products::after {
    display: none !important;
}

.dut-ap-container .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

/* Empty State */
.dut-ap-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    border: 1px dashed #e2e8f0;
    border-radius: 12px;
    color: #64748b;
    font-style: italic;
}

/* Pagination (Hidden if IAS is on) */
.dut-ap-pagination {
    margin-top: 40px;
    text-align: center;
}

.infinite-scroll-module .dut-ap-pagination {
    display: none;
}

/* Responsive */
@media (max-width: 767px) {
    .dut-ap-profile {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .dut-ap-container .woocommerce ul.products {
        gap: 15px !important;
    }
}
