/* WooCommerce My Account - Chapters Tab */

.ce-woo-chapters-list {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.ce-woo-chapter-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
    transition: all 0.2s;
}

.ce-woo-chapter-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.ce-woo-chapter-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.ce-woo-chapter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ce-woo-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #667eea;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.ce-woo-chapter-info {
    flex: 1;
}

.ce-woo-chapter-info h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.ce-woo-chapter-location,
.ce-woo-chapter-date {
    margin: 6px 0;
    font-size: 13px;
    color: #666;
}

.ce-woo-chapter-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.ce-woo-chapter-actions .button {
    padding: 8px 16px;
    font-size: 12px;
    text-decoration: none;
}

.ce-woo-chapter-actions .button-secondary {
    background: #f0f0f0;
    color: #666;
    border-color: #ddd;
}

.ce-woo-chapter-actions .button-secondary:hover {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

/* Mobile */
@media (max-width: 640px) {
    .ce-woo-chapter-card {
        flex-direction: column;
    }
    
    .ce-woo-chapter-image {
        width: 100%;
        height: 200px;
    }
    
    .ce-woo-chapter-actions {
        flex-direction: column;
    }
    
    .ce-woo-chapter-actions .button {
        width: 100%;
    }
}